main
parent
8f66f73e52
commit
4dc7cf73a8
File diff suppressed because it is too large
Load Diff
|
@ -137,7 +137,7 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="接收时间" align="center" prop="createTime" width="160" />
|
<el-table-column label="接收时间" align="center" prop="createTime" width="160" />
|
||||||
<el-table-column label="处理耗时" align="center" prop="duration" width="150">
|
<el-table-column label="办理耗时" align="center" prop="duration" width="150">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{getDurationDate(scope.row.duration)}}
|
{{getDurationDate(scope.row.duration)}}
|
||||||
</template>
|
</template>
|
||||||
|
@ -250,11 +250,11 @@ export default {
|
||||||
},
|
},
|
||||||
// 跳转到处理页面
|
// 跳转到处理页面
|
||||||
handleProcess(row) {
|
handleProcess(row) {
|
||||||
//if (row.taskName == "提交申请") {
|
if (row.taskName == "提交申请") {
|
||||||
this.$refs.editTaskDrawer.show(row);
|
this.$refs.editTaskDrawer.show(row);
|
||||||
//} else {
|
} else {
|
||||||
// this.$refs.approveDrawer.show(row);
|
this.$refs.approveDrawer.show(row);
|
||||||
//}
|
}
|
||||||
},
|
},
|
||||||
// 取消按钮
|
// 取消按钮
|
||||||
cancel() {
|
cancel() {
|
||||||
|
|
Loading…
Reference in New Issue