Commit 70e6f6db authored by zhengyi's avatar zhengyi

客户相关列表补充最新发货时间及跳转到对应的订单详情操作

parent 225acd64
......@@ -251,6 +251,13 @@
</contacts>
</template>
</el-table-column>
<el-table-column :label="$t('最新发货时间')" width="120">
<template slot-scope="scope" v-if="scope.row.lastLoadOrderId">
<router-link :to="`/order/detail?orderId=${scope.row.lastLoadOrderId}`" class="link-type">
{{ parseTime(scope.row.lastLoadOrderLoadTime) }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('最新报价单')" width="120">
<template slot-scope="scope" v-if="scope.row.offerId">
<router-link :to="`/offer/detail?offerId=${scope.row.offerId}`" class="link-type">
......
......@@ -237,6 +237,13 @@
</contacts>
</template>
</el-table-column>
<el-table-column :label="$t('最新发货时间')" width="120">
<template slot-scope="scope" v-if="scope.row.lastLoadOrderId">
<router-link :to="`/order/detail?orderId=${scope.row.lastLoadOrderId}`" class="link-type">
{{ parseTime(scope.row.lastLoadOrderLoadTime) }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('最新报价单')" width="120">
<template slot-scope="scope" v-if="scope.row.offerId">
<router-link :to="`/offer/detail?offerId=${scope.row.offerId}`" class="link-type">
......
......@@ -223,6 +223,13 @@
</contacts>
</template>
</el-table-column>
<el-table-column :label="$t('最新发货时间')" width="120">
<template slot-scope="scope" v-if="scope.row.lastLoadOrderId">
<router-link :to="`/order/detail?orderId=${scope.row.lastLoadOrderId}`" class="link-type">
{{ parseTime(scope.row.lastLoadOrderLoadTime) }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('最新报价单')" width="120">
<template slot-scope="scope" v-if="scope.row.offerId">
<router-link :to="`/offer/detail?offerId=${scope.row.offerId}`" class="link-type">
......
......@@ -240,6 +240,13 @@
</contacts>
</template>
</el-table-column>
<el-table-column :label="$t('最新发货时间')" width="120">
<template slot-scope="scope" v-if="scope.row.lastLoadOrderId">
<router-link :to="`/order/detail?orderId=${scope.row.lastLoadOrderId}`" class="link-type">
{{ parseTime(scope.row.lastLoadOrderLoadTime) }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('最新报价单')" width="120">
<template slot-scope="scope" v-if="scope.row.offerId">
<router-link :to="`/offer/detail?offerId=${scope.row.offerId}`" class="link-type">
......
......@@ -270,6 +270,13 @@
</contacts>
</template>
</el-table-column>
<el-table-column :label="$t('最新发货时间')" width="120">
<template slot-scope="scope" v-if="scope.row.lastLoadOrderId">
<router-link :to="`/order/detail?orderId=${scope.row.lastLoadOrderId}`" class="link-type">
{{ parseTime(scope.row.lastLoadOrderLoadTime) }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('最新报价单')" width="120">
<template slot-scope="scope" v-if="scope.row.offerId">
<router-link :to="`/offer/detail?offerId=${scope.row.offerId}`" class="link-type">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment