正式环境隐藏最后两个子系统等

UI_2022-02-10 V1.0.1
yujialong 4 years ago
parent 381b0410a9
commit 4020eb5d5d
  1. 2
      src/assets/css/main.css
  2. 2
      src/components/common/Footer.vue
  3. 34
      src/components/page/Backstage.vue
  4. 8
      src/components/page/Dashboard.vue
  5. 7
      src/components/page/Login.vue
  6. 15
      src/components/page/ShowExperiment.vue
  7. 15
      src/config/index.js

@ -59,7 +59,7 @@ li {
left: 65px;
}
.box{
min-height: calc(100vh - 201px);
min-height: calc(100vh - 175px);
box-sizing: border-box;
}

@ -1,7 +1,7 @@
<template>
<div>
<div class="copyright">
<p>技术支持深圳或然科技有限公司</p>
<!-- <p>技术支持深圳或然科技有限公司</p> -->
<a href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank">粤ICP备20072679号</a></div>
</div>
</template>

@ -47,25 +47,28 @@ export default {
},{
imgSrc: require('../../assets/img/station10.png'),
name: '大数据分析<br>实验教学系统'
},{
imgSrc: require('../../assets/img/station11.png'),
name: 'Python数据清洗<br>教学实验系统'
},{
imgSrc: require('../../assets/img/station12.png'),
name: 'Python数据采集(爬虫)<br>教学实验系统'
},
{
imgSrc: require('../../assets/img/station4.png'),
name: '数字货币交易'
},
// {
// imgSrc: require('../../assets/img/station11.png'),
// name: 'Python<br>'
// },{
// imgSrc: require('../../assets/img/station12.png'),
// name: 'Python<br>'
// },
// {
// imgSrc: require('../../assets/img/station4.png'),
// name: ''
// },
// {
// imgSrc: require('../../assets/img/station6.png'),
// name: ''
// },
// {
// imgSrc: require('../../assets/img/station5.png'),
// name: ''
// },
{
imgSrc: require('../../assets/img/station6.png'),
name: '担保实训教学系统'
},
// {
// imgSrc: require('../../assets/img/station7.png'),
// name: ''
@ -187,7 +190,8 @@ export default {
box-sizing: border-box;
.item{
width: 16%;
// width: 16%;
width: 30%;
margin: 20px;
text-align: center;
cursor: pointer;

@ -367,10 +367,10 @@ export default {
};
</script>
<style lang="scss" scoped>
.content-wrap{
min-height: calc(100vh);
overflow: auto;
}
// .content-wrap{
// min-height: calc(100vh);
// overflow: auto;
// }
/deep/.el-tabs__item:focus{
outline: none;
box-shadow: none !important;

@ -142,9 +142,10 @@ export default {
activeName: '0',
isReg: false,
loginForm: {
// username: '18818574533',
username: '18156547156',
password: '111aaa',
// username: '18156547156',
// password: '111aaa',
username: '',
password: '',
},
loginRules: {
username: [{ required: true, message: '请输入用户名', trigger: 'blur' }],

@ -72,7 +72,8 @@
<div class="meta-title-wrap">
<p class="meta-title">实验目的</p>
</div>
<el-input v-model="form.purpose" type="textarea" :disabled="!editing" rows="5"></el-input>
<div class="pre-wrap" v-html="form.purpose"></div>
<!-- <el-input v-model="form.purpose" type="textarea" :disabled="!editing" rows="5"></el-input> -->
</div>
<div class="mgb20">
@ -89,12 +90,12 @@
</el-table-column>
<el-table-column prop="userAnswer" label="学生答案">
<template slot-scope="scope">
<pre v-html="scope.row.userAnswer"></pre>
<pre v-html="scope.row.userAnswer" style="white-space: pre-wrap"></pre>
</template>
</el-table-column>
<el-table-column prop="answer" label="参考答案">
<template slot-scope="scope">
<div v-html="scope.row.answer"></div>
<pre v-html="scope.row.answer" style="white-space: pre-wrap"></pre>
</template>
</el-table-column>
<el-table-column prop="codeScore" label="得分" align="center"></el-table-column>
@ -193,6 +194,8 @@
})
form.score = score
}
expData[0].answer = expData[0].answer.replace('<pre class="ql-syntax" spellcheck="false">','')
expData[0].answer = expData[0].answer.replace('</pre>','')
this.expData = expData
}
@ -423,6 +426,12 @@
}
}
}
.pre-wrap{
min-height: 117px;
padding: 5px 15px;
color: #777;
background-color: #e5dfff;
}
/deep/.cell{
font-size: 12px;

@ -43,12 +43,13 @@ export default {
},{
id: 8,
label: '大数据分析实验教学系统'
},{
id: 9,
label: 'Python数据清洗教学实验系统'
},{
id: 10,
label: 'Python数据采集(爬虫)教学实验系统'
}
},
// {
// id: 9,
// label: 'Python数据清洗教学实验系统'
// },{
// id: 10,
// label: 'Python数据采集(爬虫)教学实验系统'
// }
],
}
Loading…
Cancel
Save