mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-student.git
synced 2025-12-10 19:36:48 +08:00
fix:增加项目、学习路径图简介
This commit is contained in:
@@ -2,12 +2,18 @@
|
|||||||
<div class="pathdetails" style="padding: 30px">
|
<div class="pathdetails" style="padding: 30px">
|
||||||
<!-- 面包屑导航 -->
|
<!-- 面包屑导航 -->
|
||||||
<div class="crumb">
|
<div class="crumb">
|
||||||
<!-- <div>产品经理学习路径图</div>-->
|
<div>{{data.name}}</div>
|
||||||
<!-- <div style="margin-left: 6px; margin-right: 6px">/</div>-->
|
<div style="margin-left: 6px; margin-right: 6px">/</div>
|
||||||
<div style="font-weight: 700">项目详情</div>
|
<div style="font-weight: 700">项目详情</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 面包屑导航 -->
|
<!-- 面包屑导航 -->
|
||||||
<div class="pdname">{{ userInfo.bandDesc }}</div>
|
<div class="pdname">
|
||||||
|
{{ userInfo.bandDesc }}
|
||||||
|
<span @click="introductionPro" style="font-size:14px;color:#fff;margin-left: 33px;cursor: pointer;">简介
|
||||||
|
<span style="position: relative;top:1px;left:-3px;cursor: pointer;">></span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- 详细信息 -->
|
<!-- 详细信息 -->
|
||||||
<div class="detailinfo">
|
<div class="detailinfo">
|
||||||
<div class="detailL">
|
<div class="detailL">
|
||||||
@@ -361,6 +367,11 @@ const dialogVisibleTip = ref('该任务无法学习,请联系管理员进行
|
|||||||
// return true;
|
// return true;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
function introductionPro() {
|
||||||
|
dialogVisibleTip.value =data.value.remark;
|
||||||
|
dialogVisible.value = true;
|
||||||
|
}
|
||||||
|
|
||||||
function toFinish(d, sName, chapterId) {
|
function toFinish(d, sName, chapterId) {
|
||||||
console.log("dddddd", d);
|
console.log("dddddd", d);
|
||||||
// 作业过期判断
|
// 作业过期判断
|
||||||
|
|||||||
@@ -7,7 +7,12 @@
|
|||||||
<div style="font-weight: 700">路径图详情</div>
|
<div style="font-weight: 700">路径图详情</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 面包屑导航 -->
|
<!-- 面包屑导航 -->
|
||||||
<div class="pdname">{{ userInfo.bandDesc }}</div>
|
<div class="pdname">
|
||||||
|
{{ userInfo.bandDesc }}
|
||||||
|
<span @click="introductionPro" style="font-size:14px;color:#fff;margin-left: 33px;cursor: pointer;">简介
|
||||||
|
<span style="position: relative;top:1px;left:-3px;cursor: pointer;">></span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
<!-- 详细信息 -->
|
<!-- 详细信息 -->
|
||||||
<div class="detailinfo">
|
<div class="detailinfo">
|
||||||
<div class="detailL">
|
<div class="detailL">
|
||||||
@@ -308,6 +313,20 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 详细信息 -->
|
<!-- 详细信息 -->
|
||||||
|
<!-- 弹框提示信息 -->
|
||||||
|
<el-dialog
|
||||||
|
title=""
|
||||||
|
top="347px"
|
||||||
|
v-model="dialogVisible"
|
||||||
|
:show-close="false"
|
||||||
|
style="display:flex;justify-content:center;align-items:center;height: 283px;padding:0;border-radius: 4px;"
|
||||||
|
width="502px">
|
||||||
|
<div style="width:288px;color:#333333;font-size: 22px;font-weight: 600;">{{ dialogVisibleTip }}</div>
|
||||||
|
<span slot="footer" style="display:inline-block;margin-top:60px;">
|
||||||
|
<el-button @click="dialogVisible = false" style="width:140px;height:40px;margin-right: 22px;">取消</el-button>
|
||||||
|
<el-button type="primary" @click="dialogVisible = false" style="width:140px;height:40px;">确定</el-button>
|
||||||
|
</span>
|
||||||
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -338,6 +357,14 @@ const handleClick = (tab, event) => {
|
|||||||
};
|
};
|
||||||
const path = {1: "path"};
|
const path = {1: "path"};
|
||||||
|
|
||||||
|
const dialogVisible = ref(false);
|
||||||
|
const dialogVisibleTip = ref('');
|
||||||
|
|
||||||
|
function introductionPro() {
|
||||||
|
dialogVisibleTip.value =data.value.remark;
|
||||||
|
dialogVisible.value = true;
|
||||||
|
}
|
||||||
|
|
||||||
const types = ref({
|
const types = ref({
|
||||||
typeName: {
|
typeName: {
|
||||||
1: "在线",
|
1: "在线",
|
||||||
|
|||||||
Reference in New Issue
Block a user