152 lines
3.9 KiB
Vue
152 lines
3.9 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<!-- 无人车装货 -->
|
|
<nav-bar :title="title"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper grid-wraper">
|
|
<view class="slide_new">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<!-- <th @tap="toAllCheck"><uni-icons :type="allCheck ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></th> -->
|
|
<th>点位编码</th>
|
|
<th>点位名称</th>
|
|
<th>点位状态</th>
|
|
<th>物料编码</th>
|
|
<th>物料名称</th>
|
|
<th>批号</th>
|
|
<th>数量</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i">
|
|
<!-- <td @tap="toCheck(e)"><uni-icons :type="e.checked ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></td> -->
|
|
<td>{{e.point_code}}</td>
|
|
<td>{{e.point_name}}</td>
|
|
<td>{{['', '空位', '有箱有料'][Number(e.point_status)]}}</td>
|
|
<td>{{e.material_code}}</td>
|
|
<td>{{e.material_name}}</td>
|
|
<td>{{e.pcsn}}</td>
|
|
<td>{{e.qty}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submit-bar">
|
|
<button class="zd-col-4 button-default" @tap="toEmpty">清空</button>
|
|
<button class="zd-col-7 button-primary" :disabled="disabled" @tap="_callCar">呼叫无人车</button>
|
|
<button class="zd-col-6 button-primary" @tap="toZh">装货</button>
|
|
<button class="zd-col-6 button-primary" :class="{'button-info': !dataList.length}" :disabled="disabled" @tap="_installConfirm">装货完成</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {callCar, install, installConfirm} from '@/utils/getData3.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
allCheck: false,
|
|
checkedArr: [],
|
|
dataList: [],
|
|
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
|
disabled: false
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
onShow () {
|
|
if (this.$store.getters.publicArr.length) {
|
|
this.dataList = this.$store.getters.publicArr
|
|
this.$store.dispatch('setPublicArr', '')
|
|
}
|
|
},
|
|
methods: {
|
|
toEmpty () {
|
|
this.dataList = []
|
|
this.checkedArr = []
|
|
this.allCheck = false
|
|
this.disabled = false
|
|
},
|
|
toAllCheck () {
|
|
this.allCheck = !this.allCheck
|
|
this.dataList.map(el => {
|
|
el.checked = this.allCheck
|
|
})
|
|
},
|
|
toCheck (e) {
|
|
e.checked = !e.checked
|
|
this.checkedArr = this.dataList.filter(el => el.checked === true)
|
|
this.allCheck = this.checkedArr.length === this.dataList.length
|
|
},
|
|
toZh () {
|
|
if (!this.dataList.length) {
|
|
uni.navigateTo({
|
|
url: '/pages/hdyy/wrcdj/wrczh-matersave?title=物料维护'
|
|
})
|
|
}
|
|
if (this.dataList.length) {
|
|
this._install()
|
|
}
|
|
},
|
|
async _install () {
|
|
this.disabled = true
|
|
try {
|
|
let res = await install(this.checkedArr)
|
|
if (res) {
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
}
|
|
this.toEmpty()
|
|
this.disabled = false
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
async _callCar () {
|
|
this.disabled = true
|
|
try {
|
|
let res = await callCar()
|
|
if (res) {
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
}
|
|
this.toEmpty()
|
|
this.disabled = false
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
},
|
|
async _installConfirm () {
|
|
this.disabled = true
|
|
try {
|
|
let res = await installConfirm()
|
|
if (res) {
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
}
|
|
this.toEmpty()
|
|
this.disabled = false
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script> |