|
@@ -30,15 +30,15 @@
|
|
|
<el-table-column prop="itemType" :label="L['类型']" >
|
|
|
<template #default="scope">
|
|
|
<template v-if="scope.row.itemType == 'GOODS'">
|
|
|
- <nuxt-link style="color:#00985e;text-decoration: underline;" :to="'/goods/detail/'+ calcProductName(scope.row.itemName) +'_'+ scope.row.itemId" target="_blank">{{scope.row.itemName}}
|
|
|
+ <nuxt-link style="color:#036EB8;text-decoration: underline;" :to="'/goods/detail/'+ calcProductName(scope.row.itemName) +'_'+ scope.row.itemId" target="_blank">{{scope.row.itemName}}
|
|
|
</nuxt-link>
|
|
|
</template>
|
|
|
<template v-if="scope.row.itemType == 'SHOP'">
|
|
|
- <nuxt-link style="color:#00985e;text-decoration: underline;" :to="'/store/'+ calcProductName(scope.row.itemName) +'_'+ scope.row.storeId" target="_blank">{{scope.row.itemName}}
|
|
|
+ <nuxt-link style="color:#036EB8;text-decoration: underline;" :to="'/store/'+ calcProductName(scope.row.itemName) +'_'+ scope.row.storeId" target="_blank">{{scope.row.itemName}}
|
|
|
</nuxt-link>
|
|
|
</template>
|
|
|
<template v-if="scope.row.itemType == 'MALL'">
|
|
|
- <nuxt-link style="color:#00985e;text-decoration: underline;" :to="`/home/contact`" target="_blank">{{scope.row.itemTypeStr}}
|
|
|
+ <nuxt-link style="color:#036EB8;text-decoration: underline;" :to="`/home/contact`" target="_blank">{{scope.row.itemTypeStr}}
|
|
|
</nuxt-link>
|
|
|
</template>
|
|
|
</template>
|
|
@@ -63,7 +63,7 @@
|
|
|
<el-form-item :label="L['姓名']+':'">
|
|
|
<span>{{ scope.row.name}}</span>
|
|
|
</el-form-item>
|
|
|
- <el-form-item v-if="contactType === 'email'" :label="L['邮箱']+':'">
|
|
|
+ <el-form-item :label="L['邮箱']+':'">
|
|
|
<span>{{ scope.row.email}}</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item v-if="contactType === 'mobile'" :label="L['手机号']+':'">
|
|
@@ -71,15 +71,15 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item :label="L['类型']+':'">
|
|
|
<template v-if="scope.row.itemType == 'GOODS'">
|
|
|
- <nuxt-link style="color:#00985e;text-decoration: underline;" :to="'/goods/detail/'+ calcProductName(scope.row.itemName) +'_'+ scope.row.itemId" target="_blank">{{scope.row.itemName}}
|
|
|
+ <nuxt-link style="color:#036EB8;text-decoration: underline;" :to="'/goods/detail/'+ calcProductName(scope.row.itemName) +'_'+ scope.row.itemId" target="_blank">{{scope.row.itemName}}
|
|
|
</nuxt-link>
|
|
|
</template>
|
|
|
<template v-if="scope.row.itemType == 'SHOP'">
|
|
|
- <nuxt-link style="color:#00985e;text-decoration: underline;" :to="'/store/'+ calcProductName(scope.row.itemName) +'_'+ scope.row.storeId" target="_blank">{{scope.row.itemName}}
|
|
|
+ <nuxt-link style="color:#036EB8;text-decoration: underline;" :to="'/store/'+ calcProductName(scope.row.itemName) +'_'+ scope.row.storeId" target="_blank">{{scope.row.itemName}}
|
|
|
</nuxt-link>
|
|
|
</template>
|
|
|
<template v-if="scope.row.itemType == 'MALL'">
|
|
|
- <nuxt-link style="color:#00985e;text-decoration: underline;" :to="`/home/contact`" target="_blank">{{scope.row.itemTypeStr}}
|
|
|
+ <nuxt-link style="color:#036EB8;text-decoration: underline;" :to="`/home/contact`" target="_blank">{{scope.row.itemTypeStr}}
|
|
|
</nuxt-link>
|
|
|
</template>
|
|
|
</el-form-item>
|
|
@@ -137,7 +137,7 @@
|
|
|
<div class="cancel_list_con">
|
|
|
<div class="address_item flex_column_start_start">
|
|
|
<span>{{ L["姓名"] }}:{{ enquiryInfoData.data.name }}</span>
|
|
|
- <span v-if="contactType === 'email'">{{ L["邮箱"] }}:{{ enquiryInfoData.data.email }}</span>
|
|
|
+ <span>{{ L["邮箱"] }}:{{ enquiryInfoData.data.email }}</span>
|
|
|
<span v-if="contactType === 'mobile'">{{ L["手机号"] }}:{{ enquiryInfoData.data.mobile }}</span>
|
|
|
<span
|
|
|
>{{ L["电话"] }}:{{ enquiryInfoData.data.phoneCode }}-{{
|