Files
hht-tongbo-yinni/pages/WarehouseManage/CustomerLabelPrint.vue
2024-01-12 17:58:33 +08:00

126 lines
3.2 KiB
Vue

<template>
<view class="zd_container">
<nav-bar :title="$t('setting.customer-label-printing')"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">{{$t('filter.wooden-box-code')}}</span>
</view>
<view class="filter_input_wraper">
<search-box
v-model="val1"
:focused="true"
@handleChange="handleChange"
/>
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>{{$t('filter.wooden-box-code')}}</th>
<th>{{$t('grid.volume-number')}}</th>
<th>{{$t('grid.gross-weight-of-wooden-box')}}</th>
<th>{{$t('grid.sales-order-and-line-number')}}</th>
<th>{{$t('grid.material-code')}}</th>
<th>{{$t('grid.material-name')}}</th>
<th>{{$t('grid.specifications')}}</th>
<th>{{$t('grid.sub-roll-number')}}</th>
<th>{{$t('grid.net-weight')}}</th>
<th>{{$t('grid.warehousing-date')}}</th>
<th>{{$t('grid.date-of-manufacture')}}</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<td>{{e.package_box_sn}}</td>
<td>{{e.quanlity_in_box}}</td>
<td>{{e.box_weight}}</td>
<td>{{e.sale_order_name}}</td>
<td>{{e.product_name}}</td>
<td>{{e.product_description}}</td>
<td>{{e.width}}</td>
<td>{{e.container_name}}</td>
<td>{{e.net_weight}}</td>
<td>{{e.date_of_FG_inbound}}</td>
<td>{{e.date_of_production}}</td>
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="submit-bar">
<button class="submit-button" :class="{'btn-disabled': !val1}" :disabled="disabled2" @tap="_customerPrint">{{$t('button.print')}}</button>
<button class="submit-button" @tap="_customerInfo(val1)">{{$t('button.search')}}</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {customerInfo, customerPrint} from '@/utils/getData2.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
val1: '',
dataList: [],
disabled1: false,
disabled2: false
};
},
methods: {
handleChange (e) {
this._customerInfo(e)
},
/** 查询 */
async _customerInfo (e) {
if (!this.val1) {
uni.showToast({
title: this.$t('toast.scan-wooden-box-code'),
icon: 'none'
})
return
}
let res = await customerInfo(e)
this.dataList = [...res.data]
},
/** 打印 */
async _customerPrint () {
this.disabled2 = true
if (!this.val1) {
uni.showToast({
title: this.$t('toast.scan-wooden-box-code'),
icon: 'none'
})
this.disabled2 = false
return
}
try {
let res = await customerPrint(this.val1, this.$store.getters.setPrintName)
this.disabled2 = false
this.val1 = ''
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled2 = false
}
},
}
}
</script>
<style lang="stylus">
</style>