mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-11 03:46:45 +08:00
feat:合并
This commit is contained in:
@@ -190,7 +190,7 @@
|
||||
</div>
|
||||
<div class="operations">
|
||||
|
||||
<div class="operation">管理</div>
|
||||
<div class="operation" style="cursor: pointer" @click="showTime">管理</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -246,7 +246,7 @@
|
||||
</div>
|
||||
<div class="operations">
|
||||
<div class="operation">学员</div>
|
||||
<div class="operation">管理</div>
|
||||
<div class="operation" style="cursor: pointer" @click="showFace">管理</div>
|
||||
<div class="operation">二维码</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -377,7 +377,7 @@
|
||||
<div style="width: 90%">
|
||||
<div class="grouptitle">
|
||||
<div class="goodgruop">好好学习小组</div>
|
||||
<div class="">...</div>
|
||||
<div>...</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -395,6 +395,10 @@
|
||||
<a-tab-pane key="7" tab="设置">Content of Tab Pane 3</a-tab-pane>
|
||||
</a-tabs>
|
||||
</div>
|
||||
<!-- 时间管理抽屉 -->
|
||||
<time-manage v-model:Tvisible="visible" />
|
||||
<!-- 面授管理抽屉 -->
|
||||
<face-manage v-model:Fvisible="FaceVisivle" />
|
||||
<!-- 项目发布弹窗 -->
|
||||
<div>
|
||||
<a-modal
|
||||
@@ -454,10 +458,15 @@
|
||||
</template>
|
||||
<script>
|
||||
import { reactive, toRefs } from "vue";
|
||||
import TimeManage from "../../components/drawers/TimeManage";
|
||||
import FaceManage from "../../components/drawers/FaceManage";
|
||||
export default {
|
||||
name:"taskPage",
|
||||
components: { TimeManage, FaceManage },
|
||||
setup(){
|
||||
const state = reactive({
|
||||
visible: false, //时间管理
|
||||
FaceVisivle: true, //面授管理
|
||||
pubproject: false,
|
||||
checked: false,
|
||||
checked1: true,
|
||||
@@ -471,10 +480,23 @@ export default {
|
||||
const closeModal = () => {
|
||||
state.pubproject = false;
|
||||
};
|
||||
//新增
|
||||
const showTime = () => {
|
||||
console.log("点击管理");
|
||||
state.visible = true;
|
||||
};
|
||||
//新增
|
||||
const showFace = () => {
|
||||
//面授管理的抽屉
|
||||
// console.log("点击管理");
|
||||
state.FaceVisivle = true;
|
||||
};
|
||||
return {
|
||||
...toRefs(state),
|
||||
showModal,
|
||||
closeModal,
|
||||
showTime,
|
||||
showFace,
|
||||
};
|
||||
},
|
||||
}
|
||||
@@ -1222,9 +1244,7 @@ export default {
|
||||
justify-content: space-betwwen;
|
||||
border-bottom: 1px solid rgba(232, 232, 232, 1);
|
||||
.goodgruop {
|
||||
color: rgba(0, 0, 0, 0.8500);
|
||||
font-size: 16px;
|
||||
line-height: 36px;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user