|
@@ -7,13 +7,12 @@
|
|
|
<el-table-column :label="`${inSpaceType}名称`" show-overflow-tooltip min-width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
- {{scope.row.LocalName||scope.row.Name||''}}
|
|
|
+ {{scope.row.SysLocalName||scope.row.SysName||''}}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="LocalId" :label="`${inSpaceType}本地编码`" show-overflow-tooltip min-width="100"></el-table-column>
|
|
|
+ <el-table-column prop="SysLocalId" :label="`${inSpaceType}本地编码`" show-overflow-tooltip min-width="100"></el-table-column>
|
|
|
<el-table-column prop="CategoryNames.CategoryName" :label="`${inSpaceType}类`" show-overflow-tooltip min-width="100"></el-table-column>
|
|
|
- <el-table-column prop="ShaftListName" label="已关联其他竖井" show-overflow-tooltip min-width="100" max-width="200"></el-table-column>
|
|
|
<el-table-column prop="action" label="操作" min-width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button size="mini" @click="toDetail(scope.$index, scope.row)" plain>查看详情</el-button>
|
|
@@ -80,7 +79,7 @@ export default {
|
|
|
let params = {
|
|
|
data: {
|
|
|
Cascade: [{ Name: 'categoryNames' }],
|
|
|
- Orders: "createTime desc, Id desc",
|
|
|
+ Orders: "createTime desc, SysID desc",
|
|
|
PageNumber: this.page.pageNumber,
|
|
|
PageSize: this.page.pageSize,
|
|
|
},
|
|
@@ -99,8 +98,8 @@ export default {
|
|
|
if(this.selections.length){
|
|
|
let params = {
|
|
|
ShaftId: this.params.ShaftID,
|
|
|
- EquipIdList: this.selections.map(item => {
|
|
|
- return item.EquipID
|
|
|
+ SysIdList: this.selections.map(item => {
|
|
|
+ return item.SysID
|
|
|
})
|
|
|
}
|
|
|
linkSySh(params, res => {
|