|
|
|
@ -71,14 +71,14 @@ |
|
|
|
|
|
|
|
<el-table :data="dataList" :height="height" border v-loading="dataListLoading" style="width: 100%;" |
|
|
|
highlight-current-row ref="mainTable"> |
|
|
|
<el-table-column header-align="center" align="center" width="170" label="操作"> |
|
|
|
<el-table-column header-align="center" align="center" width="110" label="操作"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-select |
|
|
|
v-model="scope.row.timeoutReason" |
|
|
|
placeholder="选择超时原因" |
|
|
|
size="mini" |
|
|
|
class="selectReason" |
|
|
|
style="width: 150px" |
|
|
|
style="width: 100px" |
|
|
|
@change="(val) => onTimeoutReasonChange(val, scope.row)" |
|
|
|
> |
|
|
|
<el-option |
|
|
|
@ -496,6 +496,9 @@ export default { |
|
|
|
getEamWorkShop({}).then(({ data }) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.workShopList = data.rows |
|
|
|
this.workShopList = this.workShopList.filter((item) => { |
|
|
|
return item.workShopId == 'WS005' || item.workShopId == 'WS006' |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
this.searchTable() |
|
|
|
|