80 lines
1.3 KiB
Vue
80 lines
1.3 KiB
Vue
|
<!-- <template>
|
||
|
<div >
|
||
|
<p>新建测试 </p>
|
||
|
|
||
|
<div class="generateTest">
|
||
|
<p class="tit">测试信息</p>
|
||
|
|
||
|
<div class="generateTestCon">
|
||
|
<div class="inputCss">
|
||
|
<p>问题</p>
|
||
|
<div>
|
||
|
<el-input
|
||
|
class="w-50 m-2"
|
||
|
size="large"
|
||
|
placeholder="请输入问题"
|
||
|
></el-input>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default {
|
||
|
|
||
|
props: {
|
||
|
msg: String,
|
||
|
},
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
|
||
|
methods: {},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
|
||
|
<style scoped>
|
||
|
.generateTest{
|
||
|
min-height: 50vh;
|
||
|
background: #f8fafb;
|
||
|
border-radius: 3px;
|
||
|
width: 80%;
|
||
|
margin:auto;
|
||
|
margin-top: 30px;
|
||
|
|
||
|
border: 1px solid #dde3e8;
|
||
|
|
||
|
}
|
||
|
.generateTest .tit{
|
||
|
font-size: 18px;
|
||
|
font-family: PingFangSC-Regular, PingFang SC;
|
||
|
font-weight: 400;
|
||
|
color: #454d67;
|
||
|
padding-top: 30px;
|
||
|
font-weight: 600;
|
||
|
padding-left: 40px;
|
||
|
border-bottom: 1px solid #e4eaee;
|
||
|
padding-bottom: 20px;
|
||
|
margin-bottom: 60px;}
|
||
|
|
||
|
|
||
|
.inputCss>p{
|
||
|
font-size: 14px;
|
||
|
font-family: PingFangSC-Regular, PingFang SC;
|
||
|
font-weight: 400;
|
||
|
color: #8e8e8e;
|
||
|
line-height: 26px;
|
||
|
}
|
||
|
.inputCss>div{
|
||
|
width: 300px
|
||
|
;
|
||
|
}
|
||
|
.generateTestCon{
|
||
|
padding:0 40px 40px 40px;}
|
||
|
</style> -->
|