|
|
@@ -36,7 +36,11 @@
|
|
|
<el-table-column label="设备编号" prop="equipmentNumber" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="原厂编号" prop="factoryNumber" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="生产厂家" prop="factoryName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="领用日期" prop="receiveDate"/>
|
|
|
+ <el-table-column label="领用日期" prop="receiveDate">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{parseTime(scope.row.receiveDate)}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|