You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.9 KiB
84 lines
1.9 KiB
<script>
|
|
export default {
|
|
globalData: {
|
|
// url: 'http://192.168.3.4:9301/crest',
|
|
// imgUrl: 'https://192.168.3.4:9301/filesystem/',
|
|
//正式
|
|
// url: 'https://pay.dctpay.com/crest',
|
|
// imgUrl: 'https://gratia-pay.obs.cn-southwest-2.myhuaweicloud.com',
|
|
//测试
|
|
url: 'https://gratia-pay.dctpay.com/crest',
|
|
imgUrl: 'https://gratia-pay-test.obs.cn-east-3.myhuaweicloud.com',
|
|
userInfo: "",
|
|
openId: '',
|
|
h5code: '',
|
|
token: '',
|
|
//行业id
|
|
businessid: '',
|
|
//行业名称
|
|
businessname: '',
|
|
//mccid
|
|
mccid: '',
|
|
//mcc名称
|
|
mccname: '',
|
|
//数据字典类型数据
|
|
Dictionaries: '',
|
|
//开户支行名称
|
|
depositaryBank: '',
|
|
//开户行号
|
|
branchBankNo: '',
|
|
//清算行号
|
|
clearNo: '',
|
|
//开户行地区
|
|
bankareaCode: '',
|
|
//接收方编号
|
|
receiverNo: '',
|
|
//接收方名称
|
|
receiverName: '',
|
|
//门店地址信息
|
|
storeAddress: ''
|
|
},
|
|
onLaunch: function() {
|
|
// uni.onPushMessage((res) => {
|
|
// console.log("收到推送消息:", res) //监听推送消息
|
|
// })
|
|
let that = this;
|
|
uni.getStorage({
|
|
key: 'payuser',
|
|
success: (res) => {
|
|
that.globalData.userInfo = res.data;
|
|
uni.getStorage({
|
|
key: "paytoken",
|
|
success: (res) => {
|
|
that.globalData.token = res.data;
|
|
}
|
|
})
|
|
|
|
}
|
|
});
|
|
|
|
const res = uni.getSystemInfoSync();
|
|
uni.setStorageSync('platform', res.platform);
|
|
plus.runtime.getProperty(plus.runtime.appid, function(inf) {
|
|
uni.setStorageSync('version', inf.versionCode);
|
|
});
|
|
let uuid = plus.device.uuid;
|
|
|
|
},
|
|
onShow: function() {},
|
|
onHide: function() {}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/*每个页面公共css */
|
|
@import "/static/iconfont/font.scss";
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
width: 0 !important;
|
|
height: 0 !important;
|
|
-webkit-appearance: none;
|
|
background: transparent;
|
|
}
|
|
</style> |