kevin_zhangl 3 лет назад
Родитель
Сommit
951986a23b

+ 1 - 1
frontendEle/src/components/FilteTransfer.vue

@@ -112,7 +112,7 @@ export default {
         },
         {
           type: 'cash',
-          label: 'Balance'
+          label: 'Ecoin'
         },
       ],
     }

+ 2 - 2
frontendEle/src/views/shop/order.vue

@@ -345,7 +345,7 @@
                 }
 
                 // 提示信息
-                let tips = 'Balance' //余额
+                let tips = 'Ecoin' //余额
                 if (this.payType !== 'cash' && this.payType !== 'pay_stack') {
                     let payObj = this.payList.find((item) => {
                         return item.label === this.payType
@@ -355,7 +355,7 @@
 
                 // 余额是否充足
                 if ((amountBalance > 0) && (this.payType !== 'pay_stack') && ((amountBalance - this.cashSum) < 0)) {
-                    let tips = this.payList[this.payType] ? this.payList[this.payType].label : 'Balance'
+                    let tips = this.payList[this.payType] ? this.payList[this.payType].label : 'Ecoin'
                     this.$message({
                         message: tips + ' insufficient, unable to buy products', // 不足,无法购买商品
                         type: 'error'