169 lines
4.1 KiB
Vue
169 lines
4.1 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<nav-bar 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">
|
|
<input type="text" class="filter_input" v-model="val1">
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">起始设备</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val2"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="filter_item">
|
|
<view class="filter_label">目标设备</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val3"
|
|
/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<!-- <th>任务号</th> -->
|
|
<th>指令号</th>
|
|
<th>起点</th>
|
|
<th>终点</th>
|
|
<th>状态</th>
|
|
<th>下发状态</th>
|
|
<th>执行步骤</th>
|
|
<th>载具号</th>
|
|
<th>优先级</th>
|
|
<th>时间</th>
|
|
<th>agv车号</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.inst_uuid === pkId}">
|
|
<!-- <td>{{e.task_no}}</td> -->
|
|
<td>{{e.instruction_code}}</td>
|
|
<td>{{e.start_devicecode}}</td>
|
|
<td>{{e.next_devicecode}}</td>
|
|
<td>{{e.inst_status_name}}</td>
|
|
<td>{{['成功', '失败'][Number(e.send_status) - 1]}}</td>
|
|
<td>{{e.inst_step}}</td>
|
|
<td>{{e.carrier}}</td>
|
|
<td>{{e.priority}}</td>
|
|
<td>{{e.create_time}}</td>
|
|
<td>{{e.carno}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submit-bar_new">
|
|
<button class="zd-col-6 submit-button_new" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="toSure1('1')">指令撤销</button>
|
|
<button class="zd-col-6 submit-button_new" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="toSure2('2')">重新下发</button>
|
|
<button class="zd-col-6 submit-button_new" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="toSure3('3')">强制完成</button>
|
|
<button class="zd-col-5 submit-button_new" :disabled="disabled" @tap="_handInsts">查询</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {handInsts, handInst} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
val1: '',
|
|
val2: '',
|
|
val3: '',
|
|
data: [],
|
|
dataList: [],
|
|
disabled: false,
|
|
pkId: ''
|
|
};
|
|
},
|
|
created () {
|
|
this._handInsts(this.val1, this.val2, this.val3)
|
|
},
|
|
methods: {
|
|
async _handInsts () {
|
|
this.show = false
|
|
try {
|
|
let res = await handInsts(this.val1, this.val2, this.val3)
|
|
this.data = [...res.data]
|
|
this.dataList = [...this.data]
|
|
|
|
} catch (e) {
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
}
|
|
},
|
|
async _handInst (type) {
|
|
this.disabled = true
|
|
if (!this.pkId) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await handInst(type, this.pkId)
|
|
this.disabled = false
|
|
this.pkId = ''
|
|
this._handInsts()
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
toCheck (e) {
|
|
this.pkId = this.pkId === e.inst_uuid ? '' : e.inst_uuid
|
|
},
|
|
toSure1 (type) {
|
|
this.disabled = true
|
|
if (!this.pkId) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
this._handInst(type)
|
|
},
|
|
toSure2 (type) {
|
|
this.disabled = true
|
|
if (!this.pkId) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
this._handInst(type)
|
|
},
|
|
toSure3 (type) {
|
|
this.disabled = true
|
|
if (!this.pkId) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
this._handInst(type)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
// .submit-bar
|
|
// justify-content: space-around;
|
|
// .submit-button
|
|
// margin: 0 0px 10px 0;
|
|
</style>
|