159 lines
3.9 KiB
Vue
159 lines
3.9 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<!-- 配送组箱 -->
|
|
<nav-bar :title="title"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper">
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-6">
|
|
<span class="filter_label">载具编码</span>
|
|
</view>
|
|
<view class="zd-col-18">
|
|
<search-box v-model="code1"/>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-6">
|
|
<span class="filter_label">所属机台</span>
|
|
</view>
|
|
<view class="zd-col-13">
|
|
<input type="text" class="filter_input">
|
|
</view>
|
|
<button class="mini-btn" type="primary" size="mini" @tap="toJump('machine-order?title=机台工单维护')">查询</button>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-6">
|
|
<span class="filter_label filter_input_disabled">工单</span>
|
|
</view>
|
|
<view class="zd-col-18">
|
|
<input type="text" class="filter_input filter_input_disabled" disabled>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-6">
|
|
<span class="filter_label">物料编码</span>
|
|
</view>
|
|
<view class="zd-col-18">
|
|
<search-box v-model="code2"/>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-6">
|
|
<span class="filter_label">重量</span>
|
|
</view>
|
|
<view class="zd-col-16">
|
|
<input type="number" class="filter_input">
|
|
</view>
|
|
<view class="zd-col-2"><span class="filter_unit">KG</span></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>重量(kg)</th>
|
|
<th>生产日期</th>
|
|
<th>供应商编码</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>{{i+1}}</td>
|
|
<td>{{e.source_form_type}}</td>
|
|
<td>{{e.source_form_date}}</td>
|
|
<td>{{e.material_code}}</td>
|
|
<td>{{e.material_spec}}</td>
|
|
<td>{{e.pcsn}}</td>
|
|
<td>{{e.assign_qty}}</td>
|
|
<td>{{e.qty}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submit-bar">
|
|
<button class="zd-col-5 button-default" @tap="toEmpty">清空</button>
|
|
<button class="zd-col-18 button-primary" :class="{'button-info': !code1}" :disabled="disabled">确认组箱</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {getStructCount, inStorageOrder, getBillNoInfo, storList, inStorageConfirm} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
code1: '',
|
|
code2: '',
|
|
code3: '',
|
|
options: [],
|
|
index: '',
|
|
dataList: [],
|
|
disabled: false
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
methods: {
|
|
toJump (name) {
|
|
uni.navigateTo({
|
|
url: `/pages/General/${name}`
|
|
})
|
|
},
|
|
/** 下拉框*/
|
|
async _inStorageOrder () {
|
|
let res = await inStorageOrder()
|
|
this.options1 = [...res]
|
|
},
|
|
handleChange1 (e) {
|
|
if (e) {
|
|
this._getBillNoInfo(e)
|
|
}
|
|
},
|
|
toEmpty () {
|
|
this.code1 = ''
|
|
},
|
|
async _inStorageConfirm () {
|
|
this.disabled = true
|
|
if (!this.index) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await inStorageConfirm()
|
|
if (res.code === '200') {
|
|
this.index = ''
|
|
}
|
|
this.disabled = false
|
|
uni.showToast({
|
|
title: res.msg,
|
|
icon: 'none'
|
|
})
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script> |