Browse Source

名称修改

shish 3 years ago
parent
commit
1e9998ab6c

+ 2 - 2
ghsApp/src/admin/billing/affirm.vue

@@ -114,7 +114,7 @@
 
           <tui-list-cell class="line-cell" :hover="false" :arrow="false">
             <view class="tui-title">结账方式</view>
-            <button @click="form.hasPay = 2" class="admin-button-com middle" :class="form.hasPay == 2 ? 'blue' : 'default'">欠款</button>
+            <button @click="form.hasPay = 2" class="admin-button-com middle" :class="form.hasPay == 2 ? 'blue' : 'default'">赊账</button>
             <button @click="form.hasPay = 0" class="admin-button-com middle" :class="form.hasPay == 0 ? 'blue' : 'default'">扫码付</button>
             <button @tap="form.hasPay = 1" class="admin-button-com middle" :class="form.hasPay == 1 ? 'blue' : 'default'">线下</button>
           </tui-list-cell>
@@ -455,7 +455,7 @@ export default {
         }else if(this.form.hasPay == 1){
           name = '确认已付款?'
         }else if(this.form.hasPay == 2){
-          name = '确认记欠款?'
+          name = '确认赊账?'
         }else{
           name = '确认提交'
         }

+ 3 - 3
ghsApp/src/admin/billing/toPay.vue

@@ -20,7 +20,7 @@
               <button class="button-com default" @click="checkResult()">查询支付结果</button>
           </view>
           <view style="margin-top:35upx;">
-              <button style="width:25vh;" @click="changePayWay(2)" class="admin-button-com big default">记欠款</button>
+              <button style="width:25vh;" @click="changePayWay(2)" class="admin-button-com big default">赊账</button>
           </view>
         </view>
         <view v-else>
@@ -29,7 +29,7 @@
           <view style="margin-bottom:20upx;">
               <button @click="changePayWay(0)" class="admin-button-com big" :class="payWay == 0 ? 'blue' : 'default'">微信</button>
               <button @click="changePayWay(1)" style="margin-left:40upx;" class="admin-button-com big" :class="payWay == 1 ? 'blue' : 'default'">支付宝</button>
-              <button @click="changePayWay(2)" style="margin-left:40upx;" class="admin-button-com big" :class="payWay == 2 ? 'blue' : 'default'">记欠款</button>
+              <button @click="changePayWay(2)" style="margin-left:40upx;" class="admin-button-com big" :class="payWay == 2 ? 'blue' : 'default'">赊账</button>
           </view>
           <image mode="widthFix" style="width:350upx;margin:0 auto;" :src="payQrCodeUrl"></image>
           </view>
@@ -112,7 +112,7 @@ export default {
       this.payWay = payWay
       let that = this
       if(payWay == 2){
-        that.$util.confirmModal({content:'确认欠款?'},() => {
+        that.$util.confirmModal({content:'确认赊账?'},() => {
             clearInterval(this.INT)
             debtPay({id:this.orderId}).then(res=>{
               if(res.code == 1){

+ 1 - 1
hdApp/src/admin/order/workOrder.vue

@@ -35,7 +35,7 @@
           <tui-list-cell class="line-cell" :hover="false" :arrow="false" v-if="form.fromType == 3">
             <view class="tui-title">收款方式</view>
             <button @tap="form.hasPay = 1" class="admin-button-com middle" :class="form.hasPay == 1 ? 'blue' : 'default'">线下</button>
-            <button @tap="form.hasPay = 2" class="admin-button-com middle" :class="form.hasPay == 2 ? 'blue' : 'default'">记欠款</button>
+            <button @tap="form.hasPay = 2" class="admin-button-com middle" :class="form.hasPay == 2 ? 'blue' : 'default'">赊账</button>
           </tui-list-cell>
 
           <tui-list-cell class="line-cell" :arrow="true" v-if="form.hasPay == 1 && form.fromType == 3">

+ 2 - 2
hdApp/src/pagesPurchase/wechatPay.vue

@@ -26,7 +26,7 @@
             <view v-else>
               <button class="button-com pay-wx" :class="[remainPayTime >0 ? 'green':'default']" :disabled="remainPayTime >0 ? false : true" @click="wxPayFn">微信支付</button>
             </view>
-            <button class="button-com pay-wx" :class="[remainPayTime >0 ? 'green':'default']" :disabled="remainPayTime >0 ? false : true" @click="debtPay" v-if="hasDebtPay === '1'">记欠款</button>
+            <button class="button-com pay-wx" :class="[remainPayTime >0 ? 'green':'default']" :disabled="remainPayTime >0 ? false : true" @click="debtPay" v-if="hasDebtPay === '1'">赊账</button>
           </div>
         </block>
       </div>
@@ -109,7 +109,7 @@ export default {
       let that = this
       uni.showModal({
 				title: '提示',
-				content: '确认记欠款?',
+				content: '确认赊账?',
 				success: function (res) {
 					if (res.confirm) {
 

+ 1 - 1
hdPad/src/pages/home/components/settlePop.vue

@@ -124,7 +124,7 @@ export default {
                 cash:0
             },
             proceeds: '0',
-            hasPayList:[ { name:'扫码', id:0, },{ name:'欠款', id:2, },{ name:'线下', id:1, }],
+            hasPayList:[ { name:'扫码', id:0, },{ name:'赊账', id:2, },{ name:'线下', id:1, }],
             payWayList:[ { name:'线下微信', id:0 }, { name:'线下支付宝', id:1 },{name:'现金',id:4},{name:'银行卡',id:5} ],
             currentInputType:'proceeds',
             totalMoney: 0,