This commit is contained in:
parent
148e9b7fd8
commit
b8b9e24eef
|
@ -305,7 +305,7 @@
|
||||||
<u-button
|
<u-button
|
||||||
v-if="order.status == 6"
|
v-if="order.status == 6"
|
||||||
shape="circle" :plain="true"
|
shape="circle" :plain="true"
|
||||||
@click="goNav('/my/wallet/index?ordersId='+order.ordersId+'&artificerId='+order.artificerId)"
|
@click="goNav('/my/wallet/index?artificerId='+order.artificerId)"
|
||||||
class="btns">
|
class="btns">
|
||||||
充值
|
充值
|
||||||
</u-button>
|
</u-button>
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<view class="padding-lr padding-bottom">
|
<view class="padding-lr padding-bottom">
|
||||||
<view class="chongzhi">
|
<view class="chongzhi">
|
||||||
<span class="yu-e">余额充值</span>
|
<span class="yu-e">余额充值</span>
|
||||||
<span v-if="artificerId.artificerId=='my'||artificerId.artificerId==undefined" @click="goNavtherapist('/pages/therapist/therapistDingdan')">为TA充值</span>
|
<span v-if="artificerIdMy==true" @click="goNavtherapist('/pages/therapist/therapistDingdan')">为TA充值</span>
|
||||||
</view>
|
</view>
|
||||||
<view class="flex justify-between flex-wrap" v-if="wallet.length > 0">
|
<view class="flex justify-between flex-wrap" v-if="wallet.length > 0">
|
||||||
<view v-for="(item,index) in wallet" :key='index' class="padding-sm radius"
|
<view v-for="(item,index) in wallet" :key='index' class="padding-sm radius"
|
||||||
|
@ -338,12 +338,19 @@
|
||||||
nameTxt:'',
|
nameTxt:'',
|
||||||
couponId:'',
|
couponId:'',
|
||||||
artificerId:'',
|
artificerId:'',
|
||||||
artificerIdMy:''
|
artificerIdMy:false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(d) {
|
onLoad(d) {
|
||||||
this.artificerId=d;
|
if(d.artificerId){
|
||||||
this.artificerIdMy=this.$queue.getData('getJishi')
|
this.artificerId=d.artificerId;
|
||||||
|
}
|
||||||
|
if(d.text){
|
||||||
|
this.artificerIdMy=true
|
||||||
|
}else{
|
||||||
|
this.artificerIdMy=false
|
||||||
|
}
|
||||||
|
console.log("artificerId",this.artificerId)
|
||||||
if (d.tabIndex) {
|
if (d.tabIndex) {
|
||||||
this.tabIndex = d.tabIndex;
|
this.tabIndex = d.tabIndex;
|
||||||
this.title_color = 2;
|
this.title_color = 2;
|
||||||
|
@ -681,7 +688,7 @@
|
||||||
payClassifyId: this.thisSelect.payClassifyId,
|
payClassifyId: this.thisSelect.payClassifyId,
|
||||||
type: 2,
|
type: 2,
|
||||||
userId: uni.getStorageSync('userId'),
|
userId: uni.getStorageSync('userId'),
|
||||||
artificerId:this.artificerId.artificerId==undefined?this.artificerIdMy.artificerId:this.artificerId.artificerId
|
artificerId:this.artificerId==''?this.artificerIdMy.artificerId:this.artificerId
|
||||||
}
|
}
|
||||||
this.$Request.post('/app/aliPay/payOrderMoney', data).then(
|
this.$Request.post('/app/aliPay/payOrderMoney', data).then(
|
||||||
res => {
|
res => {
|
||||||
|
|
|
@ -437,7 +437,7 @@
|
||||||
chonghi(link){//我的钱包
|
chonghi(link){//我的钱包
|
||||||
if(link=='充值'){
|
if(link=='充值'){
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url:'/my/wallet/index?artificerId='+'my'
|
url:'/my/wallet/index?text='+'my'
|
||||||
})
|
})
|
||||||
}else{
|
}else{
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
|
|
|
@ -109,7 +109,7 @@
|
||||||
取消订单
|
取消订单
|
||||||
</u-button>
|
</u-button>
|
||||||
<u-button v-if="item.status == 6" :custom-style="customStyle1" class="btns" shape="circle" :plain="true"
|
<u-button v-if="item.status == 6" :custom-style="customStyle1" class="btns" shape="circle" :plain="true"
|
||||||
@click="goNav('/my/wallet/index?ordersId='+item.ordersId+'&artificerId='+item.artificerId)">
|
@click="goNav('/my/wallet/index?artificerId='+item.artificerId)">
|
||||||
充值
|
充值
|
||||||
</u-button>
|
</u-button>
|
||||||
<u-button v-if="item.addNum < item.ordersMassageList[0].massageType.addNum && item.status == 6" :custom-style="customStyle1" class="btns" shape="circle" :plain="true"
|
<u-button v-if="item.addNum < item.ordersMassageList[0].massageType.addNum && item.status == 6" :custom-style="customStyle1" class="btns" shape="circle" :plain="true"
|
||||||
|
|
|
@ -359,7 +359,7 @@ import permision from "@/components/permission.js";
|
||||||
});
|
});
|
||||||
that.getTypeList();
|
that.getTypeList();
|
||||||
uni.getLocation({
|
uni.getLocation({
|
||||||
type: 'wgs84',
|
type: 'gcj02',
|
||||||
geocode: true, //设置该参数为true可直接获取经纬度及城市信息
|
geocode: true, //设置该参数为true可直接获取经纬度及城市信息
|
||||||
highAccuracyExpireTime: 500,
|
highAccuracyExpireTime: 500,
|
||||||
success: function(res) {
|
success: function(res) {
|
||||||
|
@ -417,7 +417,7 @@ import permision from "@/components/permission.js";
|
||||||
that.getTpMy();
|
that.getTpMy();
|
||||||
|
|
||||||
that.token = uni.getStorageSync('token')
|
that.token = uni.getStorageSync('token')
|
||||||
// if (uni.getStorageSync('token')) {
|
if (uni.getStorageSync('token')) {
|
||||||
if (that.latitude && that.longitude) {
|
if (that.latitude && that.longitude) {
|
||||||
that.page = 1
|
that.page = 1
|
||||||
that.getlist()
|
that.getlist()
|
||||||
|
@ -432,14 +432,14 @@ import permision from "@/components/permission.js";
|
||||||
that.longitude = res.longitude
|
that.longitude = res.longitude
|
||||||
that.page = 1
|
that.page = 1
|
||||||
that.getTypeList();
|
that.getTypeList();
|
||||||
// that.getlist()
|
that.getlist()
|
||||||
},
|
},
|
||||||
fail: function() {
|
fail: function() {
|
||||||
console.log('获取地址失败2')
|
console.log('获取地址失败2')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// }
|
}
|
||||||
that.myId = uni.getStorageSync('userId')
|
that.myId = uni.getStorageSync('userId')
|
||||||
// console.log(that.showModal, '------', that.myId)
|
// console.log(that.showModal, '------', that.myId)
|
||||||
// #ifdef MP-WEIXIN
|
// #ifdef MP-WEIXIN
|
||||||
|
@ -497,7 +497,7 @@ import permision from "@/components/permission.js";
|
||||||
}else if(this.dataIndex=='充值'){
|
}else if(this.dataIndex=='充值'){
|
||||||
this.$queue.setData('getJishi',e);
|
this.$queue.setData('getJishi',e);
|
||||||
uni.reLaunch({
|
uni.reLaunch({
|
||||||
url:'/my/wallet/index'
|
url:'/my/wallet/index?artificerId='+e.artificerId+'&text='+'my'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -615,12 +615,7 @@ import permision from "@/components/permission.js";
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getTpMy() {
|
getTpMy() {
|
||||||
var data={
|
this.$Request.getT('/app/message/selectMessageByUserId?page=1&limit=1&state=11').then(res => {
|
||||||
page:'',
|
|
||||||
limit:'',
|
|
||||||
state:''
|
|
||||||
}
|
|
||||||
this.$Request.getT('/app/message/selectMessageByUserId',data).then(res => {
|
|
||||||
if (res.code == 0) {
|
if (res.code == 0) {
|
||||||
if (res.data && res.data.list && res.data.list.length > 0) {
|
if (res.data && res.data.list && res.data.list.length > 0) {
|
||||||
this.tpSel = 1;
|
this.tpSel = 1;
|
||||||
|
|
|
@ -475,6 +475,33 @@
|
||||||
// });
|
// });
|
||||||
let that = this;
|
let that = this;
|
||||||
that.massageTypeId = e.massageTypeId;
|
that.massageTypeId = e.massageTypeId;
|
||||||
|
uni.getLocation({
|
||||||
|
type: 'gcj02',
|
||||||
|
geocode: true, //设置该参数为true可直接获取经纬度及城市信息
|
||||||
|
highAccuracyExpireTime: 500,
|
||||||
|
success: function(res) {
|
||||||
|
console.log(res, '地理位置-----------------------》')
|
||||||
|
that.latitude = res.latitude
|
||||||
|
that.longitude = res.longitude
|
||||||
|
|
||||||
|
uni.setStorageSync('latitude', res.latitude)
|
||||||
|
uni.setStorageSync('longitude', res.longitude)
|
||||||
|
if (that.amap) {
|
||||||
|
that.amap.setCenter(new AMap.LngLat(res.latitude, res.longitude));
|
||||||
|
}
|
||||||
|
if (that.infoWindow) {
|
||||||
|
that.infoWindow.setPosition(new TMap.LatLng(res.latitude, res.longitude));
|
||||||
|
}
|
||||||
|
that.page = 1
|
||||||
|
that.getTypeList();
|
||||||
|
},
|
||||||
|
fail: function(e) {
|
||||||
|
console.log('获取地址失败1', e)
|
||||||
|
// #ifdef APP-PLUS
|
||||||
|
that.checkPermission();
|
||||||
|
// #endif
|
||||||
|
}
|
||||||
|
})
|
||||||
// console.log('-------------1---------------');
|
// console.log('-------------1---------------');
|
||||||
// that.getLocation();//低精度,快就完事了
|
// that.getLocation();//低精度,快就完事了
|
||||||
// that.getLocation(true);//高精度,慢慢查询
|
// that.getLocation(true);//高精度,慢慢查询
|
||||||
|
@ -531,33 +558,31 @@
|
||||||
if (e.classifyId) {
|
if (e.classifyId) {
|
||||||
that.classifyId = e.classifyId
|
that.classifyId = e.classifyId
|
||||||
}
|
}
|
||||||
uni.getLocation({
|
|
||||||
type: 'gcj02',
|
|
||||||
geocode: true, //设置该参数为true可直接获取经纬度及城市信息
|
|
||||||
highAccuracyExpireTime: 500,
|
|
||||||
success: function(res) {
|
|
||||||
console.log( '地理位置',res)
|
|
||||||
|
|
||||||
that.latitude = res.latitude
|
if (uni.getStorageSync('token')) {
|
||||||
that.longitude = res.longitude
|
if (that.latitude && that.longitude) {
|
||||||
uni.setStorageSync('latitude', res.latitude)
|
|
||||||
uni.setStorageSync('longitude', res.longitude)
|
|
||||||
if (that.cmap) {
|
|
||||||
that.cmap.setCenter(new TMap.LatLng(res.latitude, res.longitude));
|
|
||||||
}
|
|
||||||
if (that.infoWindow) {
|
|
||||||
that.infoWindow.setPosition(new TMap.LatLng(res.latitude, res.longitude));
|
|
||||||
}
|
|
||||||
if(that.amap){
|
|
||||||
|
|
||||||
}
|
|
||||||
that.page = 1
|
that.page = 1
|
||||||
that.getlist()
|
that.getlist()
|
||||||
|
} else {
|
||||||
|
uni.getLocation({
|
||||||
|
type: 'gcj02',
|
||||||
|
highAccuracyExpireTime: 500,
|
||||||
|
geocode: true, //设置该参数为true可直接获取经纬度及城市信息
|
||||||
|
success: function(res) {
|
||||||
|
console.log(res, '地理位置')
|
||||||
|
that.latitude = res.latitude
|
||||||
|
that.longitude = res.longitude
|
||||||
|
that.page = 1
|
||||||
|
// that.getTypeList();
|
||||||
|
that.getlist()
|
||||||
},
|
},
|
||||||
fail: function(e) {
|
fail: function() {
|
||||||
console.log('获取地址失败', e)
|
console.log('获取地址失败2')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// 获取邀请码保存到本地
|
// 获取邀请码保存到本地
|
||||||
if (e.invitation) {
|
if (e.invitation) {
|
||||||
|
|
Loading…
Reference in New Issue