This commit is contained in:
2025-07-18 13:42:19 +08:00
parent 33a184549a
commit 1e7eaa5070
14 changed files with 84 additions and 21 deletions

View File

@@ -54,7 +54,7 @@
<view class="zd-row submitbar">
<button class="zd-col-7 btn-submit btn-success" @tap="searchList">{{$t('button.search')}}</button>
<button class="zd-col-7 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" :disabled="disabled1" @tap="handleConfirm1">{{$t('button.quality-approved')}}</button>
<button class="zd-col-7 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" @tap="_inCoolOrOven">质检不合格</button>
<button class="zd-col-7 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" @tap="_inCoolOrOven">{{$t('button.quality-failed')}}</button>
</view>
<view class="msg_wrapper" :class="active ? 'popshow' : 'pophide'" style="height: auto">
<view class="pop-line"></view>

View File

@@ -49,7 +49,7 @@
<button class="zd-col-4 btn-submit btn-default" @tap="clearUp">{{$t('button.clear')}}</button>
<button class="zd-col-6 btn-submit btn-success" :class="{'btn-info': !val1 || !val2 || !val3 || !val4}" :disabled="disabled" @tap="handleConfirm('1')">{{$t('button.enter-box')}}</button>
<button class="zd-col-6 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" :disabled="disabled" @tap="handleConfirm('2')">{{$t('button.out-box')}}</button>
<button class="zd-col-6 btn-submit btn-success" :disabled="disabled" @click="_inHotByPoint">定点入箱</button>
<button class="zd-col-6 btn-submit btn-success" :disabled="disabled" @click="_inHotByPoint">{{$t('button.fixed-into-box')}}</button>
</view>
<view class="msg_wrapper" :class="active ? 'popshow' : 'pophide'" style="height: auto">
<view class="pop-line"></view>

View File

@@ -47,7 +47,7 @@
return {
title: '',
val1: '',
options: [{value: '3', text: '合格品'}, {value: '0', text: '空点位'}, {value: '1', text: '有架子'}],
options: [{value: '3', text: this.$t('select.lualified-products')}, {value: '0', text: this.$t('select.empty-position')}, {value: '1', text: this.$t('select.with-shelf')}],
index: '',
options1: [{value: '1', text: '1'}, {value: '2', text: '2'}],
index1: '',

View File

@@ -42,7 +42,7 @@
title: '',
val1: '',
index: '',
options: [{value: '1', text: '决策入烘箱'}, {value: '2', text: '决策入冷却'}],
options: [{value: '1', text: this.$t('select.decide-oven')}, {value: '2', text: this.$t('select.decide-cooling')}],
disabled: false
};
},

View File

@@ -49,7 +49,7 @@
val1: '',
options1: [],
index1: '',
options2: [{value: '1', text: '内标'}, {value: '2', text: '管标'}],
options2: [{value: '1', text: this.$t('select.internal-label')}, {value: '2', text: this.$t('select.tube-label')}],
index2: '',
disabled: false
};

View File

@@ -41,7 +41,7 @@
return {
title: '',
val1: '',
options: [{value: '3', text: '合格品'}, {value: '4', text: '管制品'}],
options: [{value: '3', text: this.$t('select.lualified-products')}, {value: '4', text: this.$t('select.controlled-products')}],
index: '',
disabled: false
};