This commit is contained in:
linfso 2025-07-02 14:49:45 +08:00
parent cc658dc38a
commit 8945e0c20a

View File

@ -109,7 +109,7 @@
size="small"
:data="emisTmsCostProfitList"
storageName="emisTmsCostProfitList_main1"
storageName="emisTmsCostProfitList_main2"
:showSearch.sync="showSearch"
@ -180,7 +180,7 @@
<dict-tag :options="dict.type.emis_payment_type" :value="scope.row.waybillDetail.paymentType" />
</template>
</el-table-column>
<el-table-column :label="$t('月结客户')" align="center" prop="custName" min-width="150" :sortable="true" :show-overflow-tooltip="true">
<el-table-column :label="$t('月结客户')" align="center" prop="waybillDetail.custName" min-width="150" :sortable="true" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span v-if="['2','4','5'].includes(scope.row.waybillDetail.paymentType)" type="normal">{{ scope.row.waybillDetail.custName }}</span>
</template>
@ -815,10 +815,23 @@ export default {
return v['waybillDetail']['problemCause'];
}
if (j === 'waybillDetail.custName') {
let paymentType=v['waybillDetail']['paymentType']
if(['2','4','5'].includes(paymentType)){
return v['waybillDetail']['custName'];
}
else{
return '';
}
}
if (j === 'waybillDetail.sendMobile') {
return "";
}
if (j === 'waybillDetail.calcFeeType') {
return this.selectDictLabel(this.dict.type.emis_calc_fee_type,v['waybillDetail']['calcFeeType']);
}
@ -840,6 +853,14 @@ export default {
return this.selectDictLabels(this.dict.type.emis_tab_packing_type,v['waybillDetail']['packType']);
}
if (j === 'waybillDetail.blSpecialQuote') {
if(v['waybillDetail']['blSpecialQuote'] == 1){
return '是';
}else{
return '否';
}
}
if (j === 'waybillDetail.dispatchMethod') {
if(v['waybillDetail']['dispatchMethod'] == 1){
return '派送';