| | |
| | | shape="circle" |
| | | plain></u-button></view> |
| | | </view> |
| | | <view class="loginout-we"> |
| | | <view class="loginout-main"><u-button text="联系我们" |
| | | type="primary" |
| | | shape="circle" |
| | | plain |
| | | @click="contactUs()"></u-button></view> |
| | | </view> |
| | | <!-- 修改弹出框 --> |
| | | <view class="editDriverPopup-container"> |
| | | <u-popup :show="editDriverPopupShow" |
| | |
| | | ...mapMutations(['changeisUploadimg']), |
| | | init() { |
| | | this.getUserEntity(); |
| | | uni.request({ |
| | | url: `${BaseUrl}/admin/dict/page`, |
| | | method: 'GET', |
| | | data: { |
| | | dictType:'phone' |
| | | }, |
| | | header: { |
| | | Authorization: 'Bearer' + ' ' + uni.getStorageSync('token'), |
| | | clientToc: 'Y', |
| | | 'CLIENT_TOC': 'Y', |
| | | }, |
| | | success: res => { |
| | | let dictId=res.data.data?.records[0].id |
| | | uni.request({ |
| | | url: `${BaseUrl}/admin/dict/item/page`, |
| | | method: 'GET', |
| | | data: { |
| | | dictId:dictId |
| | | }, |
| | | header: { |
| | | Authorization: 'Bearer' + ' ' + uni.getStorageSync('token'), |
| | | clientToc: 'Y', |
| | | 'CLIENT_TOC': 'Y', |
| | | }, |
| | | success: res => { |
| | | this.phoneList=res.data.data.records |
| | | }, |
| | | fail: err => { |
| | | } |
| | | }) |
| | | }, |
| | | fail: err => { |
| | | } |
| | | }) |
| | | }, |
| | | getUserEntity() { |
| | | uni.showLoading({ |
| | |
| | | }, |
| | | logoutCancel() { |
| | | this.logoutShow = false; |
| | | }, |
| | | contactUs(){ |
| | | let data=[] |
| | | this.phoneList.map(item=>{ |
| | | item.value.split(',').map(ite=>{ |
| | | data.push(ite) |
| | | }) |
| | | }) |
| | | uni.showActionSheet({ |
| | | itemList: Array.from(new Set(data)), |
| | | success: (res) => { |
| | | uni.makePhoneCall({ |
| | | phoneNumber:Array.from(new Set(data))[res.tapIndex + 1] |
| | | }) |
| | | }, |
| | | fail: (err) => { |
| | | console.log('弹窗取消'); |
| | | } |
| | | }); |
| | | }, |
| | | } |
| | | }; |
| | |
| | | width: 84%; |
| | | } |
| | | } |
| | | |
| | | .loginout-we{ |
| | | width: 100%; |
| | | height: 74rpx; |
| | | @include flex; |
| | | justify-content: center; |
| | | position: relative; |
| | | bottom: vww(-500); |
| | | .loginout-main { |
| | | width: 84%; |
| | | } |
| | | } |
| | | // 表单 |
| | | .personal-information-form { |
| | | margin-top: vww(200); |