修改徐州三维课程排序,修改课程模式获取

This commit is contained in:
“sunzy” 2022-01-12 11:08:27 +08:00
parent 6acf6c7bbc
commit fbcef50f40
3 changed files with 57 additions and 49 deletions

View File

@ -337,11 +337,13 @@
userJob:"",
};
loadData = JSON.parse(data.data.data);
if(this.$route.query.examMode == 1){
if(this.$route.query.examMode == "true"){
this.examMode = true;
}else{
this.examMode = loadData.setup.examMode;
}
if(loadData.setup.checkedRole.length == 0){
this.showSelectJob = false;
}

View File

@ -19,14 +19,18 @@
<div class="lesson3dSelectButton" v-for="(item1,introduceIndex) in introduce" :style="{'background-image': 'url('+localStatic+ item1.pic +')'}" @click="goDetail(item1.id)"></div>
</el-tab-pane>
<el-tab-pane label="运营情况处理" name="stationoperation">
<div class="lesson3dSelectButton" v-for="(item2,stationoperationIndex) in stationoperation" :style="{'background-image': 'url('+localStatic+ item2.pic +')'}" @click="goDetail(item2.id)"></div>
</el-tab-pane>
<el-tab-pane label="列车运行" name="treainoperation">
<div class="lesson3dSelectButton" v-for="(item3,treainoperationIndex) in treainoperation" :style="{'background-image': 'url('+localStatic+ item3.pic +')'}" @click="goDetail(item3.id)"></div>
</el-tab-pane>
<el-tab-pane label="屏蔽门课程" name="dooroperation">
<div class="lesson3dSelectButton" v-for="(item4,dooroperationIndex) in dooroperation" :style="{'background-image': 'url('+localStatic+ item4.pic +')'}" @click="goDetail(item4.id)"></div>
</el-tab-pane>
<el-tab-pane label="运营情况处理" name="stationoperation">
<div class="lesson3dSelectButton" v-for="(item2,stationoperationIndex) in stationoperation" :style="{'background-image': 'url('+localStatic+ item2.pic +')'}" @click="goDetail(item2.id)"></div>
</el-tab-pane>
</el-tabs>
@ -136,50 +140,6 @@ export default {
pic: '/other/25.png',
}
],
stationoperation: [
{
id: "8",
name: "降级运营-电话闭塞测试",
pic: '/other/8.png',
},
{
id: "9",
name: "屏蔽门",
type: "2",
pic: '/other/9.png',
},
{
id: "10",
name: "整侧屏蔽门无法开启",
pic: '/other/10.png',
},
{
id: "11",
name: "整侧屏蔽门无法关闭",
pic: '/other/11.png',
},
{
id: "12",
name: "单侧屏蔽门无法开启",
pic: '/other/12.png',
},
{
id: "13",
name: "单个屏蔽门无法关闭",
pic: '/other/13.png',
},
{
id: "14",
name: "地铁列车救援",
type: "1",
pic: '/other/14.png',
},
{
id: "15",
name: "车站大客流test",
pic: '/other/15.png',
}
],
treainoperation: [
{
id: "2",
@ -216,6 +176,52 @@ export default {
name: "列车运行",
type: "1",
pic: '/other/26.png',
},
{
id: "14",
name: "地铁列车救援",
type: "1",
pic: '/other/14.png',
}
],
dooroperation:[
{
id: "10",
name: "整侧屏蔽门无法开启",
pic: '/other/10.png',
},
{
id: "11",
name: "整侧屏蔽门无法关闭",
pic: '/other/11.png',
},
{
id: "12",
name: "单侧屏蔽门无法开启",
pic: '/other/12.png',
},
{
id: "13",
name: "单个屏蔽门无法关闭",
pic: '/other/13.png',
},
{
id: "9",
name: "屏蔽门",
type: "2",
pic: '/other/9.png',
},
],
stationoperation: [
{
id: "8",
name: "降级运营-电话闭塞测试",
pic: '/other/8.png',
},
{
id: "15",
name: "车站大客流test",
pic: '/other/15.png',
}
],

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 128 KiB