Sfoglia il codice sorgente

屏蔽长隆收银系统余额功能

soobin 2 anni fa
parent
commit
3f583881c0
1 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. 5 1
      packageA/pages/user/orderEit.vue

+ 5 - 1
packageA/pages/user/orderEit.vue

@@ -1,7 +1,7 @@
 <template>
 	<view class="home-getOrder">
 		<form class="form" @submit="orderSubmit">
-			<view class="select-input">
+			<view v-if="show" class="select-input">
 				<input class="input" style="display:none;" />
 				<text>账户余额:</text><input class="input" name="altMainBalance" disabled :value="altMainBalance"/>	
 			</view>
@@ -61,6 +61,7 @@
 	export default {
 		data(){
 			return{
+				show: true,
 				order:null,
 				sn:null,
 				clientId:null,
@@ -89,6 +90,9 @@
 			if(order.type==3){
 				this.production = order.personageProportion;
 			}
+			if(order.payPlatform == 3) {
+				this.show = false;
+			}
 			this.sn = order.sn;
 			this.clientId = order.clientId;
 			this.productName = order.productName;