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 {