| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732 |
- <template>
- <view class="container">
- <!-- 搜索框区域 -->
- <view class="content">
- <uv-row custom-style="margin: 10px 0px" gutter="10">
- <picker @change="bindPickerChange" range-key="name" :value="placeIndex" :range="placeList">
- <view class="address">
- <view class="address_text">{{ placeList[placeIndex].name }}</view>
- <img src="../../static/index/bottom.png" />
- </view>
- </picker>
- <view class="search">
- <view class="add">
- <image class="img" src="../../static/index/search.png" mode="aspectFit"></image>
- </view>
- <input class="inp" type="text" v-model="keywords" placeholder="请输入关键字搜索" />
- <view class="btnSearch" @click="searchHandler">搜索</view>
- </view>
- </uv-row>
- </view>
- <view class="main">
- <!-- 添加一层view解决 css属性 sticky 不生效问题 -->
- <view>
- <!-- 分段器区域 -->
- <view class="control" :class="{ sticky: isSticky }">
- <uni-segmented-control :current="current" :values="items" style-type="text" active-color="#096562" @clickItem="onClickItem" />
- </view>
- <!-- 民宿列表 -->
- <view class="box" v-if="hotelList.length">
- <!-- 列表区域 -->
- <view class="box_body">
- <!-- 每一个民宿区域 -->
- <view class="box_item" v-for="item in hotelList" :key="item.id" @click="goPageDetail(item)">
- <img mode="aspectFill" :src="item.coverImg" />
- <view class="item_name">{{ item.hotel_name }}</view>
- <view class="item_rate">
- <view class="rate_left">{{ item.scoreHotel || '5.0' }}</view>
- </view>
- <view class="item_distance" v-if="item.distance">距您直线{{ item.distance }}公里</view>
- <view class="item_info">
- <view class="info_count">剩{{ item.roomNumber }}间</view>
- <view class="info_price">
- ¥{{ item.min_price ? item.min_price : 0 }}
- <text>起</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 没有数据时展示的页面 -->
- <view class="noData" v-else>
- <img src="../../static/images/noData.png" />
- 暂无数据
- </view>
- </view>
- </view>
- <!-- 选择乡镇弹窗区域 -->
- <uni-popup ref="popup" :is-mask-click="false" type="center">
- <view class="popup_body">
- <view class="body_header">
- <img src="../../static/my/popup_title.png" />
- <view class="header_title">请选择乡镇</view>
- <img src="../../static/my/popup_title.png" />
- <view class="header_jump" @click="handleChooseTown()">跳过</view>
- </view>
- <view class="body_content">
- <view class="content_box" v-for="(item, index) in popList" :key="index" @click="handleChooseTown(item.name)">
- <img v-if="index === 0" src="https://chtech.ncjti.edu.cn/hotelReservation/image/1.png" mode="aspectFill" />
- <img v-if="index === 1" src="https://chtech.ncjti.edu.cn/hotelReservation/image/2.png" mode="aspectFill" />
- <img v-if="index === 2" src="https://chtech.ncjti.edu.cn/hotelReservation/image/3.png" mode="aspectFill" />
- <img v-if="index === 3" src="https://chtech.ncjti.edu.cn/hotelReservation/image/4.png" mode="aspectFill" />
- <img v-if="index === 4" src="https://chtech.ncjti.edu.cn/hotelReservation/image/5.png" mode="aspectFill" />
- <img v-if="index === 5" src="https://chtech.ncjti.edu.cn/hotelReservation/image/6.png" mode="aspectFill" />
- <img v-if="index === 6" src="https://chtech.ncjti.edu.cn/hotelReservation/image/7.png" mode="aspectFill" />
- <img v-if="index === 7" src="https://chtech.ncjti.edu.cn/hotelReservation/image/8.png" mode="aspectFill" />
- <img v-if="index === 8" src="https://chtech.ncjti.edu.cn/hotelReservation/image/9.png" mode="aspectFill" />
- <img v-if="index === 9" src="https://chtech.ncjti.edu.cn/hotelReservation/image/10.png" mode="aspectFill" />
- <img v-if="index === 10" src="https://chtech.ncjti.edu.cn/hotelReservation/image/11.png" mode="aspectFill" />
- <img v-if="index === 11" src="https://chtech.ncjti.edu.cn/hotelReservation/image/12.png" mode="aspectFill" />
- <view class="box_town">{{ item.name }}</view>
- <view class="box_count">剩{{ item.residueNumber }}间</view>
- </view>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- // 分段器数组
- items: ['白金级', '金宿级', '银宿级'],
- // 当前索引
- current: 0,
- // 地区数组
- placeList: [
- {
- name: '靖安县'
- }
- ],
- // 当前选择地区索引
- placeIndex: 0,
- // 搜索框绑定数据
- keywords: '',
- // 是否显示距离差
- showdDistance: false,
- // 用户定位经度
- myLng: 0,
- // 用户定位纬度
- myLat: 0,
- // 当前页
- page: 1,
- // 每页多少条
- rows: 6,
- // 总条数
- total: null,
- // 民宿列表数组
- hotelList: [],
- // 当前乡镇
- town: '',
- // 分段器是否吸顶
- isSticky: false,
- // 选择乡镇弹窗数据
- popList: []
- }
- },
- onLoad(options) {
- // console.log(options)
- this.keywords = options.keywords
- if (!options.level || options.level === '白金级') {
- this.current = 0
- } else if (options.level === '金宿级') {
- this.current = 1
- } else if (options.level === '银宿级') {
- this.current = 2
- }
- uni.setNavigationBarTitle({
- title: options.town || '靖安县'
- })
- this.getTownList(options.town)
- // this.openPop()
- // this.getResidueCount()
- },
- onReachBottom() {
- if (this.hotelList.length < this.total) {
- this.page++
- this.getHotelList()
- } else {
- uni.showToast({
- title: '没有更多数据了',
- icon: 'none'
- })
- }
- },
- // 页面下拉刷新回调
- onPullDownRefresh() {
- setTimeout(() => {
- this.hotelList = []
- this.page = 1
- this.getLocation()
- uni.stopPullDownRefresh()
- }, 2000)
- },
- methods: {
- // 弹窗点击选择乡镇地址回调
- handleChooseTown(name) {
- if (!name) {
- this.town = '靖安县'
- } else {
- this.town = name
- }
- uni.setNavigationBarTitle({
- title: this.town
- })
- this.$refs.popup.close()
- uni.showTabBar()
- this.getTownList()
- this.getLocation()
- },
- // 打开选择乡镇弹窗回调
- openPop() {
- this.$refs.popup.open()
- uni.hideTabBar()
- },
- // 页面上拉到底部回调
- handleRefresh() {
- if (this.hotelList.length < this.total) {
- this.page++
- this.getHotelList()
- } else {
- uni.showToast({
- title: '没有更多数据了',
- icon: 'none'
- })
- }
- },
- // 滚动条滚动回调
- handleScroll(e) {
- if (e.detail.scrollTop > 90) {
- this.isSticky = true
- } else {
- this.isSticky = false
- }
- },
- // 获取乡镇剩余房间数
- async getResidueCount() {
- const res = await this.$myRequest({
- url: '/mhotel/ahpgetResidueCount.action'
- })
- // console.log(res)
- if (res.code === 200) {
- let residueNumber = 0
- res.data.forEach((ele) => {
- residueNumber += ele.residueNumber
- })
- res.data.unshift({
- name: '靖安县',
- residueNumber
- })
- this.popList = res.data
- }
- },
- // 获取乡镇集合
- async getTownList(town) {
- const res = await this.$myRequest({
- url: '/mhotel/hotelqueryList.action',
- method: 'get',
- data: {
- code: 10
- }
- })
- // console.log(res)
- if (res.code === 200) {
- this.placeList = [...this.placeList, ...res.data]
- let temindex
- this.placeList.forEach((ele, index) => {
- if (ele.name === town) {
- temindex = index
- }
- })
- this.placeIndex = temindex || 0
- this.getLocation()
- // console.log(this.placeIndex)
- }
- },
- // 获取用户当前位置
- getLocation() {
- uni.getSetting({
- success: (res) => {
- if (!res.authSetting['scope.userLocation']) {
- uni.authorize({
- scope: 'scope.userLocation',
- success: (res) => {
- // 授权成功
- uni.getLocation({
- type: 'gcj02',
- success: (res) => {
- this.myLat = res.latitude
- this.myLng = res.longitude
- this.showdDistance = true
- this.getHotelList()
- }
- })
- },
- fail: () => {
- uni.showModal({
- content: '获取定位权限失败将会影响使用部分功能,是否去设置打开?',
- confirmText: '确认',
- cancelText: '取消',
- success: (res) => {
- if (res.confirm) {
- uni.openSetting({
- success: (res) => {
- console.log(res)
- this.getLocation()
- }
- })
- } else {
- this.showdDistance = false
- this.getHotelList()
- uni.showToast({
- title: '获取定位权限失败',
- icon: 'none'
- })
- }
- }
- })
- }
- })
- } else {
- uni.getLocation({
- type: 'gcj02',
- success: (res) => {
- this.myLat = res.latitude
- this.myLng = res.longitude
- this.showdDistance = true
- this.getHotelList()
- }
- })
- }
- }
- })
- },
- // 获取民宿列表
- async getHotelList() {
- let type
- if (this.current === 0) {
- type = 3
- } else if (this.current === 1) {
- type = 2
- } else if (this.current === 2) {
- type = 1
- }
- const res = await this.$myRequest({
- url: '/mhotel/ahphomePage.action',
- data: {
- queryValue: this.keywords,
- page: this.page,
- rows: this.rows,
- hotel_township: this.placeList[this.placeIndex].id || '',
- userId: uni.getStorageSync('userInfo') ? uni.getStorageSync('userInfo').id : '',
- type
- }
- })
- // console.log(res)
- if (res.code === 200) {
- this.hotelList = [...this.hotelList, ...res.data.pageList]
- this.total = res.data.total
- // 如果定位成功则获取和民宿之间的距离
- if (this.showdDistance && this.hotelList.length) {
- this.hotelList.forEach((ele) => {
- let lat = ele.hpositionWens.split(',')[0]
- let lng = ele.hpositionWens.split(',')[1]
- ele.distance = this.calculateDistance(lat, lng)
- })
- }
- }
- },
- // 点击每一个民宿卡片回调
- goPageDetail(item) {
- uni.navigateTo({
- url: `/pages/detail/detail?id=${item.id}&distance=${item.distance}&town=${item.hotelTownshipName}`
- })
- },
- // 选择地区时的回调
- bindPickerChange(e) {
- this.placeIndex = e.detail.value
- uni.setNavigationBarTitle({
- title: this.placeList[this.placeIndex].name
- })
- this.hotelList = []
- this.page = 1
- this.getHotelList()
- },
- // 搜索按钮点击回调
- searchHandler() {
- this.hotelList = []
- this.page = 1
- this.getHotelList()
- },
- onClickItem(e) {
- if (this.current !== e.currentIndex) {
- this.current = e.currentIndex
- this.hotelList = []
- this.page = 1
- this.getHotelList()
- }
- },
- // 计算两个点之间的距离
- calculateDistance(lat, lng) {
- let centerLat = lat
- let centerLng = lng
- let red1 = (this.myLat * Math.PI) / 180.0
- let red2 = (centerLat * Math.PI) / 180.0
- let a = red1 - red2
- let b = (this.myLng * Math.PI) / 180.0 - (centerLng * Math.PI) / 180.0
- let R = 6378137
- let distance = R * 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(red1) * Math.cos(red2) * Math.pow(Math.sin(b / 2), 2)))
- let res = (distance / 1000).toFixed(2) * 1
- return res
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- display: flex;
- flex-direction: column;
- width: 750rpx;
- min-height: 100vh;
- padding: 0 30rpx;
- box-sizing: border-box;
- overflow-y: auto;
- background-color: #f7f7f7;
- .content {
- position: sticky;
- background-color: #f7f7f7;
- .address {
- display: flex;
- width: 152rpx;
- font-size: 28rpx;
- .address_text {
- width: 104rpx;
- text-align: center;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- img {
- width: 48rpx;
- height: 48rpx;
- }
- }
- .search {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 538rpx;
- height: 80rpx;
- opacity: 1;
- border-radius: 70px;
- background-color: #fff;
- .add {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-left: 10rpx;
- width: 60rpx;
- font-size: 50rpx;
- height: 60rpx;
- line-height: 60rpx;
- color: rgba(30, 125, 251, 1);
- .img {
- width: 30rpx;
- height: 30rpx;
- }
- }
- .inp {
- height: 60rpx;
- line-height: 60rpx;
- flex-grow: 1;
- font-size: 28rpx;
- }
- .btnSearch {
- width: 100rpx;
- text-align: center;
- margin-right: 10rpx;
- height: 60rpx;
- line-height: 60rpx;
- opacity: 1;
- font-size: 28rpx;
- font-weight: 400;
- height: 2rem;
- color: #096562;
- }
- }
- }
- .main {
- .icons {
- display: flex;
- justify-content: space-around;
- align-items: center;
- height: 158rpx;
- border-radius: 12rpx;
- background-color: #fff;
- .icon_item {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 20%;
- .item_top {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- img {
- width: 28rpx;
- height: 27rpx;
- }
- .img2 {
- width: 40rpx;
- height: 25.5rpx;
- }
- .img3 {
- width: 31rpx;
- height: 21rpx;
- }
- }
- .color {
- background-color: #d8e8e8;
- }
- .color2 {
- background-color: #c2f2d5;
- }
- .color3 {
- background-color: #f7d4ba;
- }
- .color4 {
- background-color: #fae1e2;
- }
- .color5 {
- background-color: #d0e0f2;
- }
- .item_bottom {
- margin-top: 6rpx;
- font-size: 28rpx;
- }
- }
- }
- .control {
- margin: 20rpx 0;
- height: 90rpx;
- border-radius: 8rpx;
- background-color: #fff;
- }
- .sticky {
- position: sticky;
- top: 0;
- border-radius: 0;
- }
- .box {
- .box_body {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- .box_item {
- margin-bottom: 20rpx;
- width: 335rpx;
- height: 446rpx;
- border-radius: 10rpx;
- background-color: #fff;
- img {
- width: 335rpx;
- height: 223rpx;
- border-radius: 10rpx 10rpx 0 0;
- }
- .item_name {
- margin-left: 22rpx;
- margin-top: 10rpx;
- line-height: 55rpx;
- font-size: 28rpx;
- font-weight: bold;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .item_rate {
- display: flex;
- align-items: center;
- margin-left: 22rpx;
- font-size: 24rpx;
- .rate_left {
- padding: 0 12rpx;
- color: #fff;
- // border-radius: 32rpx 0 0 32rpx;
- border-radius: 32rpx;
- background-color: #096562;
- }
- .rate_right {
- padding: 0 16rpx 0 7rpx;
- color: #096562;
- border-radius: 0 32rpx 32rpx 0;
- background-color: #dff2f2;
- }
- }
- .item_distance {
- margin-top: 10rpx;
- margin-left: 22rpx;
- color: #a6a6a6;
- font-size: 24rpx;
- }
- .item_info {
- box-sizing: border-box;
- padding: 0 30rpx 0 25rpx;
- margin-top: 16rpx;
- display: flex;
- justify-content: space-between;
- color: #ff5733;
- .info_count {
- font-size: 24rpx;
- }
- .info_price {
- margin-top: -5rpx;
- font-size: 36rpx;
- font-weight: bold;
- text {
- color: #a6a6a6;
- font-size: 24rpx;
- font-weight: 400;
- }
- }
- }
- }
- }
- }
- .noData {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- img {
- margin-top: 150rpx;
- width: 400rpx;
- height: 400rpx;
- }
- }
- }
- .popup_body {
- width: 618rpx;
- height: 687rpx;
- border-radius: 21rpx;
- background-color: #fff;
- .body_header {
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- height: 113rpx;
- border-bottom: 1rpx solid #e6e6e6;
- img {
- width: 16rpx;
- height: 16rpx;
- }
- .header_title {
- margin: 0 10rpx;
- font-size: 34rpx;
- font-weight: bold;
- color: #0f194d;
- }
- .header_jump {
- position: absolute;
- top: 38rpx;
- right: 30rpx;
- font-size: 28rpx;
- color: #a6a6a6;
- }
- }
- .body_content {
- display: grid;
- grid-template-columns: repeat(auto-fill, 160rpx);
- gap: 28rpx;
- box-sizing: border-box;
- padding: 26rpx 40rpx 50rpx;
- .content_box {
- position: relative;
- width: 160rpx;
- height: 105rpx;
- color: #fff;
- border-radius: 10rpx;
- img {
- width: 160rpx;
- height: 105rpx;
- border-radius: 10rpx;
- }
- .box_town {
- position: absolute;
- top: 17rpx;
- left: 0;
- right: 0;
- text-align: center;
- font-size: 28rpx;
- font-weight: bold;
- }
- .box_count {
- position: absolute;
- top: 57rpx;
- left: 0;
- right: 0;
- text-align: center;
- font-size: 18rpx;
- }
- }
- }
- }
- }
- </style>
|