翻译
This commit is contained in:
@@ -41,7 +41,7 @@
|
||||
return {
|
||||
title: '',
|
||||
val1: '',
|
||||
options: [{value: '0', text: '空点位'}, {value: '1', text: '有架子'}],
|
||||
options: [{value: '0', text: this.$t('select.empty-position')}, {value: '1', text: this.$t('select.with-shelf')}],
|
||||
index: '',
|
||||
disabled: false
|
||||
};
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<view class="zd_content">
|
||||
<view class="zd_wrapper">
|
||||
<view class="filter_item is-required">
|
||||
<view class="filter_label">销售订单号</view>
|
||||
<view class="filter_label">{{$t('filter.sales-order-number')}}</view>
|
||||
<view class="filter_input_wraper">
|
||||
<input type="text" class="filter_input" v-model="val1">
|
||||
</view>
|
||||
@@ -17,7 +17,7 @@
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item is-required">
|
||||
<view class="filter_label">客户编号</view>
|
||||
<view class="filter_label">{{$t('filter.customer-number')}}</view>
|
||||
<view class="filter_input_wraper">
|
||||
<input type="text" class="filter_input" v-model="val3">
|
||||
</view>
|
||||
@@ -52,7 +52,7 @@
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item is-required">
|
||||
<view class="filter_label">产品厚度(mm)</view>
|
||||
<view class="filter_label">{{$t('filter.product-thickness')}}(mm)</view>
|
||||
<view class="filter_input_wraper">
|
||||
<NumberInput
|
||||
v-model="val8"
|
||||
@@ -63,7 +63,7 @@
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item is-required">
|
||||
<view class="filter_label">物料类型</view>
|
||||
<view class="filter_label">{{$t('filter.material-type')}}</view>
|
||||
<view class="filter_input_wraper">
|
||||
<input type="text" class="filter_input" v-model="val9">
|
||||
</view>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<view class="filter_item is-required">
|
||||
<view class="filter_label">{{$t('filter.document-type')}}</view>
|
||||
<view class="filter_input_wraper">
|
||||
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
|
||||
<uni-data-select v-model="index" :placeholder="$t('uni.dataSelect.placeholder')" :emptyTips="$t('uni.dataSelect.emptyTips')" :localdata="options" @change="selectChange"></uni-data-select>
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item is-required">
|
||||
@@ -48,7 +48,7 @@
|
||||
data() {
|
||||
return {
|
||||
title: '',
|
||||
options: [{value: '1', text: '返检入库'}, {value: '2', text: '改切入库'}, {value: '0001', text: '生产入库'}, {value: '0009', text: '手工入库'}],
|
||||
options: [{value: '1', text: this.$t('select.return-inspection-warehousing')}, {value: '2', text: this.$t('select.recut-warehousing')}, {value: '0001', text: this.$t('select.production-warehousing')}, {value: '0009', text: this.$t('select.manual-warehousing')}],
|
||||
index: '',
|
||||
val1: '',
|
||||
val2: '',
|
||||
|
||||
@@ -56,7 +56,7 @@
|
||||
data() {
|
||||
return {
|
||||
title: '',
|
||||
options: [{value: '1', text: '返检入库'}, {value: '2', text: '改切入库'}, {value: '0001', text: '生产入库'}, {value: '0009', text: '手工入库'}],
|
||||
options: [{value: '1', text: this.$t('select.return-inspection-warehousing')}, {value: '2', text: this.$t('select.recut-warehousing')}, {value: '0001', text: this.$t('select.production-warehousing')}, {value: '0009', text: '手工入库'}],
|
||||
index: '',
|
||||
val1: '',
|
||||
val2: '',
|
||||
|
||||
@@ -15,14 +15,14 @@
|
||||
<view class="zd-row submitbar">
|
||||
<button class="zd-col-5 btn-submit btn-default" @tap="clearUp">{{$t('button.clear')}}</button>
|
||||
<button class="zd-col-8 btn-submit btn-success" :class="{'btn-info': !index}" :disabled="disabled" @tap="handleConfirm">{{$t('button.confirm')}}</button>
|
||||
<button class="zd-col-8 btn-submit btn-success" @tap="btn_active=true">出库点放行</button>
|
||||
<button class="zd-col-8 btn-submit btn-success" @tap="btn_active=true">{{$t('button.release-outbound-point')}}</button>
|
||||
</view>
|
||||
<view class="more_btns_wraper" :class="btn_active ? 'popshow' : 'pophide'">
|
||||
<view class="more_btns_items">
|
||||
<button class="more-button" :disabled="disabled" @tap="_outPointPass('CK2026')">CK2026放行</button>
|
||||
<button class="more-button" :disabled="disabled" @tap="_outPointPass('CK2027')">CK2027放行</button>
|
||||
<button class="more-button" :disabled="disabled" @tap="_outPointPass('CK2026')">CK2026 {{$t('button.release')}}</button>
|
||||
<button class="more-button" :disabled="disabled" @tap="_outPointPass('CK2027')">CK2027 {{$t('button.release')}}</button>
|
||||
</view>
|
||||
<view class="more_btns_cancle" @tap="btn_active = false">取消</view>
|
||||
<view class="more_btns_cancle" @tap="btn_active = false">{{$t('button.cancel')}}</view>
|
||||
</view>
|
||||
<view v-show="btn_active" class="msg_mask"></view>
|
||||
</view>
|
||||
@@ -41,7 +41,7 @@
|
||||
data() {
|
||||
return {
|
||||
title: '',
|
||||
options: [{value: 'CK2020', text: '捆扎点2020'}, {value: 'CK2022', text: '捆扎点2022'}],
|
||||
options: [{value: 'CK2020', text: this.$t('select.binding-point') + '2020'}, {value: 'CK2022', text: this.$t('select.binding-point') + '2022'}],
|
||||
index: '',
|
||||
disabled: false,
|
||||
btn_active: false
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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: '',
|
||||
|
||||
@@ -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
|
||||
};
|
||||
},
|
||||
|
||||
@@ -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
|
||||
};
|
||||
|
||||
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user