|
@@ -134,6 +134,7 @@
|
|
|
<span
|
|
|
class="buyer-item link-clickable"
|
|
|
@click.stop="toToBuyerProfile(item.text)"
|
|
|
+ v-bound-phone="bindPhoneToBuyerProfile(item.text)"
|
|
|
>{{ item.text }}</span
|
|
|
>
|
|
|
</template>
|
|
@@ -142,6 +143,7 @@
|
|
|
v-if="item.text === '点击查看'"
|
|
|
class="buyer-item link-clickable"
|
|
|
@click.stop="toToBuyerProfile(item.text)"
|
|
|
+ v-bound-phone="bindPhoneToBuyerProfile(item.text)"
|
|
|
>{{ item.text }}</span
|
|
|
>
|
|
|
<span class="buyer-item link-clickable" v-else>{{
|
|
@@ -2253,6 +2255,16 @@ export default {
|
|
|
keyStr,
|
|
|
`<span class="highlight-text-orange-bd">${keyStr}</span>`
|
|
|
)
|
|
|
+ },
|
|
|
+ bindPhoneToBuyerProfile(id) {
|
|
|
+ return {
|
|
|
+ props: {
|
|
|
+ name: '阳光直采详情页-采购单位点击查看'
|
|
|
+ },
|
|
|
+ next: () => {
|
|
|
+ this.toToBuyerProfile(id)
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -2410,8 +2422,7 @@ export default {
|
|
|
border-radius: 8px;
|
|
|
border: 1px solid transparent;
|
|
|
background-clip: padding-box, border-box;
|
|
|
- background-image:
|
|
|
- linear-gradient(#e8ffff 40%, #ffffff 100%),
|
|
|
+ background-image: linear-gradient(#e8ffff 40%, #ffffff 100%),
|
|
|
linear-gradient(to right, #2abed1, #4de4f84c, #2abed1);
|
|
|
background-origin: padding-box, border-box;
|
|
|
.tab-right {
|
|
@@ -2607,8 +2618,7 @@ export default {
|
|
|
color: #171826;
|
|
|
border: 0.5px solid transparent;
|
|
|
background-clip: padding-box, border-box;
|
|
|
- background-image:
|
|
|
- linear-gradient(#e8ffff 40%, #ffffff 100%),
|
|
|
+ background-image: linear-gradient(#e8ffff 40%, #ffffff 100%),
|
|
|
linear-gradient(to right, #2abed1 10%, #4de4f84c 30%, #2abed1);
|
|
|
background-origin: padding-box, border-box;
|
|
|
border-radius: 8px;
|