Files
hht-tongbo-two/pages/SecondPhase/slitting/SlittingCutting2.vue

154 lines
3.6 KiB
Vue
Raw Normal View History

<template>
<view class="zd_container">
<!-- <nav-bar title="分切下料2"></nav-bar> -->
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label">区域</view>
<view class="filter_input_wraper">
<uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select>
</view>
</view>
<view class="filter_item">
<view class="filter_label">设备</view>
<view class="filter_input_wraper">
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">子卷号</span>
</view>
<view class="filter_input_wraper mgr20">
<search-box
v-model="val1"
/>
</view>
<button class="zd-col-4 btn-submit btn-success" @tap="handleAdd">添加</button>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th width="78%">子卷号</th>
<th width="22%">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<td>{{e}}</td>
<td><button class="btn-submit btn-success" @tap="handleDelete(i)">删除</button></td>
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="zd-row submitbar">
<button class="zd-col-6 btn-submit btn-default" @tap="clearUp">清空</button>
<button class="zd-col-15 btn-submit btn-success" :class="{'btn-info': !index || !dataList.length}" :disabled="disabled" @tap="_downRolls2">确认</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryProductArea} from '@/utils/getData2.js'
import {slitterDevices, downRolls2} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
options: [],
index: '',
options2: [],
index2: '',
val1: '',
dataList: [],
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._queryProductArea()
},
methods: {
selectChange2(e) {
this.index2 = e
if (e) {
this._slitterDevices(e)
} else {
this.index = ''
}
},
/** 生产区域下拉框查询 */
async _queryProductArea () {
let res = await queryProductArea()
this.options2 = [...res.data]
},
async _slitterDevices (e) {
let res = await slitterDevices(e)
this.options = [...res]
},
selectChange (e) {
this.index = e
},
handleAdd () {
if (!this.val1.trim()) {
return
}
const index = this.dataList.findIndex(item => item === this.val1)
if (index !== -1) {
this.dataList.splice(index, 1)
}
this.dataList.push(this.val1)
this.val1 = ''
},
handleDelete (index) {
this.dataList.splice(index, 1)
},
async _downRolls2 () {
this.disabled = true
if (!this.index || !this.dataList.length) {
this.disabled = false
return
}
try {
let res = await downRolls2(this.index, this.dataList)
if (res) {
uni.showToast({
title: res.message,
icon: 'none'
})
this.dataList = []
}
} catch (e) {
console.log(e)
}
},
clearUp () {
this.index = ''
this.index2 = ''
this.options = []
this.val1 = ''
this.dataList = []
}
}
}
</script>
<style scoped>
.slide_new table {
table-layout: auto;
}
</style>