Compare commits

..

No commits in common. "8502f5d7d1526015bdf8c93b44627958cc00cea8" and "2351e96c9e632e3cc5aa0283c506b4e9c8fb17f2" have entirely different histories.

18 changed files with 1064 additions and 729 deletions

View File

@ -2,7 +2,7 @@
* @Author: gtz * @Author: gtz
* @Date: 2021-03-04 16:13:51 * @Date: 2021-03-04 16:13:51
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2022-03-15 10:17:01 * @LastEditTime: 2022-03-14 10:58:20
* @Description: file content * @Description: file content
*/ */
export default { export default {
@ -181,10 +181,7 @@ export default {
remark: 'Remark', remark: 'Remark',
PositionNo: 'PositionNo', PositionNo: 'PositionNo',
PositionCode: 'PositionCode', PositionCode: 'PositionCode',
PositionCodeAlias: 'PositionCodeAlias', PositionCodeAlias: 'PositionCodeAlias'
scrapped: 'Scrapped',
normal: 'Normal',
repairing: 'Repairing'
}, },
equipment: { equipment: {
EquipmentName: 'Equipment Name', EquipmentName: 'Equipment Name',

View File

@ -1,16 +0,0 @@
/*
* @Author: gtz
* @Date: 2022-03-15 16:42:34
* @LastEditors: gtz
* @LastEditTime: 2022-03-15 16:58:26
* @Description: file content
* @FilePath: \mt-ck-wms-ui\src\lang\i18n\en\module\dashboard.js
*/
export default {
first: 'First Row',
second: 'Second Row',
title: 'WMS Inventory Information',
pageHeader: 'No.',
pageFooter: ' Page'
}

View File

@ -2,7 +2,7 @@
* @Author: gtz * @Author: gtz
* @Date: 2021-03-04 16:12:46 * @Date: 2021-03-04 16:12:46
* @LastEditors: gtz * @LastEditors: gtz
* @LastEditTime: 2022-03-15 16:44:11 * @LastEditTime: 2021-04-22 19:49:39
* @Description: file content * @Description: file content
*/ */
@ -17,7 +17,6 @@ import quality from './quality'
import factory from './factory' import factory from './factory'
import formManage from './formManage' import formManage from './formManage'
import report from './report' import report from './report'
import dashboard from './dashboard'
export default { export default {
basicData, basicData,
@ -30,6 +29,5 @@ export default {
quality, quality,
factory, factory,
formManage, formManage,
report, report
dashboard
} }

View File

@ -2,7 +2,7 @@
* @Author: gtz * @Author: gtz
* @Date: 2021-03-04 16:13:51 * @Date: 2021-03-04 16:13:51
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2022-03-15 10:16:52 * @LastEditTime: 2022-03-14 10:58:12
*/ */
export default { export default {
visual: { visual: {
@ -171,11 +171,7 @@ export default {
remark: '备注', remark: '备注',
PositionNo: '位置序号', PositionNo: '位置序号',
PositionCode: '位置编码', PositionCode: '位置编码',
PositionCodeAlias: '位置编码别名', PositionCodeAlias: '位置编码别名'
scrapped: '报废',
normal: '正常',
repairing: '维修中'
}, },
equipment: { equipment: {
shortName: '名称缩写', shortName: '名称缩写',

View File

@ -1,16 +0,0 @@
/*
* @Author: gtz
* @Date: 2022-03-15 16:42:34
* @LastEditors: gtz
* @LastEditTime: 2022-03-15 16:58:30
* @Description: file content
* @FilePath: \mt-ck-wms-ui\src\lang\i18n\zh\module\dashboard.js
*/
export default {
first: '第一排',
second: '第二排',
title: 'WMS库存信息',
pageHeader: '第',
pageFooter: '页'
}

View File

@ -2,7 +2,7 @@
* @Author: gtz * @Author: gtz
* @Date: 2021-03-04 16:12:46 * @Date: 2021-03-04 16:12:46
* @LastEditors: gtz * @LastEditors: gtz
* @LastEditTime: 2022-03-15 16:44:05 * @LastEditTime: 2021-04-22 19:49:47
* @Description: file content * @Description: file content
*/ */
@ -17,7 +17,6 @@ import quality from './quality'
import factory from './factory' import factory from './factory'
import formManage from './formManage' import formManage from './formManage'
import report from './report' import report from './report'
import dashboard from './dashboard'
export default { export default {
basicData, basicData,
@ -30,6 +29,5 @@ export default {
quality, quality,
factory, factory,
formManage, formManage,
report, report
dashboard
} }

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2020-12-29 15:41:11 * @Date: 2020-12-29 15:41:11
* @LastEditors: fzq * @LastEditors: fzq
* @LastEditTime: 2022-03-15 09:45:30 * @LastEditTime: 2022-03-11 11:14:02
* @Description: * @Description:
--> -->
<template> <template>
@ -157,7 +157,7 @@ export default {
this.listQuery.shelfId = this.$route.query.id this.listQuery.shelfId = this.$route.query.id
this.shCode = this.$route.query.code this.shCode = this.$route.query.code
this.shName = this.$route.query.shelfName this.shName = this.$route.query.shelfName
this.num = this.$route.query.total this.num = this.$route.query.columnNum
this.getList() this.getList()
}, },
methods: { methods: {

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2020-12-29 16:37:56 * @Date: 2020-12-29 16:37:56
* @LastEditors: fzq * @LastEditors: fzq
* @LastEditTime: 2022-03-15 09:54:52 * @LastEditTime: 2022-03-11 11:03:31
* @Description: * @Description:
--> -->
<template> <template>
@ -20,14 +20,11 @@
<el-form-item :label="$t('module.basicData.cache.anotherName')" prop="locationNameAlias"> <el-form-item :label="$t('module.basicData.cache.anotherName')" prop="locationNameAlias">
<el-input v-model="dataForm.locationNameAlias" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.anotherName')])" clearable /> <el-input v-model="dataForm.locationNameAlias" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.anotherName')])" clearable />
</el-form-item> </el-form-item>
<!-- <el-form-item :label="$t('module.basicData.cache.rowMark')" prop="layers">
<el-input v-model="dataForm.layers" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.rowMark')])" clearable />
</el-form-item> -->
<el-form-item :label="$t('module.basicData.cache.rowMark')" prop="layers"> <el-form-item :label="$t('module.basicData.cache.rowMark')" prop="layers">
<el-input-number v-model="dataForm.layers" :step="1" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.rowMark')])" clearable /> <el-input v-model="dataForm.layers" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.rowMark')])" clearable />
</el-form-item> </el-form-item>
<el-form-item :label="$t('module.basicData.cache.columnMark')" prop="columns"> <el-form-item :label="$t('module.basicData.cache.columnMark')" prop="columns">
<el-input-number v-model="dataForm.columns" :step="1" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.columnMark')])" clearable /> <el-input v-model="dataForm.columns" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.columnMark')])" clearable />
</el-form-item> </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-input v-model="dataForm.locationType" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.cache.locationType')])" clearable />
@ -74,6 +71,8 @@ export default {
code: '', code: '',
locationNameAlias: '', locationNameAlias: '',
rowNum: '', rowNum: '',
columns: 0,
layers: 0,
status: null, status: null,
locationType: '' locationType: ''
}, },
@ -97,13 +96,17 @@ export default {
], ],
code: [ code: [
{ required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.cache.LocationCode')]), trigger: 'blur' } { required: true, message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.cache.LocationCode')]), trigger: 'blur' }
],
layers: [
{ pattern: /^[1-9]\d*$/, message: this.$t('module.basicData.cache.warning'), trigger: 'blur' }
],
columns: [
{ pattern: /^[1-9]\d*$/, message: this.$t('module.basicData.cache.warning'), trigger: 'blur' }
] ]
// layers: [{
// type: 'number',
// message: this.$t('module.basicData.cache.warning'),
// trigger: "blur"
// }],
// columns: [{
// type: 'number',
// message: this.$t('module.basicData.cache.warning'),
// trigger: "blur"
// }]
} }
} }
}, },
@ -116,7 +119,7 @@ export default {
if (this.dataForm.id) { if (this.dataForm.id) {
locationDetail(this.dataForm.id).then(res => { locationDetail(this.dataForm.id).then(res => {
this.dataForm = res.data this.dataForm = res.data
// console.log(this.dataForm) console.log(this.dataForm)
}) })
} else { } else {
locationCode().then(res => { locationCode().then(res => {
@ -170,28 +173,6 @@ export default {
} }
}) })
} }
// isInt(value){
// for(var i = 0; i < value.length; i++) {
// if(charAt[i] == '.'){
// }
// }
// }
// isInt(value) {
// let zero = /^0+\d*$/ // 0()
// let dublue = /^0{2,}\.\d+$/ // 0
// let point = /^\d+\.?\d+$/ // ,0,()
// let reg = /^[1-9]{1}$/ //
// if (!value) {
// return false
// }
// if (zero.test(value) || dublue.test(value)) { //
// return false
// } else if (point.test(value) || reg.test(value)) { // ,reg
// return true
// } else {
// return false
// }
// }
} }
} }
</script> </script>

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Date: 2021-01-07 20:09:37 * @Date: 2021-01-07 20:09:37
* @LastEditors: fzq * @LastEditors: fzq
* @LastEditTime: 2022-03-15 09:48:09 * @LastEditTime: 2022-03-10 20:20:44
* @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue * @FilePath: \basic-admin\src\components\BaseTable\subcomponents\CheckDetail.vue
* @Description: * @Description:
--> -->
@ -26,7 +26,7 @@ export default {
query: { query: {
id: this.injectData.id, id: this.injectData.id,
code: this.injectData.code, code: this.injectData.code,
total: this.injectData.total, columnNum: this.injectData.columnNum,
shelfName: this.injectData.shelfName shelfName: this.injectData.shelfName
} }
}) })

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2020-12-29 16:37:56 * @Date: 2020-12-29 16:37:56
* @LastEditors: fzq * @LastEditors: fzq
* @LastEditTime: 2022-03-14 16:23:19 * @LastEditTime: 2022-03-09 16:53:31
* @Description: * @Description:
--> -->
<template> <template>
@ -59,15 +59,15 @@ export default {
options: [ options: [
{ {
value: 0, value: 0,
label: this.$t('module.basicData.storageBox.normal') label: '正常'
}, },
{ {
value: 1, value: 1,
label: this.$t('module.basicData.storageBox.repairing') label: '维修中'
}, },
{ {
value: 2, value: 2,
label: this.$t('module.basicData.storageBox.scrapped') label: '报废'
} }
], ],
dataRule: { dataRule: {

View File

@ -58,7 +58,7 @@
<el-input v-model="dataForm.equipmentType" :disabled="isdetail" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.equipment.EquipmentType')])" clearable :style="{width: '100%'}" /> <el-input v-model="dataForm.equipmentType" :disabled="isdetail" :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.equipment.EquipmentType')])" clearable :style="{width: '100%'}" />
</el-form-item> --> </el-form-item> -->
<el-form-item :label="$t('module.basicData.equipment.EquipmentType')" prop="EquipmentType"> <el-form-item :label="$t('module.basicData.equipment.EquipmentType')" prop="EquipmentType">
<el-select v-model="dataForm.equipmentType" :placeholder="this.$t('module.basicData.cache.logisticsEquipment')" default> <el-select v-model="dataForm.equipmentType" :placeholder="dataForm.equipmentType">
<el-option <el-option
v-for="item in options" v-for="item in options"
:key="item.value" :key="item.value"
@ -399,7 +399,7 @@ export default {
code: '', code: '',
enName: '', enName: '',
abbr: '', abbr: '',
equipmentType: this.$t('module.basicData.cache.logisticsEquipment'), equipmentType: '',
spec: '', spec: '',
createTime: '', createTime: '',
enterTime: '', enterTime: '',

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2020-12-29 15:41:11 * @Date: 2020-12-29 15:41:11
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2022-03-15 14:15:30 * @LastEditTime: 2022-03-11 16:29:46
* @Description: * @Description:
--> -->
<template> <template>
@ -33,6 +33,7 @@ import { locationByProcessList } from '@/api/basicData/Warehouse/StorageBoxInfo'
import i18n from '@/lang' import i18n from '@/lang'
import BaseTable from '@/components/BaseTable' import BaseTable from '@/components/BaseTable'
// import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn' // import MethodBtn from '@/components/BaseTable/subcomponents/MethodBtn'
import { timeFormatter } from '@/filters'
/** /**
* 表格表头配置项 TypeScript接口注释 * 表格表头配置项 TypeScript接口注释
* tableConfig<ConfigItem> = [] * tableConfig<ConfigItem> = []
@ -59,6 +60,7 @@ const tableProps = [
{ {
prop: 'code', prop: 'code',
label: i18n.t('module.basicData.cache.LocationCode'), label: i18n.t('module.basicData.cache.LocationCode'),
filter: timeFormatter,
align: 'center' align: 'center'
}, },
{ {

View File

@ -2,7 +2,7 @@
* @Author: gtz * @Author: gtz
* @Date: 2022-03-03 09:16:10 * @Date: 2022-03-03 09:16:10
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2022-03-15 14:27:57 * @LastEditTime: 2022-03-11 16:33:41
* @Description: file content * @Description: file content
* @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue * @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue
--> -->
@ -117,8 +117,26 @@
) )
" "
> >
<div v-if="z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3" class="dashboard-layout-item-cricle" :style="{background: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteList[0] ? cassetteStatusObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteList[0].status] : ''}" /> <div
{{ z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3 ? z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }} v-if="
z.portList[
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
].attribute !== 3
"
class="dashboard-layout-item-cricle"
:style="{
background:
cassetteStatusObj[
z.portList[
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
].cassetteList[0].status
]
}"
/>
{{
z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)]
.name
}}
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
@ -198,8 +216,26 @@
) )
" "
> >
<div v-if="z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3" class="dashboard-layout-item-cricle" :style="{background: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteList[0] ? cassetteStatusObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteList[0].status] : ''}" /> <div
{{ z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3 ? z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }} v-if="
z.portList[
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
].attribute !== 3
"
class="dashboard-layout-item-cricle"
:style="{
background:
cassetteStatusObj[
z.portList[
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
].cassetteList[0].status
]
}"
/>
{{
z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)]
.name
}}
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
@ -247,8 +283,26 @@
) )
" "
> >
<div v-if="z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3" class="dashboard-layout-item-cricle" :style="{background: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteList[0] ? cassetteStatusObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteList[0].status] : ''}" /> <div
{{ z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3 ? z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }} v-if="
z.portList[
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
].attribute !== 3
"
class="dashboard-layout-item-cricle"
:style="{
background:
cassetteStatusObj[
z.portList[
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
].cassetteList[0].status
]
}"
/>
{{
z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)]
.name
}}
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
@ -276,7 +330,7 @@ import testdata from './testdata'
import processStorageType from './processStorageType' import processStorageType from './processStorageType'
export default { export default {
name: 'ProcessStorageLink1', name: 'Dashboard',
components: { processStorageType }, components: { processStorageType },
data() { data() {
return testdata return testdata
@ -299,13 +353,13 @@ export default {
} else { } else {
this.typeVisible = true this.typeVisible = true
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.typeRef.init(item.id, item.name) this.$refs.typeRef.init(item.id)
}) })
} }
} }
}, },
setStorageList(locationId, locationName, dataForm) { setStorageList(locationId, dataForm) {
const obj = Object.assign({ locationId, locationName }, dataForm) const obj = Object.assign({ locationId }, dataForm)
this.selectStorageList.push(obj) this.selectStorageList.push(obj)
}, },
handleChange(v) { handleChange(v) {
@ -313,10 +367,10 @@ export default {
}, },
submitLinkList() { submitLinkList() {
const tipArr = this.selectStorageList.map(item => { const tipArr = this.selectStorageList.map(item => {
return item.locationName return item.locationId
}) })
const obj = { const obj = {
workSequenId: this.id, id: this.id,
processLocationStorageList: this.selectStorageList processLocationStorageList: this.selectStorageList
} }
this.$confirm(`${this.$t('module.basicData.visual.TipsStorageBefore')}[${tipArr.join(',')}]?`, this.$t('module.basicData.visual.Tips'), { this.$confirm(`${this.$t('module.basicData.visual.TipsStorageBefore')}[${tipArr.join(',')}]?`, this.$t('module.basicData.visual.Tips'), {

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2020-12-29 16:37:56 * @Date: 2020-12-29 16:37:56
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2022-03-15 11:02:46 * @LastEditTime: 2022-03-11 14:48:18
* @Description: * @Description:
--> -->
<template> <template>
@ -49,7 +49,6 @@ export default {
return { return {
visible: false, visible: false,
locationId: '', locationId: '',
locationName: '',
dataForm: { dataForm: {
portAttrId: 1, portAttrId: 1,
storageId: '' storageId: ''
@ -66,9 +65,8 @@ export default {
} }
}, },
methods: { methods: {
init(id, name) { init(id) {
this.locationId = id this.locationId = id
this.locationName = name
const listQuery = { const listQuery = {
current: 1, current: 1,
size: 999 size: 999
@ -80,9 +78,6 @@ export default {
this.storageBoxArr.splice(0, this.list.length) this.storageBoxArr.splice(0, this.list.length)
} }
}) })
this.$nextTick(() => {
this.$refs['dataForm'].resetFields()
})
this.visible = true this.visible = true
}, },
// //
@ -90,7 +85,7 @@ export default {
this.$refs['dataForm'].validate((valid) => { this.$refs['dataForm'].validate((valid) => {
if (valid) { if (valid) {
this.visible = false this.visible = false
this.$emit('refreshDataList', this.locationId, this.locationName, this.dataForm) this.$emit('refreshDataList', this.locationId, this.dataForm)
} }
}) })
} }

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
* @Author: gtz * @Author: gtz
* @Date: 2022-03-03 09:16:10 * @Date: 2022-03-03 09:16:10
* @LastEditors: gtz * @LastEditors: gtz
* @LastEditTime: 2022-03-15 16:47:57 * @LastEditTime: 2022-03-14 16:03:15
* @Description: file content * @Description: file content
* @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue * @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue
--> -->
@ -11,7 +11,7 @@
<el-card class="dashboard-main"> <el-card class="dashboard-main">
<el-row class="dashboard-title"> <el-row class="dashboard-title">
<div class="dashboard-header-line" /> <div class="dashboard-header-line" />
<div class="dashboard-header-title">{{ $t('module.dashboard.title') }}</div> <div class="dashboard-header-title">WMS库存信息</div>
</el-row> </el-row>
<el-row class="dashboard-legend"> <el-row class="dashboard-legend">
<div v-for="item in cassetteStatusList" :key="'cassette' + item.id" class="dashboard-legend-cassette"> <div v-for="item in cassetteStatusList" :key="'cassette' + item.id" class="dashboard-legend-cassette">
@ -24,7 +24,7 @@
</div> </div>
<div class="dashboard-legend-search"> <div class="dashboard-legend-search">
<el-select v-model="current" size="mini" placeholder="请选择库存范围" @change="handleChange"> <el-select v-model="current" size="mini" placeholder="请选择库存范围" @change="handleChange">
<el-option v-for="item in totalPage" :key="'select' + item" :label="$t('module.dashboard.pageHeader') + item + $t('module.dashboard.pageFooter')" :value="item" /> <el-option v-for="item in totalPage" :key="'select' + item" :label="'第' + item + '页'" :value="item" />
</el-select> </el-select>
</div> </div>
</el-row> </el-row>
@ -41,7 +41,7 @@
</el-col> </el-col>
</el-row> </el-row>
<div class="dashboard-layout-footer"> <div class="dashboard-layout-footer">
{{ $t(rowIndex[index]) + '(' + ((current - 1) * 4 + item) + ')' }} {{ '第' + rowIndex[index] + '排(' + ((current - 1) * 4 + item) + ')' }}
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
@ -68,7 +68,7 @@
</el-col> </el-col>
</el-row> </el-row>
<div class="dashboard-layout-footer"> <div class="dashboard-layout-footer">
{{ $t(rowIndex[index]) + '(' + ((current - 1) * 4 + item) + ')' }} {{ '第' + rowIndex[index] + '排(' + ((current - 1) * 4 + item) + ')' }}
</div> </div>
</el-col> </el-col>
</el-row> </el-row>

View File

@ -2,7 +2,7 @@
* @Author: gtz * @Author: gtz
* @Date: 2022-03-03 15:47:47 * @Date: 2022-03-03 15:47:47
* @LastEditors: gtz * @LastEditors: gtz
* @LastEditTime: 2022-03-15 16:46:04 * @LastEditTime: 2022-03-14 16:00:03
* @Description: file content * @Description: file content
* @FilePath: \mt-ck-wms-ui\src\views\dashboard\testdata.js * @FilePath: \mt-ck-wms-ui\src\views\dashboard\testdata.js
*/ */
@ -2604,5 +2604,5 @@ export default {
}, },
current: 1, current: 1,
totalPage: 1, totalPage: 1,
rowIndex: ['module.dashboard.first', 'module.dashboard.second'] rowIndex: ['一', '二']
} }

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2020-12-29 16:37:56 * @Date: 2020-12-29 16:37:56
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2022-03-15 10:50:00 * @LastEditTime: 2022-03-11 09:05:38
* @Description: * @Description:
--> -->
<template> <template>
@ -114,7 +114,7 @@
</template> </template>
<script> <script>
import { ExecutionInfoDetail } from '@/api/orderManage/00A' import { ProcessInfoDetail } from '@/api/orderManage/00A'
export default { export default {
data() { data() {
@ -146,7 +146,7 @@ export default {
this.$nextTick(() => { this.$nextTick(() => {
this.$refs['dataForm'].resetFields() this.$refs['dataForm'].resetFields()
if (this.dataForm.id) { if (this.dataForm.id) {
ExecutionInfoDetail(this.dataForm.id).then(res => { ProcessInfoDetail(this.dataForm.id).then(res => {
res.data.status = this.statusfilter('orderStatus', res.data.status) res.data.status = this.statusfilter('orderStatus', res.data.status)
res.data.type = this.statusfilter('orderType', res.data.type) res.data.type = this.statusfilter('orderType', res.data.type)
res.data.priority = this.statusfilter('priority', res.data.priority) res.data.priority = this.statusfilter('priority', res.data.priority)