709 lines
24 KiB
Vue
709 lines
24 KiB
Vue
<template>
|
|
<XdPageContainer class="app-container">
|
|
<SearchForm slot="pageHeader" :model="queryParams" ref="queryForm" size="mini" :maxShow="10" label-width="100px" v-show="showSearch" @search="handleQuery" @reset="resetQuery">
|
|
<el-row :gutter="0" style="display: flex;flex-wrap: wrap;">
|
|
<el-col :span="4">
|
|
<el-form-item label="运单号" prop="billCode" >
|
|
<XdTextareaInput
|
|
v-model="queryParams.billCode"
|
|
:placeholder="$t('多个流水号逗号或换行隔开')"
|
|
clearable
|
|
:rows="4"
|
|
/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="18">
|
|
<el-row :gutter="0" style="display: flex;flex-wrap: wrap;">
|
|
<el-col :span="24">
|
|
<el-form-item label="登记时间" prop="dateTimeRange" label-position="top" >
|
|
<!-- <elDateSimplePicker v-model="dateTimeRange" ></elDateSimplePicker> -->
|
|
<elDateAdvPicker v-model="dateTimeRange" ></elDateAdvPicker>
|
|
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
<el-form-item label="登记网点" prop="applySiteCode">
|
|
<EmisSiteSimplePicker1 v-model="queryParams.applySiteCode" ></EmisSiteSimplePicker1>
|
|
</el-form-item>
|
|
|
|
<el-form-item label="确认网点" prop="destConfirmSiteCode">
|
|
<EmisSiteSimplePicker2 v-model="queryParams.destConfirmSiteCode" ></EmisSiteSimplePicker2>
|
|
</el-form-item>
|
|
|
|
<el-form-item label="状态" prop="processStatus">
|
|
<el-select clearable v-model="queryParams.params.processStatus" placeholder="请选择">
|
|
<el-option label="未确认" :value="1"></el-option>
|
|
<el-option label="已确认" :value="2"></el-option>
|
|
<el-option label="中心未审核" :value="6"></el-option>
|
|
<el-option label="中心已审核" :value="3"></el-option>
|
|
<el-option label="网点驳回" :value="4"></el-option>
|
|
<el-option label="中心驳回" :value="5"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="修改项目" prop="applyType">
|
|
<AjustApplyTypePicker v-model="queryParams.applyType"></AjustApplyTypePicker>
|
|
</el-form-item>
|
|
</el-row>
|
|
</el-col>
|
|
|
|
</el-row>
|
|
</SearchForm>
|
|
<XdTable
|
|
|
|
slot="pageContent"
|
|
slot-scope="slotProps"
|
|
:height="(slotProps.contentHeight)+'px'"
|
|
|
|
ref="refTable"
|
|
|
|
v-loading="loading"
|
|
border stripe
|
|
size="mini"
|
|
|
|
storageName="WaybillAjustCenterConfirm_main"
|
|
|
|
:data="emisWaybillAjustApplyList"
|
|
:showSearch.sync="showSearch"
|
|
:queryParams="queryParams"
|
|
:total="total"
|
|
@queryTable="getList"
|
|
@selection-change="handleSelectionChange"
|
|
@sort-change="handleSortChange"
|
|
@row-dblclick="handleView"
|
|
|
|
>
|
|
|
|
<div slot="toolbar">
|
|
<el-row :gutter="10" class="mb8">
|
|
<!-- <el-col :span="1.5">
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
@click="handleAdd"
|
|
v-hasPermi="['emis:emisWaybillAjustApply:add']"
|
|
>新增申请</el-button>
|
|
</el-col> -->
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
:disabled="single"
|
|
size="mini"
|
|
@click="handleView"
|
|
>查看</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="success"
|
|
plain
|
|
icon="el-icon-edit"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
@click="handleCenterPass"
|
|
v-hasPermi="['emis:emisWaybillAjustApply:centerPass']"
|
|
>审核通过</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="danger"
|
|
plain
|
|
icon="el-icon-edit"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
@click="handleCenterNoPass"
|
|
v-hasPermi="['emis:emisWaybillAjustApply:centerNoPass']"
|
|
>中心驳回</el-button>
|
|
</el-col>
|
|
|
|
<!-- <el-col :span="1.5">
|
|
<el-button
|
|
type="danger"
|
|
plain
|
|
icon="el-icon-delete"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
@click="handleDelete"
|
|
v-hasPermi="['emis:emisWaybillAjustApply:remove']"
|
|
>删除</el-button>
|
|
</el-col> -->
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="warning"
|
|
plain
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
>导出</el-button>
|
|
</el-col>
|
|
</el-row>
|
|
</div>
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
<el-table-column :label="$t('运单号')" align="center" prop="billCode" min-width="150" />
|
|
<el-table-column :label="$t('登记网点')" align="center" prop="applySiteName" min-width="100" />
|
|
<el-table-column :label="$t('登记说明')" align="center" prop="applyMemo" min-width="200" :show-overflow-tooltip="true"/>
|
|
<el-table-column :label="$t('登记时间')" align="center" prop="applyDate" min-width="170" />
|
|
<el-table-column :label="$t('修改项目')" align="center" prop="applyTypeName" min-width="150" :show-overflow-tooltip="true"/>
|
|
<el-table-column :label="$t('登记人')" align="center" prop="applyManName" min-width="100" />
|
|
<!-- <el-table-column :label="$t('改前值')" align="center" prop="oldValue" min-width="150" >
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.applyType=='20'" >
|
|
<dict-tag :options="dict.type.emis_payment_type" :value="scope.row.oldValue"/>
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column :label="$t('改后值')" align="center" prop="newValue" min-width="150" >
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.applyType=='20'" >
|
|
<dict-tag :options="dict.type.emis_payment_type" :value="scope.row.newValue"/>
|
|
</div>
|
|
|
|
</template>
|
|
</el-table-column> -->
|
|
|
|
<el-table-column :label="$t('结算重量')" align="center" prop="waybillDetail.settlementWeight" min-width="80" />
|
|
<el-table-column :label="$t('确认网点')" align="center" prop="destConfirmSiteName" min-width="100" :show-overflow-tooltip="true" >
|
|
<template slot-scope="scope">
|
|
<div >{{ scope.row.destConfirmSiteName }}</div>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column :label="$t('状态')" align="center" prop="processStatus" min-width="100" >
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.blDestConfirmed==0" >未确认</div>
|
|
<div v-if="scope.row.blDestConfirmed==1" >网点确认</div>
|
|
<div v-if="scope.row.blDestConfirmed==2" >网点驳回</div>
|
|
<div v-if="scope.row.blCenterConfirmed==1" >中心审核通过</div>
|
|
<div v-if="scope.row.blCenterConfirmed==2" >中心驳回</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="$t('确认时间')" align="center" prop="destConfirmDate" min-width="170" >
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.blDestConfirmed==1" >{{ scope.row.destConfirmDate }}</div>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column :label="$t('确认人')" align="center" prop="destConfirmManName" min-width="100" >
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.blDestConfirmed==1" >{{ scope.row.destConfirmManName }}</div>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column :label="$t('驳回网点')" align="center" prop="destConfirmSiteName" min-width="100" :show-overflow-tooltip="true" >
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.blDestConfirmed==2" >{{ scope.row.destConfirmSiteName }}</div>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column :label="$t('网点驳回时间')" align="center" prop="destConfirmDate" min-width="170" >
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.blDestConfirmed==2" >{{ scope.row.destConfirmDate }}</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="$t('驳回人')" align="center" prop="destConfirmManName" min-width="100" >
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.blDestConfirmed==2" >{{ scope.row.destConfirmManName }}</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="$t('驳回原因')" align="center" prop="destConfirmNote" min-width="100" :show-overflow-tooltip="true" >
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.blDestConfirmed==2" >{{ scope.row.destConfirmNote }}</div>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="$t('中心审核时间')" align="center" prop="centerConfirmDate" min-width="170" />
|
|
<el-table-column :label="$t('中心审核人')" align="center" prop="centerConfirmManName" min-width="100" />
|
|
<el-table-column :label="$t('中心审核网点')" align="center" prop="centerConfirmSiteName" min-width="120" :show-overflow-tooltip="true" />
|
|
<el-table-column :label="$t('寄件时间')" align="center" prop="waybillDetail.sendDate" min-width="170" />
|
|
<el-table-column :label="$t('录入网点')" align="center" prop="waybillDetail.registerSiteName" min-width="80" :show-overflow-tooltip="true" />
|
|
<el-table-column :label="$t('录入人')" align="center" prop="waybillDetail.registerManName" min-width="80" :show-overflow-tooltip="true" />
|
|
<el-table-column :label="$t('目的网点')" align="center" prop="waybillDetail.dispatchUnderlingSiteName" min-width="80" :show-overflow-tooltip="true"/>
|
|
<el-table-column :label="$t('件数')" align="center" prop="waybillDetail.parcelQty" min-width="80" />
|
|
<el-table-column :label="$t('目的地')" align="center" prop="waybillDetail.destinationName" min-width="80" :show-overflow-tooltip="true"/>
|
|
<el-table-column :label="$t('运费')" align="center" prop="waybillDetail.freight" min-width="80" />
|
|
<el-table-column :label="$t('付款方式')" align="center" prop="waybillDetail.paymentType" min-width="80" :show-overflow-tooltip="true" >
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.emis_payment_type" :value="scope.row.waybillDetail.paymentType"/>
|
|
</template>
|
|
</el-table-column>
|
|
</XdTable>
|
|
|
|
<el-dialog :title="titleForm" :visible.sync="openForm" width="80%" :destroy-on-close="true" v-dialogDrag append-to-body>
|
|
<emisWaybillAjustApplyForm :id="currentId" @on-changed="handleFormChanged" @on-cancel="cancelForm"></EmisWaybillAjustApplyForm>
|
|
</el-dialog>
|
|
|
|
</XdPageContainer>
|
|
</template>
|
|
|
|
<script>
|
|
import { listEmisWaybillAjustApply, auditCenterPass,auditCenterNoPass} from "@/api/emis/emisWaybillAjustApply";
|
|
|
|
import emisWaybillAjustApplyForm from '@/views/emis/emisWaybillAjustApply/emisWaybillAjustApplyForm';
|
|
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
|
|
import EmisSiteSimplePicker1 from '@/views/emis/EmisBaseTools/EmisSiteSimplePicker.vue';
|
|
import EmisSiteSimplePicker2 from '@/views/emis/EmisBaseTools/EmisSiteSimplePicker.vue';
|
|
import AjustApplyTypePicker from '@/views/emis/EmisBaseTools/AjustApplyTypePicker.vue';
|
|
import elDateAdvPicker from '@/components/DatePickerAdv/elDateAdvPicker';
|
|
|
|
|
|
export default {
|
|
name: "WaybillAjustCenterConfirm",
|
|
components: {
|
|
elDateAdvPicker,
|
|
emisWaybillAjustApplyForm,
|
|
EmisSiteSimplePicker1,
|
|
EmisSiteSimplePicker2,
|
|
AjustApplyTypePicker
|
|
},
|
|
dicts: ['emis_qujian_fangshi','emis_declare_mode','emis_customs_clear',
|
|
'emis_tab_packing_type','emis_tab_dispatch_mode','emis_payment_type',
|
|
'emis_calc_fee_type','emis_print_type'],
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 创建时间搜索
|
|
dateTimeRange:[],
|
|
// 总条数
|
|
total: 0,
|
|
// 运单调整申请表格数据
|
|
emisWaybillAjustApplyList: [],
|
|
|
|
selectionList:[],
|
|
|
|
currentId:null,
|
|
openForm: false,
|
|
titleForm: "",
|
|
|
|
// 弹出展示层
|
|
id:null,
|
|
titleView:"",
|
|
openView: false,
|
|
// 更新网点时间范围
|
|
daterangeApplyDate: [],
|
|
// 更新网点时间范围
|
|
daterangeDestConfirmDate: [],
|
|
// 更新网点时间范围
|
|
daterangeCenterConfirmDate: [],
|
|
// 更新网点时间范围
|
|
daterangeCreateTime: [],
|
|
// 更新网点时间范围
|
|
daterangeUpdateTime: [],
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
billCode: null,
|
|
applyType: null,
|
|
applyManCode: null,
|
|
applySiteCode: null,
|
|
applyFinanceCenterCode: null,
|
|
applyDate: null,
|
|
blDestConfirmed: null,
|
|
destConfirmSiteCode: null,
|
|
destConfirmDate: null,
|
|
destConfirmNote: null,
|
|
destConfirmManCode: null,
|
|
destFinanceCenterCode: null,
|
|
oldValue: null,
|
|
newValue: null,
|
|
blValueJson: null,
|
|
applyMemo: null,
|
|
blCenterConfirmed: null,
|
|
centerConfirmSiteCode: null,
|
|
centerConfirmManCode: null,
|
|
centerConfirmDate: null,
|
|
centerConfirmNote: null,
|
|
remark: null,
|
|
delFlag: null,
|
|
params:{
|
|
processStatus:null,
|
|
}
|
|
},
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 查询运单调整申请列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
this.queryParams=this.addDateRange(this.queryParams, this.dateTimeRange,'applyDate');
|
|
listEmisWaybillAjustApply(this.queryParams).then(response => {
|
|
this.emisWaybillAjustApplyList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.id)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
|
|
this.selectionList=selection;
|
|
},
|
|
// 排序 查询字段是表格中字段名字 动态取值排序顺序
|
|
handleSortChange(column) {
|
|
this.queryParams.orderByColumn = column.prop;
|
|
this.queryParams.isAsc = column.order;
|
|
this.getList();
|
|
},
|
|
handleCenterPass(row) {
|
|
const ids = row.id || this.ids;
|
|
this.$modal.confirm('是否审核通过').then(function() {
|
|
return auditCenterPass(ids);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("操作成功");
|
|
}).catch(() => {});
|
|
},
|
|
handleCenterNoPass(row) {
|
|
const ids = row.id || this.ids;
|
|
this.$prompt('请输入驳回原因', "操作确认", {
|
|
confirmButtonText: "确定",
|
|
cancelButtonText: "取消",
|
|
closeOnClickModal: false,
|
|
inputPattern: /^.{5,30}$/,
|
|
inputErrorMessage: "驳回原因长度必须介于 5 和 30 之间"
|
|
}).then(({ value }) => {
|
|
auditCenterNoPass(ids,value).then(response => {
|
|
this.$modal.msgSuccess("操作成功" );
|
|
this.getList();
|
|
});
|
|
}).catch(() => {});
|
|
},
|
|
|
|
handleShowMoreInput(){
|
|
this.moreInputVisible = !this.moreInputVisible;
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.currentId= row.id;
|
|
this.openForm = true;
|
|
this.titleForm = "修改";
|
|
},
|
|
handleView(row) {
|
|
this.currentId= row.id || this.ids;
|
|
this.titleForm="查看费用申请";
|
|
this.openForm=true;
|
|
},
|
|
handleFormChanged(){
|
|
this.openForm = false;
|
|
this.getList();
|
|
},
|
|
cancelForm(){
|
|
this.openForm = false;
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const ids = row.id || this.ids;
|
|
this.$modal.confirm('是否确认删除').then(function() {
|
|
return delEmisWaybillAjustApply(ids);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
const loadingInstance = this.$loading({
|
|
text: '正在导出...'
|
|
})
|
|
|
|
if(this.selectionList&&this.selectionList.length>0){
|
|
this.exportData(this.selectionList,loadingInstance);
|
|
}
|
|
else{
|
|
let qExportParam=this.addDateRange(this.queryParams, this.dateTimeRange,'applyDate');
|
|
qExportParam.pageNum=1;
|
|
qExportParam.pageSize=20000;
|
|
listEmisWaybillAjustApply(qExportParam).then(response => {
|
|
if (response.code === 200) {
|
|
this.exportData(response.rows,loadingInstance);
|
|
}
|
|
});
|
|
}
|
|
},
|
|
exportData(selData,loadingInstance){
|
|
const curList =selData
|
|
import('@/vendor/Export2Excel').then(excel => {
|
|
const exportParam=this.$refs.refTable.getExportParam();
|
|
const tHeader = exportParam.header;
|
|
const filterVal = exportParam.filter;
|
|
const data = this.formatJson(filterVal, curList, selData)
|
|
excel.export_json_to_excel({
|
|
header: tHeader,
|
|
data,
|
|
filename: '寄件运单列表',
|
|
autoWidth: true
|
|
})
|
|
loadingInstance.close()
|
|
})
|
|
},
|
|
formatJson(filterVal, jsonData, resData) {
|
|
let index = 0
|
|
return jsonData.map(v => filterVal.map(j => {
|
|
|
|
if (j === 'index') {
|
|
return ++index
|
|
}
|
|
|
|
if (j === 'processStatus') {
|
|
|
|
let blDestConfirmedStr='';
|
|
let blCenterConfirmedStr='';
|
|
|
|
if(v['blDestConfirmed'] == 0){
|
|
blDestConfirmedStr='未确认';
|
|
}
|
|
else if(v['blDestConfirmed'] == 1){
|
|
blDestConfirmedStr='网点确认';
|
|
}
|
|
else if(v['blCenterConfirmed'] == 2){
|
|
blDestConfirmedStr='网点驳回';
|
|
}
|
|
|
|
if(v['blCenterConfirmed'] == 0){
|
|
blCenterConfirmedStr='未审核';
|
|
}
|
|
else if(v['blCenterConfirmed'] == 1){
|
|
blCenterConfirmedStr='中心审核通过';
|
|
}
|
|
else if(v['blCenterConfirmed'] == 2){
|
|
blCenterConfirmedStr='中心驳回';
|
|
}
|
|
|
|
return blDestConfirmedStr+" " + blCenterConfirmedStr;
|
|
}
|
|
|
|
if (j === 'kjlx') {
|
|
return v['waybillDetail']['sendSiteName']+'--'+v['waybillDetail']['dispatchUnderlingSiteName'];
|
|
}
|
|
if (j === 'fjr') {
|
|
return v['sendName']+'--'+v['receiveName'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.sendSiteName') {
|
|
return v['waybillDetail']['sendSiteName'];
|
|
}
|
|
|
|
|
|
if (j === 'waybillDetail.sendDate') {
|
|
return v['waybillDetail']['sendDate'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.sendCompany') {
|
|
return v['waybillDetail']['sendCompany'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.transLineTypeName') {
|
|
return v['waybillDetail']['transLineTypeName'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.productTypeName') {
|
|
return v['waybillDetail']['productTypeName'];
|
|
}
|
|
|
|
|
|
if (j === 'waybillDetail.sendName') {
|
|
return v['waybillDetail']['sendName'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.parcelQty') {
|
|
return v['waybillDetail']['parcelQty'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.billWeight') {
|
|
return v['waybillDetail']['billWeight'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.volumeWeight') {
|
|
return v['waybillDetail']['volumeWeight'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.totalVolume') {
|
|
return v['waybillDetail']['totalVolume'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.settlementWeight') {
|
|
return v['waybillDetail']['settlementWeight'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.freight') {
|
|
return v['waybillDetail']['freight'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.realFee') {
|
|
return v['waybillDetail']['realFee'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.remark') {
|
|
return v['waybillDetail']['remark'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.feeRemark') {
|
|
return v['waybillDetail']['feeRemark'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.salesmen') {
|
|
return v['waybillDetail']['salesmen'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.payee') {
|
|
return v['waybillDetail']['payee'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.payee') {
|
|
return v['waybillDetail']['payee'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.problemTypeName') {
|
|
return v['waybillDetail']['problemTypeName'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.problemCause') {
|
|
return v['waybillDetail']['problemCause'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.sendDate') {
|
|
return v['waybillDetail']['sendDate'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.registerSiteName') {
|
|
return v['waybillDetail']['registerSiteName'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.registerManName') {
|
|
return v['waybillDetail']['registerManName'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.dispatchUnderlingSiteName') {
|
|
return v['waybillDetail']['dispatchUnderlingSiteName'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.parcelQty') {
|
|
return v['waybillDetail']['parcelQty'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.destinationName') {
|
|
return v['waybillDetail']['destinationName'];
|
|
}
|
|
|
|
if (j === 'waybillDetail.sendMobile') {
|
|
return "";
|
|
}
|
|
|
|
if (j === 'custName') {
|
|
let paymentType=v['paymentType'];
|
|
if(paymentType==2 || paymentType==4 || paymentType==5 ){
|
|
return v['custName'];
|
|
}else{
|
|
return "";
|
|
}
|
|
}
|
|
|
|
if (j === 'sendMobile') {
|
|
return "";
|
|
}
|
|
if (j === 'paymentStatus') {
|
|
return this.selectDictLabel(this.dict.type.emis_payment_status,v[j]);
|
|
}
|
|
|
|
if (j === 'pickupMethod') {
|
|
return this.selectDictLabel(this.dict.type.emis_qujian_fangshi,v[j]);
|
|
}
|
|
if (j === 'customsEclaration') {
|
|
return this.selectDictLabel(this.dict.type.emis_declare_mode,v[j]);
|
|
}
|
|
if (j === 'customsClear') {
|
|
return this.selectDictLabel(this.dict.type.emis_customs_clear,v[j]);
|
|
}
|
|
if (j === 'packType') {
|
|
return this.selectDictLabels(this.dict.type.emis_tab_packing_type,v[j]);
|
|
}
|
|
|
|
if (j === 'dispatchMethod') {
|
|
if(v[j] == 1){
|
|
return '派送';
|
|
}else{
|
|
return '自提';
|
|
}
|
|
}
|
|
if (j === 'blMessage') {
|
|
if(v[j] == 1){
|
|
return '发送';
|
|
}else{
|
|
return '不发送';
|
|
}
|
|
}
|
|
if (j === 'blAcceptMessage') {
|
|
if(v[j] == 1){
|
|
return '发送';
|
|
}else{
|
|
return '不发送';
|
|
}
|
|
}
|
|
if (j === 'blSign') {
|
|
if(v[j] == 1){
|
|
return '已签收';
|
|
}else{
|
|
return '未签收';
|
|
}
|
|
}
|
|
if (j === 'waybillDetail.paymentType') {
|
|
return this.selectDictLabel(this.dict.type.emis_payment_type,v['waybillDetail']['paymentType']);
|
|
}
|
|
return v[j]
|
|
}))
|
|
},
|
|
|
|
/** 列索引函数 */
|
|
getIndex($index) {
|
|
return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
|
|
},
|
|
/** 时间搜索响应函数 */
|
|
dateTimeChange(value){
|
|
this.dateTimeRange=value;
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-divider{
|
|
margin-top: 0px;
|
|
background: 0 0;
|
|
border-top: 1px solid #E6EBF5;
|
|
}
|
|
.el-divider__text {
|
|
color: #0955ee;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|