Commit e64ebf05 by 李嘉林

测试赛信息页展示

parent 80835d6b
...@@ -61,16 +61,16 @@ ...@@ -61,16 +61,16 @@
<div class="label flex"> <div class="label flex">
<p>工作区域</p> <p>工作区域</p>
</div> </div>
<p class="val" v-if="workArea"> <p class="val">
{{ userInfo.workArea }} {{ userInfo.workArea }}
</p> </p>
</div> </div>
<div class="cell selectCell" @click="selectDiningPlace"> <div class="cell selectCell" @click="selectDiningPlace">
<div class="label flex"> <div class="label flex">
<p>就餐地点</p> <p>就餐权限</p>
</div> </div>
<p class="val" v-if="diningPlace"> <p class="val">
{{ userInfo.diningPlace }} {{ userInfo.diningPlace?'有':'无' }}
</p> </p>
</div> </div>
</div> </div>
...@@ -100,14 +100,6 @@ export default { ...@@ -100,14 +100,6 @@ export default {
onInput() { onInput() {
return false; return false;
}, },
workArea() {
let workArea = 'xxx,xxx';
return workArea;
},
diningPlace() {
let diningPlace = 'xxx,xxx';
return diningPlace;
},
}, },
onReady() { onReady() {
console.log("---onReady"); console.log("---onReady");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment