change
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<view class="filter_item">
|
||||
<view class="filter_label">起始点位</view>
|
||||
<view class="filter_input_wraper">
|
||||
<input type="text" class="filter_input" v-model="val1" disabled>
|
||||
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item">
|
||||
@@ -35,7 +35,7 @@
|
||||
</view>
|
||||
<view class="zd-row submit-bar_new">
|
||||
<button class="zd-col-7 submit-button_c" @tap="toClear">清空</button>
|
||||
<button class="zd-col-15 submit-button_new" :class="{'btn-disabled': !val1 || !val2 || !val3 || !val4}" :disabled="disabled" @tap="_yclrk">确认</button>
|
||||
<button class="zd-col-15 submit-button_new" :class="{'btn-disabled': !index1 || !val2 || !val3 || !val4}" :disabled="disabled" @tap="_yclrk">确认</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
@@ -53,7 +53,8 @@
|
||||
return {
|
||||
dataList: [],
|
||||
disabled: false,
|
||||
val1: '',
|
||||
options1: [],
|
||||
index1: '',
|
||||
val2: '',
|
||||
val3: '',
|
||||
val4: ''
|
||||
@@ -63,25 +64,32 @@
|
||||
this._pointSearch('SSX')
|
||||
},
|
||||
methods: {
|
||||
/** 点位查询 */
|
||||
selectChange1 (e) {
|
||||
this.index1 = e
|
||||
},
|
||||
/** 点位查询 下拉框显示 */
|
||||
async _pointSearch (a) {
|
||||
let res = await pointSearch(a)
|
||||
this.val1 = res[0].point_code
|
||||
this.options1 = [...res]
|
||||
this.options1.map(el => {
|
||||
this.$set(el, 'value', el.point_code)
|
||||
this.$set(el, 'text', el.point_name)
|
||||
})
|
||||
},
|
||||
toClear () {
|
||||
this.val1 = ''
|
||||
this.index1 = ''
|
||||
this.val2 = ''
|
||||
this.val3 = ''
|
||||
this.val4 = ''
|
||||
},
|
||||
async _yclrk () {
|
||||
this.disabled = true
|
||||
if (!this.val1 || !this.val2 || !this.val3 || !this.val4) {
|
||||
if (!this.index1 || !this.val2 || !this.val3 || !this.val4) {
|
||||
this.disabled = false
|
||||
return
|
||||
}
|
||||
try {
|
||||
let res = await yclrk(this.val1, this.val2, this.val3, this.val4)
|
||||
let res = await yclrk(this.index1, this.val2, this.val3, this.val4)
|
||||
this.disabled = false
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
|
||||
Reference in New Issue
Block a user