2024-09-11 11:29:44 +08:00
|
|
|
<template>
|
|
|
|
|
<view class="zd_container">
|
|
|
|
|
<nav-bar :title="title" :searchActive="true" @toSearch="toSearch"></nav-bar>
|
|
|
|
|
<view class="zd_content pdt0">
|
|
|
|
|
<view class="filter_wrapper">
|
|
|
|
|
<view class="zd-row">
|
|
|
|
|
<view class="zd-col-8 font-style-1" v-for="e in state" :key="e.id" @tap="changeTab(e)">
|
|
|
|
|
<view class="font-style-1" :class="{'font-style-2': e.id === tab}">{{e.text}}</view>
|
|
|
|
|
<view class="tab-line" :class="{'tab-line_active': e.id === tab}"></view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item-wrapper">
|
|
|
|
|
<view class="slide_new">
|
|
|
|
|
<table>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2024-09-11 15:45:45 +08:00
|
|
|
<th>任务号</th>
|
|
|
|
|
<th>指令号</th>
|
|
|
|
|
<th>起始设备</th>
|
|
|
|
|
<th>目标设备</th>
|
|
|
|
|
<th>状态</th>
|
|
|
|
|
<th>载具号</th>
|
|
|
|
|
<th>agv车号</th>
|
|
|
|
|
<th>指令执行步骤</th>
|
|
|
|
|
<th>优先级</th>
|
|
|
|
|
<th>时间</th>
|
2024-09-11 11:29:44 +08:00
|
|
|
</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>
|
2024-09-11 15:45:45 +08:00
|
|
|
<td>{{['就绪', '执行中', '完成', '取消'][Number(e.inst_status)]}}</td>
|
2024-09-11 11:29:44 +08:00
|
|
|
<td>{{e.carrier}}</td>
|
|
|
|
|
<td>{{e.carno}}</td>
|
|
|
|
|
<td>{{e.inst_step}}</td>
|
|
|
|
|
<td>{{e.priority}}</td>
|
|
|
|
|
<td>{{e.create_time}}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-row submit-bar">
|
2024-09-11 15:45:45 +08:00
|
|
|
<button class="zd-col-7 button-primary" :class="{'button-info': !pkId}" :disabled="disabled" @tap="_handInst('1')">指令撤销</button>
|
|
|
|
|
<button class="zd-col-7 button-primary" :class="{'button-info': !pkId}" :disabled="disabled" @tap="_handInst('2')">重新下发</button>
|
|
|
|
|
<button class="zd-col-7 button-primary" :class="{'button-info': !pkId}" :disabled="disabled" @tap="_handInst('3')">强制完成</button>
|
2024-09-11 11:29:44 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="zd_content msg_wrapper" :class="show ? 'popshow' : 'pophide'">
|
|
|
|
|
<view class="msg_content">
|
|
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-6">
|
2024-09-11 15:45:45 +08:00
|
|
|
<span class="filter_label">关键字</span>
|
2024-09-11 11:29:44 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-17">
|
|
|
|
|
<input type="text" class="filter_input" v-model="val1">
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-6">
|
2024-09-11 15:45:45 +08:00
|
|
|
<span class="filter_label">起始设备</span>
|
2024-09-11 11:29:44 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-17">
|
|
|
|
|
<search-box
|
|
|
|
|
v-model="val2"
|
|
|
|
|
/>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-row">
|
|
|
|
|
<view class="zd-col-6">
|
2024-09-11 15:45:45 +08:00
|
|
|
<span class="filter_label">目标设备</span>
|
2024-09-11 11:29:44 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-17">
|
|
|
|
|
<search-box
|
|
|
|
|
v-model="val3"
|
|
|
|
|
/>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-row submit-bar">
|
2024-09-11 15:45:45 +08:00
|
|
|
<button class="zd-col-7 button-default" @tap.stop="show = false">取消</button>
|
|
|
|
|
<button class="zd-col-7 button-default" @tap.stop="clearUp">清空</button>
|
|
|
|
|
<button class="zd-col-7 button-primary" @tap="_handInsts">查询</button>
|
2024-09-11 11:29:44 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="show" class="msg_mask"></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 {
|
|
|
|
|
show: false,
|
2024-09-11 15:45:45 +08:00
|
|
|
state: [{id:'-1', text: '全部'}, {id:'0', text: '就绪'}, {id:'1', text: '执行中'}, {id:'2', text: '完成'}, {id:'3', text: '取消'}],
|
2024-09-11 11:29:44 +08:00
|
|
|
tab: '-1',
|
|
|
|
|
title: '',
|
|
|
|
|
val1: '',
|
|
|
|
|
val2: '',
|
|
|
|
|
val3: '',
|
|
|
|
|
data: [],
|
|
|
|
|
dataList: [],
|
|
|
|
|
pkId: '',
|
|
|
|
|
disabled: false
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
onLoad (options) {
|
|
|
|
|
this.title = options.title
|
|
|
|
|
},
|
|
|
|
|
created () {
|
|
|
|
|
this._handInsts()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
toSearch () {
|
|
|
|
|
this.show = true
|
|
|
|
|
this.tab = '-1'
|
|
|
|
|
},
|
|
|
|
|
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) {
|
|
|
|
|
console.log(e)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
changeTab (e) {
|
|
|
|
|
this.tab = e.id
|
|
|
|
|
if (e.id !== '-1') {
|
|
|
|
|
let arr = this.data.filter(el => {return el.inst_status === e.id})
|
|
|
|
|
this.dataList = [...arr]
|
|
|
|
|
} else {
|
|
|
|
|
this.dataList = [...this.data]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
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.tab = '-1'
|
|
|
|
|
this._handInsts()
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.message,
|
|
|
|
|
icon: 'none'
|
|
|
|
|
})
|
|
|
|
|
} catch (e) {
|
|
|
|
|
this.disabled = false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
clearUp () {
|
|
|
|
|
this.val1 = ''
|
|
|
|
|
this.val2 = ''
|
|
|
|
|
this.val3 = ''
|
|
|
|
|
this.pkId = ''
|
|
|
|
|
this.disabled = false
|
|
|
|
|
},
|
|
|
|
|
toCheck (e) {
|
|
|
|
|
this.pkId = this.pkId === e.inst_uuid ? '' : e.inst_uuid
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="stylus">
|
|
|
|
|
</style>
|