|
@@ -106,7 +106,7 @@
|
|
|
class="inExecution"
|
|
|
></span>
|
|
|
<span
|
|
|
- v-if="scope.row.feedbackStatus == '已完成'"
|
|
|
+ v-if="scope.row.feedbackStatus == '已完货'"
|
|
|
class="done"
|
|
|
></span
|
|
|
>{{ scope.row.feedbackStatus }}
|
|
@@ -151,24 +151,17 @@
|
|
|
<template slot-scope="scope">
|
|
|
<template
|
|
|
v-if="
|
|
|
- scope.row.tranType == '汽运' &&
|
|
|
- scope.row.feedbackStatus != '已完成'
|
|
|
+ scope.row.feedbackStatus != '已完货'
|
|
|
"
|
|
|
>
|
|
|
<div class="record" @click="trainSee(scope.row)">查看</div>
|
|
|
<div class="adjustment" @click="feedback(scope.row)">反馈</div>
|
|
|
</template>
|
|
|
<template
|
|
|
- v-else-if="
|
|
|
- scope.row.tranType == '汽运' &&
|
|
|
- scope.row.feedbackStatus == '已完成'
|
|
|
- "
|
|
|
+ v-else
|
|
|
>
|
|
|
<div class="record1" @click="trainSee(scope.row)">查看</div>
|
|
|
</template>
|
|
|
- <template v-else>
|
|
|
- <div class="record1">—— ——</div>
|
|
|
- </template>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -230,7 +223,7 @@ export default {
|
|
|
searchTypeOne: 1,
|
|
|
taskTypeList: [
|
|
|
{ value: '执行中', type: 1 },
|
|
|
- { value: '已完成', type: 2 },
|
|
|
+ { value: '已完货', type: 2 },
|
|
|
{ value: '全部任务', type: 3 },
|
|
|
],
|
|
|
// 提交类型
|
|
@@ -370,10 +363,10 @@ export default {
|
|
|
},
|
|
|
editClick(row) {
|
|
|
var feedbackStatus = ''
|
|
|
- if (row.feedbackStatus == '待执行' || row.feedbackStatus == '已完成') {
|
|
|
+ if (row.feedbackStatus == '待执行' || row.feedbackStatus == '已完货') {
|
|
|
feedbackStatus = '执行中'
|
|
|
} else if (row.feedbackStatus == '执行中') {
|
|
|
- feedbackStatus = '已完成'
|
|
|
+ feedbackStatus = '已完货'
|
|
|
}
|
|
|
//cancelButtonClass: "btn-custom-cancel"
|
|
|
this.$confirm(`是否将状态改为${feedbackStatus}`, {
|