空管入库
This commit is contained in:
@@ -71,7 +71,7 @@ uni-button:after {
|
|||||||
}
|
}
|
||||||
.content {
|
.content {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: auto;
|
||||||
padding: 92rpx 15rpx 82rpx 14rpx;
|
padding: 92rpx 15rpx 82rpx 14rpx;
|
||||||
}
|
}
|
||||||
.wrapper {
|
.wrapper {
|
||||||
@@ -198,11 +198,12 @@ uni-button:after {
|
|||||||
margin: 0 20rpx 10rpx 0;
|
margin: 0 20rpx 10rpx 0;
|
||||||
border-radius: 30rpx;
|
border-radius: 30rpx;
|
||||||
}
|
}
|
||||||
.btn-disabled {
|
.btn-disabled, .submit-button:disabled {
|
||||||
background-color: #c9c9c9;
|
background-color: #c9c9c9;
|
||||||
border: 1px solid #c9c9c9;
|
border: 1px solid #c9c9c9;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/** 弹窗 */
|
/** 弹窗 */
|
||||||
.msg_wrapper {
|
.msg_wrapper {
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
handleChange ($event) {
|
handleChange ($event) {
|
||||||
if ($event.target.value) {
|
if ($event.target.value) {
|
||||||
this.cur = $event.target.value
|
this.cur = $event.target.value
|
||||||
|
this.$emit('input', this.cur)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
toSearch () {
|
toSearch () {
|
||||||
|
|||||||
@@ -10,14 +10,13 @@
|
|||||||
<view class="filter_input_wraper">
|
<view class="filter_input_wraper">
|
||||||
<search-box
|
<search-box
|
||||||
v-model="val1"
|
v-model="val1"
|
||||||
@toSearch="toSearch"
|
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
<view class="filter_label">物料</view>
|
<view class="filter_label">物料</view>
|
||||||
<view class="filter_input_wraper">
|
<view class="filter_input_wraper">
|
||||||
<input type="text" class="filter_input">
|
<input type="text" class="filter_input" v-model="val2">
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -26,34 +25,30 @@
|
|||||||
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
|
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="filter_item">
|
||||||
|
<view class="filter_label">数量</view>
|
||||||
|
<view class="filter_input_wraper">
|
||||||
|
<input type="text" class="filter_input" v-model="qty">
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="wrapper grid-wraper">
|
<view class="wrapper grid-wraper">
|
||||||
<view class="slide_new">
|
<view class="slide_new">
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>任务号</th>
|
<th>点位</th>
|
||||||
<th>指令号</th>
|
<th>物料编码</th>
|
||||||
<th>起点</th>
|
<th>物料名称</th>
|
||||||
<th>终点</th>
|
<th>数量</th>
|
||||||
<th>状态</th>
|
|
||||||
<th>agv车号</th>
|
|
||||||
<th>物料类型</th>
|
|
||||||
<th>优先级</th>
|
|
||||||
<th>时间</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(e, i) in dataList" :key="i">
|
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.point_code === pkId}">
|
||||||
<td>{{e.task_no}}</td>
|
<td>{{e.point_code}}</td>
|
||||||
<td>{{e.inst_no}}</td>
|
<td>{{e.material_code}}</td>
|
||||||
<td>{{e.start_devicecode}}</td>
|
<td>{{e.material_name}}</td>
|
||||||
<td>{{e.next_devicecode}}</td>
|
<td>{{e.qty}}</td>
|
||||||
<td>{{e.inst_status_name}}</td>
|
|
||||||
<td>{{e.carno}}</td>
|
|
||||||
<td>{{e.material_type_name}}</td>
|
|
||||||
<td>{{e.priority}}</td>
|
|
||||||
<td>{{e.create_time}}</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
@@ -61,8 +56,8 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="submit-bar">
|
<view class="submit-bar">
|
||||||
<button class="submit-button btn-disabled">入库确认</button>
|
<button class="submit-button" :class="{'btn-disabled': !pkId}" :disabled="disabled" @tap="_emptyConfirm">入库确认</button>
|
||||||
<button class="submit-button">查询</button>
|
<button class="submit-button" :class="{'btn-disabled': !val1 || !val2 || !index}" @tap="_queryMaterialInfo">查询</button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -70,6 +65,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import NavBar from '@/components/NavBar.vue'
|
import NavBar from '@/components/NavBar.vue'
|
||||||
import SearchBox from '@/components/SearchBox.vue'
|
import SearchBox from '@/components/SearchBox.vue'
|
||||||
|
import {queryProductArea, queryMaterialInfo, emptyConfirm} from '@/utils/getData2.js'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
NavBar,
|
NavBar,
|
||||||
@@ -78,24 +74,63 @@
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
val1: '',
|
val1: '',
|
||||||
|
val2: '',
|
||||||
options: [],
|
options: [],
|
||||||
index: 0,
|
index: '',
|
||||||
dataList: [{task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1'}, {task_no: '1', start_devicecode: '000fjopd', create_time: '2020-1-1444'}]
|
qty: '',
|
||||||
|
dataList: [],
|
||||||
|
pkId: '',
|
||||||
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
created () {
|
||||||
|
// this._queryProductArea()
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
toSearch (e) {
|
handleChange (e) {
|
||||||
console.log(e)
|
console.log(e)
|
||||||
},
|
},
|
||||||
/** 选择器 */
|
/** 选择器 */
|
||||||
selectChange(e) {
|
selectChange(e) {
|
||||||
this.index = e
|
this.index = e
|
||||||
|
},
|
||||||
|
/** 生产区域下拉框查询 */
|
||||||
|
async _queryProductArea () {
|
||||||
|
let res = await queryProductArea()
|
||||||
|
this.options = [...res.rows]
|
||||||
|
},
|
||||||
|
/** 初始化查询 */
|
||||||
|
async _queryMaterialInfo () {
|
||||||
|
if (!this.val1 || !this.val2 || !this.index) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
let res = await queryMaterialInfo(this.val1, this.val2, this.options[this.index].value)
|
||||||
|
this.dataList = [...res.rows]
|
||||||
|
},
|
||||||
|
/** 确认 */
|
||||||
|
async _emptyConfirm () {
|
||||||
|
this.disabled = true
|
||||||
|
if (!pkId) {
|
||||||
|
this.disabled = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
let res = await emptyConfirm()
|
||||||
|
uni.showToast({
|
||||||
|
title: res.desc,
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
this.disabled = false
|
||||||
|
} catch (e) {
|
||||||
|
this.disabled = false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
toCheck (e) {
|
||||||
|
this.pkId = this.pkId === point_code ? '' : e.point_code
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="stylus">
|
<style lang="stylus">
|
||||||
.grid-wraper
|
|
||||||
height calc(100% - 238rpx)
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -0,0 +1,28 @@
|
|||||||
|
import request from './request.js'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 空管入库
|
||||||
|
*/
|
||||||
|
// 1.1生产区域下拉框查询
|
||||||
|
export const queryProductArea = () => request({
|
||||||
|
url:'api/pda/raw/queryProductArea',
|
||||||
|
data: {}
|
||||||
|
})
|
||||||
|
// 1.2空纸管库设备物料初始化查询
|
||||||
|
export const queryMaterialInfo = (code, mcode, area) => request({
|
||||||
|
url:'api/pda/empty/queryMaterialInfo',
|
||||||
|
data: {
|
||||||
|
point_code: code,
|
||||||
|
material_code: mcode,
|
||||||
|
product_area: area
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// 1.3入库确认
|
||||||
|
export const emptyConfirm = (jo, qty, code) => request({
|
||||||
|
url:'api/pda/empty/confirm',
|
||||||
|
data: {
|
||||||
|
raw_jo: jo,
|
||||||
|
qty: qty,
|
||||||
|
material_code: code
|
||||||
|
}
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user