Commit 266c56cc authored by zhengyi's avatar zhengyi

客户列表补充客户最新报价单编号显示,且运行跳转到报价单详情

parent db2f25ac
......@@ -251,6 +251,13 @@
</contacts>
</template>
</el-table-column>
<el-table-column :label="$t('报价单')" align="center" fixed>
<template slot-scope="scope" v-if="scope.row.offerId">
<router-link :to="`/offer/detail?offerId=${scope.row.offerId}`" class="link-type">
{{ scope.row.offerNumber }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('最新跟进时间')" width="120">
<template slot-scope="scope" v-if="scope.row.followupBackVO">
{{ parseTime(scope.row.followupBackVO.followTime) }}
......
......@@ -237,6 +237,13 @@
</contacts>
</template>
</el-table-column>
<el-table-column :label="$t('报价单')" align="center" fixed>
<template slot-scope="scope" v-if="scope.row.offerId">
<router-link :to="`/offer/detail?offerId=${scope.row.offerId}`" class="link-type">
{{ scope.row.offerNumber }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('最新跟进时间')" width="120">
<template slot-scope="scope" v-if="scope.row.followupBackVO">
{{ parseTime(scope.row.followupBackVO.followTime) }}
......
......@@ -223,6 +223,13 @@
</contacts>
</template>
</el-table-column>
<el-table-column :label="$t('报价单')" align="center" fixed>
<template slot-scope="scope" v-if="scope.row.offerId">
<router-link :to="`/offer/detail?offerId=${scope.row.offerId}`" class="link-type">
{{ scope.row.offerNumber }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('最新跟进时间')" width="120">
<template slot-scope="scope" v-if="scope.row.followupBackVO">
{{ parseTime(scope.row.followupBackVO.followTime) }}
......
......@@ -245,6 +245,13 @@
</contacts>
</template>
</el-table-column>
<el-table-column :label="$t('报价单')" align="center" fixed>
<template slot-scope="scope" v-if="scope.row.offerId">
<router-link :to="`/offer/detail?offerId=${scope.row.offerId}`" class="link-type">
{{ scope.row.offerNumber }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('最新跟进时间')" width="120">
<template slot-scope="scope" v-if="scope.row.followupBackVO">
{{ parseTime(scope.row.followupBackVO.followTime) }}
......
......@@ -270,6 +270,13 @@
</contacts>
</template>
</el-table-column>
<el-table-column :label="$t('报价单')" align="center" fixed>
<template slot-scope="scope" v-if="scope.row.offerId">
<router-link :to="`/offer/detail?offerId=${scope.row.offerId}`" class="link-type">
{{ scope.row.offerNumber }}
</router-link>
</template>
</el-table-column>
<el-table-column :label="$t('客户类别')" align="center" prop="status">
<template slot-scope="{ row }">
{{ getDictDatas2(DICT_TYPE.CUSTOMER_TYPE, (row.type||'').split(',')).map(e => isChinese ? e.label : e.labelEn).join(', ')}}
......
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