mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-06-12 10:00:57 +08:00
优化diamante
This commit is contained in:
parent
129647da64
commit
53eb18ce18
@ -47,6 +47,10 @@
|
|||||||
<button @click="onPayFee" :disabled="amount == 0"
|
<button @click="onPayFee" :disabled="amount == 0"
|
||||||
class="cu-btn bg-green shadow-blur round lg">确认缴费</button>
|
class="cu-btn bg-green shadow-blur round lg">确认缴费</button>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="cu-bar btn-group" style="margin-top: 30px;">
|
||||||
|
<button @click="onReQuery()"
|
||||||
|
class="cu-btn bg-grey shadow-blur round lg">重新查询</button>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
</view>
|
</view>
|
||||||
@ -149,6 +153,11 @@
|
|||||||
});
|
});
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
onReQuery:function(){
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/tempParkingFee/tempParkingFee?paId=' + _that.paId + "&appId=" + _that.appId + "&openId=" + this.openId
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@ -73,7 +73,9 @@
|
|||||||
import {
|
import {
|
||||||
refreshUserOpenId
|
refreshUserOpenId
|
||||||
} from '../../api/user/userApi.js'
|
} from '../../api/user/userApi.js'
|
||||||
import {isWxOrAli} from '../../utils/EnvUtil.js'
|
import {
|
||||||
|
isWxOrAli
|
||||||
|
} from '../../utils/EnvUtil.js'
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -106,6 +108,14 @@
|
|||||||
this._refreshWechatOpenId();
|
this._refreshWechatOpenId();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
this.carNum = options.carNum;
|
||||||
|
if (isNotNull(this.carNum)) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/tempCarFee/tempCarFee?paId=' + this.paId + '&carNum=' + this
|
||||||
|
.carNum + "&appId=" + this.appId + "&openId=" + this.openId
|
||||||
|
})
|
||||||
|
return;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
showCarNumberKeyboard() {
|
showCarNumberKeyboard() {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user