5fcac262 by zhangmeng

优化,简介

1 parent e4fe971f
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
102 <div class="price">{{ language==0?'¥':'€' }}<span>{{language==0?r.roomPrice:r.roomPriceEn}}</span></div> 102 <div class="price">{{ language==0?'¥':'€' }}<span>{{language==0?r.roomPrice:r.roomPriceEn}}</span></div>
103 </el-col> 103 </el-col>
104 <el-col :span="3"> 104 <el-col :span="3">
105 <el-button v-if="language==0" :disabled="!r.useCount" :class="{'forbid':!r.useCount}" @click="goOrder(r)" class="bg-lineg button"> 105 <el-button v-if="language==0" :disabled="r.useCount<=0" :class="{'forbid':r.useCount<=0}" @click="goOrder(r)" class="bg-lineg button">
106 106
107 <div>{{ language==0?'在线付':'Online' }}</div> 107 <div>{{ language==0?'在线付':'Online' }}</div>
108 </el-button> 108 </el-button>
...@@ -195,6 +195,7 @@ function getData() { ...@@ -195,6 +195,7 @@ function getData() {
195 query.value.rzEnd=hotTime.value?hotTime.value[1]:null 195 query.value.rzEnd=hotTime.value?hotTime.value[1]:null
196 getHotelRooms(query.value).then(res => { 196 getHotelRooms(query.value).then(res => {
197 roomList.value = res.rows 197 roomList.value = res.rows
198 console.log(roomList.value)
198 }) 199 })
199 } 200 }
200 201
......
...@@ -29,6 +29,11 @@ ...@@ -29,6 +29,11 @@
29 </el-icon> 29 </el-icon>
30 {{form.remarks}} 30 {{form.remarks}}
31 </el-row> 31 </el-row>
32
33 <div style="display: flex">
34 <div class="title">工作室简介:</div>
35 <div v-html="form.introduction"></div>
36 </div>
32 </el-card> 37 </el-card>
33 38
34 <div class="mt30"> 39 <div class="mt30">
...@@ -267,4 +272,9 @@ function getData() { ...@@ -267,4 +272,9 @@ function getData() {
267 } 272 }
268 } 273 }
269 .oddmb:nth-child(2){margin-bottom: 20px;} 274 .oddmb:nth-child(2){margin-bottom: 20px;}
275 .title{
276 width: 120px;
277 font-weight: 500;
278 font-size: 18px;
279 }
270 </style> 280 </style>
......
...@@ -29,6 +29,10 @@ ...@@ -29,6 +29,10 @@
29 </el-icon> 29 </el-icon>
30 {{form.remarks}} 30 {{form.remarks}}
31 </el-row> 31 </el-row>
32 <div style="display: flex">
33 <div class="title">工作室简介:</div>
34 <div v-html="form.introduction"></div>
35 </div>
32 </el-card> 36 </el-card>
33 <div class="mt30"> 37 <div class="mt30">
34 <el-row :gutter="20"> 38 <el-row :gutter="20">
...@@ -280,4 +284,9 @@ function getData() { ...@@ -280,4 +284,9 @@ function getData() {
280 } 284 }
281 } 285 }
282 .oddmb:nth-child(2){margin-bottom: 20px;} 286 .oddmb:nth-child(2){margin-bottom: 20px;}
287 .title{
288 width: 120px;
289 font-weight: 500;
290 font-size: 18px;
291 }
283 </style> 292 </style>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!