167 lines
4.3 KiB
Vue
167 lines
4.3 KiB
Vue
<!-- +----------------------------------------------------------------------
|
||
| 麦沃德科技赋能开发者,助力商协会发展
|
||
+----------------------------------------------------------------------
|
||
| Copyright (c) 2017~2024 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" v-for="item in showData" :key="item.id" @click="toDetails(item.id, item.state)">
|
||
<view class="item-title text-ellipsis">{{item.title}}</view>
|
||
<view class="item-tag flex">
|
||
<view class="tag-box flex-item">
|
||
<text class="text">{{item.end_time}}</text>
|
||
<text class="text flex-item text-ellipsis">{{item.category_name || ""}}</text>
|
||
</view>
|
||
<view class="tag-box">
|
||
<text class="text">浏览{{item.page_view}}</text>
|
||
<text class="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: "chains",
|
||
props: ["showData"],
|
||
computed: {
|
||
...mapState({
|
||
questionnaireImg: state => state.app.questionnaireImg,
|
||
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.title,
|
||
path: '/pagesTools/questionnaire/details?id=' + item.id,
|
||
imageUrl: this.questionnaireImg,
|
||
})
|
||
},
|
||
// 跳转详情
|
||
toDetails(id, state) {
|
||
if (state == 2) {
|
||
this.$util.toPage({
|
||
mode: 1,
|
||
path: "/pagesTools/questionnaire/details?id=" + id
|
||
})
|
||
} else {
|
||
this.$util.toPage({
|
||
mode: 1,
|
||
path: "/pagesTools/questionnaire/info?id=" + id
|
||
})
|
||
}
|
||
},
|
||
// 联系电话
|
||
onContact(phone) {
|
||
this.$util.toPage({
|
||
mode: 6,
|
||
phone: phone,
|
||
})
|
||
}
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.component-chains {
|
||
.chains-item {
|
||
margin-top: 32rpx;
|
||
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;
|
||
column-gap: 16rpx;
|
||
|
||
.tag-box {
|
||
display: flex;
|
||
column-gap: 16rpx;
|
||
|
||
.text {
|
||
color: #999999;
|
||
font-size: 24rpx;
|
||
line-height: 34rpx;
|
||
}
|
||
}
|
||
}
|
||
|
||
.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> |