This commit is contained in:
fan 2020-05-12 14:17:47 +08:00
parent d11f64b7bd
commit b3dfe242e2

View File

@ -1,14 +1,14 @@
<template> <template>
<div> <div style="width: 100%;height: 100%; position: relative;">
<div class="lcdControl_title">LCD控制屏</div> <div class="lcdControl_title">LCD控制屏</div>
<div> <div class="area_select" style="position: absolute; top: 15%; left: 25%; width: 80px; height: 50px;">
<div>特定区域</div> <div>特定区域</div>
<div>全线</div> <div>全线</div>
</div> </div>
<div> <div>
<div> <div>
<el-radio v-model="radio1" label="1" border>开启LCD屏</el-radio> <el-radio v-model="lcdSwitch" :label="true" border>开启LCD屏</el-radio>
<el-radio v-model="radio1" label="2" border>关闭LCD屏</el-radio> <el-radio v-model="lcdSwitch" :label="false" border>关闭LCD屏</el-radio>
</div> </div>
<div>确定</div> <div>确定</div>
</div> </div>
@ -20,7 +20,8 @@ export default {
data() { data() {
return { return {
columns: ['车站', '选择'], columns: ['车站', '选择'],
stationList: ['会展中心站', '世纪大道站', '交通大学站', '市图书馆站', '中心医院站', '未来路站', '火车站', '人民广场站', '体育中心站'] stationList: ['会展中心站', '世纪大道站', '交通大学站', '市图书馆站', '中心医院站', '未来路站', '火车站', '人民广场站', '体育中心站'],
lcdSwitch: true
}; };
} }
}; };
@ -34,4 +35,7 @@ export default {
margin-top: 30px; margin-top: 30px;
color: #56E5DE; color: #56E5DE;
} }
.area_select {
}
</style> </style>