This commit is contained in:
kclf
2022-11-25 20:48:21 +08:00
58 changed files with 4125 additions and 1677 deletions

View File

@@ -2374,6 +2374,9 @@
<!-- 添加授权侧弹窗 -->
<!-- 学员管理-添加学员抽屉 -->
<StuAdd v-model:Stuvisible="Stuvisible" @sure="handlePostSure" />
<!-- 新建在线课弹窗 -->
<addOnlineCourse v-model:addOnlineCoursevisible="addOnlineCoursevisible" />
<!-- 新建在线课弹窗 -->
</div>
</template>
<script>
@@ -2390,6 +2393,7 @@ import { message } from "ant-design-vue";
import StuAdd from "../../components/drawers/StuAdd";
import OwnPower from "../../components/drawers/OwnPower.vue";
import Corpowerlist from "../../components/drawers/CorPowerlist.vue";
import addOnlineCourse from "../../components/Modals/addOnlineCourse.vue";
import {
list,
edit,
@@ -2885,6 +2889,7 @@ export default defineComponent({
VNodes: (_, { attrs }) => {
return attrs.vnodes;
},
addOnlineCourse,
},
setup() {
const state = reactive({
@@ -3374,6 +3379,7 @@ export default defineComponent({
studentId: 0,
studentItem: {},
addOnlineCoursevisible: false, //新建面授弹窗
});
const showStuAdd = () => {
@@ -3991,6 +3997,9 @@ export default defineComponent({
state.qdms_inputV1 = state.xzinputV1;
state.xzinputV1 = "";
}
if (state.bs_hs&& state.valueE1 != "") {
state.addOnlineCoursevisible = true;
}
};
const checkVal = (checkList) => {
let count = 0;