|
@@ -831,6 +831,16 @@
|
|
|
<span v-else-if="scope.row.fBilltype == 'CKDB'">调拨</span>
|
|
|
<span v-else-if="scope.row.fBilltype == 'HQZY'">货权转移</span>
|
|
|
<span v-else-if="scope.row.fBilltype == 'JSCCF'">仓储费</span>
|
|
|
+ <span v-else-if="scope.row.fBilltype == '1000'">计划下达</span>
|
|
|
+ <span v-else-if="scope.row.fBilltype == '1010'">业务调度</span>
|
|
|
+ <span v-else-if="scope.row.fBilltype == '1020'">车队派车</span>
|
|
|
+ <span v-else-if="scope.row.fBilltype == '1030'">司机接单</span>
|
|
|
+ <span v-else-if="scope.row.fBilltype == '1080'">司机出车</span>
|
|
|
+ <span v-else-if="scope.row.fBilltype == '1040'">司机提箱</span>
|
|
|
+ <span v-else-if="scope.row.fBilltype == '1050'">司机装卸柜</span>
|
|
|
+ <span v-else-if="scope.row.fBilltype == '1060'">司机还卸柜</span>
|
|
|
+ <span v-else-if="scope.row.fBilltype == '1070'">司机回单</span>
|
|
|
+ <span v-else-if="scope.row.fBilltype == '1090'">费用补充</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -1856,7 +1866,6 @@ export default {
|
|
|
// },
|
|
|
// 导入搜索
|
|
|
searchFee(type) {
|
|
|
- console.log(type);
|
|
|
this.feeList = [];
|
|
|
this.$refs["feeListRules"].validate((valid) => {
|
|
|
if (valid) {
|
|
@@ -1870,6 +1879,7 @@ export default {
|
|
|
for (let item in this.feeList) {
|
|
|
this.totAL += Number(this.feeList[item].fAmt);
|
|
|
this.Ttime += Number(this.feeList[item].fAmtdr);
|
|
|
+ this.$set(this.feeList[item], 'fBsdate', this.feeList[item].fBsdate.substring(0, 10))
|
|
|
}
|
|
|
} else {
|
|
|
this.$message.error("暂无数据");
|
|
@@ -1885,6 +1895,7 @@ export default {
|
|
|
for (let item in this.feeList) {
|
|
|
this.totAL += Number(this.feeList[item].fAmt);
|
|
|
this.Ttime += Number(this.feeList[item].fAmtdr);
|
|
|
+ this.$set(this.feeList[item], 'fBsdate', this.feeList[item].fBsdate.substring(0, 10))
|
|
|
}
|
|
|
} else {
|
|
|
this.$message.error("暂无数据");
|