cyl/master
wangxia 8 months ago
parent 8b24f76abb
commit c986085cf0

@ -1,8 +1,8 @@
<template>
<view class="box">
<scroll-view scroll-view class="container g_mt_16 g_radius_8" scroll-x="false" scroll-y="true" upper-threshold="50" lower-threshold="50" scroll-top="0" scroll-left="0" scroll-into-view scroll-with-animation="false" enable-back-to-top="false" bindscrolltoupper bindscrolltolower bindscroll>
<view class="box" v-for="item in annunciateList" @click="editAnnunciate" data-info="{{item}}">
<view class="subset {{index != 0 ? 'bt1' : ''}}">
<view class="box" v-for="item in annunciateList" @click="editAnnunciate(item)" >
<view class="subset" :class="index != 0 ? 'g_border_e_t' : ''">
<view class="left">
<view class="name" style="min-width: 148px">
<view class="g_fs_16">{{ item.title }}</view>
@ -62,7 +62,7 @@ export default {
editAnnunciate(e) {
console.log(e);
wx.navigateTo({
url: `/root/detail/addContact?info=${JSON.stringify(e.currentTarget.dataset.info)}`,
url: `/root/detail/addContact?info=${JSON.stringify(e)}`,
});
},
addContact() {

@ -172,10 +172,12 @@
<view class="g_c_3 g_pt_16 pri">
<view @click="setCopy('new')" v-if="jobDetail.jobInfoWithoutReturnFee || jobDetail.jobInfo"> <span class="desp-copy g_c_main g_border_main"></span> </view>{{ jobDetail.jobInfoWithoutReturnFee || jobDetail.jobInfo || "-" }}</view
>
<view class="contactInfo" style="white-space: pre-line" hover-class="none" hover-stop-propagation="false">{{ userInfo.noticeEndStr ? userInfo.noticeEndStr : "详情咨询:" + userInfo.tel }}</view>
<view class="g_fs_14 g_text_c g_mt_16" v-if="userInfo.agencyStatus == 1">
以上联系人可以
<span class="g_fw_600" @click="changeContact" style="color: #576b95; text-decoration: underline">改成我的</span>
<view class="" v-if="isLogin" hover-class="none" hover-stop-propagation="false">
<view class="contactInfo" style="white-space: pre-line" hover-class="none" hover-stop-propagation="false">{{ userInfo.noticeEndStr ? userInfo.noticeEndStr : "详情咨询:" + userInfo.tel }}</view>
<view class="g_fs_14 g_text_c g_mt_16" v-if="userInfo.agencyStatus == 1">
以上联系人可以
<span class="g_fw_600" @click="changeContact" style="color: #576b95; text-decoration: underline">改成我的</span>
</view>
</view>
</view>
</view>

Loading…
Cancel
Save