123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543 |
- <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 textOne">{{item.name||'暂无'}}</view>
- <view class="type textOne">#{{item.zhType||'暂无'}}</view>
- <view class="other textOne">
- 已售 {{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;
- font-size: var(--font18Size);
- font-weight: bold;
- }
- .two_2 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 1vw 2vw;
- .left {
- .left_1 {
- font-size: var(--font12Size);
- .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 var(--f3CColor);
- color: var(--f3CColor);
- 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(--font13Size);
- padding: 0 2vw;
- .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: 3vw 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 1vw;
- font-size: var(--font16Size);
- 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: 10px;
- .left {
- padding: 2vw 0;
- width: 55vw;
- .name {
- padding: 2vw 0;
- font-size: var(--font16Size);
- font-weight: bold;
- }
- .type {
- padding: 0 0 1vw 0;
- color: var(--f3CColor);
- font-size: var(--font12Size);
- }
- .other {
- color: var(--f69Color);
- font-size: var(--font12Size);
- .iconfont {
- font-size: 14px;
- }
- }
- }
- .right {
- width: 28vw;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- padding: 2vw 0;
- .money {
- text-align: right;
- 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>
|