This commit is contained in:
李东进1
2023-02-26 14:04:45 +08:00
parent 755354e7db
commit cf8fef2c19

View File

@@ -382,7 +382,7 @@
</div> </div>
<div class="stagesecond"> <div class="stagesecond">
<div class="staname">阶段名称:</div> <div class="staname">阶段名称:</div>
<div class="stamess">管理者进阶-腾飞班1第一阶段</div> <div class="stamess">{{ choosedStageName }}</div>
</div> </div>
<div class="stagelast"> <div class="stagelast">
<div class="stagepro"> <div class="stagepro">
@@ -2354,6 +2354,7 @@ export default {
], ],
changeGoods: [], //更改是否优秀的id数组 changeGoods: [], //更改是否优秀的id数组
choosedStageId: 1, // 选择的阶段id choosedStageId: 1, // 选择的阶段id
choosedStageName:"",//阶段名称
activeSetKey: "12", //12-基础信息 13-共享文档 activeSetKey: "12", //12-基础信息 13-共享文档
docChecked: true, docChecked: true,
//学员信息列表 //学员信息列表
@@ -2943,6 +2944,7 @@ export default {
} }
state.rankjieduan = arrStage; state.rankjieduan = arrStage;
state.valuestu2 = arrStage[0].value; state.valuestu2 = arrStage[0].value;
state.choosedStageName = levelList.stageList[0].name;
} }
console.log( console.log(
"----------------------------------->", "----------------------------------->",
@@ -4685,6 +4687,7 @@ export default {
url && window.open(url); url && window.open(url);
}; };
function stageChange(item, index) { function stageChange(item, index) {
state.choosedStageName = item.name;
state.choosedStageId = item.stageId; state.choosedStageId = item.stageId;
state.choosedStageIndex = index; state.choosedStageIndex = index;
} }