Files
2026-03-25 15:53:37 +08:00

161 lines
4.3 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- +----------------------------------------------------------------------
| 麦沃德科技赋能开发者助力商协会发展
+----------------------------------------------------------------------
| Copyright (c) 20172024 www.wdsxh.cn All rights reserved.
+----------------------------------------------------------------------
| 沃德商协会系统并不是自由软件不加密并不代表开源未经许可不可自由转售和商用
+----------------------------------------------------------------------
| Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
+----------------------------------------------------------------------
| 组件-接龙列表 开发者: 麦沃德科技-半夏
+---------------------------------------------------------------------- -->
<template>
<view class="component-chains">
<view class="chains-item" :class="{'chains-list-item': showType == 1}" v-for="item in showData" :key="item.id" @click="toDetails(item)">
<view class="item-title text-ellipsis">{{item.name}}</view>
<view class="item-tag flex justify-content-between">
<view class="tag-box flex">
<text style="margin-left: 0;">{{item.expire_time}}</text>
<text v-if="item.type == 1">自由接龙</text>
<text v-else>限定接龙</text>
</view>
<view class="tag-box flex">
<text>浏览{{item.page_view}}</text>
<text>参与{{item.part_total}}</text>
</view>
</view>
<view class="item-btn flex align-items-center">
<!-- #ifdef MP-WEIXIN -->
<button open-type="share" class="btn-box clear flex align-items-center" @click.stop="setShareData(item)">
<view class="icon" :style="{'background-image': 'url('+ iconInvite +')'}" v-if="iconInvite"></view>
<text class="text">邀请填写</text>
</button>
<!-- #endif -->
<!-- #ifndef MP-WEIXIN -->
<view class="btn-box flex align-items-center">
<view class="icon" :style="{'background-image': 'url('+ iconInvite +')'}" v-if="iconInvite"></view>
<text class="text">填写接龙</text>
</view>
<!-- #endif -->
<view class="btn-line"></view>
<view class="btn-box justify-content-end flex align-items-center" @click.stop="onContact(item.mobile)">
<view class="icon" :style="{'background-image': 'url('+ iconPhone +')'}" v-if="iconPhone"></view>
<text class="text">联系电话</text>
</view>
</view>
</view>
</view>
</template>
<script>
import { mapState } from "vuex"
import svgData from "@/common/svg.js"
export default {
name: "chainsIndex",
props: ["showData", "showType"],
computed: {
...mapState({
jielongImg: state => state.app.jielongImg,
themeColor: state => state.app.themeColor,
iconInvite: state => {
return svgData.svgToUrl("invite", state.app.themeColor)
},
iconPhone: state => {
return svgData.svgToUrl("phone", state.app.themeColor)
},
})
},
methods: {
// 设置分享数据
setShareData(item) {
this.$emit('setShareData', {
title: item.name,
path: '/pagesTools/sequence/details?id=' + item.id,
imageUrl: this.jielongImg,
})
},
// 去详情
toDetails(item) {
this.$util.toPage({
mode: 1,
path: "/pagesTools/sequence/details?id=" + item.id
})
},
// 联系电话
onContact(phone) {
this.$util.toPage({
mode: 6,
phone: phone,
})
}
},
}
</script>
<style lang="scss">
.component-chains {
.chains-item {
margin-top: 32rpx;
&.chains-list-item {
padding: 32rpx;
border-radius: 10rpx;
background: #FFFFFF;
}
&:first-child {
margin-top: 0;
}
.item-title {
color: #5A5B6E;
font-size: 28rpx;
line-height: 40rpx;
}
.item-tag {
margin-top: 16rpx;
.tag-box {
text {
color: #999999;
font-size: 24rpx;
line-height: 34rpx;
margin-left: 16rpx;
}
}
}
.item-btn {
margin-top: 32rpx;
border-top: 1rpx solid #E8E8E8;
padding-top: 32rpx;
.btn-box {
flex: 1;
padding: 0 48rpx;
.icon {
width: 32rpx;
height: 32rpx;
background-size: 32rpx;
}
.text {
margin-left: 8rpx;
color: #5A5B6E;
font-size: 28rpx;
line-height: 34rpx;
}
}
.btn-line {
width: 0;
height: 32rpx;
border-left: 1rpx solid #E8E8E8;
}
}
}
}
</style>