md
This commit is contained in:
parent
e4fa29c4c9
commit
afdf4e71ee
@ -297,8 +297,20 @@
|
|||||||
|
|
||||||
<el-table-column :label="$t('销售回款人')" align="center" prop="payee" min-width="100" />
|
<el-table-column :label="$t('销售回款人')" align="center" prop="payee" min-width="100" />
|
||||||
<el-table-column :label="$t('销售联系人')" align="center" prop="salesmen" min-width="100" />
|
<el-table-column :label="$t('销售联系人')" align="center" prop="salesmen" min-width="100" />
|
||||||
<el-table-column :label="$t('操作员')" align="center" prop="operateEmployeeName" min-width="100" />
|
|
||||||
<el-table-column :label="$t('收件业务员')" align="center" prop="takePieceEmployeeName" min-width="100" :show-overflow-tooltip="true"/>
|
<el-table-column :label="$t('操作员')" align="center" prop="operateEmployeeName" min-width="100" >
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span v-if="scope.row.pickupMethod==1">{{scope.row.operateEmployeeName}}</span>
|
||||||
|
<span v-else></span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column :label="$t('收件业务员')" align="center" prop="takePieceEmployeeName" min-width="100" :show-overflow-tooltip="true">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span v-if="scope.row.pickupMethod==2">{{scope.row.takePieceEmployeeName}}</span>
|
||||||
|
<span v-else></span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column :label="$t('运单状态')" align="center" prop="waybillStatus" width="100" >
|
<el-table-column :label="$t('运单状态')" align="center" prop="waybillStatus" width="100" >
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<dict-tag :options="dict.type.emis_waybill_status" :value="scope.row.waybillStatus"/>
|
<dict-tag :options="dict.type.emis_waybill_status" :value="scope.row.waybillStatus"/>
|
||||||
|
|||||||
@ -262,8 +262,8 @@
|
|||||||
|
|
||||||
<el-table-column :label="$t('销售回款人')" align="center" prop="payee" min-width="100" />
|
<el-table-column :label="$t('销售回款人')" align="center" prop="payee" min-width="100" />
|
||||||
<el-table-column :label="$t('销售联系人')" align="center" prop="salesmen" min-width="100" />
|
<el-table-column :label="$t('销售联系人')" align="center" prop="salesmen" min-width="100" />
|
||||||
<el-table-column :label="$t('操作员')" align="center" prop="operateEmployeeName" min-width="100" />
|
<el-table-column :label="$t('操作员')" v-if="scope.row.pickupMethod==1" align="center" prop="operateEmployeeName" min-width="100" />
|
||||||
<el-table-column :label="$t('收件业务员')" align="center" prop="takePieceEmployeeName" min-width="100" :show-overflow-tooltip="true"/>
|
<el-table-column :label="$t('收件业务员')" v-if="scope.row.pickupMethod==2" align="center" prop="takePieceEmployeeName" min-width="100" :show-overflow-tooltip="true"/>
|
||||||
<el-table-column :label="$t('运单状态')" align="center" prop="waybillStatus" width="100" >
|
<el-table-column :label="$t('运单状态')" align="center" prop="waybillStatus" width="100" >
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<dict-tag :options="dict.type.emis_waybill_status" :value="scope.row.waybillStatus"/>
|
<dict-tag :options="dict.type.emis_waybill_status" :value="scope.row.waybillStatus"/>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user