|
@@ -154,17 +154,11 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="seller" label="操作" width="300">
|
|
|
<template slot-scope="scope">
|
|
|
- <template
|
|
|
- v-if="
|
|
|
- scope.row.receivingStatus != '已完货'
|
|
|
- "
|
|
|
- >
|
|
|
+ <template v-if="scope.row.receivingStatus != '已完货'">
|
|
|
<div class="record" @click="trainSee(scope.row)">查看</div>
|
|
|
<div class="adjustment" @click="feedback(scope.row)">反馈</div>
|
|
|
</template>
|
|
|
- <template
|
|
|
- v-else
|
|
|
- >
|
|
|
+ <template v-else>
|
|
|
<div class="record1" @click="trainSee(scope.row)">查看</div>
|
|
|
</template>
|
|
|
</template>
|
|
@@ -341,6 +335,13 @@ export default {
|
|
|
id: row.id,
|
|
|
},
|
|
|
})
|
|
|
+ } else if (row.tranType == '船运') {
|
|
|
+ this.$router.push({
|
|
|
+ path: 'tranManagementUnShippingFeedbackLook',
|
|
|
+ query: {
|
|
|
+ id: row.id,
|
|
|
+ },
|
|
|
+ })
|
|
|
}
|
|
|
if (row.tranType == '火运') {
|
|
|
this.$router.push({
|
|
@@ -369,6 +370,13 @@ export default {
|
|
|
id: row.id,
|
|
|
},
|
|
|
})
|
|
|
+ } else if (row.tranType == '船运') {
|
|
|
+ this.$router.push({
|
|
|
+ path: 'tranManagementUnShippingFeedback',
|
|
|
+ query: {
|
|
|
+ id: row.id,
|
|
|
+ },
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
dateFormat(fmt, date) {
|
|
@@ -484,9 +492,9 @@ export default {
|
|
|
this.startDate = ''
|
|
|
this.endDate = ''
|
|
|
}
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
this.startDate = ''
|
|
|
- this.endDate = ''
|
|
|
+ this.endDate = ''
|
|
|
}
|
|
|
this.currentPage = 1
|
|
|
this.getList()
|