|
@@ -46,6 +46,10 @@
|
|
|
<span>创建者:{{ item.username }}</span>
|
|
|
</el-tooltip>
|
|
|
</div>
|
|
|
+ <div class="editBtn2" :style="`${item.open?'display:flex':''}`" v-if="!item.carray.length > 0">
|
|
|
+ <span v-if="item.array.length === 0">去填写</span>
|
|
|
+ <span v-else>再填一份</span>
|
|
|
+ </div>
|
|
|
<div @click="doTest2(item.courseid)" class="editBtn" :style="`${item.open?'display:flex':''}`" v-if="!item.carray.length > 0">
|
|
|
<span v-if="item.array.length === 0">去填写</span>
|
|
|
<span v-else>再填一份</span>
|
|
@@ -776,6 +780,9 @@ export default {
|
|
|
.test_panel_title:hover>.editBtn{
|
|
|
display: flex;
|
|
|
}
|
|
|
+.test_panel_title:hover>.editBtn2{
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
|
|
|
|
|
|
.test_panel+.test_panel {
|
|
@@ -787,6 +794,7 @@ export default {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
width: 100%;
|
|
|
+ position: relative;
|
|
|
/* justify-content: space-between; */
|
|
|
/* padding: 0 20px; */
|
|
|
box-sizing: border-box;
|
|
@@ -876,7 +884,18 @@ export default {
|
|
|
align-items: center;
|
|
|
padding: 0 15px;
|
|
|
cursor: pointer;
|
|
|
-
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+}
|
|
|
+.test_panel_title>.editBtn2 {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #fff;
|
|
|
+ background: #3681fc;
|
|
|
+ height: 100%;
|
|
|
+ display: none;
|
|
|
+ align-items: center;
|
|
|
+ padding: 0 15px;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
|
|
|
.test_panel_title>.time>span+span {
|