修改
This commit is contained in:
@@ -32,12 +32,41 @@
|
||||
<uni-data-select v-model="index2" :placeholder="$t('uni.dataSelect.placeholder')" :localdata="options2" @change="selectChange2"></uni-data-select>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd-row">
|
||||
<view class="zd-col-19">
|
||||
</view>
|
||||
<view class="zd-col-4">
|
||||
<button class="mini-btn" size="mini" style="display: block;" type="primary" @tap="handleAdd02">{{$t('button.add')}}</button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd_wrapper grid-wraper">
|
||||
<view class="slide_new slide">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="30%">{{$t('filter.pallet-number')}}</th>
|
||||
<th width="30%">{{$t('filter.tubecode')}}</th>
|
||||
<th width="20%">{{$t('filter.rownum')}}</th>
|
||||
<th width="20%">{{$t('filter.colnum')}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(e, i) in dataList" :key="i">
|
||||
<td>{{e.vehicle_code}}</td>
|
||||
<td>{{e.paper_code}}</td>
|
||||
<td>{{e.row_num}}</td>
|
||||
<td>{{e.col_num}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd-row submitbar">
|
||||
<button class="zd-col-5 btn-submit btn-default" @tap="clearUp">{{$t('button.clear')}}</button>
|
||||
<button class="zd-col-8 btn-submit btn-success" :class="{'btn-info': !val1 || !index1 || !index2 || !val3}" :disabled="disabled" @tap="handleConfirm('1')">{{$t('button.bind')}}</button>
|
||||
<button class="zd-col-8 btn-submit btn-success" :class="{'btn-info': !val1 || !index1 || !index2 || !val3}" :disabled="disabled" @tap="handleConfirm('2')">{{$t('button.cleanup')}}</button>
|
||||
<button class="zd-col-8 btn-submit btn-success" :class="{'btn-info': !dataList.length}" :disabled="disabled" @tap="handleConfirm('1')">{{$t('button.bind')}}</button>
|
||||
<button class="zd-col-8 btn-submit btn-success" :class="{'btn-info': !dataList.length}" :disabled="disabled" @tap="handleConfirm('2')">{{$t('button.cleanup')}}</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
@@ -62,24 +91,14 @@
|
||||
index1: '',
|
||||
options2: [{value: '1', text: '1'}, {value: '2', text: '2'}, {value: '3', text: '3'}, {value: '4', text: '4'}, {value: '5', text: '5'}],
|
||||
index2: '',
|
||||
options: [],
|
||||
newoptions: [],
|
||||
dataList: [],
|
||||
disabled: false
|
||||
};
|
||||
},
|
||||
onLoad (options) {
|
||||
this.title = options.title
|
||||
},
|
||||
created () {
|
||||
this._queryPaperMaterial()
|
||||
},
|
||||
methods: {
|
||||
/**查询物料下拉框*/
|
||||
async _queryPaperMaterial () {
|
||||
let res = await queryPaperMaterial()
|
||||
this.options = [...res.rows]
|
||||
this.newoptions = [...res.rows]
|
||||
},
|
||||
/** 选择器 */
|
||||
selectChange1 (e) {
|
||||
this.index1 = e
|
||||
@@ -87,11 +106,20 @@
|
||||
selectChange2 (e) {
|
||||
this.index2 = e
|
||||
},
|
||||
showSelector () {
|
||||
this.newoptions = this.options
|
||||
handleAdd02 () {
|
||||
if (!this.val1 || !this.index1 || !this.index2 || !this.val3) {
|
||||
return
|
||||
}
|
||||
if (this.dataList.length > 0 && (this.index1 !== this.dataList[0].row_num)) {
|
||||
return
|
||||
}
|
||||
if (this.dataList.length > 4) {
|
||||
return
|
||||
}
|
||||
this.dataList.push({vehicle_code: this.val1, row_num: this.index1, col_num: this.index2, paper_code: this.val3})
|
||||
},
|
||||
async handleConfirm(type) {
|
||||
if (!this.val1 || !this.index1 || !this.index2 || !this.val3) {
|
||||
if (!this.dataList.length) {
|
||||
return
|
||||
}
|
||||
const isConfirmed = await confirmAction("确认操作", "确定要执行此操作吗?")
|
||||
@@ -102,7 +130,7 @@
|
||||
async _operateIvt (type) {
|
||||
this.disabled = true
|
||||
try {
|
||||
let res = await operateIvt(type, this.val1, this.index1, this.index2, this.val3)
|
||||
let res = await operateIvt(type, this.dataList)
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
icon: 'none'
|
||||
@@ -118,6 +146,7 @@
|
||||
this.val3 = ''
|
||||
this.index1 = ''
|
||||
this.index2 = ''
|
||||
this.dataList = []
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user