|
@@ -30,7 +30,7 @@
|
|
<view class="body-content-row">
|
|
<view class="body-content-row">
|
|
<view class="content-text-row">
|
|
<view class="content-text-row">
|
|
<text>手机号:</text>{{item.userName}}
|
|
<text>手机号:</text>{{item.userName}}
|
|
- <button type="default" class="phone-green-btn bz-tel-btn">打电话</button>
|
|
|
|
|
|
+ <button type="default" class="phone-green-btn bz-tel-btn" @click.stop="telCallBtn(item.userName)">打电话</button>
|
|
</view>
|
|
</view>
|
|
<view class="content-text-row"><text>证件号:</text>{{item.idcard}}</view>
|
|
<view class="content-text-row"><text>证件号:</text>{{item.idcard}}</view>
|
|
<view class="jg-zy-box">
|
|
<view class="jg-zy-box">
|
|
@@ -105,13 +105,14 @@
|
|
}
|
|
}
|
|
|
|
|
|
function goBzDetail(item) {
|
|
function goBzDetail(item) {
|
|
- // console.log('item',item);
|
|
|
|
|
|
+ let pageInfo = {
|
|
|
|
+ status:'edit',
|
|
|
|
+ id:'',
|
|
|
|
+ userId:item.userId
|
|
|
|
+ }
|
|
uni.redirectTo({
|
|
uni.redirectTo({
|
|
- url: `/pages/admin/Jiazheng/jiazhengUserInfo`
|
|
|
|
|
|
+ url: `/pages/admin/Jiazheng/jiazhengUserInfo?pageInfo=`+JSON.stringify(pageInfo)
|
|
})
|
|
})
|
|
- /* uni.navigateTo({
|
|
|
|
- url: `/pages/admin/tongzhi/details?noticeId=${item.noticeId}`
|
|
|
|
- }) */
|
|
|
|
}
|
|
}
|
|
|
|
|
|
function onRefresh() {
|
|
function onRefresh() {
|
|
@@ -221,6 +222,12 @@
|
|
data.realName='';
|
|
data.realName='';
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ function telCallBtn(data){
|
|
|
|
+ uni.makePhoneCall({
|
|
|
|
+ phoneNumber: data //仅为示例
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
onLoad((options) => {
|
|
onLoad((options) => {
|
|
data.from = options.from;
|
|
data.from = options.from;
|
|
})
|
|
})
|