|
@@ -0,0 +1,531 @@
|
|
|
+<template>
|
|
|
+ <view class="main">
|
|
|
+ <view class="one">
|
|
|
+ <swiper class="swiper" circular :indicator-dots="true" indicator-color="#F5F5F5"
|
|
|
+ indicator-active-color="#ffffff" :autoplay="true" :interval="3000" :duration="1000">
|
|
|
+ <swiper-item class="list" v-for="(item,index) in config.file" :key="index">
|
|
|
+ <image class="image" :src="item.url" mode="">
|
|
|
+ </image>
|
|
|
+ </swiper-item>
|
|
|
+ </swiper>
|
|
|
+ </view>
|
|
|
+ <view class="bottom">
|
|
|
+ <view class="two">
|
|
|
+ <view class="two_1">{{config.name||'暂无'}}</view>
|
|
|
+ <view class="two_2">
|
|
|
+ <view class="left">
|
|
|
+ <view class="left_1">
|
|
|
+ <text :class="[config.status=='0'?'text_1':'text_2']">{{config.zhStatus||'暂无'}}</text>
|
|
|
+ <text class="time">{{config.open_time||'暂无'}}</text>
|
|
|
+ </view>
|
|
|
+ <view class="left_2">
|
|
|
+ <text>有优待政策</text>
|
|
|
+ <text>景区电话</text>
|
|
|
+ <text>有免费停车</text>
|
|
|
+ <text>院内交通</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="right">简介<text class="iconfont icon-dayuhao"></text></view>
|
|
|
+ </view>
|
|
|
+ <view class="two_3">
|
|
|
+ <view class="left">{{config.address||'暂无'}}</view>
|
|
|
+ <view class="right">
|
|
|
+ <text class="iconfont icon-ditu"></text>
|
|
|
+ <text>地图</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="two_4">
|
|
|
+ <view class="left">优惠卷</view>
|
|
|
+ <view class="right">领卷<text class="iconfont icon-dayuhao"></text></view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="thr">
|
|
|
+ <view class="thr_1">门票</view>
|
|
|
+ <view class="thr_2">
|
|
|
+ <text class="text">今日出游</text>
|
|
|
+ <text class="text">明日出游</text>
|
|
|
+ <text class="text">指定日期<text class="iconfont icon-dayuhao"></text></text>
|
|
|
+ </view>
|
|
|
+ <view class="thr_3">
|
|
|
+ <view class="list" v-for="(item, index) in totalList" :key="index">
|
|
|
+ <text class="text">{{item.label}}</text>
|
|
|
+ </view>
|
|
|
+ <view>筛选</view>
|
|
|
+ </view>
|
|
|
+ <view class="thr_4">
|
|
|
+ <scroll-view scroll-y="true" class="scroll-view" @scrolltolower="toPage" @scroll="toScroll">
|
|
|
+ <view class="list-scroll-view">
|
|
|
+ <view class="list" v-for="(item, index) in list" :key="index">
|
|
|
+ <view class="left">
|
|
|
+ <view class="name">{{item.name||'暂无'}}</view>
|
|
|
+ <view class="type">#{{item.zhType||'暂无'}}</view>
|
|
|
+ <view class="other">
|
|
|
+ 已售{{item.buy_num||0}}|购买须知
|
|
|
+ <text class="iconfont icon-dayuhao"></text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="right">
|
|
|
+ <view class="money">
|
|
|
+ <text>¥{{item.original_price||'暂无'}}</text>
|
|
|
+ <text>¥{{item.money||'暂无'}}起</text>
|
|
|
+ </view>
|
|
|
+ <view class="button">
|
|
|
+ <button type="warn" @tap.stop="toBuy(item)">预订</button>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="is_bottom" v-if="is_bottom">
|
|
|
+ <text>{{config.bottom_title||'到底了!'}}</text>
|
|
|
+ </view>
|
|
|
+ </scroll-view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ type: '',
|
|
|
+ searchInfo: {},
|
|
|
+ config: {},
|
|
|
+ user: {},
|
|
|
+ list: [],
|
|
|
+ total: 0,
|
|
|
+ skip: 0,
|
|
|
+ limit: 10,
|
|
|
+ page: 0,
|
|
|
+ // 数据是否触底
|
|
|
+ is_bottom: false,
|
|
|
+ scrollTop: 0,
|
|
|
+ // 字典表
|
|
|
+ statusList: [],
|
|
|
+ personList: [],
|
|
|
+ typeList: [],
|
|
|
+ totalList: []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onLoad: async function(e) {
|
|
|
+ const that = this;
|
|
|
+ that.$set(that, `type`, e && e.type || '');
|
|
|
+ uni.setNavigationBarTitle({
|
|
|
+ title: e && e.title || '分类'
|
|
|
+ });
|
|
|
+ await that.searchOther();
|
|
|
+ that.searchConfig();
|
|
|
+ that.searchToken();
|
|
|
+ that.search();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ searchToken() {
|
|
|
+ const that = this;
|
|
|
+ try {
|
|
|
+ const res = uni.getStorageSync('token');
|
|
|
+ if (res) that.$set(that, `user`, res);
|
|
|
+ } catch (e) {
|
|
|
+ uni.showToast({
|
|
|
+ title: err.errmsg,
|
|
|
+ icon: 'error',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ searchConfig() {
|
|
|
+ const that = this;
|
|
|
+ try {
|
|
|
+ const res = uni.getStorageSync('config');
|
|
|
+ if (res) {
|
|
|
+ const status = that.statusList.find(i => i.value == res.status)
|
|
|
+ if (status) res.zhStatus = status.label
|
|
|
+ that.$set(that, `config`, res);
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ uni.showToast({
|
|
|
+ title: err.errmsg,
|
|
|
+ icon: 'error',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 查询
|
|
|
+ async search() {
|
|
|
+ const that = this;
|
|
|
+ let info = {
|
|
|
+ skip: that.skip,
|
|
|
+ limit: that.limit,
|
|
|
+ is_use: '0',
|
|
|
+ status: '1'
|
|
|
+ }
|
|
|
+ const res = await that.$api(`/ticket`, 'GET', {
|
|
|
+ ...info,
|
|
|
+ ...that.searchInfo
|
|
|
+ })
|
|
|
+ if (res.errcode == '0') {
|
|
|
+ let list = [...that.list, ...res.data];
|
|
|
+ for (let val of list) {
|
|
|
+ const type = that.typeList.find(i => i.value == val.type)
|
|
|
+ if (type) val.zhType = type.label
|
|
|
+ }
|
|
|
+ that.$set(that, `list`, list)
|
|
|
+ that.$set(that, `total`, res.total)
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: res.errmsg,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 输入框
|
|
|
+ toInput(e) {
|
|
|
+ const that = this;
|
|
|
+ if (that.searchInfo.name) that.$set(that.searchInfo, `name`, e.detail.value)
|
|
|
+ else that.$set(that, `searchInfo`, {})
|
|
|
+ that.clearPage();
|
|
|
+ that.search();
|
|
|
+ },
|
|
|
+ // 详情
|
|
|
+ toInfo(e) {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/pagesHome/hotel/info?id=${e.id||e._id}`
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 预订
|
|
|
+ toBuy(item) {
|
|
|
+ const that = this;
|
|
|
+ if (that.user && that.user._id) {
|
|
|
+ console.log(item);
|
|
|
+ } else {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/pagesIndex/login/index`
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 查询其他信息
|
|
|
+ async searchOther() {
|
|
|
+ const that = this;
|
|
|
+ let res;
|
|
|
+ // 查询状态
|
|
|
+ res = await that.$api(`/dictData`, 'GET', {
|
|
|
+ type: 'config_status',
|
|
|
+ is_use: '0',
|
|
|
+ })
|
|
|
+ if (res.errcode == '0') that.$set(that, `statusList`, res.data);
|
|
|
+ // 出游人群
|
|
|
+ res = await that.$api(`/dictData`, 'GET', {
|
|
|
+ type: 'ticket_person',
|
|
|
+ is_use: '0',
|
|
|
+ })
|
|
|
+ if (res.errcode == '0') that.$set(that, `personList`, res.data);
|
|
|
+ // 服务特色
|
|
|
+ res = await that.$api(`/dictData`, 'GET', {
|
|
|
+ type: 'ticket_type',
|
|
|
+ is_use: '0',
|
|
|
+ })
|
|
|
+ if (res.errcode == '0') that.$set(that, `typeList`, res.data);
|
|
|
+ that.$set(that, `totalList`, [...that.personList, ...that.typeList].slice(0, 7));
|
|
|
+ },
|
|
|
+ // 分页
|
|
|
+ toPage(e) {
|
|
|
+ const that = this;
|
|
|
+ let list = that.list;
|
|
|
+ let limit = that.limit;
|
|
|
+ if (that.total > list.length) {
|
|
|
+ uni.showLoading({
|
|
|
+ title: '加载中',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ let page = that.page + 1;
|
|
|
+ that.$set(that, `page`, page)
|
|
|
+ let skip = page * limit;
|
|
|
+ that.$set(that, `skip`, skip)
|
|
|
+ that.searchComment();
|
|
|
+ uni.hideLoading();
|
|
|
+ } else that.$set(that, `is_bottom`, true)
|
|
|
+ },
|
|
|
+ // 触底
|
|
|
+ toScroll(e) {
|
|
|
+ const that = this;
|
|
|
+ let up = that.scrollTop;
|
|
|
+ that.$set(that, `scrollTop`, e.detail.scrollTop);
|
|
|
+ let num = Math.sign(up - e.detail.scrollTop);
|
|
|
+ if (num == 1) that.$set(that, `is_bottom`, false);
|
|
|
+ },
|
|
|
+ // 清空列表
|
|
|
+ clearPage() {
|
|
|
+ const that = this;
|
|
|
+ that.$set(that, `list`, [])
|
|
|
+ that.$set(that, `skip`, 0)
|
|
|
+ that.$set(that, `limit`, 10)
|
|
|
+ that.$set(that, `page`, 0)
|
|
|
+ },
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+ .main {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ width: 100vw;
|
|
|
+ height: 100vh;
|
|
|
+
|
|
|
+ .one {
|
|
|
+ padding: 0 0 2vw 0;
|
|
|
+
|
|
|
+ .swiper {
|
|
|
+ height: 60vw;
|
|
|
+
|
|
|
+ .list {
|
|
|
+ .image {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .bottom {
|
|
|
+ position: absolute;
|
|
|
+ top: 55vw;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ background-color: var(--f9Color);
|
|
|
+ border-radius: 20px;
|
|
|
+ padding: 2vw;
|
|
|
+
|
|
|
+ .two {
|
|
|
+ .two_1 {
|
|
|
+ padding: 2vw 0;
|
|
|
+ font-size: var(--font18Size);
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ .two_2 {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .left {
|
|
|
+ .left_1 {
|
|
|
+ font-size: var(--font14Size);
|
|
|
+
|
|
|
+ .time {
|
|
|
+ font-weight: 500;
|
|
|
+ margin: 0 1vw;
|
|
|
+ }
|
|
|
+
|
|
|
+ .text_1 {
|
|
|
+ padding: 1px;
|
|
|
+ color: var(--mainColor);
|
|
|
+ background-color: mediumseagreen;
|
|
|
+ }
|
|
|
+
|
|
|
+ .text_2 {
|
|
|
+ padding: 1px;
|
|
|
+ color: var(--mainColor);
|
|
|
+ background-color: red;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .left_2 {
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ margin: 2vw 0;
|
|
|
+
|
|
|
+ text {
|
|
|
+ margin: 0 2px 0 0;
|
|
|
+ padding: 2px 3px;
|
|
|
+ border: 1px solid #964726;
|
|
|
+ color: #964726;
|
|
|
+ border-radius: 5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: var(--font14Size);
|
|
|
+ color: var(--f85Color);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .two_3 {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ font-size: var(--font14Size);
|
|
|
+
|
|
|
+ .right {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ padding: 0 5vw 0 0;
|
|
|
+
|
|
|
+ .iconfont {
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .two_4 {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ padding: 2vw;
|
|
|
+ font-size: var(--font14Size);
|
|
|
+ background-color: var(--mainColor);
|
|
|
+ border-radius: 10px;
|
|
|
+ margin: 1vw 0;
|
|
|
+
|
|
|
+ .right {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: var(--font14Size);
|
|
|
+ color: var(--fF0Color);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .thr {
|
|
|
+ .thr_1 {
|
|
|
+ padding: 2vw 0;
|
|
|
+ font-size: var(--font18Size);
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ .thr_2 {
|
|
|
+ padding: 1vw 0;
|
|
|
+
|
|
|
+ .text {
|
|
|
+ margin: 0 5px 0 0;
|
|
|
+ padding: 1vw;
|
|
|
+ border-radius: 5px;
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ color: var(--f69Color);
|
|
|
+ background-color: var(--mainColor);
|
|
|
+
|
|
|
+ .iconfont {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .thr_3 {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 1vw 0;
|
|
|
+ font-size: var(--font15Size);
|
|
|
+ margin: 1vw 0 0 0;
|
|
|
+
|
|
|
+ .list {
|
|
|
+
|
|
|
+ .text {
|
|
|
+ margin: 0 5px 0 0;
|
|
|
+ padding: 1vw;
|
|
|
+ border-radius: 5px;
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ color: var(--f69Color);
|
|
|
+ background-color: var(--mainColor);
|
|
|
+
|
|
|
+ .iconfont {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .thr_4 {
|
|
|
+ position: relative;
|
|
|
+ height: 82vh;
|
|
|
+
|
|
|
+ .list {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ background-color: var(--mainColor);
|
|
|
+ border: 1px solid var(--f5Color);
|
|
|
+ padding: 2vw;
|
|
|
+ margin: 2vw 2vw 0 2vw;
|
|
|
+ border-radius: 5px;
|
|
|
+
|
|
|
+ .left {
|
|
|
+ .name {
|
|
|
+ padding: 2vw 0;
|
|
|
+ font-size: var(--font18Size);
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+
|
|
|
+ .type {
|
|
|
+ padding: 0 0 1vw 0;
|
|
|
+ color: var(--f3CColor);
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ }
|
|
|
+
|
|
|
+ .other {
|
|
|
+ color: var(--f69Color);
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+
|
|
|
+ .money {
|
|
|
+ color: var(--fF0Color);
|
|
|
+ font-size: var(--font16Size);
|
|
|
+ font-weight: bold;
|
|
|
+
|
|
|
+ text:first-child {
|
|
|
+ text-decoration: line-through;
|
|
|
+ color: var(--f69Color);
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ font-weight: 400;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .button {
|
|
|
+ button {
|
|
|
+ font-size: var(--font14Size);
|
|
|
+ border-radius: 40px;
|
|
|
+ background: linear-gradient(to right, #00BFFF, #007AFF);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .scroll-view {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+
|
|
|
+ .list-scroll-view {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .is_bottom {
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
+
|
|
|
+ text {
|
|
|
+ padding: 2vw 0;
|
|
|
+ display: inline-block;
|
|
|
+ color: var(--f85Color);
|
|
|
+ font-size: var(--font14Size);
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|