|
@@ -60,8 +60,18 @@
|
|
<div>{{scope.row.orderNo}} <span class="pad_css" v-if="scope.row.freightAdvance == '垫付'">垫</span></div>
|
|
<div>{{scope.row.orderNo}} <span class="pad_css" v-if="scope.row.freightAdvance == '垫付'">垫</span></div>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="cargoOwner" label="货主"></el-table-column>
|
|
|
|
- <el-table-column prop="driverName" label="司机"></el-table-column>
|
|
|
|
|
|
+ <el-table-column min-width="160" prop="cargoOwner" label="货主">
|
|
|
|
+ <template scope="scope">
|
|
|
|
+ <div>{{scope.row.cargoOwner}} </div>
|
|
|
|
+ <div>({{scope.row.cargoOwnerPhone}})</div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column min-width="160" prop="driverName" label="司机">
|
|
|
|
+ <template scope="scope">
|
|
|
|
+ <div>{{scope.row.driverName}} </div>
|
|
|
|
+ <div>({{scope.row.driverPhone}})</div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<!-- <el-table-column prop="freight" label="运费(元)">
|
|
<!-- <el-table-column prop="freight" label="运费(元)">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
//用货主订单key值来判断(装车前不显示)3未装车
|
|
//用货主订单key值来判断(装车前不显示)3未装车
|
|
@@ -159,7 +169,7 @@
|
|
<!-- 垫付类型的订单,平台确认卸车后从未进行过尾款操作(即尾款=0)时显示的按钮。 -->
|
|
<!-- 垫付类型的订单,平台确认卸车后从未进行过尾款操作(即尾款=0)时显示的按钮。 -->
|
|
</el-dropdown-item>
|
|
</el-dropdown-item>
|
|
<el-dropdown-item>
|
|
<el-dropdown-item>
|
|
- <el-link :disabled="scope.row.cargoOwnerStatus != '运输中'&&scope.row.cargoOwnerStatus != '已完结'" target="_blank" type="primary" :underline="false" @click="toMapPage(scope.row)">轨迹</el-link>
|
|
|
|
|
|
+ <el-link :disabled="scope.row.orderStatus != '运输中'&&scope.row.orderStatus != '已完结'" target="_blank" type="primary" :underline="false" @click="toMapPage(scope.row)">轨迹</el-link>
|
|
</el-dropdown-item>
|
|
</el-dropdown-item>
|
|
</el-dropdown-menu>
|
|
</el-dropdown-menu>
|
|
</el-dropdown>
|
|
</el-dropdown>
|
|
@@ -287,6 +297,12 @@
|
|
<img :src="item" class="img_css" @click="enlarge(item)">
|
|
<img :src="item" class="img_css" @click="enlarge(item)">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="right_title" v-if="costData.hyCarrierInfo.receiptImg">回单照片</div>
|
|
|
|
+ <div style="display: flex;" v-if="costData.hyCarrierInfo.receiptImg">
|
|
|
|
+ <div v-for="(item,index) in costData.hyCarrierInfo.receiptImg.split(',')" :key="index">
|
|
|
|
+ <img :src="item" class="img_css" @click="enlarge(item)">
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
<el-divider v-if="costData.freightInfo"></el-divider>
|
|
<el-divider v-if="costData.freightInfo"></el-divider>
|
|
<div v-if="costData.freightInfo">
|
|
<div v-if="costData.freightInfo">
|
|
@@ -456,7 +472,8 @@
|
|
unloadPrivate:row.unloadPrivate,
|
|
unloadPrivate:row.unloadPrivate,
|
|
unloadCity:row.unloadCity,
|
|
unloadCity:row.unloadCity,
|
|
unloadArea:row.unloadArea,
|
|
unloadArea:row.unloadArea,
|
|
- unloadDetailedAddress:row.unloadDetailedAddress
|
|
|
|
|
|
+ unloadDetailedAddress:row.unloadDetailedAddress,
|
|
|
|
+ orderStatus:row.orderStatus
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|