Merge branch 'develop' into fzq
This commit is contained in:
commit
445ad7f280
27
src/api/dashboard.js
Normal file
27
src/api/dashboard.js
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* @Author: gtz
|
||||||
|
* @Date: 2022-03-16 16:08:06
|
||||||
|
* @LastEditors: gtz
|
||||||
|
* @LastEditTime: 2022-03-16 16:45:41
|
||||||
|
* @Description: file content
|
||||||
|
* @FilePath: \mt-ck-wms-ui\src\api\dashboard.js
|
||||||
|
*/
|
||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 获取菜单列表
|
||||||
|
export function getPortList(data) {
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/location/shelfList',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取菜单详情
|
||||||
|
export function getPortDetail(id) {
|
||||||
|
return request({
|
||||||
|
url: '/api/wms/storage/box/circ/info/getByLocationId',
|
||||||
|
method: 'post',
|
||||||
|
data: { id }
|
||||||
|
})
|
||||||
|
}
|
@ -115,6 +115,10 @@ export default {
|
|||||||
design: {
|
design: {
|
||||||
zh: '设计',
|
zh: '设计',
|
||||||
en: 'Design'
|
en: 'Design'
|
||||||
|
},
|
||||||
|
refresh: {
|
||||||
|
zh: '刷新',
|
||||||
|
en: 'Refresh'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
navbar: {
|
navbar: {
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2022-03-15 16:42:34
|
* @Date: 2022-03-15 16:42:34
|
||||||
* @LastEditors: zwq
|
* @LastEditors: gtz
|
||||||
* @LastEditTime: 2022-03-16 08:57:49
|
* @LastEditTime: 2022-03-16 20:01:32
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
* @FilePath: \mt-ck-wms-ui\src\lang\i18n\en\module\dashboard.js
|
* @FilePath: \mt-ck-wms-ui\src\lang\i18n\en\module\dashboard.js
|
||||||
*/
|
*/
|
||||||
@ -12,5 +12,12 @@ export default {
|
|||||||
second: 'Second Row',
|
second: 'Second Row',
|
||||||
title: 'WMS Inventory Information',
|
title: 'WMS Inventory Information',
|
||||||
pageHeader: 'No.',
|
pageHeader: 'No.',
|
||||||
pageFooter: ' Page'
|
pageFooter: ' Page',
|
||||||
|
isEmpty: 'Is Empty',
|
||||||
|
status: 'Status',
|
||||||
|
storageBoxCode: 'Cassette Code',
|
||||||
|
name: 'Location Name',
|
||||||
|
attribute: 'Location Attribute',
|
||||||
|
cassetteStatus: 'Cassette Status',
|
||||||
|
workOrderNo: 'Work Order Number'
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: gtz
|
* @Author: gtz
|
||||||
* @Date: 2022-03-15 16:42:34
|
* @Date: 2022-03-15 16:42:34
|
||||||
* @LastEditors: gtz
|
* @LastEditors: gtz
|
||||||
* @LastEditTime: 2022-03-15 16:58:30
|
* @LastEditTime: 2022-03-16 20:01:27
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
* @FilePath: \mt-ck-wms-ui\src\lang\i18n\zh\module\dashboard.js
|
* @FilePath: \mt-ck-wms-ui\src\lang\i18n\zh\module\dashboard.js
|
||||||
*/
|
*/
|
||||||
@ -12,5 +12,12 @@ export default {
|
|||||||
second: '第二排',
|
second: '第二排',
|
||||||
title: 'WMS库存信息',
|
title: 'WMS库存信息',
|
||||||
pageHeader: '第',
|
pageHeader: '第',
|
||||||
pageFooter: '页'
|
pageFooter: '页',
|
||||||
|
isEmpty: '是否为空',
|
||||||
|
status: '状态',
|
||||||
|
storageBoxCode: '存储箱编码',
|
||||||
|
name: '库位名',
|
||||||
|
attribute: '库位属性',
|
||||||
|
cassetteStatus: '存储箱状态',
|
||||||
|
workOrderNo: '工单号'
|
||||||
}
|
}
|
||||||
|
@ -11,10 +11,10 @@
|
|||||||
|
|
||||||
<div class="right-menu">
|
<div class="right-menu">
|
||||||
|
|
||||||
<div v-if="showhome" class="right-menu-back" @click="toHome">
|
<!-- <div v-if="showhome" class="right-menu-back" @click="toHome">
|
||||||
<svg-icon class="item-icon" icon-class="home" />
|
<svg-icon class="item-icon" icon-class="home" />
|
||||||
{{ 'navbar.homepage' | i18nFilter }}
|
{{ 'navbar.homepage' | i18nFilter }}
|
||||||
</div>
|
</div> -->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<lang-select class="right-menu-item hover-effect" />
|
<lang-select class="right-menu-item hover-effect" />
|
||||||
|
@ -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-09 16:53:23
|
* @LastEditTime: 2022-03-16 14:30:59
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -15,7 +15,7 @@
|
|||||||
<el-input v-model="dataForm.name" :placeholder="$i18nForm(['placeholder.input', $t('module.art.processList.processName')])" clearable />
|
<el-input v-model="dataForm.name" :placeholder="$i18nForm(['placeholder.input', $t('module.art.processList.processName')])" clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.art.processList.processEq')" prop="equipmentIds">
|
<el-form-item :label="$t('module.art.processList.processEq')" prop="equipmentIds">
|
||||||
<el-select v-model="dataForm.equipmentIds" clearable filterable multiple>
|
<el-select v-model="dataForm.equipmentIds" clearable filterable multiple @change="$forceUpdate()">
|
||||||
<el-option v-for="item in eqList" :key="item.id" :value="item.id" :label="item.name" />
|
<el-option v-for="item in eqList" :key="item.id" :value="item.id" :label="item.name" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -399,7 +399,7 @@ export default {
|
|||||||
code: '',
|
code: '',
|
||||||
enName: '',
|
enName: '',
|
||||||
abbr: '',
|
abbr: '',
|
||||||
equipmentType: this.$t('module.basicData.cache.logisticsEquipment'),
|
equipmentType: '1',
|
||||||
spec: '',
|
spec: '',
|
||||||
createTime: '',
|
createTime: '',
|
||||||
enterTime: '',
|
enterTime: '',
|
||||||
@ -442,6 +442,11 @@ export default {
|
|||||||
required: true,
|
required: true,
|
||||||
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.equipment.EquipmentCode')]),
|
message: this.$i18nForm(['placeholder.input', this.$t('module.basicData.equipment.EquipmentCode')]),
|
||||||
trigger: 'blur'
|
trigger: 'blur'
|
||||||
|
}],
|
||||||
|
equipmentType: [{
|
||||||
|
required: true,
|
||||||
|
message: this.$i18nForm(['placeholder.select', this.$t('module.basicData.equipment.EquipmentType')]),
|
||||||
|
trigger: 'blur'
|
||||||
}]
|
}]
|
||||||
// maintenanceCycle: [{
|
// maintenanceCycle: [{
|
||||||
// required: true,
|
// required: true,
|
||||||
|
@ -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-16 09:52:07
|
* @LastEditTime: 2022-03-17 14:50:20
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -62,7 +62,7 @@ const tableProps = [
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'locationName',
|
||||||
label: i18n.t('module.basicData.cache.LocationName'),
|
label: i18n.t('module.basicData.cache.LocationName'),
|
||||||
align: 'center'
|
align: 'center'
|
||||||
}
|
}
|
||||||
|
@ -2,16 +2,18 @@
|
|||||||
* @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-16 10:11:10
|
* @LastEditTime: 2022-03-18 09:25:04
|
||||||
* @Description: file content
|
* @Description: file content
|
||||||
* @FilePath: \mt-ck-wms-ui\src\views\dashboard\index.vue
|
* @FilePath: \mt-ck-wms-ui\src\views\basicData\Warehouse\components\processStorageLink.vue
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="dashboard-container">
|
<div class="dashboard-container">
|
||||||
<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">
|
||||||
|
{{ $t("module.dashboard.title") }}
|
||||||
|
</div>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row class="dashboard-legend">
|
<el-row class="dashboard-legend">
|
||||||
<div
|
<div
|
||||||
@ -38,21 +40,33 @@
|
|||||||
<el-button type="primary" size="mini" @click="submitLinkList">{{
|
<el-button type="primary" size="mini" @click="submitLinkList">{{
|
||||||
"btn.submit" | i18nFilter
|
"btn.submit" | i18nFilter
|
||||||
}}</el-button>
|
}}</el-button>
|
||||||
<el-button type="warning" size="mini" @click="init()">{{ 'btn.reset' | i18nFilter }}</el-button>
|
<el-button type="warning" size="mini" @click="init()">{{
|
||||||
<el-button type="success" size="mini" @click="goback()">{{ 'btn.back' | i18nFilter }}</el-button>
|
"btn.reset" | i18nFilter
|
||||||
|
}}</el-button>
|
||||||
|
<el-button type="success" size="mini" @click="goback()">{{
|
||||||
|
"btn.back" | i18nFilter
|
||||||
|
}}</el-button>
|
||||||
</div>
|
</div>
|
||||||
<div class="dashboard-legend-search">
|
<div class="dashboard-legend-search">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="current"
|
v-model="current"
|
||||||
size="mini"
|
size="mini"
|
||||||
placeholder="请选择库存范围"
|
|
||||||
@change="handleChange"
|
@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="
|
||||||
|
$t('module.dashboard.pageHeader') +
|
||||||
|
item +
|
||||||
|
$t('module.dashboard.pageFooter')
|
||||||
|
"
|
||||||
|
:value="item"
|
||||||
|
/>
|
||||||
</el-select>
|
</el-select>
|
||||||
</div>
|
</div>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row
|
<el-row
|
||||||
v-if="current * 80 < shelfList[0].rowList[0].portList.length"
|
v-if="current * 80 < shelfVoList[0].rowVoList[0].portVoList.length"
|
||||||
class="dashboard-layout"
|
class="dashboard-layout"
|
||||||
:gutter="12"
|
:gutter="12"
|
||||||
>
|
>
|
||||||
@ -64,14 +78,14 @@
|
|||||||
>
|
>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col
|
<el-col
|
||||||
v-for="(i, index) in shelfList"
|
v-for="(i, index) in shelfVoList"
|
||||||
:key="item + 'shelf' + i.id"
|
:key="item + 'shelf' + i.id"
|
||||||
:span="12"
|
:span="12"
|
||||||
class="dashboard-layout-shelf"
|
class="dashboard-layout-shelf"
|
||||||
>
|
>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col
|
<el-col
|
||||||
v-for="z in i.rowList"
|
v-for="z in i.rowVoList"
|
||||||
:key="item + 'shelf' + i + 'row' + z.id"
|
:key="item + 'shelf' + i + 'row' + z.id"
|
||||||
:span="12"
|
:span="12"
|
||||||
class="dashboard-layout-row"
|
class="dashboard-layout-row"
|
||||||
@ -83,41 +97,89 @@
|
|||||||
:style="{
|
:style="{
|
||||||
background:
|
background:
|
||||||
portAttributeObj[
|
portAttributeObj[
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute
|
].attribute
|
||||||
],
|
],
|
||||||
cursor:
|
cursor:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === 3
|
||||||
? 'not-allowed'
|
? 'not-allowed'
|
||||||
: 'pointer',
|
: 'pointer',
|
||||||
color:
|
color:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === 3
|
||||||
? '#A2A8B5'
|
? '#A2A8B5'
|
||||||
: '',
|
: '',
|
||||||
border:
|
border: selectStorageList.some(
|
||||||
selectStorageList.some(StorageItem=>StorageItem.locationId===z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].id)
|
StorageItem =>
|
||||||
? '1px solid red' : ''
|
StorageItem.locationId ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)
|
||||||
|
? '2px dashed red'
|
||||||
|
: ''
|
||||||
}"
|
}"
|
||||||
@click="
|
@click="
|
||||||
setType(
|
setType(
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<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.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].attribute !== 3
|
||||||
|
"
|
||||||
|
class="dashboard-layout-item-cricle"
|
||||||
|
:style="{
|
||||||
|
background: z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].cassetteVoList[0]
|
||||||
|
? cassetteStatusObj[
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].cassetteVoList[0].status
|
||||||
|
]
|
||||||
|
: ''
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
v-if="
|
||||||
|
StorageList.some(
|
||||||
|
StorageItem =>
|
||||||
|
StorageItem.id ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)"
|
||||||
|
class="dashboard-layout-item-horn"
|
||||||
|
/>
|
||||||
|
{{
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].attribute !== 3
|
||||||
|
? z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].name
|
||||||
|
: "XXXX"
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<div class="dashboard-layout-footer">
|
<div class="dashboard-layout-footer">
|
||||||
{{ $t(bottomIndex[index]) + '(' + ((current - 1) * 4 + item) + ')' }}
|
{{
|
||||||
|
$t(bottomIndex[index]) +
|
||||||
|
"(" +
|
||||||
|
((current - 1) * 4 + item) +
|
||||||
|
")"
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -126,7 +188,9 @@
|
|||||||
<el-row v-else class="dashboard-layout" :gutter="12">
|
<el-row v-else class="dashboard-layout" :gutter="12">
|
||||||
<el-col
|
<el-col
|
||||||
v-for="item in Math.ceil(
|
v-for="item in Math.ceil(
|
||||||
(shelfList[0].rowList[0].portList.length - (current - 1) * 80) / 20
|
(shelfVoList[0].rowVoList[0].portVoList.length -
|
||||||
|
(current - 1) * 80) /
|
||||||
|
20
|
||||||
)"
|
)"
|
||||||
:key="'shelfbox' + item"
|
:key="'shelfbox' + item"
|
||||||
class="dashboard-layout-shelf-box"
|
class="dashboard-layout-shelf-box"
|
||||||
@ -134,7 +198,7 @@
|
|||||||
>
|
>
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col
|
<el-col
|
||||||
v-for="(i, index) in shelfList"
|
v-for="(i, index) in shelfVoList"
|
||||||
:key="item + 'shelf' + i.id"
|
:key="item + 'shelf' + i.id"
|
||||||
:span="12"
|
:span="12"
|
||||||
class="dashboard-layout-shelf"
|
class="dashboard-layout-shelf"
|
||||||
@ -143,14 +207,14 @@
|
|||||||
v-if="
|
v-if="
|
||||||
item <
|
item <
|
||||||
Math.ceil(
|
Math.ceil(
|
||||||
(shelfList[0].rowList[0].portList.length -
|
(shelfVoList[0].rowVoList[0].portVoList.length -
|
||||||
(current - 1) * 80) /
|
(current - 1) * 80) /
|
||||||
20
|
20
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<el-col
|
<el-col
|
||||||
v-for="z in i.rowList"
|
v-for="z in i.rowVoList"
|
||||||
:key="item + 'shelf' + i + 'row' + z.id"
|
:key="item + 'shelf' + i + 'row' + z.id"
|
||||||
:span="12"
|
:span="12"
|
||||||
class="dashboard-layout-row"
|
class="dashboard-layout-row"
|
||||||
@ -162,48 +226,91 @@
|
|||||||
:style="{
|
:style="{
|
||||||
background:
|
background:
|
||||||
portAttributeObj[
|
portAttributeObj[
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute
|
].attribute
|
||||||
],
|
],
|
||||||
cursor:
|
cursor:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === 3
|
||||||
? 'not-allowed'
|
? 'not-allowed'
|
||||||
: 'pointer',
|
: 'pointer',
|
||||||
color:
|
color:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === 3
|
||||||
? '#A2A8B5'
|
? '#A2A8B5'
|
||||||
: '',
|
: '',
|
||||||
border:
|
border: selectStorageList.some(
|
||||||
selectStorageList.some(StorageItem=>StorageItem.locationId===z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].id)
|
StorageItem =>
|
||||||
? '1px solid red' : ''
|
StorageItem.locationId ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)
|
||||||
|
? '2px dashed red'
|
||||||
|
: ''
|
||||||
}"
|
}"
|
||||||
@click="
|
@click="
|
||||||
setType(
|
setType(
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<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.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].attribute !== 3
|
||||||
|
"
|
||||||
|
class="dashboard-layout-item-cricle"
|
||||||
|
:style="{
|
||||||
|
background: z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].cassetteVoList[0]
|
||||||
|
? cassetteStatusObj[
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].cassetteVoList[0].status
|
||||||
|
]
|
||||||
|
: ''
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
v-if="
|
||||||
|
StorageList.some(
|
||||||
|
StorageItem =>
|
||||||
|
StorageItem.id ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)"
|
||||||
|
class="dashboard-layout-item-horn"
|
||||||
|
/>
|
||||||
|
{{
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].attribute !== 3
|
||||||
|
? z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].name
|
||||||
|
: "XXXX"
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row v-else>
|
<el-row v-else>
|
||||||
<el-col
|
<el-col
|
||||||
v-for="z in i.rowList"
|
v-for="z in i.rowVoList"
|
||||||
:key="item + 'shelf' + i + 'row' + z.id"
|
:key="item + 'shelf' + i + 'row' + z.id"
|
||||||
:span="12"
|
:span="12"
|
||||||
class="dashboard-layout-row"
|
class="dashboard-layout-row"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-for="x in shelfList[0].rowList[0].portList.length -
|
v-for="x in shelfVoList[0].rowVoList[0].portVoList.length -
|
||||||
(item - 1) * 20 -
|
(item - 1) * 20 -
|
||||||
(current - 1) * 80"
|
(current - 1) * 80"
|
||||||
:key="item + 'shelf' + i + 'row' + z + 'item' + x"
|
:key="item + 'shelf' + i + 'row' + z + 'item' + x"
|
||||||
@ -211,41 +318,89 @@
|
|||||||
:style="{
|
:style="{
|
||||||
background:
|
background:
|
||||||
portAttributeObj[
|
portAttributeObj[
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute
|
].attribute
|
||||||
],
|
],
|
||||||
cursor:
|
cursor:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === 3
|
||||||
? 'not-allowed'
|
? 'not-allowed'
|
||||||
: 'pointer',
|
: 'pointer',
|
||||||
color:
|
color:
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
].attribute === 3
|
].attribute === 3
|
||||||
? '#A2A8B5'
|
? '#A2A8B5'
|
||||||
: '',
|
: '',
|
||||||
border:
|
border: selectStorageList.some(
|
||||||
selectStorageList.some(StorageItem=>StorageItem.locationId===z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].id)
|
StorageItem =>
|
||||||
? '1px solid red' : ''
|
StorageItem.locationId ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)
|
||||||
|
? '2px dashed red'
|
||||||
|
: ''
|
||||||
}"
|
}"
|
||||||
@click="
|
@click="
|
||||||
setType(
|
setType(
|
||||||
z.portList[
|
z.portVoList[
|
||||||
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<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.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].attribute !== 3
|
||||||
|
"
|
||||||
|
class="dashboard-layout-item-cricle"
|
||||||
|
:style="{
|
||||||
|
background: z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].cassetteVoList[0]
|
||||||
|
? cassetteStatusObj[
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].cassetteVoList[0].status
|
||||||
|
]
|
||||||
|
: ''
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
v-if="
|
||||||
|
StorageList.some(
|
||||||
|
StorageItem =>
|
||||||
|
StorageItem.id ===
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].id
|
||||||
|
)"
|
||||||
|
class="dashboard-layout-item-horn"
|
||||||
|
/>
|
||||||
|
{{
|
||||||
|
z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].attribute !== 3
|
||||||
|
? z.portVoList[
|
||||||
|
(current - 1) * 80 + (item - 1) * 20 + (x - 1)
|
||||||
|
].name
|
||||||
|
: "XXXX"
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<div class="dashboard-layout-footer">
|
<div class="dashboard-layout-footer">
|
||||||
{{ $t(bottomIndex[index]) + '(' + ((current - 1) * 4 + item) + ')' }}
|
{{
|
||||||
|
$t(bottomIndex[index]) +
|
||||||
|
"(" +
|
||||||
|
((current - 1) * 4 + item) +
|
||||||
|
")"
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -261,6 +416,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { getPortList } from '@/api/dashboard'
|
||||||
|
import { locationByProcessList } from '@/api/basicData/Warehouse/StorageBoxInfo'
|
||||||
import { batchListAdd } from '@/api/basicData/Warehouse/StorageBoxInfo'
|
import { batchListAdd } from '@/api/basicData/Warehouse/StorageBoxInfo'
|
||||||
import testdata from './testdata'
|
import testdata from './testdata'
|
||||||
import processStorageType from './processStorageType'
|
import processStorageType from './processStorageType'
|
||||||
@ -274,22 +431,52 @@ export default {
|
|||||||
created() {
|
created() {
|
||||||
this.id = this.$route.query.id
|
this.id = this.$route.query.id
|
||||||
this.totalPage = Math.ceil(
|
this.totalPage = Math.ceil(
|
||||||
this.shelfList[0].rowList[0].portList.length / 80
|
this.shelfVoList[0].rowVoList[0].portVoList.length / 80
|
||||||
)
|
)
|
||||||
this.init()
|
this.init()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init() {
|
init() {
|
||||||
|
getPortList().then(res => {
|
||||||
|
this.shelfVoList = res.data[0].shelfVoList
|
||||||
|
this.totalPage = Math.ceil(
|
||||||
|
this.shelfVoList[0].rowVoList[0].portVoList.length / 80
|
||||||
|
)
|
||||||
|
})
|
||||||
|
locationByProcessList({
|
||||||
|
current: 1,
|
||||||
|
size: 990,
|
||||||
|
workSequenId: this.id
|
||||||
|
}).then(response => {
|
||||||
|
if (response.data.records) {
|
||||||
|
this.StorageList = response.data.records
|
||||||
|
} else {
|
||||||
|
this.StorageList.splice(0, this.StorageList.length)
|
||||||
|
}
|
||||||
|
})
|
||||||
this.selectStorageList.splice(0, this.selectStorageList.length)
|
this.selectStorageList.splice(0, this.selectStorageList.length)
|
||||||
},
|
},
|
||||||
setType(item) {
|
setType(item) {
|
||||||
if (item.attribute !== 3) {
|
if (item.attribute !== 3) {
|
||||||
if (this.selectStorageList.findIndex(StorageItem => StorageItem.locationId === item.id) + 1) {
|
if (
|
||||||
this.selectStorageList.splice(this.selectStorageList.findIndex(StorageItem => StorageItem.locationId === item.id), 1)
|
this.selectStorageList.findIndex(
|
||||||
|
StorageItem => StorageItem.locationId === item.id
|
||||||
|
) + 1
|
||||||
|
) {
|
||||||
|
this.selectStorageList.splice(
|
||||||
|
this.selectStorageList.findIndex(
|
||||||
|
StorageItem => StorageItem.locationId === item.id
|
||||||
|
),
|
||||||
|
1
|
||||||
|
)
|
||||||
} else {
|
} else {
|
||||||
|
const isExist = this.StorageList.some(
|
||||||
|
StorageItem =>
|
||||||
|
StorageItem.id === item.id
|
||||||
|
)
|
||||||
this.typeVisible = true
|
this.typeVisible = true
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.typeRef.init(item.id, item.name)
|
this.$refs.typeRef.init(item.id, item.name, item.attribute, isExist)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -310,22 +497,34 @@ export default {
|
|||||||
workSequenId: this.id,
|
workSequenId: 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(
|
||||||
confirmButtonText: this.$t('module.basicData.visual.confirmButtonText'),
|
`${this.$t(
|
||||||
cancelButtonText: this.$t('module.basicData.visual.cancelButtonText'),
|
'module.basicData.visual.TipsStorageBefore'
|
||||||
type: 'warning'
|
)}[${tipArr.join(',')}]?`,
|
||||||
}).then(() => {
|
this.$t('module.basicData.visual.Tips'),
|
||||||
batchListAdd(obj).then(res => {
|
{
|
||||||
this.$message({
|
confirmButtonText: this.$t(
|
||||||
message: this.$t('module.basicData.visual.success'),
|
'module.basicData.visual.confirmButtonText'
|
||||||
type: 'success',
|
),
|
||||||
duration: 1500,
|
cancelButtonText: this.$t(
|
||||||
onClose: () => {
|
'module.basicData.visual.cancelButtonText'
|
||||||
this.selectStorageList.splice(0, this.selectStorageList.length)
|
),
|
||||||
}
|
type: 'warning'
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
batchListAdd(obj).then(res => {
|
||||||
|
this.$message({
|
||||||
|
message: this.$t('module.basicData.visual.success'),
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.init()
|
||||||
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}).catch(() => {})
|
.catch(() => {})
|
||||||
} else {
|
} else {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: this.$t('module.basicData.visual.PleaseAddLocationFirst'),
|
message: this.$t('module.basicData.visual.PleaseAddLocationFirst'),
|
||||||
@ -425,6 +624,7 @@ export default {
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
position: relative;
|
||||||
.dashboard-layout-item-cricle {
|
.dashboard-layout-item-cricle {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
@ -432,6 +632,16 @@ export default {
|
|||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
margin-right: 6px;
|
margin-right: 6px;
|
||||||
}
|
}
|
||||||
|
.dashboard-layout-item-horn {
|
||||||
|
position: absolute;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 14px 0px 0px 14px;
|
||||||
|
border-color: #0B58FF transparent transparent transparent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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-16 09:47:01
|
* @LastEditTime: 2022-03-18 09:39:09
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -18,9 +18,9 @@
|
|||||||
label-position="left"
|
label-position="left"
|
||||||
>
|
>
|
||||||
<el-form-item :label="$t('module.basicData.Warehouse.SelectStorageType')" prop="portAttrId">
|
<el-form-item :label="$t('module.basicData.Warehouse.SelectStorageType')" prop="portAttrId">
|
||||||
<el-radio v-model="dataForm.portAttrId" :label="1">Working Port</el-radio>
|
<el-radio v-model="dataForm.portAttrId" label="1">Working Port</el-radio>
|
||||||
<el-radio v-model="dataForm.portAttrId" :label="2">Buffer Port</el-radio>
|
<el-radio v-model="dataForm.portAttrId" label="2">Buffer Port</el-radio>
|
||||||
<el-radio v-model="dataForm.portAttrId" :label="3">Exception Port</el-radio>
|
<el-radio v-model="dataForm.portAttrId" label="3">Exception Port</el-radio>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item :label="$t('module.basicData.storageBox.name')" prop="storageId">
|
<el-form-item :label="$t('module.basicData.storageBox.name')" prop="storageId">
|
||||||
<el-select v-model="dataForm.storageId" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.storageBox.name')])" clearable>
|
<el-select v-model="dataForm.storageId" filterable :placeholder="$i18nForm(['placeholder.input', $t('module.basicData.storageBox.name')])" clearable>
|
||||||
@ -41,6 +41,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { getPortDetail } from '@/api/dashboard'
|
||||||
import { storageBoxList } from '@/api/basicData/Cache/storageBox'
|
import { storageBoxList } from '@/api/basicData/Cache/storageBox'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -50,7 +51,7 @@ export default {
|
|||||||
locationId: '',
|
locationId: '',
|
||||||
locationName: '',
|
locationName: '',
|
||||||
dataForm: {
|
dataForm: {
|
||||||
portAttrId: 1,
|
portAttrId: '1',
|
||||||
storageId: ''
|
storageId: ''
|
||||||
},
|
},
|
||||||
dataRule: {
|
dataRule: {
|
||||||
@ -65,7 +66,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init(id, name) {
|
init(id, name, attribute, isExist) {
|
||||||
this.locationId = id
|
this.locationId = id
|
||||||
this.locationName = name
|
this.locationName = name
|
||||||
const listQuery = {
|
const listQuery = {
|
||||||
@ -81,6 +82,16 @@ export default {
|
|||||||
})
|
})
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['dataForm'].resetFields()
|
this.$refs['dataForm'].resetFields()
|
||||||
|
if (attribute) {
|
||||||
|
this.dataForm.portAttrId = attribute
|
||||||
|
} else {
|
||||||
|
this.dataForm.portAttrId = '1'
|
||||||
|
}
|
||||||
|
if (isExist) {
|
||||||
|
getPortDetail(id).then(res => {
|
||||||
|
if (res.code === 0) { this.dataForm.storageId = res.data.storageBoxId }
|
||||||
|
})
|
||||||
|
}
|
||||||
})
|
})
|
||||||
this.visible = true
|
this.visible = true
|
||||||
},
|
},
|
||||||
|
File diff suppressed because it is too large
Load Diff
75
src/views/dashboard/components/PortDetail.vue
Normal file
75
src/views/dashboard/components/PortDetail.vue
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2020-12-29 16:37:56
|
||||||
|
* @LastEditors: gtz
|
||||||
|
* @LastEditTime: 2022-03-17 10:49:54
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
:title="'btn.detail' | i18nFilter"
|
||||||
|
:visible.sync="visible"
|
||||||
|
>
|
||||||
|
<el-form ref="dataForm" :model="dataForm" label-width="150px">
|
||||||
|
<el-form-item :label="$t('module.dashboard.name')" prop="name">
|
||||||
|
{{ dataForm.name }}
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.dashboard.attribute')" prop="attribute">
|
||||||
|
{{ dataForm.attribute ? portAttributeObj[dataForm.attribute] : '' }}
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.dashboard.cassetteStatus')" prop="cassetteVoList">
|
||||||
|
{{ dataForm.cassetteVoList.length && dataForm.cassetteVoList[0].status ? cassetteStatusObj[dataForm.cassetteVoList[0].status] : '' }}
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.dashboard.workOrderNo')" prop="workOrderNo">
|
||||||
|
{{ dataForm.workOrderNo }}
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item :label="$t('module.dashboard.storageBoxCode')" prop="storageBoxCode">
|
||||||
|
{{ dataForm.storageBoxCode }}
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<span slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="visible = false">{{ 'btn.cancel' | i18nFilter }}</el-button>
|
||||||
|
</span>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
dataForm: {
|
||||||
|
code: null,
|
||||||
|
createTime: null,
|
||||||
|
currLocation: null,
|
||||||
|
currLocationId: null,
|
||||||
|
id: null,
|
||||||
|
isEmpty: null,
|
||||||
|
status: null,
|
||||||
|
storageBoxCode: null,
|
||||||
|
storageBoxId: null,
|
||||||
|
updateTime: null
|
||||||
|
},
|
||||||
|
cassetteStatusObj: {
|
||||||
|
'1': 'Empty Cassette',
|
||||||
|
'2': 'Dummy Cassette',
|
||||||
|
'3': 'OK Cassette',
|
||||||
|
'4': 'NOK Cassette'
|
||||||
|
},
|
||||||
|
portAttributeObj: {
|
||||||
|
1: 'Working Port',
|
||||||
|
2: 'Buffer Port',
|
||||||
|
3: 'Exception Port'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(data) {
|
||||||
|
console.log(data)
|
||||||
|
this.visible = true
|
||||||
|
this.dataForm = data
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
@ -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-16 20:07:40
|
||||||
* @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
|
||||||
-->
|
-->
|
||||||
@ -23,20 +23,21 @@
|
|||||||
{{ item.name }}
|
{{ item.name }}
|
||||||
</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" @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="$t('module.dashboard.pageHeader') + item + $t('module.dashboard.pageFooter')" :value="item" />
|
||||||
</el-select>
|
</el-select>
|
||||||
|
<el-button type="primary" @click="refresh">{{ 'btn.refresh' | i18nFilter }}</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row v-if="current * 80 < shelfList[0].rowList[0].portList.length" class="dashboard-layout" :gutter="12">
|
<el-row v-if="current * 80 < shelfVoList[0].rowVoList[0].portVoList.length" class="dashboard-layout" :gutter="12">
|
||||||
<el-col v-for="item in 4" :key="'shelfbox' + item" class="dashboard-layout-shelf-box" :span="6">
|
<el-col v-for="item in 4" :key="'shelfbox' + item" class="dashboard-layout-shelf-box" :span="6">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col v-for="(i, index) in shelfList" :key="item + 'shelf' + i.id" :span="12" class="dashboard-layout-shelf">
|
<el-col v-for="(i, index) in shelfVoList" :key="item + 'shelf' + i.id" :span="12" class="dashboard-layout-shelf">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col v-for="z in i.rowList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
<el-col v-for="z in i.rowVoList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
||||||
<div v-for="x in 20" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? 'not-allowed' : 'pointer', color: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? '#A2A8B5' : ''}">
|
<div v-for="x in 20" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? 'not-allowed' : 'pointer', color: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? '#A2A8B5' : ''}" @click="handlePort(z, x)">
|
||||||
<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 v-if="z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3" class="dashboard-layout-item-cricle" :style="{background: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0] ? cassetteStatusObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0].status] : ''}" />
|
||||||
{{ z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3 ? z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }}
|
{{ z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3 ? z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -48,22 +49,22 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row v-else class="dashboard-layout" :gutter="12">
|
<el-row v-else class="dashboard-layout" :gutter="12">
|
||||||
<el-col v-for="item in Math.ceil((shelfList[0].rowList[0].portList.length - (current - 1) * 80) / 20)" :key="'shelfbox' + item" class="dashboard-layout-shelf-box" :span="6">
|
<el-col v-for="item in Math.ceil((shelfVoList[0].rowVoList[0].portVoList.length - (current - 1) * 80) / 20)" :key="'shelfbox' + item" class="dashboard-layout-shelf-box" :span="6">
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col v-for="(i, index) in shelfList" :key="item + 'shelf' + i.id" :span="12" class="dashboard-layout-shelf">
|
<el-col v-for="(i, index) in shelfVoList" :key="item + 'shelf' + i.id" :span="12" class="dashboard-layout-shelf">
|
||||||
<el-row v-if="item < Math.ceil((shelfList[0].rowList[0].portList.length - (current - 1) * 80) / 20)">
|
<el-row v-if="item < Math.ceil((shelfVoList[0].rowVoList[0].portVoList.length - (current - 1) * 80) / 20)">
|
||||||
<el-col v-for="z in i.rowList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
<el-col v-for="z in i.rowVoList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
||||||
<div v-for="x in 20" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? 'not-allowed' : 'pointer', color: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? '#A2A8B5' : ''}">
|
<div v-for="x in 20" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? 'not-allowed' : 'pointer', color: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? '#A2A8B5' : ''}" @click="handlePort(z, x)">
|
||||||
<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 v-if="z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3" class="dashboard-layout-item-cricle" :style="{background: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0] ? cassetteStatusObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0].status] : ''}" />
|
||||||
{{ z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3 ? z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }}
|
{{ z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3 ? z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row v-else>
|
<el-row v-else>
|
||||||
<el-col v-for="z in i.rowList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
<el-col v-for="z in i.rowVoList" :key="item + 'shelf' + i + 'row' + z.id" :span="12" class="dashboard-layout-row">
|
||||||
<div v-for="x in shelfList[0].rowList[0].portList.length - (item - 1) * 20 - (current - 1) * 80" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? 'not-allowed' : 'pointer', color: z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? '#A2A8B5' : ''}">
|
<div v-for="x in shelfVoList[0].rowVoList[0].portVoList.length - (item - 1) * 20 - (current - 1) * 80" :key="item + 'shelf' + i + 'row' + z + 'item' + x" class="dashboard-layout-item" :style="{background: portAttributeObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute], cursor: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? 'not-allowed' : 'pointer', color: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute === 3 ? '#A2A8B5' : ''}" @click="handlePort(z, x)">
|
||||||
<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 v-if="z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3" class="dashboard-layout-item-cricle" :style="{background: z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0] ? cassetteStatusObj[z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].cassetteVoList[0].status] : ''}" />
|
||||||
{{ z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3 ? z.portList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }}
|
{{ z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].attribute !== 3 ? z.portVoList[(current - 1) * 80 + (item - 1) * 20 + (x - 1)].name : 'XXXX' }}
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
@ -75,24 +76,45 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
<port-detail ref="addOrUpdate" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import testdata from './testdata'
|
import testdata from './testdata'
|
||||||
|
import { getPortList, getPortDetail } from '@/api/dashboard'
|
||||||
|
import portDetail from './components/PortDetail'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Dashboard',
|
name: 'Dashboard',
|
||||||
|
components: { portDetail },
|
||||||
data() {
|
data() {
|
||||||
return testdata
|
return testdata
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
console.log(this.shelfList)
|
this.totalPage = Math.ceil(this.shelfVoList[0].rowVoList[0].portVoList.length / 80)
|
||||||
this.totalPage = Math.ceil(this.shelfList[0].rowList[0].portList.length / 80)
|
this.init()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
init() {
|
||||||
|
getPortList().then(res => {
|
||||||
|
this.shelfVoList = res.data[0].shelfVoList
|
||||||
|
this.totalPage = Math.ceil(this.shelfVoList[0].rowVoList[0].portVoList.length / 80)
|
||||||
|
})
|
||||||
|
},
|
||||||
handleChange(v) {
|
handleChange(v) {
|
||||||
console.log(v)
|
console.log(v)
|
||||||
|
},
|
||||||
|
handlePort(z, x) {
|
||||||
|
getPortDetail(z.portVoList[x - 1].id).then(res => {
|
||||||
|
this.addOrUpdateVisible = true
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init({ ...(res.data), ...z.portVoList[x - 1] })
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
refresh() {
|
||||||
|
this.init()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user