|
@@ -53,7 +53,7 @@
|
|
<span v-else>{{ scope.$index + 1 }}</span>
|
|
<span v-else>{{ scope.$index + 1 }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="orderNo" label="订单编号" />
|
|
|
|
|
|
+ <el-table-column prop="orderNo" label="订单编号" min-width="155" />
|
|
<el-table-column prop="cargoOwner" label="发运人" />
|
|
<el-table-column prop="cargoOwner" label="发运人" />
|
|
<el-table-column prop="cargoOwnerPhone" label="发运人账号" />
|
|
<el-table-column prop="cargoOwnerPhone" label="发运人账号" />
|
|
<el-table-column prop="driverName" label="承运人" />
|
|
<el-table-column prop="driverName" label="承运人" />
|
|
@@ -74,7 +74,6 @@
|
|
<el-link target="_blank" type="primary" :underline="false" @click="submission(scope.row)"
|
|
<el-link target="_blank" type="primary" :underline="false" @click="submission(scope.row)"
|
|
:disabled="scope.row.escalationStatus != '未上报' && scope.row.escalationStatus != '未通过' && scope.row.escalationStatus != '暂缓中'">
|
|
:disabled="scope.row.escalationStatus != '未上报' && scope.row.escalationStatus != '未通过' && scope.row.escalationStatus != '暂缓中'">
|
|
上报</el-link>
|
|
上报</el-link>
|
|
-
|
|
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -220,7 +219,7 @@ export default {
|
|
},
|
|
},
|
|
//批量上报
|
|
//批量上报
|
|
batchSubmission() {
|
|
batchSubmission() {
|
|
- let that =this
|
|
|
|
|
|
+ var that = this
|
|
if (this.modification.length > 0) {
|
|
if (this.modification.length > 0) {
|
|
this.$confirm('确定批量上报运单信息?', '提示', {
|
|
this.$confirm('确定批量上报运单信息?', '提示', {
|
|
confirmButtonText: '确定',
|
|
confirmButtonText: '确定',
|
|
@@ -231,14 +230,14 @@ export default {
|
|
batchEscalation({ orderInfoList: this.modification })
|
|
batchEscalation({ orderInfoList: this.modification })
|
|
.then(response => {
|
|
.then(response => {
|
|
if (response.code == 200) {
|
|
if (response.code == 200) {
|
|
- this.$notify({
|
|
|
|
|
|
+ that.$notify({
|
|
title: '成功',
|
|
title: '成功',
|
|
message: '上报成功!',
|
|
message: '上报成功!',
|
|
type: 'success'
|
|
type: 'success'
|
|
})
|
|
})
|
|
- this.modification = []
|
|
|
|
- that.getList()
|
|
|
|
}
|
|
}
|
|
|
|
+ that.getList()
|
|
|
|
+ that.modification = []
|
|
})
|
|
})
|
|
})
|
|
})
|
|
} else {
|
|
} else {
|