mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 13:56:45 +08:00
fix:修改创建路径和修改路径弹窗文字输入bug
This commit is contained in:
@@ -399,7 +399,7 @@
|
||||
<div
|
||||
class="operation"
|
||||
style="cursor: pointer"
|
||||
@click="showAA"
|
||||
@click="showAA(item.course, item.name)"
|
||||
:style="{
|
||||
display:
|
||||
item.course === '直播' || item.course === '活动'
|
||||
@@ -872,7 +872,10 @@
|
||||
<!-- 面授学员抽屉 -->
|
||||
<face-stu v-model:FSvisible="FSvisible" />
|
||||
<!-- 活动考勤抽屉 -->
|
||||
<active-attendance v-model:AAvisible="AAvisible" />
|
||||
<active-attendance
|
||||
v-model:AAvisible="AAvisible"
|
||||
:title="showKaoqinText"
|
||||
/>
|
||||
<!-- 时间管理抽屉 -->
|
||||
<time-manage v-model:Tvisible="visible" :title="showTimeText" />
|
||||
<!-- 考试管理抽屉 -->
|
||||
@@ -1120,6 +1123,8 @@ export default {
|
||||
showTimeText: "",
|
||||
//考试、测评页面传递参数
|
||||
showTestText: "",
|
||||
//直播、活动页面传递参数
|
||||
showKaoqinText: "",
|
||||
FSvisible: false, //面授学员
|
||||
AAvisible: false, //活动/直播考勤
|
||||
copyModal: false, //面授二维码弹窗
|
||||
@@ -1396,15 +1401,17 @@ export default {
|
||||
const showFS = () => {
|
||||
state.FSvisible = true;
|
||||
};
|
||||
//活动考勤的抽屉
|
||||
const showAA = () => {
|
||||
//考勤的抽屉
|
||||
const showAA = (course) => {
|
||||
state.AAvisible = true;
|
||||
state.showKaoqinText = "【" + course + "】" + "考勤";
|
||||
console.log(state.showKaoqinText, 1111);
|
||||
};
|
||||
// 时间管理
|
||||
const showTime = (course, name) => {
|
||||
const showTime = (course) => {
|
||||
console.log("点击管理");
|
||||
state.visible = true;
|
||||
state.showTimeText = "【" + course + "】" + name;
|
||||
state.showTimeText = "【" + course + "】" + "管理";
|
||||
// console.log("state.showTimeText", state.showTimeText);
|
||||
};
|
||||
//考试管理的抽屉
|
||||
|
||||
Reference in New Issue
Block a user