| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927 |
- <template>
- <view class="container" :style="'overflow:' + (showPage ? 'hidden' : 'visible')" v-if="info">
- <!-- 作者信息区域 -->
- <view class="author">
- <img mode="aspectFill" :src="info.coverImg" />
- <view class="author_name">{{ info.hotel_name }}</view>
- <view class="author_btn">关注</view>
- </view>
- <!-- 轮播图区域 -->
- <swiper indicator-color="#ccc" indicator-active-color="#096562" indicator-dots autoplay circular class="swiper">
- <swiper-item class="swiper_item" v-for="(item, current) in info.hotelFileInfoList" :key="item.id" @click="handleClickSwiper(info.hotelFileInfoList, current)">
- <img mode="aspectFill" class="img" :src="item.url" />
- </swiper-item>
- </swiper>
- <!-- 推文信息区域 -->
- <view class="tweet">
- <view class="tweet_title">{{ info.hposition }}</view>
- <view class="tweet_msg">{{ info.remark }}</view>
- <view class="tweet_info">{{ info.openTime.slice(5, 10) }} {{ info.hotelTownshipName }}</view>
- </view>
- <!-- 关联民宿区域 -->
- <view class="and">
- <!-- 每一个关联民宿区域 -->
- <view class="and_box" v-for="item in info.houseList.slice(0, 2)" :key="item.id">
- <img mode="aspectFill" :src="item.fileInfoList[0].url" />
- <view class="box_detail">
- <view class="detail_name">
- {{ item.hName }}
- <img class="img" src="../../static/index/like.png" />
- </view>
- <view class="detail_leave">
- {{ item.hName }}
- </view>
- <view class="detail_num">
- <view class="num_rate">{{ item.number.toFixed(1) }}分</view>
- <view class="num_comment">{{ item.number }}条评论</view>
- <view class="num_price">
- ¥{{ item.price }}
- <text>起</text>
- </view>
- </view>
- </view>
- </view>
- <!-- 关联民宿查看全部区域 -->
- <view class="and_all" @click="handleClickALL">查看全部 >></view>
- </view>
- <!-- 点赞人数区域 -->
- <view class="like">
- <uv-avatar-group :urls="info.hotelFileInfoList" keyName="url" size="30" gap="0.3" maxCount="10"></uv-avatar-group>
- <view class="like_text" @click="handleGoPage('/pages/likeList/likeList')">{{ info.roomNumber }}人已赞</view>
- </view>
- <!-- 评论总条数区域 -->
- <view class="total">共15条评论</view>
- <!-- 评论输入框区域 -->
- <view class="input_box">
- <input type="text" confirm-type="send" placeholder="爱评论的人运气都不差" @confirm="handleInput" />
- </view>
- <!-- 评论列表区域 -->
- <view class="comment_list">
- <!-- 每一个评论区域 -->
- <view class="comment_box" v-for="item in info.houseList.slice(0, 3)" :key="item.id">
- <view class="box_left">
- <img mode="aspectFill" :src="item.fileInfoList[0].url" />
- </view>
- <view class="box_right">
- <view class="right_name">{{ item.hName }}</view>
- <view class="right_content">{{ item.hConfig }}</view>
- <view class="right_time">{{ item.createDate.slice(6, 11) }}</view>
- </view>
- </view>
- <!-- 查看全部评论区域 -->
- <view class="comment_all" @click="handleClickComment">查看全部评论 >></view>
- </view>
- <!-- 相关推文区域 -->
- <view class="related" v-if="info.houseList.length">
- <view class="related_title">相关推文</view>
- <!-- 相关推文列表区域 -->
- <view class="related_list">
- <!-- 每一个推文区域 -->
- <view class="related_box" v-for="item in info.houseList.slice(0, 2)" :key="item.id">
- <img mode="aspectFill" :src="item.fileInfoList[0].url" />
- <view class="box_content">{{ item.hConfig }}</view>
- <view class="box_info">
- <img class="img" mode="aspectFill" :src="item.fileInfoList[0].url" />
- <view class="info_name">{{ item.hName }}</view>
- <img class="img2" mode="aspectFill" src="../../static/index/like.png" />
- <view class="info_count">{{ item.number }}</view>
- </view>
- <!-- 乡镇信息区域 -->
- <view class="box_town">{{ item.hName }}</view>
- </view>
- </view>
- </view>
- <!-- 底部点赞 评论 收藏区域 -->
- <view class="tab">
- <!-- 点赞 -->
- <view class="tab_box">
- <img class="img" src="../../static/index/upvote.png" />
- 123
- </view>
- <!-- 评论 -->
- <view class="tab_box" @click="handleClickComment">
- <img class="img2" src="../../static/index/comment.png" />
- 123
- </view>
- <!-- 收藏 -->
- <view class="tab_box">
- <img class="img" src="../../static/index/like.png" />
- 123
- </view>
- </view>
- <!-- 点击评论弹窗区域 -->
- <uv-popup ref="popup" bgColor="none" :safeAreaInsetBottom="false">
- <view class="body_pop">
- <!-- 评论总数区域 -->
- <view class="pop_title">
- 共25条评论
- <img class="pop_icon" src="../../static/index/close3.png" @click="handleClosePop" />
- </view>
- <!-- 评论列表区域 -->
- <view class="pop_list" v-if="commentList.length">
- <!-- 每一条评论区域 -->
- <view class="pop_item" v-for="item in commentList" :key="item.id">
- <!-- 用户区域 -->
- <view class="item_user" @click="handleComment(item)">
- <img mode="aspectFill" :src="item.headPhoto" />
- <view class="user_info">
- {{ item.userName }}
- </view>
- </view>
- <!-- 评价内容区域 -->
- <view class="item_content" @click="handleComment(item)">
- <view class="content_top">
- {{ item.content }}
- </view>
- <view class="content_bottom">
- {{ item.dateTime }}
- </view>
- </view>
- <!-- 二级评论区域 -->
- <view class="item_child">
- <CommentChild v-if="item.commentVoList" :list="item.commentVoList" :commentParentId="info.id" />
- </view>
- </view>
- </view>
- </view>
- <!-- 评论输入框区域 -->
- <view class="body_input">
- <view class="input_box">
- <input type="text" placeholder="说点什么呢~" @confirm="handleInputPop" />
- </view>
- </view>
- </uv-popup>
- <!-- 点击关联民宿弹窗区域 -->
- <uv-popup ref="popup_bind" bgColor="none" :safeAreaInsetBottom="false">
- <view class="body_pop">
- <!-- 评论总数区域 -->
- <view class="pop_title">
- 全部
- <img class="pop_icon" src="../../static/index/close3.png" @click="handleClosePopBind" />
- </view>
- <!-- 关联民宿列表区域 -->
- <view class="pop_list" v-if="bindList.length">
- <!-- 每一个民宿区域 -->
- <view class="pop_item_bind" v-for="item in bindList" :key="item.id">
- <img mode="aspectFill" :src="item.url" />
- <view class="box_detail">
- <view class="detail_name">
- {{ item.hName }}
- <img class="img" src="../../static/index/like.png" />
- </view>
- <view class="detail_leave">
- {{ item.hName }}
- </view>
- <view class="detail_num">
- <view class="num_rate">{{ item.number.toFixed(1) }}分</view>
- <view class="num_comment">{{ item.number }}条评论</view>
- <view class="num_price">
- ¥{{ item.price }}
- <text>起</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </uv-popup>
- </view>
- </template>
- <script>
- import CommentChild from '@/components/commentChild2.vue'
- export default {
- components: { CommentChild },
- data() {
- return {
- // 滚动穿透控制
- showPage: false,
- hotelId: '',
- startTime: '',
- endTime: '',
- info: null,
- commentList: [
- {
- id: 1,
- headPhoto: 'https://chtech.ncjti.edu.cn/hotelReservation/fileload/download/1374205869tmp_ec40ba855cc6003b2a47877a654dceaf9fc74230a8e9cf25.jpg',
- userName: '张三',
- dateTime: '2023-09-22 16:54:38',
- content: '策划斯哈斯是回家哦啊好啦干哈会离开是尴尬尬策划斯哈斯是回家哦啊好啦干哈会离开是尴尬尬策划斯哈斯是回家哦啊好啦干哈会离开是尴尬尬',
- commentVoList: [
- {
- id: 11,
- headPhoto: 'https://chtech.ncjti.edu.cn/hotelReservation/fileload/download/1374205869tmp_ec40ba855cc6003b2a47877a654dceaf9fc74230a8e9cf25.jpg',
- userName: '小王',
- commentName: '老六',
- dateTime: '2023-09-22 16:54:38',
- content: '策划斯哈斯是回家哦啊好啦干哈会离开是尴尬尬策划斯哈斯是回家哦啊好啦干哈会离开是尴尬尬策划斯哈斯是回家哦啊好啦干哈会离开是尴尬尬',
- commentVoList: [
- {
- id: 111,
- headPhoto: 'https://chtech.ncjti.edu.cn/hotelReservation/fileload/download/1374205869tmp_ec40ba855cc6003b2a47877a654dceaf9fc74230a8e9cf25.jpg',
- userName: '小王',
- commentName: '老六',
- dateTime: '2023-09-22 16:54:38',
- content: '策划斯哈斯是回家哦啊好啦干哈会离开是尴尬尬策划斯哈斯是回家哦啊好啦干哈会离开是尴尬尬策划斯哈斯是回家哦啊好啦干哈会离开是尴尬尬',
- commentVoList: []
- }
- ]
- }
- ]
- },
- {
- id: 2,
- headPhoto: 'https://chtech.ncjti.edu.cn/hotelReservation/fileload/download/1374205869tmp_ec40ba855cc6003b2a47877a654dceaf9fc74230a8e9cf25.jpg',
- userName: '李四',
- dateTime: '2023-09-22 16:54:38',
- content: '呜呜呜呜呜呜吾问无为谓策划斯哈斯是回家哦啊好啦干哈会离开是尴尬尬',
- commentVoList: []
- }
- ],
- bindList: [
- {
- id: 1,
- url: 'https://chtech.ncjti.edu.cn/hotelReservation/fileload/download/14479079250812_2.jpg',
- hName: '开心',
- number: 5,
- price: 166
- },
- {
- id: 2,
- url: 'https://chtech.ncjti.edu.cn/hotelReservation/fileload/download/14479079250812_2.jpg',
- hName: '健康',
- number: 6,
- price: 186
- },
- {
- id: 3,
- url: 'https://chtech.ncjti.edu.cn/hotelReservation/fileload/download/14479079250812_2.jpg',
- hName: '幸福',
- number: 9,
- price: 126
- },
- {
- id: 4,
- url: 'https://chtech.ncjti.edu.cn/hotelReservation/fileload/download/14479079250812_2.jpg',
- hName: '开心',
- number: 5,
- price: 166
- },
- {
- id: 5,
- url: 'https://chtech.ncjti.edu.cn/hotelReservation/fileload/download/14479079250812_2.jpg',
- hName: '健康',
- number: 6,
- price: 186
- },
- {
- id: 6,
- url: 'https://chtech.ncjti.edu.cn/hotelReservation/fileload/download/14479079250812_2.jpg',
- hName: '幸福',
- number: 9,
- price: 126
- }
- ]
- }
- },
- onLoad(options) {
- this.hotelId = options.id
- this.getTimes()
- this.getHotelInfo()
- },
- methods: {
- // 获取民宿信息
- async getHotelInfo(id) {
- const res = await this.$myRequest({
- url: '/mhotel/ahpgetHouseByHotelId.action',
- data: {
- hotelId: id ? id : this.hotelId,
- userId: uni.getStorageSync('userInfo').id,
- queryStartTime: this.startTime,
- queryEndTime: this.endTime
- }
- })
- // console.log(res)
- if (res.code === 200) {
- this.info = res.data.data
- }
- },
- // 点击轮播图图片回调
- handleClickSwiper(urls, current) {
- const temList = urls.map((ele) => ele.url)
- uni.previewImage({
- urls: temList,
- current
- })
- },
- handleInput(e) {
- console.log(e)
- console.log(999)
- },
- // 评论弹窗输入框回调
- handleInputPop(e) {
- console.log(e)
- },
- // 点击底部tab评论按钮回调
- handleClickComment() {
- this.showPage = true
- this.$refs.popup.open('bottom')
- },
- // 点击评论弹窗关闭图标回调
- handleClosePop() {
- this.showPage = false
- this.$refs.popup.close()
- },
- // 点击关联民宿查看全部按钮回调
- handleClickALL() {
- this.showPage = true
- this.$refs.popup_bind.open('bottom')
- },
- // 点击关联民宿弹窗关闭图标回调
- handleClosePopBind() {
- this.showPage = false
- this.$refs.popup_bind.close()
- },
- handleGoPage(url) {
- uni.navigateTo({
- url
- })
- },
- handleComment() {},
- // 获取今明两天的日期 YYYY-MM-DD
- getTimes() {
- // 今天
- let today = new Date()
- // 明天
- let tomorrow = new Date(today.getTime() + 24 * 60 * 60 * 1000)
- let late = new Date(today.getTime() + 24 * 60 * 60 * 1000 * 14)
- this.startTime = `${today.getFullYear()}-${(today.getMonth() + 1).toString().padStart(2, 0)}-${today.getDate().toString().padStart(2, 0)}`
- this.endTime = `${tomorrow.getFullYear()}-${(tomorrow.getMonth() + 1).toString().padStart(2, 0)}-${tomorrow.getDate().toString().padStart(2, 0)}`
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- min-height: 100vh;
- background-color: #fff;
- .author {
- display: flex;
- align-items: center;
- padding: 0 20rpx;
- height: 100rpx;
- img {
- width: 50rpx;
- height: 50rpx;
- border-radius: 50%;
- }
- .author_name {
- margin-left: 15rpx;
- font-size: 28rpx;
- font-weight: bold;
- }
- .author_btn {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-left: auto;
- width: 107rpx;
- height: 50rpx;
- color: #096562;
- font-size: 24rpx;
- border-radius: 69rpx;
- border: 1rpx solid #096562;
- }
- }
- .swiper {
- height: 495rpx;
- .swiper_item {
- width: 100%;
- height: 100%;
- .img {
- width: 100%;
- height: 440rpx;
- }
- }
- }
- .tweet {
- margin: auto;
- width: 710rpx;
- border-bottom: 1rpx solid #e6e6e6;
- .tweet_title {
- line-height: 50rpx;
- font-size: 32rpx;
- font-weight: bold;
- }
- .tweet_msg {
- margin-top: 10rpx;
- line-height: 40rpx;
- font-size: 28rpx;
- }
- .tweet_info {
- margin-top: 20rpx;
- height: 55rpx;
- color: #999999;
- font-size: 24rpx;
- }
- }
- .and {
- padding: 20rpx 0;
- margin: auto;
- width: 710rpx;
- border-bottom: 1rpx solid #e6e6e6;
- .and_box {
- display: flex;
- margin-bottom: 20rpx;
- width: 710rpx;
- height: 150rpx;
- background-color: #f2f2f2;
- img {
- width: 126rpx;
- height: 150rpx;
- }
- .box_detail {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- padding: 0 23rpx;
- overflow: hidden;
- .detail_name {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- font-weight: bold;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- .img {
- width: 40rpx;
- height: 40rpx;
- }
- }
- .detail_leave {
- color: #808080;
- font-size: 24rpx;
- }
- .detail_num {
- display: flex;
- align-items: center;
- font-size: 24rpx;
- .num_rate {
- color: #ff5733;
- }
- .num_comment {
- margin-left: 15rpx;
- color: #a6a6a6;
- }
- .num_price {
- margin-left: auto;
- font-size: 28rpx;
- color: #ff5733;
- text {
- margin-left: 5rpx;
- font-size: 20rpx;
- color: #a6a6a6;
- }
- }
- }
- }
- }
- .and_all {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 710rpx;
- height: 80rpx;
- color: #096562;
- font-size: 28rpx;
- background-color: #f2f2f2;
- }
- }
- .like {
- display: flex;
- align-items: center;
- padding: 0 20rpx;
- height: 108rpx;
- color: #808080;
- font-size: 28rpx;
- .like_text {
- margin-left: 18rpx;
- }
- }
- .total {
- margin: auto;
- width: 710rpx;
- height: 60rpx;
- line-height: 60rpx;
- font-size: 28rpx;
- color: #808080;
- }
- .input_box {
- margin: auto;
- width: 710rpx;
- height: 66rpx;
- font-size: 24rpx;
- border-radius: 47rpx;
- background-color: #f2f2f2;
- input {
- box-sizing: border-box;
- padding: 0 33rpx;
- width: 100%;
- height: 100%;
- }
- }
- .comment_list {
- margin: auto;
- width: 710rpx;
- .comment_box {
- display: flex;
- box-sizing: border-box;
- padding-top: 30rpx;
- .box_left {
- width: 75rpx;
- img {
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- }
- }
- .box_right {
- flex: 1;
- flex-wrap: wrap;
- font-size: 24rpx;
- border-bottom: 1rpx solid #e6e6e6;
- .right_name {
- color: #808080;
- }
- .right_content {
- margin-top: 12rpx;
- word-break: break-all;
- }
- .right_time {
- margin: 12rpx 0 20rpx;
- color: #808080;
- }
- }
- }
- .comment_all {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 710rpx;
- height: 80rpx;
- color: #096562;
- font-size: 28rpx;
- background-color: #f2f2f2;
- }
- }
- .related {
- margin: auto;
- padding-bottom: 130rpx;
- width: 710rpx;
- .related_title {
- line-height: 105rpx;
- font-size: 32rpx;
- font-weight: bold;
- }
- .related_list {
- display: grid;
- grid-template-columns: 1fr 1fr;
- grid-auto-rows: auto;
- gap: 40rpx;
- .related_box {
- position: relative;
- width: 335rpx;
- background-color: #f7f7f7;
- img {
- width: 335rpx;
- height: 463rpx;
- border-radius: 10rpx 10rpx 0 0;
- }
- .box_content {
- padding: 10rpx 60rpx 10rpx 20rpx;
- font-size: 28rpx;
- font-weight: bold;
- word-break: break-all;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .box_info {
- padding: 0 20rpx;
- display: flex;
- align-items: center;
- height: 50rpx;
- font-size: 20rpx;
- color: #666666;
- .img {
- width: 30rpx;
- height: 30rpx;
- border-radius: 50%;
- }
- .info_name {
- margin-left: 10rpx;
- }
- .img2 {
- margin-left: auto;
- width: 28rpx;
- height: 28rpx;
- }
- .info_count {
- margin-left: 5rpx;
- }
- }
- .box_town {
- position: absolute;
- top: 405rpx;
- left: 22rpx;
- padding: 0 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 43rpx;
- color: #fff;
- font-size: 20rpx;
- border-radius: 42rpx;
- background-color: rgba(0, 0, 0, 0.3);
- }
- }
- }
- }
- .tab {
- position: fixed;
- bottom: 0;
- left: 0;
- z-index: 999;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- width: 100%;
- height: 110rpx;
- border-top: 1rpx solid #e6e6e6;
- background-color: #fff;
- .tab_box {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 200rpx;
- .img {
- margin-right: 10rpx;
- width: 45rpx;
- height: 45rpx;
- }
- .img2 {
- margin-right: 10rpx;
- width: 35rpx;
- height: 35rpx;
- }
- }
- }
- .body_pop {
- position: relative;
- max-height: 955rpx;
- border-radius: 22rpx 22rpx 0 0;
- background-color: #fff;
- overflow-y: auto;
- .pop_title {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 110rpx;
- font-size: 28rpx;
- background-color: #fff;
- .pop_icon {
- position: absolute;
- top: 35rpx;
- right: 35rpx;
- width: 36rpx;
- height: 36rpx;
- }
- }
- .pop_list {
- padding: 110rpx 20rpx 30rpx;
- .pop_item {
- margin-bottom: 10rpx;
- padding-bottom: 10rpx;
- border-bottom: 1rpx solid #e6e6e6;
- .item_user {
- display: flex;
- align-items: center;
- height: 70rpx;
- img {
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- }
- .user_info {
- display: flex;
- align-items: center;
- margin-left: 18rpx;
- height: 70rpx;
- color: #808080;
- font-size: 24rpx;
- }
- }
- .item_content {
- margin-left: 80rpx;
- font-size: 24rpx;
- .content_top {
- }
- .content_bottom {
- margin: 10rpx 0;
- color: #808080;
- }
- .content_key {
- color: #808080;
- }
- }
- .item_child {
- margin-left: 50rpx;
- }
- }
- .pop_item_bind {
- display: flex;
- margin-bottom: 20rpx;
- width: 710rpx;
- height: 150rpx;
- background-color: #f2f2f2;
- img {
- width: 126rpx;
- height: 150rpx;
- }
- .box_detail {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- padding: 0 23rpx;
- overflow: hidden;
- .detail_name {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- font-weight: bold;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- .img {
- width: 40rpx;
- height: 40rpx;
- }
- }
- .detail_leave {
- color: #808080;
- font-size: 24rpx;
- }
- .detail_num {
- display: flex;
- align-items: center;
- font-size: 24rpx;
- .num_rate {
- color: #ff5733;
- }
- .num_comment {
- margin-left: 15rpx;
- color: #a6a6a6;
- }
- .num_price {
- margin-left: auto;
- font-size: 28rpx;
- color: #ff5733;
- text {
- margin-left: 5rpx;
- font-size: 20rpx;
- color: #a6a6a6;
- }
- }
- }
- }
- }
- }
- }
- .body_input {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 118rpx;
- border-top: 1rpx solid #cccccc;
- background-color: #fff;
- .input_box {
- width: 710rpx;
- border-radius: 77rpx;
- font-size: 24rpx;
- background-color: #f2f2f2;
- input {
- box-sizing: border-box;
- padding: 0 30rpx;
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- </style>
|