From d799fbde44cc568a3e15d78dc6e582ff244ffa89 Mon Sep 17 00:00:00 2001
From: zhoushihao <zsh19950802@163.com>
Date: 星期六, 29 三月 2025 16:05:44 +0800
Subject: [PATCH] 1、卧式理片重置任务调整,避免无任务情况下无法将任务交互表的数据清掉 2、中空领取任务界面新增产品名称,便于识别产品 3、调整部分定时任务间隔时间 4、定时任务分隔开,按照两个/多个界面的websocket由一个分为多个 5、取消钢化功能开发中z
---
UI-Project/src/views/Visualization/screentwo.vue | 20 --------------------
1 files changed, 0 insertions(+), 20 deletions(-)
diff --git a/UI-Project/src/views/Visualization/screentwo.vue b/UI-Project/src/views/Visualization/screentwo.vue
index 24f0168..f78061d 100644
--- a/UI-Project/src/views/Visualization/screentwo.vue
+++ b/UI-Project/src/views/Visualization/screentwo.vue
@@ -3,15 +3,12 @@
import {reactive} from "vue";
import {useRouter} from "vue-router"
const router = useRouter()
-
import request from "@/utils/request"
import { ref, onMounted } from "vue";
// import { ref } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus'
// import LanguageMixin from './lang/LanguageMixin'
-
const tableData = ref([])
-
// 鍙戦�佽幏鍙栬〃鏍兼暟鎹殑璇锋眰
// const fetchTableData = async () => {
// try {
@@ -34,19 +31,13 @@
// }
// };
// onMounted(fetchTableData);
-
-
-
request.get("unLoadGlass/downStorage/selectStorageCage").then((res) => {
if (res.code == 200) {
- console.log(res.data);
tableData.value = res.data
} else {
ElMessage.warning(res.msg)
-
}
});
-
const dialogForm = () => {
ElMessageBox.confirm(
'鏄惁鎶ョ己?',
@@ -60,7 +51,6 @@
.then(() => {
// this.boxa = true
// this.box = false
-
})
}
const open = () => {
@@ -99,7 +89,6 @@
}
}
}
-
const gridOptions = reactive({
border: "full",//琛ㄦ牸鍔犺竟妗�
keepSource: true,//淇濇寔婧愭暟鎹�
@@ -136,23 +125,14 @@
'thick': '183.6',
}
]
-
})
-
-
-
</script>
-
<template>
-
<div id="awatch">
<img src="../../assets/d2.png" alt="" style="width: 100%;height: 160%;margin-top: 20px;">
-
</div>
</template>
-
<style scoped>
-
#awatch{
height: 460px;
/* margin-top: -60px; */
--
Gitblit v1.8.0