|
|
@@ -90,19 +90,19 @@
|
|
|
<el-row :gutter="20" class="tongjiRow">
|
|
|
<el-col :span="4" class="tongjiBg">
|
|
|
<p>全部</p>
|
|
|
- <p>23</p>
|
|
|
+ <p>28</p>
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="tongjiBg">
|
|
|
<p><span class="statusSpan zaixianStatus"></span>在线</p>
|
|
|
- <p>2</p>
|
|
|
+ <p>21</p>
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="tongjiBg">
|
|
|
<p><span class="statusSpan lixianStatus"></span>离线</p>
|
|
|
- <p>13</p>
|
|
|
+ <p>5</p>
|
|
|
</el-col>
|
|
|
<el-col :span="4" class="tongjiBg">
|
|
|
<p><span class="statusSpan weijihuoStatus"></span>未激活</p>
|
|
|
- <p>8</p>
|
|
|
+ <p>2</p>
|
|
|
</el-col>
|
|
|
<el-col :span="8" class="tongjiBg">
|
|
|
<p style="text-align: left;"><a class="shuaxinBtn" href="javascript:;" @click="fetch">刷新</a></p>
|
|
|
@@ -153,6 +153,16 @@
|
|
|
<el-table-column prop="lineDesc" label="所属产线" :show-overflow-tooltip="true" align="center" width="100px"></el-table-column>
|
|
|
<el-table-column prop="type.data" label="类型" align="center" width="120px"></el-table-column>
|
|
|
<el-table-column prop="moduleDesc" label="模型名称" :show-overflow-tooltip="true" align="center" width="100px"></el-table-column>
|
|
|
+
|
|
|
+ <el-table-column prop="capitalNo" label="资产编号" align="center" width="120px"></el-table-column>
|
|
|
+ <el-table-column prop="capitalName" label="资产名称" align="center" width="120px"></el-table-column>
|
|
|
+ <el-table-column prop="capitalType" label="资产类别" align="center" width="120px"></el-table-column>
|
|
|
+ <el-table-column prop="modeSpecification" label="型号规格" align="center" width="120px"></el-table-column>
|
|
|
+ <el-table-column prop="capitalPrice" label="资产原值" align="center" width="120px"></el-table-column>
|
|
|
+ <el-table-column prop="productionDate" label="出厂日期" align="center" width="120px"></el-table-column>
|
|
|
+ <el-table-column prop="productionNo" label="出厂编号" align="center" width="120px"></el-table-column>
|
|
|
+ <el-table-column prop="manufacturer" label="制造厂家" align="center" width="120px"></el-table-column>
|
|
|
+
|
|
|
<el-table-column prop="status" label="启用状态" align="center" width="90px">
|
|
|
<template slot-scope="{ row }">
|
|
|
<el-tag :type="row.status=='1' ? '' : 'danger'">
|
|
|
@@ -570,7 +580,7 @@ export default {
|
|
|
// 查询参数
|
|
|
console.log("查询参数: ", this.queryParams)
|
|
|
productionResourcesMgrApi.page(this.queryParams).then(response => {
|
|
|
- const res = response.data
|
|
|
+ const res = response.data
|
|
|
if (res.isSuccess) {
|
|
|
// 赋值
|
|
|
this.tableData = res.data
|