|
|
@ -346,12 +346,12 @@
|
|
|
|
<span>{{ parseTime(scope.row.planLoopEnd, '{y}-{m}-{d}') }}</span>
|
|
|
|
<span>{{ parseTime(scope.row.planLoopEnd, '{y}-{m}-{d}') }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column width="120" label="执行开始时间" align="center" prop="orderStart">
|
|
|
|
<el-table-column v-if="false" width="120" label="执行开始时间" align="center" prop="orderStart">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.orderStart, '{y}-{m}-{d}') }}</span>
|
|
|
|
<span>{{ parseTime(scope.row.orderStart, '{y}-{m}-{d}') }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column width="120" label="执行结束时间" align="center" prop="orderEnd">
|
|
|
|
<el-table-column v-if="false" width="120" label="执行结束时间" align="center" prop="orderEnd">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.orderEnd, '{y}-{m}-{d}') }}</span>
|
|
|
|
<span>{{ parseTime(scope.row.orderEnd, '{y}-{m}-{d}') }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
@ -672,6 +672,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 展示
|
|
|
|
// 展示
|
|
|
|
showWork(row) {
|
|
|
|
showWork(row) {
|
|
|
|
|
|
|
|
this.loading = true;
|
|
|
|
this.reset();
|
|
|
|
this.reset();
|
|
|
|
this.standardListVo = [];
|
|
|
|
this.standardListVo = [];
|
|
|
|
const orderId = row.orderId || this.ids
|
|
|
|
const orderId = row.orderId || this.ids
|
|
|
@ -683,6 +684,7 @@ export default {
|
|
|
|
this.standardListVo.push(this.workVO.detailList[i].standardList[j]);
|
|
|
|
this.standardListVo.push(this.workVO.detailList[i].standardList[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
this.workDetail = true;
|
|
|
|
this.workDetail = true;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|