From e2a6818da1696f7980a8dd4bbfdfcb36970b2c0f Mon Sep 17 00:00:00 2001 From: fanluyan <754122931@qq.com> Date: Mon, 22 Jan 2024 11:10:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=8A=B6=E6=80=81=E5=88=97?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/homePage/components/tableMain.vue | 176 +++++++++++++++++++- 1 file changed, 173 insertions(+), 3 deletions(-) diff --git a/src/views/homePage/components/tableMain.vue b/src/views/homePage/components/tableMain.vue index 4aeca59..7b90292 100644 --- a/src/views/homePage/components/tableMain.vue +++ b/src/views/homePage/components/tableMain.vue @@ -461,7 +461,6 @@ +
+ + + + +
+ +
+

+ {{ index + 1 }} + 时间:{{ item.createTime }} + 设备ID:{{ item.cmdid }} + apk版本:{{ item.cmd.fileName }} + 命令:{{ cmdCn[item.cmdName] }}命令:{{ item.cmdDesc }} + 命令预计拿走时间: + + {{ + $moment(item.estimatedPublishTime * 1000).format( + "MM-DD HH:mm:ss" + ) + }} + {{ remainingTime(item) }} + + +

+
+
+

暂无下发命令

+
+
@@ -1662,6 +1777,61 @@ export default { width: 100%; } } + .taskMask { + position: fixed; + bottom: 50%; + right: 0px; + z-index: 2; + .el-button { + border-radius: 50%; + padding: 10px; + } + } + .taskDrawDialog { + .commandList { + width: 100%; + height: calc(100% - 32px); + //background: #fcc; + overflow: auto; + p { + background: #fdf6ec; + margin-bottom: 8px; + line-height: 24px; + color: #333; + font-size: 14px; + padding: 6px; + cursor: pointer; + display: flex; + align-items: center; + &:hover { + background: #faecd8; + } + .indexClass { + padding: 4px; + font-size: 14px; + color: #000; + background: #d3d3d3; + min-width: 18px; + text-align: center; + margin-right: 8px; + } + .normalClass { + background: #d3d3d3; + } + .cancelClass { + background: #fde2e2; + } + .comMsg { + display: flex; + flex-wrap: wrap; + b { + font-weight: normal; + margin-right: 12px; + } + } + } + } + } } .contenBoxMsg { p {