优化bug

This commit is contained in:
24kycj
2025-06-07 21:46:58 +08:00
parent 516ddeb357
commit 58dc962a37
5 changed files with 43 additions and 88 deletions
@@ -972,6 +972,7 @@ export default {
this.setShow = false this.setShow = false
this.$store.dispatch('chat/setDatas', { name: 'workStatus', data: true }) this.$store.dispatch('chat/setDatas', { name: 'workStatus', data: true })
this.$store.dispatch('setDatas', { name: 'setForm', data: this.setForm }) this.$store.dispatch('setDatas', { name: 'setForm', data: this.setForm })
localStorage.setItem('setForm', JSON.stringify(this.setForm))
}, },
initSet() { initSet() {
this.setForm = { ...this.$store.state.user.setForm } this.setForm = { ...this.$store.state.user.setForm }
+14 -60
View File
@@ -57,18 +57,13 @@ const Error = {
5: '机械臂移动错误,请按功能按钮重试。', 5: '机械臂移动错误,请按功能按钮重试。',
6: '设备处于离线状态', 6: '设备处于离线状态',
7: '设备门盖被打开', 7: '设备门盖被打开',
8: '从打印托盘上抓取光盘错误,请手动将光盘取走', 8: '从打印托盘上抓取光盘错误请手动将光盘取走再点击重试。',
9: '多张光盘被抓取或移动,请手动取出所有光盘后重试。', 9: '多张光盘被抓取或移动,请检查后手动将光盘放回原处再点重试,如重试后继续错误,则需校准设备后再来重试。',
10: '从进盘仓到光驱的过程中,抓取错误,请手动将光盘放回进盘仓后重试。',
11: '从进盘仓到打印托盘的过程中,抓取错误,请手动将光盘放回进盘仓后重试。',
12: '从光驱到打印托盘的过程中,抓取错误,请手动将光盘放回光驱后重试。',
13: '打印机需要校准',
14: '检测墨盒错误',
15: '校准光盘桶失败', 15: '校准光盘桶失败',
16: '等待打印完成超时', 16: '等待打印完成超时',
17: '打印托盘中未放置光盘。', 17: '打印托盘抓取光盘时未找到光盘。',
18: '设备清洗 ', 18: '设备清洗',
19: '从光驱上抓取光盘错误,请手动将光盘取走', 19: '从光驱上抓取光盘错误,请手动将光盘取走再点击重试',
32: '其他错误', 32: '其他错误',
} }
const Error1 = { const Error1 = {
@@ -107,7 +102,8 @@ const CDStatus = {
1: '没有光盘', 1: '没有光盘',
2: '光驱托盘打开', 2: '光驱托盘打开',
3: '光驱未准备好', 3: '光驱未准备好',
4: '光盘状态正常,光盘已插入' 4: '光盘状态正常,光盘已插入',
5: '校验中'
} }
// 光盘类型 // 光盘类型
@@ -461,7 +457,7 @@ const actions = {
let error = data.resp_info let error = data.resp_info
if (error.error) { if (error.error) {
let errors = error.error let errors = error.error
let continues = [8, 9, 10, 11, 12, 19] let continues = [8, 9, 10, 11, 12, 17, 19]
for (let i = 0; i < errors.length; i++) { for (let i = 0; i < errors.length; i++) {
setTimeout(() => { setTimeout(() => {
let req = continues.indexOf(errors[i]) > -1 ? 'continue_task' : '' let req = continues.indexOf(errors[i]) > -1 ? 'continue_task' : ''
@@ -513,59 +509,17 @@ const actions = {
commit('setData', { name: 'printer_error', data: { type: 'error', notify: printer_errors[error.printer_error] } }) commit('setData', { name: 'printer_error', data: { type: 'error', notify: printer_errors[error.printer_error] } })
} }
} }
} // 执行错误提示
// 执行错误提示
} else if (data.resp_name === 'autoSetCDDevRes') {
if (data.resp_info.res_code === 0) {
} else { } else {
commit('setData', { name: 'printer_error', data: { type: 'error', notify: '自动设置驱动失败' } }) if (data.resp_info.res_code === 0) {
}
} else if (data.resp_name === 'setCDStrongRes') {
if (data.resp_info.res_code === 0) {
} else { } else {
commit('setData', { name: 'printer_error', data: { type: 'error', notify: '设置光盘桶失败' } }) commit('setData', { name: 'printer_error', data: { type: 'error', notify: data.resp_info.res_msg || '操作失败' } })
} }
} else if (data.resp_name === 'setCDDeviceRes') {
if (data.resp_info.res_code === 0) {
} else {
commit('setData', { name: 'printer_error', data: { type: 'error', notify: '设置光驱失败' } })
}
} else if (data.resp_name === 'cleanErrorRes') {
if (data.resp_info.res_code === 0) {
} else {
commit('setData', { name: 'printer_error', data: { type: 'error', notify: '清除错误失败' } })
}
} else if (data.resp_name === 'CaliCDStoneRes') {
if (data.resp_info.res_code === 0) {
} else {
commit('setData', { name: 'printer_error', data: { type: 'error', notify: '校准光盘桶失败' } })
}
} else if (data.resp_name === 'CaliPrinterRes') {
if (data.resp_info.res_code === 0) {
} else {
commit('setData', { name: 'printer_error', data: { type: 'error', notify: '校准打印机失败' } })
}
} else if (data.resp_name === 'TransportModeRes') {
if (data.resp_info.res_code === 0) {
} else {
commit('setData', { name: 'printer_error', data: { type: 'error', notify: '进入运输模式失败' } })
}
} else if (data.resp_name === 'RefreshCdNumRes') {
if (data.resp_info.res_code === 0) {
} else {
commit('setData', { name: 'printer_error', data: { type: 'error', notify: '刷新CD数量失败' } })
} }
} else { } else {
// 未知消息 // 未知消息
console.log('未知消息: ' + JSON.stringify(data)) console.log('报错信息: ' + JSON.stringify(data))
} }
}, },
// 心跳检测重连 // 心跳检测重连
+1 -1
View File
@@ -21,7 +21,7 @@ const user = {
roles: ['admin'], roles: ['admin'],
oneLogin: true, oneLogin: true,
// 高级设置 // 高级设置
setForm: setFormDefault, setForm: localStorage.getItem('setForm') ? JSON.parse(localStorage.getItem('setForm')) : setFormDefault,
}, },
mutations: { mutations: {
+13 -13
View File
@@ -753,7 +753,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -776,7 +776,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -799,7 +799,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -822,7 +822,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -845,7 +845,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -874,7 +874,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -1085,13 +1085,13 @@ export default {
}, },
// 跳转设置 // 跳转设置
goSet(e) { goSet(e) {
if ((that.cd_list[0]&&that.cd_list[0].copy_scheduler) || (that.cd_list[1]&&that.cd_list[1].copy_scheduler)) { // if ((that.cd_list[0]&&that.cd_list[0].copy_scheduler) || (that.cd_list[1]&&that.cd_list[1].copy_scheduler)) {
that.$message({ // that.$message({
message: '正在任务中,无法进行操作', // message: '正在任务中,无法进行操作',
type: 'warning' // type: 'warning'
}) // })
return // return
} // }
that.$router.push({ path: e }) that.$router.push({ path: e })
}, },
// 退出登录 // 退出登录
+14 -14
View File
@@ -409,7 +409,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -451,7 +451,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -493,7 +493,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -517,7 +517,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -540,7 +540,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -563,7 +563,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -605,7 +605,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -634,7 +634,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -657,7 +657,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -680,7 +680,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -703,7 +703,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -726,7 +726,7 @@ export default {
}) })
.then(() => { .then(() => {
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -755,7 +755,7 @@ export default {
that.cdClose(e) that.cdClose(e)
}, 5000) }, 5000)
that.$message({ that.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })
@@ -772,7 +772,7 @@ export default {
}) })
.then(() => { .then(() => {
this.$message({ this.$message({
message: '执行成功', message: '已发送指令',
type: 'success' type: 'success'
}) })
}) })