Browse Source

国际化修改

1219
zhang 1 month ago
parent
commit
492a49c5fc
  1. 39
      lms/nladmin-ui/src/views/wms/st/inbill/AddDtl.vue

39
lms/nladmin-ui/src/views/wms/st/inbill/AddDtl.vue

@ -1,6 +1,6 @@
<template>
<el-dialog
title="物料新增"
:title="$t('inbill.placeholder.end13')"
append-to-body
:visible.sync="dialogVisible"
destroy-on-close
@ -16,7 +16,7 @@
v-model="query.bill_code"
clearable
size="mini"
placeholder="单据号"
:placeholder="$t('inbill.placeholder.bill_code')"
style="width: 200px;"
class="filter-item"
@keyup.enter.native="crud.toQuery"
@ -25,7 +25,7 @@
v-model="query.package_box_sn"
clearable
size="mini"
placeholder="箱号"
:placeholder="$t('inbill.dialog.package_box_sn')"
style="width: 200px;"
class="filter-item"
@keyup.enter.native="crud.toQuery"
@ -34,7 +34,7 @@
v-model="query.container_name"
clearable
size="mini"
placeholder="子卷号"
:placeholder="$t('inbill.placeholder.pcsn')"
style="width: 200px;"
class="filter-item"
@keyup.enter.native="crud.toQuery"
@ -43,7 +43,7 @@
v-model="query.material_search"
clearable
size="mini"
placeholder="物料编码"
:placeholder="$t('inbill.dialog.product_name')"
style="width: 230px;"
class="filter-item"
@keyup.enter.native="crud.toQuery"
@ -52,7 +52,7 @@
v-model="query.sap_pcsn"
clearable
size="mini"
placeholder="sap批次"
:placeholder="$t('inbill.placeholder.sap_pcsn')"
style="width: 200px;"
class="filter-item"
@keyup.enter.native="crud.toQuery"
@ -70,25 +70,25 @@
@selection-change="crud.selectionChangeHandler"
>
<el-table-column type="selection" width="55" />
<el-table-column show-overflow-tooltip width="150" prop="sale_order_name" label="订单号" />
<el-table-column show-overflow-tooltip width="150" prop="customer_name" label="客户编号" />
<el-table-column width="200" prop="customer_description" label="客户名称" />
<el-table-column show-overflow-tooltip prop="package_box_sn" width="250" label="箱号" />
<el-table-column show-overflow-tooltip width="100" prop="quanlity_in_box" label="箱内子卷数" />
<el-table-column show-overflow-tooltip width="150" prop="container_name" label="子卷号" />
<el-table-column show-overflow-tooltip width="150" prop="sap_pcsn" label="sap批次" />
<el-table-column show-overflow-tooltip width="150" prop="product_name" label="物料编码" />
<el-table-column show-overflow-tooltip width="170" prop="product_description" label="物料描述" />
<el-table-column show-overflow-tooltip prop="width" label="幅宽" />
<el-table-column show-overflow-tooltip prop="thickness" label="产品厚度" />
<el-table-column show-overflow-tooltip width="150" prop="sale_order_name" :label="$t('inbill.dialog.sale_order_name')" />
<el-table-column show-overflow-tooltip width="150" prop="customer_name" :label="$t('inbill.dialog.customer_name')" />
<el-table-column width="200" prop="customer_description" :label="$t('inbill.dialog.customer_description')" />
<el-table-column show-overflow-tooltip prop="package_box_sn" width="250" :label="$t('inbill.dialog.package_box_sn')" />
<el-table-column show-overflow-tooltip width="100" prop="quanlity_in_box" :label="$t('inbill.dialog.quanlity_in_box')" />
<el-table-column show-overflow-tooltip width="150" prop="container_name" :label="$t('inbill.placeholder.pcsn')" />
<el-table-column show-overflow-tooltip width="150" prop="sap_pcsn" :label="$t('inbill.placeholder.sap_pcsn')" />
<el-table-column show-overflow-tooltip width="150" prop="product_name" :label="$t('inbill.dialog.product_name')" />
<el-table-column show-overflow-tooltip width="170" prop="product_description" :label="$t('inbill.dialog.product_description')" />
<el-table-column show-overflow-tooltip prop="width" :label="$t('inbill.dialog.width')" />
<el-table-column show-overflow-tooltip prop="thickness" :label="$t('inbill.dialog.thickness')" />
</el-table>
<!--分页组件-->
<pagination />
</div>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false"> </el-button>
<el-button type="primary" @click="submit"> </el-button>
<el-button @click="dialogVisible = false">{{ $t('inbill.dialog.cancel') }}</el-button>
<el-button type="primary" @click="submit">{{ $t('inbill.dialog.confirm') }}</el-button>
</span>
</el-dialog>
</template>
@ -102,7 +102,6 @@ import pagination from '@crud/Pagination'
import DateRangePicker from '@/components/DateRangePicker/index'
import crudRawAssist from '@/views/wms/st/inbill/rawassist'
const start = new Date()
export default {
name: 'AddDtl',
components: { crudOperation, rrOperation, pagination, DateRangePicker },

Loading…
Cancel
Save