|
@@ -21,7 +21,12 @@ import { courseChapter3dShow } from "@/stores/courseChapter3dShow.ts";
|
|
|
|
|
|
<div class="inputMain" >
|
|
|
|
|
|
-
|
|
|
+ <div class="edit" >
|
|
|
+ <div class="editLeft">任务名称/编号:</div>
|
|
|
+ <div class="editRight">
|
|
|
+ <input type="text" value="" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
|
|
|
</div>
|
|
|
|
|
@@ -96,6 +101,34 @@ import { courseChapter3dShow } from "@/stores/courseChapter3dShow.ts";
|
|
|
left: 6.5%;
|
|
|
top: 10.21rem;
|
|
|
|
|
|
+ .edit {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ height: 3.5rem;
|
|
|
+
|
|
|
+ background-image: url("../../../assets/downHole/edit.webp");
|
|
|
+ -webkit-background-size: 100% 100%;
|
|
|
+ -moz-background-size: 100% 100%;
|
|
|
+ -o-background-size: 100% 100%;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-position: center center;
|
|
|
+
|
|
|
+ .editLeft, .editRight {
|
|
|
+ position: absolute;
|
|
|
+ height: 100%;
|
|
|
+ top: 0px;
|
|
|
+ line-height: 3.5rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ .editLeft {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .editRight {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
}
|
|
|
|