|
@@ -129,6 +129,8 @@ export default {
|
129
|
129
|
loading: false,
|
130
|
130
|
showErr: false,
|
131
|
131
|
errStr: "",
|
|
132
|
+ deviceName:'',
|
|
133
|
+ deviceInfo:''
|
132
|
134
|
};
|
133
|
135
|
},
|
134
|
136
|
filters: {
|
|
@@ -151,7 +153,15 @@ export default {
|
151
|
153
|
return obj[v] || "";
|
152
|
154
|
},
|
153
|
155
|
},
|
154
|
|
- onLoad() {},
|
|
156
|
+ onLoad() {
|
|
157
|
+ let self = this;
|
|
158
|
+ uni.getSystemInfo({
|
|
159
|
+ success: function (res) {
|
|
160
|
+ self.deviceName = res.brand;
|
|
161
|
+ self.deviceInfo = res.model;
|
|
162
|
+ },
|
|
163
|
+ });
|
|
164
|
+ },
|
155
|
165
|
async onShow() {
|
156
|
166
|
this.getWithdrawalInfo();
|
157
|
167
|
},
|
|
@@ -198,6 +208,8 @@ export default {
|
198
|
208
|
let data = {
|
199
|
209
|
amount: this.formVal * 100,
|
200
|
210
|
// remark: value,
|
|
211
|
+ deviceInfo:this.deviceInfo,
|
|
212
|
+ deviceName:this.deviceName
|
201
|
213
|
};
|
202
|
214
|
this.api
|
203
|
215
|
.post("/User/Withdrawal", data, { pass: true })
|