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