100 lines
2.3 KiB
Vue
100 lines
2.3 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<nav-bar :inner2="true" @goIn="goIn" title="半成品物料查询"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper">
|
|
<view class="filter_item">
|
|
<view class="filter_label_wraper">
|
|
<span class="filter_label">物料规格</span>
|
|
</view>
|
|
<view class="filter_input_wraper">
|
|
<search-box
|
|
v-model="val1"
|
|
@handleChange="handleChange"
|
|
/>
|
|
</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>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.material_code === pkId}">
|
|
<td>{{i+1}}</td>
|
|
<td>{{e.material_spec}}</td>
|
|
<td>{{e.material_code}}</td>
|
|
<td>{{e.material_name}}</td>
|
|
<td>{{e.product_name}}</td>
|
|
<td>{{e.net_weight}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="submit-bar">
|
|
<button class="submit-button" :class="{'btn-disabled': !pkId}" @tap="toSure">确认</button>
|
|
<button class="submit-button" @tap="_getMaterial(val1)">查询</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {getMaterial} from '@/utils/getData2.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
val1: '',
|
|
dataList: [],
|
|
pkId: '',
|
|
pkObj: {}
|
|
};
|
|
},
|
|
methods: {
|
|
handleChange (e) {
|
|
this._getMaterial(e)
|
|
},
|
|
/** grid查询 */
|
|
async _getMaterial (e) {
|
|
let res = await getMaterial(e)
|
|
this.dataList = [...res.data]
|
|
},
|
|
toCheck (e) {
|
|
this.pkId = this.pkId === e.material_code ? '' : e.material_code
|
|
this.pkObj = this.pkId === e.material_code ? e : {}
|
|
},
|
|
toSure () {
|
|
if (!this.pkId) {
|
|
return
|
|
}
|
|
this.$store.dispatch('setPublicObj', this.pkObj)
|
|
this.goIn()
|
|
|
|
},
|
|
goIn () {
|
|
uni.redirectTo({
|
|
url: '/pages/modules/SemifinishedInStore'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
</style>
|