123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315 |
- <template>
- <view class="main">
- <view class="top">
- <view class="left">
- <image v-if="info.file.length>0" class="image" :src="info.file&&info.file.length>0?info.file[0].url:''"
- mode="aspectFill">
- <image v-else class="image" :src="config.file&&config.file.length>0?config.file[0].url:''"
- mode="aspectFill">
- </view>
- <view class="right">
- <view class="right_1 textOver">{{info.name||'暂无'}}</view>
- <view class="right_2">已售 {{info.buy_num||0}}</view>
- <view class="right_3">
- <uni-fav :checked="info.is_collect" @tap.stop="onClick(info)" />
- </view>
- </view>
- </view>
- <view class="center">
- <scroll-view scroll-y="true" class="scroll-view">
- <view class="list-scroll-view">
- <view class="center_1" v-if="info.buy_explain">
- <view class="name">购买须知</view>
- <view class="cotent">
- <rich-text :nodes="formatRichText(info.buy_explain)"></rich-text>
- </view>
- </view>
- <view class="center_1" v-if="info.use_explain">
- <view class="name">使用说明</view>
- <view class="cotent">
- <rich-text :nodes="formatRichText(info.use_explain)"></rich-text>
- </view>
- </view>
- <view class="center_1" v-if="info.money_explain">
- <view class="name">费用说明</view>
- <view class="cotent">
- <rich-text :nodes="formatRichText(info.money_explain)"></rich-text>
- </view>
- </view>
- <view class="center_1" v-if="info.other_explain">
- <view class="name">其他说明</view>
- <view class="cotent">
- <rich-text :nodes="formatRichText(info.other_explain)"></rich-text>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- <view class="foot">
- <view class="money">
- <text>¥{{info.original_price||'暂无'}}</text>
- <text>¥{{info.money||'暂无'}}起</text>
- </view>
- <view class="button">
- <button type="warn" @tap.stop="toBuy(info)">预订</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- import moment from 'moment';
- export default {
- data() {
- return {
- id: '',
- user: {},
- config: {},
- info: {
- file: []
- },
- // 字典表
- typeList: []
- }
- },
- onLoad: async function(e) {
- const that = this;
- that.$set(that, `id`, e && e.id || '');
- that.searchConfig();
- },
- onShow: async function(e) {
- const that = this;
- await that.searchToken();
- await that.searchOther();
- await 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) that.$set(that, `config`, res);
- } catch (e) {
- uni.showToast({
- title: err.errmsg,
- icon: 'error',
- duration: 2000
- });
- }
- },
- async search() {
- const that = this;
- if (that.id) {
- const info = {}
- if (that.user._id) info.user = that.user._id
- const res = await that.$api(`/ticket/ticket/${that.id}`, 'GET', info)
- if (res.errcode == '0') {
- const type = that.typeList.find(i => i.value == res.data.type)
- if (type) res.data.zhType = type.label
- that.$set(that, `info`, res.data)
- } else {
- uni.showToast({
- title: res.errmsg,
- });
- }
- }
- },
- // 处理富文本
- formatRichText(html) {
- if (html) {
- // 富文本内容格式化
- return html && html.replace(/<img[^>]*>/gi, function(match, capture) {
- // 查找所有的 img 元素
- return match.replace(/style=".*"/gi, '').replace(/style='.*'/gi,
- '')
- // 删除找到的所有 img 元素中的 style 属性
- }).replace(/\<img/gi, '<img style="width:100%;"') // 对 img 元素增加 style 属性,并设置宽度为 100%
- }
- },
- // 收藏
- async onClick(item) {
- const that = this;
- if (that.user && that.user._id) {
- let res;
- if (item.is_collect == false) {
- const form = {
- user: that.user._id,
- source: item._id,
- source_type: "ticket",
- type: '1',
- create_time: moment().format('YYYY-MM-DD HH:mm:ss'),
- }
- res = await that.$api(`/like`, 'POST', form);
- } else res = await that.$api(`/like/${item.collect}`, 'DELETE', {})
- if (res.errcode == '0') that.search()
- } else {
- uni.navigateTo({
- url: `/pagesIndex/login/index`
- })
- }
- },
- // 预订
- toBuy(item) {
- const that = this;
- if (that.user && that.user._id) {
- uni.navigateTo({
- url: `/pagesIndex/order/order?id=${item.id||item._id}`
- })
- } else {
- uni.navigateTo({
- url: `/pagesIndex/login/index`
- })
- }
- },
- // 查询其他信息
- async searchOther() {
- const that = this;
- let res;
- // 查询类型
- res = await that.$api(`/dictData`, 'GET', {
- type: 'project_type',
- is_use: '0',
- })
- if (res.errcode == '0') that.$set(that, `typeList`, res.data);
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .main {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- .top {
- display: flex;
- padding: 1vw;
- border-radius: 5px;
- border: 1px solid var(--f9Color);
- .left {
- width: 25vw;
- .image {
- width: 100%;
- height: 25vw;
- }
- }
- .right {
- padding: 2vw;
- width: 65vw;
- margin: 0 0 0 2vw;
- .right_1 {
- font-size: var(--font18Size);
- font-weight: bold;
- padding: 0 0 2px 0;
- }
- .right_2 {
- padding: 0 0 2px 0;
- font-size: var(--font14Size);
- color: var(--f85Color);
- }
- .right_3 {
- display: flex;
- justify-content: flex-end;
- }
- }
- }
- .center {
- position: relative;
- flex-grow: 1;
- .center_1 {
- padding: 2vw;
- .name {
- padding: 3vw 0;
- font-size: var(--font18Size);
- font-weight: bold;
- }
- .content {
- padding: 2vw;
- }
- }
- }
- .foot {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 2vw;
- background-color: var(--mainColor);
- .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 {
- width: 30vw;
- 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>
|