|
@@ -3,13 +3,13 @@
|
|
|
<view class="tit">应收对账单</view>
|
|
|
<view class="con">
|
|
|
<u-cell-group :border="false">
|
|
|
- <u-cell-item :title="item.paramName" v-for="(item, i) in systemList" :key="item.id">
|
|
|
+ <u-cell-item :title="item.paramName" v-for="(item, i) in systemList" :key="item.id" @click="openModal(item,i)">
|
|
|
<u-input
|
|
|
v-show="item.remarks != 'FLAG'"
|
|
|
slot="right-icon"
|
|
|
v-model="item.value"
|
|
|
- @click="openModal(item,i)"
|
|
|
disabled
|
|
|
+ @click="openModal(item,i)"
|
|
|
placeholder="请选择"
|
|
|
placeholder-style="text-align:right"
|
|
|
:custom-style="inputStyle"
|
|
@@ -80,12 +80,11 @@ export default {
|
|
|
activeColor: this.$config('primaryColor')
|
|
|
};
|
|
|
},
|
|
|
- onLoad() {
|
|
|
+ onShow() {
|
|
|
this.getData();
|
|
|
},
|
|
|
methods: {
|
|
|
getData() {
|
|
|
-
|
|
|
queryVerifySalesParams({}).then(res => {
|
|
|
res.data.forEach(item=>{
|
|
|
if(item.valueShow && item.valueShow.indexOf(",")!=-1){
|