diff --git a/src/components/drawers/AddActive.vue b/src/components/drawers/AddActive.vue
index ce84b595..c0ea88cc 100644
--- a/src/components/drawers/AddActive.vue
+++ b/src/components/drawers/AddActive.vue
@@ -162,9 +162,9 @@
- 仅签到
- 签到、签退全部完成仅签到
+ 签到、签退全部完成
@@ -220,15 +220,22 @@ export default {
});
const closeDrawer = () => {
ctx.emit("update:addactiveVisible", false);
+ state.radioV1 = "";
};
const afterVisibleChange = (bool) => {
console.log("state", bool);
};
+ const cloradio1 = (value) => {
+ if (value != "") {
+ state.radioV1 = "";
+ }
+ }
return {
...toRefs(state),
afterVisibleChange,
closeDrawer,
rowSelection,
+ cloradio1,
};
},
};
diff --git a/src/components/drawers/AddFaceteach.vue b/src/components/drawers/AddFaceteach.vue
index 9eec1733..f4f20786 100644
--- a/src/components/drawers/AddFaceteach.vue
+++ b/src/components/drawers/AddFaceteach.vue
@@ -173,8 +173,8 @@
- 仅签到
- 仅签到
+ 签到、签退全部完成
@@ -196,8 +196,8 @@
- 允许项目内人员临时到场参加
- 允许项目内人员临时到场参加
+ 允许项目外人员临时到场参加
@@ -309,6 +309,8 @@ export default {
});
const closeDrawer = () => {
ctx.emit("update:addfaceteachVisible", false);
+ state.radioV1 = "";
+ state.radioV2 = "";
};
const afterVisibleChange = (bool) => {
console.log("state", bool);
@@ -322,6 +324,16 @@ export default {
const showDrawerAddTest = () => {
state.addtestvisible = true;
};
+ const cloradio1 = (value) => {
+ if (value != "") {
+ state.radioV1 = "";
+ }
+ };
+ const cloradio2 = (value) => {
+ if (value != "") {
+ state.radioV2 = "";
+ }
+ }
return {
...toRefs(state),
showDrawerSelFacet,
@@ -330,6 +342,8 @@ export default {
afterVisibleChange,
closeDrawer,
rowSelection,
+ cloradio1,
+ cloradio2,
// change,
};
},
diff --git a/src/components/drawers/AddLive.vue b/src/components/drawers/AddLive.vue
index 76485dc0..08f03cdb 100644
--- a/src/components/drawers/AddLive.vue
+++ b/src/components/drawers/AddLive.vue
@@ -230,8 +230,8 @@
- 仅签到
- 仅签到
+ 签到、签退全部完成
@@ -439,6 +439,8 @@ export default {
});
const closeDrawer = () => {
ctx.emit("update:addliveVisible", false);
+ state.radioV1 = "";
+ state.playback = false;
};
const afterVisibleChange = (bool) => {
console.log("state", bool);
@@ -446,6 +448,11 @@ export default {
const PlayBack = () => {
state.playback = !state.playback;
};
+ const cloradio1 = (value) => {
+ if (value != "") {
+ state.radioV1 = "";
+ }
+ }
return {
...toRefs(state),
afterVisibleChange,
@@ -454,6 +461,7 @@ export default {
options1,
columns1,
rowSelection,
+ cloradio1,
};
},
};
diff --git a/src/components/drawers/AddTest.vue b/src/components/drawers/AddTest.vue
index 4d879967..d2d7249c 100644
--- a/src/components/drawers/AddTest.vue
+++ b/src/components/drawers/AddTest.vue
@@ -132,8 +132,8 @@
- 允许查看
- 允许查看
+ 不允许查看
@@ -145,8 +145,8 @@
- 允许查看
- 允许查看
+ 不允许查看
@@ -159,10 +159,10 @@
- 最高一次
- 最后一次
@@ -187,9 +187,9 @@
- 试题乱序
- 试题排序
- 全部乱序
+ 试题乱序
+ 试题排序
+ 全部乱序
@@ -243,15 +243,43 @@ export default {
});
const closeDrawer = () => {
ctx.emit("update:addtestVisible", false);
+ state.radioV1 = "";
+ state.radioV2 = "";
+ state.radioV3 = "";
+ state.radioV4 = "";
};
const afterVisibleChange = (bool) => {
console.log("state", bool);
};
+ const cloradio1 = (value) => {
+ if (value != "") {
+ state.radioV1 = "";
+ }
+ }
+ const cloradio2 = (value) => {
+ if (value != "") {
+ state.radioV2 = "";
+ }
+ }
+ const cloradio3 = (value) => {
+ if (value != "") {
+ state.radioV3 = "";
+ }
+ }
+ const cloradio4 = (value) => {
+ if (value != "") {
+ state.radioV4 = "";
+ }
+ }
return {
...toRefs(state),
afterVisibleChange,
closeDrawer,
rowSelection,
+ cloradio1,
+ cloradio2,
+ cloradio3,
+ cloradio4,
};
},
};
diff --git a/src/views/courselibrary/CoursewareManage.vue b/src/views/courselibrary/CoursewareManage.vue
index 4bddd2c2..7b4e5baf 100644
--- a/src/views/courselibrary/CoursewareManage.vue
+++ b/src/views/courselibrary/CoursewareManage.vue
@@ -109,13 +109,13 @@
@@ -183,16 +183,16 @@
-
+
-
+
@@ -214,10 +214,10 @@
@@ -245,6 +245,7 @@
:closable="false"
wrapClassName="modalStyle facteachModal"
width="80%"
+ @cancel="ft_exit"
>
@@ -697,7 +701,7 @@
class="select"
ref="select"
placeholder="请选择状态"
- v-model:value="value12"
+ v-model:value="gl_selectV1"
style="width: 200px"
@focus="focus"
@change="handleChange"
@@ -714,7 +718,7 @@