apply-clients 3.3.110-7 → 3.3.110-8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -232,19 +232,22 @@ export default {
|
|
|
232
232
|
// filiale: this.config[Vue.user.number]
|
|
233
233
|
// }
|
|
234
234
|
// 查询订单状态
|
|
235
|
+
|
|
235
236
|
let http = new HttpResetClass()
|
|
236
237
|
let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/tel_singleTable_OrderBy`, {
|
|
237
238
|
data: {
|
|
238
239
|
items: "id",
|
|
239
240
|
tablename: "t_weixinreturnxml",
|
|
240
|
-
condition: ` f_out_trade_no = '${this.order.
|
|
241
|
+
condition: ` f_out_trade_no = '${this.order.f_out_trade_no}' and f_bill_state = 1 `,
|
|
241
242
|
orderitem: "id"
|
|
242
243
|
}
|
|
243
244
|
}, {
|
|
244
245
|
resolveMsg: null,
|
|
245
246
|
rejectMsg: '订单查询失败!!!'
|
|
246
247
|
})
|
|
247
|
-
|
|
248
|
+
console.log('8888888888')
|
|
249
|
+
console.log(this.order.f_out_trade_no)
|
|
250
|
+
console.log(JSON.stringify(res))
|
|
248
251
|
// 支付成功
|
|
249
252
|
if (res.data.length > 0) {
|
|
250
253
|
this.$showMessage('支付成功!!!')
|