290 lines
8.3 KiB
Vue
290 lines
8.3 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<nav-bar :title="$t('menu.hollow-shaft-sleeve')"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper">
|
|
<view class="filter_item">
|
|
<view class="filter_label">{{$t('filter.area')}}</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="index1" :placeholder="$t('uni.dataSelect.placeholder')" :emptyTips="$t('uni.dataSelect.emptyTips')" :localdata="options1" @change="selectChange1"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">{{$t('filter.device')}}</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<uni-data-select v-model="index2" :placeholder="$t('uni.dataSelect.placeholder')" :emptyTips="$t('uni.dataSelect.emptyTips')" :localdata="options2" @change="selectChange2"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">{{$t('filter.mother-roll')}}</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val4"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">{{$t('filter.point')}}</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val1"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">{{$t('filter.air-shaft')}}</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val2"
|
|
/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{{$t('grid.number')}}</th>
|
|
<th>{{$t('grid.select')}}</th>
|
|
<th>{{$t('grid.sub-roll-number')}}</th>
|
|
<th>{{$t('grid.machine-code')}}</th>
|
|
<th>{{$t('grid.split-group')}}</th>
|
|
<th>{{$t('grid.production-sequence')}}</th>
|
|
<th>{{$t('grid.date-of-manufacture')}}</th>
|
|
<th>{{$t('grid.paper-FRP-tube')}}</th>
|
|
<th>{{$t('grid.paper-tube-material-code')}}</th>
|
|
<th>{{$t('grid.paper-tube-material-description')}}</th>
|
|
<th>{{$t('grid.paper-tube-specifications')}}</th>
|
|
<th>{{$t('grid.FRP-pipe-material-code')}}</th>
|
|
<th>{{$t('grid.FRP-pipe-material-description')}}</th>
|
|
<th>{{$t('grid.FRP-pipe-specifications')}}</th>
|
|
<th>{{$t('grid.order-number')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.checked}">
|
|
<td>{{Number(i) + 1}}</td>
|
|
<td><span class="iconfont icon_unchecked" :class="{'icon_checked': e.checked}" @tap="toCheck(e)"></span></td>
|
|
<td>{{e.container_name}}</td>
|
|
<td>{{e.point_code}}</td>
|
|
<td>{{e.split_group}}</td>
|
|
<td>{{e.manufacture_sort}}</td>
|
|
<td>{{e.manufacture_date}}</td>
|
|
<td>{{e.paper_tube_or_FRP}}</td>
|
|
<td>{{e.paper_tube_material}}</td>
|
|
<td>{{e.paper_tube_description}}</td>
|
|
<td>{{e.paper_tube_model}}</td>
|
|
<td>{{e.FRP_material}}</td>
|
|
<td>{{e.FRP_description}}</td>
|
|
<td>{{e.FRP_model}}</td>
|
|
<td>{{e.mfg_order_name}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
<uni-load-more color="#007AFF" iconType="circle" :status="status" :icon-size="14" :content-text="contentText" v-if="dataList.length > 0"/>
|
|
</view>
|
|
<view class="submit-bar">
|
|
<button class="submit-button" :class="{'btn-disabled': !val1 || !val2}" :disabled="disabled2" @tap="_casingWearConfirm">{{$t('button.through-shaft-confirm')}}</button>
|
|
<button class="submit-button" :class="{'btn-disabled': !val1 || !val2}" :disabled="disabled1" @tap="_casingOutConfirm">{{$t('button.pull-shaft-confirm')}}</button>
|
|
<button class="submit-button" :class="{'btn-disabled': !checkArr.length || !val2}" :disabled="disabled" @tap="_casingConfirm">{{$t('button.overlap-shaft-confirm')}}</button>
|
|
<button class="submit-button" @tap="searchList">{{$t('button.search')}}</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {queryProductArea, queryDeviceByarea, queryMaterialInfo2, casingConfirm, casingOutConfirm, casingWearConfirm} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
val1: '',
|
|
val2: '',
|
|
val4: '',
|
|
options1: [],
|
|
index1: '',
|
|
options2: [],
|
|
index2: '',
|
|
qty: '',
|
|
dataList: [],
|
|
disabled: false,
|
|
checkArr: [],
|
|
reload: false,
|
|
status: 'more',
|
|
contentText: {
|
|
contentdown: this.$t('utils.read-more'),
|
|
contentrefresh: this.$t('utils.loading'),
|
|
contentnomore: this.$t('utils.no-more')
|
|
},
|
|
totalCount: 0,
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
disabled1: false,
|
|
disabled2: false
|
|
};
|
|
},
|
|
created () {
|
|
this._queryProductArea()
|
|
},
|
|
methods: {
|
|
/** 选择器1 */
|
|
selectChange1(e) {
|
|
this.index1 = e
|
|
if (e) {
|
|
this._queryDeviceByarea(e)
|
|
} else {
|
|
this.index2 = ''
|
|
}
|
|
},
|
|
/** 生产区域下拉框查询 */
|
|
async _queryProductArea () {
|
|
let res = await queryProductArea()
|
|
this.options1 = [...res.data]
|
|
},
|
|
/** 选择器2 */
|
|
selectChange2(e) {
|
|
this.index2 = e
|
|
},
|
|
/** 设备下拉框 */
|
|
async _queryDeviceByarea (e) {
|
|
let res = await queryDeviceByarea(e)
|
|
this.options2 = [...res.data]
|
|
},
|
|
searchList () {
|
|
this.dataList = []
|
|
this.pageNum = 1
|
|
this._queryMaterialInfo()
|
|
},
|
|
/** 初始化查询 */
|
|
async _queryMaterialInfo () {
|
|
let res = await queryMaterialInfo2(this.val1, this.index1, this.index2, this.val4, this.pageNum + '', this.pageSize + '')
|
|
res.data.map(el => {
|
|
this.$set(el, 'checked', false)
|
|
})
|
|
this.totalCount = res.size
|
|
if (res.size > 0) {
|
|
const dataMap = res.data
|
|
this.dataList = this.reload ? dataMap : this.dataList.concat(dataMap)
|
|
this.reload = false
|
|
} else {
|
|
this.dataList = []
|
|
}
|
|
if (this.totalCount == this.dataList.length) {
|
|
this.reload = false
|
|
this.status = 'noMore'
|
|
}
|
|
},
|
|
onReachBottom () {
|
|
if (this.totalCount > this.dataList.length) {
|
|
this.status = 'loading'
|
|
setTimeout(() => {
|
|
this.pageNum++
|
|
this._queryMaterialInfo()
|
|
}, 1000)
|
|
} else { //停止加载
|
|
this.status = 'noMore'
|
|
}
|
|
},
|
|
/** 套轴确认 */
|
|
async _casingConfirm () {
|
|
this.disabled = true
|
|
if (!this.checkArr.length || !this.val2) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await casingConfirm(this.checkArr, this.val2, this.val1)
|
|
this.disabled = false
|
|
this.checkArr = []
|
|
this.val1 = ''
|
|
this.val2 = ''
|
|
this.val4 = ''
|
|
this.searchList()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
/** 拔轴确认 */
|
|
async _casingOutConfirm () {
|
|
this.disabled1 = true
|
|
if (!this.val1 || !this.val2) {
|
|
this.disabled1 = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await casingOutConfirm(this.val2, this.val1)
|
|
this.disabled1 = false
|
|
this.checkArr = []
|
|
this.val1 = ''
|
|
this.val2 = ''
|
|
this.val4 = ''
|
|
this.searchList()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled1 = false
|
|
}
|
|
},
|
|
/** 穿轴确认 */
|
|
async _casingWearConfirm () {
|
|
this.disabled2 = true
|
|
if (!this.val1 || !this.val2) {
|
|
this.disabled2 = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await casingWearConfirm(this.val2, this.val1)
|
|
this.disabled2 = false
|
|
this.checkArr = []
|
|
this.val1 = ''
|
|
this.val2 = ''
|
|
this.val4 = ''
|
|
this.searchList()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled2 = false
|
|
}
|
|
},
|
|
toCheck (e) {
|
|
e.checked = !e.checked
|
|
this.checkArr = this.dataList.filter(i => { return i.checked === true })
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
.slide_new table td:first-child, .slide_new table th:first-child
|
|
width 92rpx
|
|
.slide_new table td:nth-child(2), .slide_new table th:nth-child(2)
|
|
position sticky
|
|
left 89rpx
|
|
z-index 102
|
|
box-shadow 1px 0 2px rgba(0,0,0,.12)
|
|
</style>
|