5fcac262 by zhangmeng

优化,简介

1 parent e4fe971f
......@@ -102,7 +102,7 @@
<div class="price">{{ language==0?'¥':'€' }}<span>{{language==0?r.roomPrice:r.roomPriceEn}}</span></div>
</el-col>
<el-col :span="3">
<el-button v-if="language==0" :disabled="!r.useCount" :class="{'forbid':!r.useCount}" @click="goOrder(r)" class="bg-lineg button">
<el-button v-if="language==0" :disabled="r.useCount<=0" :class="{'forbid':r.useCount<=0}" @click="goOrder(r)" class="bg-lineg button">
<div>{{ language==0?'在线付':'Online' }}</div>
</el-button>
......@@ -195,6 +195,7 @@ function getData() {
query.value.rzEnd=hotTime.value?hotTime.value[1]:null
getHotelRooms(query.value).then(res => {
roomList.value = res.rows
console.log(roomList.value)
})
}
......
......@@ -29,6 +29,11 @@
</el-icon>
{{form.remarks}}
</el-row>
<div style="display: flex">
<div class="title">工作室简介:</div>
<div v-html="form.introduction"></div>
</div>
</el-card>
<div class="mt30">
......@@ -267,4 +272,9 @@ function getData() {
}
}
.oddmb:nth-child(2){margin-bottom: 20px;}
.title{
width: 120px;
font-weight: 500;
font-size: 18px;
}
</style>
......
......@@ -29,6 +29,10 @@
</el-icon>
{{form.remarks}}
</el-row>
<div style="display: flex">
<div class="title">工作室简介:</div>
<div v-html="form.introduction"></div>
</div>
</el-card>
<div class="mt30">
<el-row :gutter="20">
......@@ -280,4 +284,9 @@ function getData() {
}
}
.oddmb:nth-child(2){margin-bottom: 20px;}
.title{
width: 120px;
font-weight: 500;
font-size: 18px;
}
</style>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!