|
@@ -62,6 +62,10 @@
|
|
<el-table-column prop="cargoOwner" label="货主"></el-table-column>
|
|
<el-table-column prop="cargoOwner" label="货主"></el-table-column>
|
|
<el-table-column prop="driverName" label="司机"></el-table-column>
|
|
<el-table-column prop="driverName" label="司机"></el-table-column>
|
|
<el-table-column prop="freight" label="运费(元)">
|
|
<el-table-column prop="freight" label="运费(元)">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <!-- //用货主订单key值来判断(装车前不显示)3未装车 -->
|
|
|
|
+ {{scope.row.cargoOwnerStatusKey > 3 ? scope.row.freight : ""}}
|
|
|
|
+ </template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="amountMoney" label="已付(元)"></el-table-column>
|
|
<el-table-column prop="amountMoney" label="已付(元)"></el-table-column>
|
|
<el-table-column prop="amountMon" label="超期费(元)">
|
|
<el-table-column prop="amountMon" label="超期费(元)">
|
|
@@ -84,15 +88,19 @@
|
|
<span @click="account" class="btn_css">查看</span>
|
|
<span @click="account" class="btn_css">查看</span>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="updateDate" label="更新时间" min-width="160"></el-table-column>
|
|
<el-table-column prop="updateDate" label="更新时间" min-width="160"></el-table-column>
|
|
- <el-table-column prop="orderStatus" label="状态" min-width="92"></el-table-column>
|
|
|
|
|
|
+ <el-table-column prop="cargoOwnerStatus" label="状态" min-width="92"></el-table-column>
|
|
<el-table-column label="操作" min-width="350">
|
|
<el-table-column label="操作" min-width="350">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
<el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
:disabled="scope.row.orderStatusKey != 9 && scope.row.orderStatusKey != 19">确认
|
|
:disabled="scope.row.orderStatusKey != 9 && scope.row.orderStatusKey != 19">确认
|
|
|
|
+ <!-- 9待平台确认装车 19待平台确认卸车 -->
|
|
|
|
+ <!-- 待平台确认装车和待平台确认卸车时显示 -->
|
|
</el-link>
|
|
</el-link>
|
|
<el-divider direction="vertical"></el-divider>
|
|
<el-divider direction="vertical"></el-divider>
|
|
<el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
<el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
:disabled="scope.row.orderStatusKey != 9 && scope.row.orderStatusKey != 19">驳回
|
|
:disabled="scope.row.orderStatusKey != 9 && scope.row.orderStatusKey != 19">驳回
|
|
|
|
+ <!-- 9待平台确认装车 19待平台确认卸车 -->
|
|
|
|
+ <!-- 待平台确认装车和待平台确认卸车时显示 -->
|
|
</el-link>
|
|
</el-link>
|
|
<el-divider direction="vertical"></el-divider>
|
|
<el-divider direction="vertical"></el-divider>
|
|
<el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false">查看</el-link>
|
|
<el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false">查看</el-link>
|
|
@@ -103,16 +111,21 @@
|
|
<el-dropdown-item>
|
|
<el-dropdown-item>
|
|
<el-link target="_blank" @click="end(scope.row)" type="primary" :underline="false"
|
|
<el-link target="_blank" @click="end(scope.row)" type="primary" :underline="false"
|
|
:disabled="scope.row.cargoOwnerStatusKey > 18">终止</el-link>
|
|
:disabled="scope.row.cargoOwnerStatusKey > 18">终止</el-link>
|
|
|
|
+ <!-- cargoOwnerStatusKey=19待平台确认卸车,待货主确认卸车key = 18 -->
|
|
</el-dropdown-item>
|
|
</el-dropdown-item>
|
|
<el-dropdown-item>
|
|
<el-dropdown-item>
|
|
<el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
<el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
:disabled="scope.row.cargoOwnerStatusKey != 29">完结</el-link>
|
|
:disabled="scope.row.cargoOwnerStatusKey != 29">完结</el-link>
|
|
|
|
+ <!-- 完结:支付完尾款后从未进行过完结操作前显示的操作。 -->
|
|
</el-dropdown-item>
|
|
</el-dropdown-item>
|
|
<el-dropdown-item>
|
|
<el-dropdown-item>
|
|
- <el-link target="_blank" type="primary" :underline="false">预付</el-link>
|
|
|
|
|
|
+ v-if="scope.row.freightAdvance == 1"
|
|
|
|
+ <el-link target="_blank" type="primary" :underline="false" :disabled="scope.row.freightAdvance != 1 && scope.row.cargoOwnerStatusKey < 9">预付</el-link>
|
|
|
|
+ <!-- 垫付类型的订单,平台确认装车后从未进行过预付操作(即预付款=0)时显示的按钮。 -->
|
|
</el-dropdown-item>
|
|
</el-dropdown-item>
|
|
<el-dropdown-item>
|
|
<el-dropdown-item>
|
|
- <el-link target="_blank" type="primary" :underline="false">尾款</el-link>
|
|
|
|
|
|
+ <el-link target="_blank" type="primary" :underline="false" :disabled="scope.row.freightAdvance != 1 && scope.row.cargoOwnerStatusKey < 19">尾款</el-link>
|
|
|
|
+ <!-- 垫付类型的订单,平台确认卸车后从未进行过尾款操作(即尾款=0)时显示的按钮。 -->
|
|
</el-dropdown-item>
|
|
</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</el-dropdown-menu>
|
|
</el-dropdown>
|
|
</el-dropdown>
|
|
@@ -201,7 +214,7 @@
|
|
<div class="right_title">装车时间</div>
|
|
<div class="right_title">装车时间</div>
|
|
<div class="right_item">{{costData.carrierInfo.loadingDate}}</div>
|
|
<div class="right_item">{{costData.carrierInfo.loadingDate}}</div>
|
|
<div class="right_title">装车照片</div>
|
|
<div class="right_title">装车照片</div>
|
|
- <div style="display: flex;">
|
|
|
|
|
|
+ <div style="display: flex;" v-if="costData.carrierInfo.loadingImg">
|
|
<div v-for="(item,index) in costData.carrierInfo.loadingImg.split(',')">
|
|
<div v-for="(item,index) in costData.carrierInfo.loadingImg.split(',')">
|
|
<img :src="item" class="img_css">
|
|
<img :src="item" class="img_css">
|
|
</div>
|
|
</div>
|