#55 fzq

Злито
zwq злито 2 комітів з fzq до develop 2 роки тому
  1. +11
    -2
      src/lang/i18n/en/module/basicData.js
  2. +12
    -2
      src/lang/i18n/zh/module/basicData.js
  3. +11
    -8
      src/views/basicData/Cache/components/location-add.vue
  4. +3
    -3
      src/views/basicData/Cache/components/locationAttr-add.vue
  5. +4
    -3
      src/views/report-manage/components/viewSubstrate.vue

+ 11
- 2
src/lang/i18n/en/module/basicData.js Переглянути файл

@@ -1,8 +1,13 @@
/*
* @Author: gtz
* @Date: 2021-03-04 16:13:51
<<<<<<< HEAD
* @LastEditors: fzq
* @LastEditTime: 2022-03-11 11:13:47
=======
* @LastEditors: gtz
* @LastEditTime: 2022-03-12 14:22:52
>>>>>>> develop
* @Description: file content
*/
export default {
@@ -54,7 +59,8 @@ export default {
editLocation: 'Edit Location Point',
location: 'Location',
locationTip: 'Click the picture below to select a point. After selecting a point, select a location in the pop-up box. If you do not select a location when adding a new point, you cannot select the next point. If you want to adjust the order of the points, drag the label at the bottom of the picture to the position you want to adjust. Click to confirm the submission point information and click Reset to reset the point information to the state when the pop-up box is opened',
locationInfo: 'Location Point Info'
locationInfo: 'Location Point Info',
storageCode: 'storageBoxCode'
},
factory: {
placeholderName: 'Name Or Code',
@@ -165,7 +171,10 @@ export default {
addCacheArea: 'add Ports Shelf',
warning: 'Layers and Columns must be integer!',
logisticsEquipment: 'Logistics Equipment',
processEquipment: 'Process Equipment'
processEquipment: 'Process Equipment',
sheCode: 'Shelf Code',
sheName: 'Shelf Name',
locaNum: 'Location Number'
},
storageBox: {
name: 'Name',


+ 12
- 2
src/lang/i18n/zh/module/basicData.js Переглянути файл

@@ -1,8 +1,14 @@
/*
* @Author: gtz
* @Date: 2021-03-04 16:13:51
<<<<<<< HEAD
* @LastEditors: fzq
* @LastEditTime: 2022-03-11 11:13:22
* @Description: file content
=======
* @LastEditors: gtz
* @LastEditTime: 2022-03-12 14:23:06
>>>>>>> develop
*/
export default {
visual: {
@@ -53,7 +59,8 @@ export default {
editLocation: '编辑库位点',
location: '库位',
locationTip: '点击下方图片选点,选点后在弹出框内选择库位,新增点位时未选择库位无法进行下一个选点,若想调整点位顺序可拖动图片下方的标签到你想调整的位置,点击确定提交点位信息,点击重置将点位信息重置到打开弹出框时的状态',
locationInfo: '库位点信息'
locationInfo: '库位点信息',
storageCode: '存储箱号'
},
factory: {
placeholderName: '名称或编码',
@@ -155,7 +162,10 @@ export default {
status: '状态',
warning: '行列标必须为整数!',
logisticsEquipment: '物流设备',
processEquipment: '工艺设备'
processEquipment: '工艺设备',
sheCode: '货架编码',
sheName: '货架名',
locaNum: '库存数量'
},
storageBox: {
name: '存储箱名称',


+ 11
- 8
src/views/basicData/Cache/components/location-add.vue Переглянути файл

@@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2020-12-29 15:41:11
* @LastEditors: fzq
* @LastEditTime: 2022-03-10 21:00:58
* @LastEditTime: 2022-03-11 11:14:02
* @Description:
-->
<template>
@@ -17,7 +17,7 @@
@getDataList="getList"
@add="addNew"
/>
<div style="title">货架编码:{{ shCode }} 货架名称:{{ shName }} 库存量:{{ num }}
<div style="title">{{ sheCode }}:{{ shCode }} {{ sheName }}:{{ shName }} {{ locaNum }}:{{ num }}
<el-button type="success" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
</div>
<base-table
@@ -102,11 +102,11 @@ const tableProps = [
label: i18n.t('module.basicData.cache.columnMark'),
align: 'center'
},
{
prop: 'locationType',
label: i18n.t('module.basicData.cache.locationType'),
align: 'center'
},
// {
// prop: 'locationType',
// label: i18n.t('module.basicData.cache.locationType'),
// align: 'center'
// },
{
prop: 'statusName',
label: i18n.t('module.basicData.cache.status'),
@@ -147,7 +147,10 @@ export default {
size: 990,
shelfId: '',
id: ''
}
},
sheCode: this.$t('module.basicData.cache.sheCode'),
sheName: this.$t('module.basicData.cache.sheName'),
locaNum: this.$t('module.basicData.cache.locaNum')
}
},
created() {


+ 3
- 3
src/views/basicData/Cache/components/locationAttr-add.vue Переглянути файл

@@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2020-12-29 16:37:56
* @LastEditors: fzq
* @LastEditTime: 2022-03-10 21:14:13
* @LastEditTime: 2022-03-11 11:03:31
* @Description:
-->
<template>
@@ -26,9 +26,9 @@
<el-form-item :label="$t('module.basicData.cache.columnMark')" prop="columns">
<el-input v-model="dataForm.columns" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.columnMark')])" clearable />
</el-form-item>
<el-form-item :label="$t('module.basicData.cache.locationType')" prop="locationType">
<!-- <el-form-item :label="$t('module.basicData.cache.locationType')" prop="locationType">
<el-input v-model="dataForm.locationType" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.locationType')])" clearable />
</el-form-item>
</el-form-item> -->
<!-- <el-form-item :label="$t('module.basicData.cache.status')" prop="status">
<el-input v-model="dataForm.status" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.status')])" clearable />
</el-form-item> -->


+ 4
- 3
src/views/report-manage/components/viewSubstrate.vue Переглянути файл

@@ -4,7 +4,7 @@
* @Author: fzq
* @Date: 2022-03-05 15:55:45
* @LastEditors: fzq
* @LastEditTime: 2022-03-07 09:28:21
* @LastEditTime: 2022-03-11 11:08:53
-->
<template>
<div class="app-container">
@@ -12,7 +12,7 @@
<el-button type="success" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
<el-button type="primary" @click="addNew()">{{ 'btn.add' | i18nFilter }}</el-button>
</div> -->
<div style="title">存储箱号:{{ num }}
<div style="title">{{ storageCode }}:{{ num }}
<el-button type="success" style="back" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
</div>
<base-table
@@ -104,6 +104,7 @@ export default {
return {
addOrUpdateVisible: false,
num: '',
storageCode: this.$t('module.basicData.visual.TipsBefore'),
tableBtn,
trueWidth: 200,
tableProps,
@@ -148,7 +149,7 @@ export default {
},
getList() {
this.listLoading = true
this.num = this.listQuery.substrateCode
this.num = this.listQuery.storageBoxCode
this.listQuery.code = this.$route.query.code
console.log(this.listQuery)
listSubstrate(this.listQuery).then(response => {


Завантаження…
Відмінити
Зберегти