linwenxin пре 4 месеци
родитељ
комит
723c46bc9b

+ 1 - 1
src/packageMaterial/pages/newSale/pay.vue

@@ -178,7 +178,7 @@ export default {
         .catch(res => {
           // 等待支付
           var [USERPAYING, orderId] = res.message.split('|')
-          if (USERPAYING === 'USERPAYING' && !!orderId) {
+          if (~USERPAYING.indexOf('USERPAYING') && !!orderId) {
             this.orderId = orderId
             if (this.state == 0) {
               this.state = 1

+ 1 - 1
src/packageMaterial/pages/sale/pay.vue

@@ -179,7 +179,7 @@ export default {
         .catch(res => {
           // 等待支付
           var [USERPAYING, orderId] = res.message.split('|')
-          if (USERPAYING === 'USERPAYING' && !!orderId) {
+          if (~USERPAYING.indexOf('USERPAYING') && !!orderId) {
             this.orderId = orderId
             if (this.state == 0) {
               this.state = 1

+ 1 - 1
src/packageWorkorder/pages/orderDetail.vue

@@ -871,7 +871,7 @@ export default {
         .catch(res => {
           // 等待支付
           var [USERPAYING, orderId] = res.message.split('|')
-          if (USERPAYING === 'USERPAYING' && !!orderId) {
+          if (~USERPAYING.indexOf('USERPAYING') && !!orderId) {
             this.orderId_zf = orderId
             if (this.state == 0) {
               this.state = 1