123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <template>
- <view class="pages">
- <view class="content">
- <view class="card">
- <view class="card1">
- <text>位置定位</text>
- <text>></text>
- </view>
- </view>
- <view class="card">
- <view class="card1">
- <text>联系电话</text>
- <text>
- <u--input placeholder="请输入内容" border="surround" v-model="value" @change="change"></u--input>
- </text>
- </view>
- </view>
- <view class="card">
- <view class="card1">
- <text>酒店简介</text>
- <span style="margin-top: 20rpx;">
- <u--textarea :maxlength='300' count v-model="value1" placeholder="请输入酒店简介"
- height='250'></u--textarea>
- </span>
- </view>
- </view>
- <view class="card">
- <view class="card1">
- <u-collapse @change="change" @close="close" @open="open">
- <u-collapse-item title="内饰照片" name="Docs guide">
- <text class="u-collapse-content">涵盖uniapp各个方面,给开发者方向指导和设计理念,让您茅塞顿开,一马平川</text>
- </u-collapse-item>
- </u-collapse>
- </view>
- </view>
- <view class="card">
- <view class="card1">
- <u-collapse @change="change" @close="close" @open="open">
- <u-collapse-item title="环境照片" name="Docs guide">
- <text class="u-collapse-content">涵盖uniapp各个方面,给开发者方向指导和设计理念,让您茅塞顿开,一马平川</text>
- </u-collapse-item>
- </u-collapse>
- </view>
- </view>
- </view>
- <view class="bottom">
- <view class="btn">
- 确定
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- value: '',
- value1: ''
- }
- },
- methods: {
- change() {
- },
- close() {
- },
- open() {
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .pages {
- height: 100vh;
- background: #F9FAFC;
- .content {
- padding: 20rpx;
- .card {
- background: #fff;
- border-radius: 16rpx;
- padding: 30rpx 20rpx;
- margin-bottom: 20rpx;
- .card1 {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- }
- }
- .bottom {
- position: absolute;
- bottom: 0;
- height: 9%;
- background: #fff;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 0 30rpx;
- box-sizing: border-box;
- flex-direction: column;
- .btn {
- background: #33AFFC;
- color: white;
- text-align: center;
- height: 73rpx;
- line-height: 73rpx;
- align-self: center;
- border-radius: 35rpx;
- width: 80%;
- }
- }
- }
- </style>
|