This commit is contained in:
24kycj
2025-04-25 11:49:23 +08:00
parent 82c95b07a0
commit 293c47506c
10 changed files with 52 additions and 3 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 492 B

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 307 KiB

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 256 KiB

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 525 B

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 591 B

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 262 B

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 411 B

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 658 B

After

Width:  |  Height:  |  Size: 1.8 KiB

+18 -1
View File
@@ -46,7 +46,7 @@
<!-- 左侧 --> <!-- 左侧 -->
<div class="device_left"> <div class="device_left">
<div class="flex_box device_left_top"> <div class="flex_box device_left_top">
<img v-if="!printer_info.cover_flag" class="flex_shrink device_img" :src="printer_info.printer_name?deviceImg[printer_info.printer_name].img1:deviceImg['4200'].img1" /> <img v-if="!printer_info.cover_flag" class="flex_shrink device_img" :src="printer_info.printer_name?deviceImg[printer_info.printer_name].img1:''" />
<img v-else class="flex_shrink device_img" :src="printer_info.printer_name?deviceImg[printer_info.printer_name].img2:deviceImg['4200'].img2" /> <img v-else class="flex_shrink device_img" :src="printer_info.printer_name?deviceImg[printer_info.printer_name].img2:deviceImg['4200'].img2" />
<div class="flex_box flex_row_between device_info"> <div class="flex_box flex_row_between device_info">
<div class="device_info_box"> <div class="device_info_box">
@@ -477,6 +477,7 @@ export default {
}, },
'$store.state.chat.printer_info': { '$store.state.chat.printer_info': {
handler(val) { handler(val) {
that = this
let data = { ...val } let data = { ...val }
if (this.currentRunVal === 6) { if (this.currentRunVal === 6) {
data.strongList = this.printer_info.strongList data.strongList = this.printer_info.strongList
@@ -484,6 +485,12 @@ export default {
this.default_cd = data.strongList this.default_cd = data.strongList
this.printer_info = { ...data } this.printer_info = { ...data }
if (val.printer_name && val.printer_name === 'SE3') { if (val.printer_name && val.printer_name === 'SE3') {
this.changeCD.req_info.strong_list = [
{
strong_pos: 1,
strong_type: data.strong_list[0].cd_type
}
]
this.runList = [ this.runList = [
{ {
value: 1, value: 1,
@@ -495,6 +502,16 @@ export default {
} }
] ]
} else { } else {
this.changeCD.req_info.strong_list = [
{
strong_pos: 1,
strong_type: data.strong_list[0].cd_type
},
{
strong_pos: 2,
strong_type: data.strong_list[1].cd_type
}
]
this.runList = [ this.runList = [
{ {
value: 1, value: 1,
+34 -2
View File
@@ -140,7 +140,7 @@ export default {
moveList: [ moveList: [
{ {
id: 1, id: 1,
name: '校准打印机' name: '校准打印机墨盒'
}, },
{ {
id: 2, id: 2,
@@ -269,11 +269,25 @@ export default {
label: '上光驱' label: '上光驱'
} }
] ]
this.serviceList = [
{
id: 4,
name: '刷新光盘桶'
},
{
id: 1,
name: '重启设备'
},
{
id: 2,
name: '清除错误'
}
]
} else { } else {
this.moveList = [ this.moveList = [
{ {
id: 1, id: 1,
name: '校准打印机' name: '校准打印机墨盒'
}, },
{ {
id: 2, id: 2,
@@ -302,6 +316,24 @@ export default {
label: '下光驱' label: '下光驱'
} }
] ]
this.serviceList = [
{
id: 4,
name: '刷新光盘桶'
},
{
id: 1,
name: '重启设备'
},
{
id: 2,
name: '清除错误'
},
{
id: 3,
name: '进入运输模式'
}
]
} }
}, },
deep: true, deep: true,