报废入库、退货入库、贴标捆扎、拆分入库、生产入库、客户标签打印

This commit is contained in:
2023-12-29 16:11:39 +08:00
parent 8cc49500cc
commit 9183a669c2
10 changed files with 100 additions and 55 deletions

View File

@@ -1,11 +1,11 @@
<template>
<view class="zd_container">
<nav-bar title="贴标捆扎"></nav-bar>
<nav-bar :title="$t('menu.labeling-and-bundling')"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">木箱</span>
<span class="filter_label">{{$t('filter.wooden-box-code')}}</span>
</view>
<view class="filter_input_wraper">
<search-box
@@ -15,7 +15,7 @@
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">点位</span>
<span class="filter_label">{{$t('filter.point')}}</span>
</view>
<view class="filter_input_wraper">
<search-box
@@ -24,7 +24,7 @@
</view>
</view>
<view class="filter_item">
<view class="filter_label">重量</view>
<view class="filter_label">{{$t('grid.weight')}}</view>
<view class="filter_input_wraper">
<input type="number" class="filter_input" v-model="val3">
</view>
@@ -32,8 +32,8 @@
</view>
</view>
<view class="submit-bar">
<button class="submit-button" :class="{'btn-disabled': !val1 || !val3 }" :disabled="disabled1" @tap="_mendCode">贴标</button>
<button class="submit-button" :class="{'btn-disabled': !val1 || !val2}" :disabled="disabled2" @tap="_stBale">捆扎</button>
<button class="submit-button" :class="{'btn-disabled': !val1 || !val3 }" :disabled="disabled1" @tap="_mendCode">{{$t('button.labeling')}}</button>
<button class="submit-button" :class="{'btn-disabled': !val1 || !val2}" :disabled="disabled2" @tap="_stBale">{{$t('button.binding')}}</button>
</view>
</view>
</template>