Files
pad-hl-hcx-new/pages/management/ZlOperate.vue
2023-03-24 17:33:28 +08:00

193 lines
4.9 KiB
Vue

<template>
<view class="content">
<nav-bar title="指令操作"></nav-bar>
<view class="search-confirm-wrap">
<view class="search-wrap">
<view class="search-item">
<label class="search-label">状态</label>
<view class="filter_input_wraper">
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
</view>
</view>
<view class="search-item">
<label class="search-label">指令号</label>
<view class="filter_input_wraper">
<input type="text" class="search-input-l" v-model="val1">
</view>
</view>
<view class="search-item">
<label class="search-label">AGV号</label>
<view class="filter_input_wraper">
<input type="text" class="search-input-l" v-model="val2">
</view>
</view>
<view class="search-item">
<label class="search-label">条码</label>
<view class="filter_input_wraper">
<search-box
v-model="val3"
/>
</view>
</view>
<view class="search-item">
<label class="search-label">起点</label>
<view class="filter_input_wraper">
<input type="text" class="search-input-l" v-model="val4">
</view>
</view>
<view class="search-item">
<label class="search-label">终点</label>
<view class="filter_input_wraper">
<input type="text" class="search-input-l" v-model="val5">
</view>
</view>
<view class="search-item">
<label class="search-label">开始日期</label>
<view class="filter_input_wraper">
<input type="text" class="search-input-l" v-model="val6" @click="open1">
</view>
</view>
<view class="search-item">
<label class="search-label">结束日期</label>
<view class="filter_input_wraper">
<input type="text" class="search-input-l" v-model="val7" @click="open2">
</view>
</view>
</view>
<view class="confirm-button-wrap">
<button class="confirm-button" @tap="toSearch()">查询</button>
<button class="confirm-button" :disabled="disabled" @tap="toSure()">取消</button>
<button class="confirm-button" :disabled="disabled" @tap="toSure()">完成</button>
<button class="confirm-button" :disabled="disabled" @tap="toSure()">重发</button>
<button class="confirm-button" :disabled="disabled" @tap="toSure()">WCS取消</button>
</view>
</view>
<view class="grid-wrap">
<table class="grid-table">
<thead>
<tr>
<th>选择</th>
<th>指令编号</th>
<th>MES号</th>
<th>起点设备</th>
<th>目的设备</th>
<th>入箱码</th>
<th>出箱码</th>
<th>状态</th>
<th>物料编码</th>
<th>创建时间</th>
</tr>
</thead>
<tbody>
<tr v-for="e in dataList" :key="e.instruct_uuid" @click="toRadio(e)">
<td>
<view class="iconfont icon-check" :class="{'icon-checked': pkId === e.instruct_uuid}"></view>
</td>
<td>{{e.instructoperate_num}}</td>
<td>{{e.mes_no}}</td>
<td>{{e.startwcsdevice_code}}</td>
<td>{{e.nextwcsdevice_code}}</td>
<td>{{e.invehicle_code}}</td>
<td>{{e.outvehicle_code}}</td>
<td>{{e.status_name}}</td>
<td>{{e.processmaterial_code}}</td>
<td>{{e.create_time}}</td>
</tr>
</tbody>
</table>
</view>
<view>
<uni-calendar
ref="calendar1"
:insert="false"
@confirm="confirm1"
/>
</view>
<view>
<uni-calendar
ref="calendar2"
:insert="false"
@confirm="confirm2"
/>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryInstraction, instOperation} from '@/utils/getData2.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
options1: [],
index1: '',
val1: '',
val2: '',
val3: '',
val4: '',
val5: '',
val6: '',
val7: '',
dataList: [],
pkId: '',
disabled: false
};
},
methods: {
open1(){
this.$refs.calendar1.open()
},
confirm1(e) {
this.val6 = e.fulldate
},
open2(){
this.$refs.calendar2.open()
},
confirm2(e) {
this.val7 = e.fulldate
},
/** 选择器1 */
selectChange1(e) {
this.index1 = e
},
toSearch () {
this.dataList = []
this._queryInstraction()
},
async _queryInstraction () {
let res = await queryInstraction()
this.dataList = [...res.data]
},
toSure () {
this.disabled = true
if (!this.pkId) {
uni.showToast({
title: '请选择',
icon: 'none'
})
this.disabled = false
return
}
this._instOperation()
},
async _instOperation () {
let res = await instOperation()
this.dataList = [...res.data]
},
toRadio (e) {
this.pkId = this.pkId === e.instruct_uuid ? '' : e.instruct_uuid
}
}
}
</script>
<style lang="stylus" scoped>
@import '../../common/style/mixin.styl';
.grid-wrap
height calc(100% - 526rpx)
</style>