cv
266
src/project/weiyang/AppCircle/Add.vue
Normal file
@@ -0,0 +1,266 @@
|
||||
<template>
|
||||
<div class="Add">
|
||||
<div class="add-content">
|
||||
<div class="top">
|
||||
<!-- <image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-edit.png" /> -->
|
||||
<textarea placeholder="发布内容" v-model="form.content" :maxlength="500"></textarea>
|
||||
<div class="bottom">
|
||||
<div></div>
|
||||
<div>
|
||||
<i>{{ form.content.length }}</i>
|
||||
<span>/500</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bottom">
|
||||
<h2>最多上传9张</h2>
|
||||
<div class="img">
|
||||
<AiUploader v-model="form.files" :limit="9" multiple/>
|
||||
</div>
|
||||
<div class="topic">
|
||||
<h3 v-if="!form.themeId" @click="isShow = true">#绑定话题</h3>
|
||||
<div class="choosed" v-else @click="isShow = true">
|
||||
<span>#{{ form.themeTitle }}</span>
|
||||
</div>
|
||||
<p>绑定一个与您发布内容相关很高的话题,会被更多人看到哦。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="bottom">
|
||||
<h2>仅本社区可见</h2>
|
||||
<switch color="#2D7DFF" @change="onSwitchChange"></switch>
|
||||
</div> -->
|
||||
<div class="btn-wrapper">
|
||||
<div class="btn" hover-class="text-hover" :class="[!form.content ? 'active' : '']" @click="submit">发布服务</div>
|
||||
</div>
|
||||
<!-- <u-popup v-model="isShow" mode="bottom" hidden height="700rpx" border-radius="30">
|
||||
<div class="popup">
|
||||
<h2>请选择</h2>
|
||||
<scroll-view class="popup-list" scroll-y>
|
||||
<div
|
||||
v-for="(item, index) in topicList"
|
||||
:class="[form.themeId === item.id ? 'active' : '']"
|
||||
:key="index"
|
||||
@click="form.themeId = item.id, form.themeTitle = item.title, isShow = false">
|
||||
#{{ item.title }}
|
||||
</div>
|
||||
</scroll-view>
|
||||
</div>
|
||||
</u-popup> -->
|
||||
<u-select v-model="isShow" :list="topicList" value-name="id"
|
||||
label-name="title" @confirm="confirm"></u-select>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
name: 'Add',
|
||||
appName: '发新贴',
|
||||
|
||||
data () {
|
||||
return {
|
||||
form: {
|
||||
files: [],
|
||||
themeId: '',
|
||||
themeTitle: '',
|
||||
source: 0,
|
||||
content: '',
|
||||
visibleRange: 1
|
||||
},
|
||||
topicList: [],
|
||||
isShow: false
|
||||
}
|
||||
},
|
||||
|
||||
onLoad () {
|
||||
this.getTopicList()
|
||||
},
|
||||
|
||||
methods: {
|
||||
confirm(val) {
|
||||
this.form.themeId = val[0].value;
|
||||
this.form.themeTitle = val[0].label;
|
||||
},
|
||||
submit () {
|
||||
if (!this.form.content) {
|
||||
return this.$toast(`内容不能为空`)
|
||||
}
|
||||
if (!this.form.themeId) {
|
||||
return this.$toast(`请绑定话题`)
|
||||
}
|
||||
|
||||
this.$loading()
|
||||
this.$instance.post(`/app/appneighborhoodassistance/addOrUpdate`, {
|
||||
...this.form
|
||||
}).then(res => {
|
||||
uni.hideLoading()
|
||||
if (res.code === 0) {
|
||||
this.$dialog.alert({
|
||||
title: '温馨提示',
|
||||
content: '提交成功'
|
||||
}).then(() => {
|
||||
uni.navigateBack()
|
||||
uni.$emit('updateList')
|
||||
}).catch(() => {})
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
onSwitchChange (e) {
|
||||
this.form.visibleRange = e.detail.value ? 0 : 1
|
||||
},
|
||||
|
||||
getTopicList () {
|
||||
this.$instance.post(`/app/appneighborhoodassistancetheme/list`, null, {
|
||||
withoutToken: true,
|
||||
params: {
|
||||
current: 1,
|
||||
size: 100,
|
||||
status: 1
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.topicList = res.data.records
|
||||
}
|
||||
})
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.Add {
|
||||
padding: 24px 0 130px;
|
||||
|
||||
& > div {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.btn-wrapper .active {
|
||||
background: rgba(45, 125, 255, 0.6);
|
||||
}
|
||||
|
||||
.popup {
|
||||
height: 700px;
|
||||
border-radius: 20px 20px 0 0;
|
||||
|
||||
h2 {
|
||||
height: 98px;
|
||||
line-height: 98px;
|
||||
text-align: center;
|
||||
color: #333333;
|
||||
font-size: 34px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.popup-list {
|
||||
height: calc(100% - 98px);
|
||||
|
||||
div {
|
||||
padding: 20px 48px;
|
||||
color: #333333;
|
||||
font-size: 30px;
|
||||
|
||||
&.active {
|
||||
color: #2D7DFF;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
div {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.add-content {
|
||||
margin-bottom: 24px;
|
||||
|
||||
& > .top {
|
||||
padding: 32px;
|
||||
border-bottom: 1px solid #eee;
|
||||
|
||||
textarea {
|
||||
width: 100%;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.bottom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-top: 14px;
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
i {
|
||||
font-size: 24px;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 24px;
|
||||
color: #999999;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > .bottom {
|
||||
padding: 32px 32px;
|
||||
|
||||
h2 {
|
||||
margin-bottom: 16px;
|
||||
font-size: 24px;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.topic {
|
||||
h3 {
|
||||
width: 134px;
|
||||
height: 52px;
|
||||
line-height: 52px;
|
||||
margin-bottom: 12px;
|
||||
text-align: center;
|
||||
border: 1px solid #999;
|
||||
border-radius: 26px;
|
||||
color: #666;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 20px;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.choosed {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 52px;
|
||||
padding: 0 16px;
|
||||
width: fit-content;
|
||||
margin-bottom: 12px;
|
||||
border: 1px solid #2D7DFF;
|
||||
border-radius: 26px;
|
||||
font-size: 22px;
|
||||
color: #2D7DFF;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > .bottom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
height: 98px;
|
||||
padding: 0 32px;
|
||||
|
||||
h2 {
|
||||
font-size: 28px;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
559
src/project/weiyang/AppCircle/AppCircle.vue
Normal file
@@ -0,0 +1,559 @@
|
||||
<template>
|
||||
<div class="AppCircle">
|
||||
<u-navbar :is-back="true" title="邻里互助" title-color="#000" title-width="300" title-size="32" :title-bold="true" :background="backgroundNavbar"></u-navbar>
|
||||
<div class="header-bg">
|
||||
<div class="header">
|
||||
<div class="top">
|
||||
<div class="left">
|
||||
<span @click="changeTab(0)" :class="{active:currIndex === 0}">广场</span>
|
||||
<!-- <span @click="changeTab(1)" :class="{active:currIndex === 1}">社区</span> -->
|
||||
</div>
|
||||
<div class="right" @click="$linkTo('./MyPostList')" hover-class="text-hover">
|
||||
<span>我的贴子<img src="https://cdn.cunwuyun.cn/wechat/wuxi/circle-top-icon.png" alt=""></span>
|
||||
<i></i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="nav-content" v-if="topic.length">
|
||||
<div class="nav">
|
||||
<div
|
||||
class="nav-item"
|
||||
hover-class="text-hover"
|
||||
v-for="(item, index) in topic" :key="index" @click="$linkTo('./TopicDetail?themeId=' + item.id + '&name=' + item.title)">
|
||||
<image :src="item.picUrl" mode="aspectFill"/>
|
||||
<h2>{{ item.title }}</h2>
|
||||
</div>
|
||||
<div class="nav-item" hover-class="text-hover" @click="$linkTo('./Topic')" v-if="topicList.length > 6">
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-more.png"/>
|
||||
<h2>更多</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="AppCircle-list">
|
||||
<div class="item"
|
||||
v-for="(item, index) in list"
|
||||
:key="index"
|
||||
@click="$linkTo('./Detail?id=' + item.id + '&name=' + item.topicName + '&themeId=' + item.themeId)">
|
||||
<div class="item-top">
|
||||
<image :src="item.createUserAvatar || 'https://cdn.cunwuyun.cn/wxmp/fengdu/avatar.png'"/>
|
||||
<div class="right">
|
||||
<h3>{{ item.createUserName }}</h3>
|
||||
<!-- <span v-if="item.publishDepartName">{{ item.publishDepartName }}</span> -->
|
||||
<span>{{ item.createTime }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-content">
|
||||
<span hover-stop-propagation v-if="item.topicName"
|
||||
@click.stop="$linkTo('./TopicDetail?themeId=' + item.themeId + '&name=' + item.topicName)">#{{ item.topicName }}</span>
|
||||
<text>{{ item.content }}</text>
|
||||
</div>
|
||||
<div class="item-imgs" v-if="item.files.length">
|
||||
<image mode="aspectFill" @click.stop="previewImage(e.url, item.files)" v-for="(e, i) in item.files" :key="i" :src="e.url"/>
|
||||
</div>
|
||||
<p v-if="item.publishDepartName">{{ item.publishDepartName }}</p>
|
||||
<div class="item-bottom">
|
||||
<button hover-stop-propagation @click.stop="onBtnClick" open-type="share" :data-content="item.content" :data-themeid="item.themeId" :data-id="item.id"
|
||||
:data-name="item.topicName">
|
||||
<image src="https://cdn.cunwuyun.cn/wechat/wuxi/circle-zf-icon.png"/>
|
||||
<i>{{ item.sharedCount }}</i>
|
||||
</button>
|
||||
<div hover-stop-propagation @click.stop="reciate(item.id, item.appreciateStatus)">
|
||||
<image :src="item.appreciateStatus ? 'https://cdn.cunwuyun.cn/wechat/wuxi/circle-dz-select-icon.png' : 'https://cdn.cunwuyun.cn/wechat/wuxi/circle-dz-icon.png'"/>
|
||||
<i>{{ item.appreciateCount }}</i>
|
||||
</div>
|
||||
<div>
|
||||
<image src="https://cdn.cunwuyun.cn/wechat/wuxi/circle-pl-icon.png"/>
|
||||
<i>{{ item.commentCount }}</i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!list.length"/>
|
||||
</div>
|
||||
<div class="add" hover-class="text-hover" @click="toAdd">
|
||||
<image src="https://cdn.cunwuyun.cn/wechat/wuxi/circle-add.png" mode="aspectFill" />
|
||||
</div>
|
||||
<AiLogin ref="login"/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import {mapActions, mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
customNavigation: true,
|
||||
name: 'AppCircle',
|
||||
appName: '邻里互助',
|
||||
data() {
|
||||
return {
|
||||
currIndex: 0,
|
||||
topicList: [],
|
||||
list: [],
|
||||
isMore: false,
|
||||
current: 1,
|
||||
isFixed: false,
|
||||
statusBarHeight: uni.getSystemInfoSync().statusBarHeight,
|
||||
total: 0,
|
||||
backgroundNavbar: {
|
||||
background: 'url(https://cdn.cunwuyun.cn/wechat/wuxi/wuxi-nav-bg.png) no-repeat',
|
||||
backgroundSize: 'cover',
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
...mapState(['user', 'token']),
|
||||
|
||||
topic() {
|
||||
return this.topicList.filter((v, index) => index < 7)
|
||||
}
|
||||
},
|
||||
|
||||
onLoad(option) {
|
||||
if(option.id) { //有id直接跳入话题详情页
|
||||
this.$linkTo('./TopicDetail?themeId=' + option.id + '&name=' + option.name)
|
||||
}
|
||||
uni.setNavigationBarTitle({
|
||||
title: '邻里互助'
|
||||
});
|
||||
|
||||
this.getTopicList()
|
||||
|
||||
uni.$on('updateList', () => {
|
||||
this.getMyPublishCount()
|
||||
this.changeTab(this.currIndex)
|
||||
})
|
||||
|
||||
if (!this.token) {
|
||||
this.autoLogin({ loginWay: 'qujing' }).then(() => {
|
||||
this.getMyPublishCount()
|
||||
})
|
||||
} else {
|
||||
this.getMyPublishCount()
|
||||
}
|
||||
},
|
||||
|
||||
onPageScroll (params) {
|
||||
this.isFixed = params.scrollTop > 60
|
||||
},
|
||||
|
||||
onUnload() {
|
||||
uni.$off('updateList')
|
||||
},
|
||||
|
||||
methods: {
|
||||
...mapActions(['autoLogin']),
|
||||
|
||||
previewImage(url, files) {
|
||||
uni.previewImage({
|
||||
current: url,
|
||||
urls: files.map(v => v.url)
|
||||
})
|
||||
},
|
||||
|
||||
onBtnClick(e) {
|
||||
},
|
||||
|
||||
reciate(id, appreciateStatus) {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/appreciate?id=${id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$toast(appreciateStatus ? '取消点赞' : '点赞成功')
|
||||
|
||||
this.changeTab(this.currIndex)
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
getMyPublishCount() {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/list`, null, {
|
||||
params: {
|
||||
current: 1,
|
||||
size: 10,
|
||||
listType: 0,
|
||||
createUserId: this.user.id
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.total = res.data.total
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
toAdd() {
|
||||
if (this.user.areaId) {
|
||||
this.$linkTo('./Add')
|
||||
} else {
|
||||
this.$dialog.confirm({
|
||||
content: '您只有完成信息认证后,才可进行相关操作。',
|
||||
confirmText: '去认证'
|
||||
}).then(() => {
|
||||
this.$linkTo('/pages/AppMine/userInfo?isFromTabbar=1&path=/pages/AppCircle/AppCircle')
|
||||
}).catch(() => {
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
getTopicList() {
|
||||
this.$instance.post(`/app/appneighborhoodassistancetheme/list`, null, {
|
||||
withoutToken: true,
|
||||
params: {
|
||||
current: 1,
|
||||
size: 100,
|
||||
status: 1
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.topicList = res.data.records
|
||||
this.getList()
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
changeTab(index) {
|
||||
this.currIndex = index
|
||||
this.isMore = false
|
||||
this.current = 1
|
||||
this.$nextTick(() => {
|
||||
this.getList()
|
||||
})
|
||||
},
|
||||
|
||||
getList() {
|
||||
if (this.isMore) return
|
||||
this.$loading()
|
||||
this.$instance.post(`/app/appneighborhoodassistance/list`, null, {
|
||||
withoutToken: !this.token,
|
||||
params: {
|
||||
current: this.current,
|
||||
size: 10,
|
||||
visibleRange: this.currIndex === 0 ? 1 : 0
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
if (this.current > 1) {
|
||||
this.list = [...this.list, ...res.data.records.map(e => {
|
||||
return {
|
||||
...e,
|
||||
files: e.files.filter((v, index) => index < 3),
|
||||
topicName: this.topicList.filter(v => v.id === e.themeId).length ? this.topicList.filter(v => v.id === e.themeId)[0].title : ''
|
||||
}
|
||||
})]
|
||||
} else {
|
||||
this.list = res.data.records.map(e => {
|
||||
return {
|
||||
...e,
|
||||
files: e.files.filter((v, index) => index < 3),
|
||||
topicName: this.topicList.filter(v => v.id === e.themeId).length ? this.topicList.filter(v => v.id === e.themeId)[0].title : ''
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
if (res.data.records.length < 10) {
|
||||
this.isMore = true
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
this.current = this.current + 1
|
||||
} else {
|
||||
this.isMore = true
|
||||
}
|
||||
}).finally(() => this.$hideLoading())
|
||||
}
|
||||
},
|
||||
|
||||
onReachBottom() {
|
||||
this.getList()
|
||||
},
|
||||
|
||||
onShareAppMessage(e) {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/share?id=${e.target.dataset.id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.changeTab(this.currIndex)
|
||||
}
|
||||
})
|
||||
|
||||
return {
|
||||
title: e.target.dataset.content.substr(0, 20),
|
||||
path: `/mods/AppCircle/Detail?id=${e.target.dataset.id}&themeId=${e.target.dataset.themeid}&name=${e.target.dataset.name}`
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.AppCircle {
|
||||
// padding-top: 100px;
|
||||
padding-bottom: 40px;
|
||||
.header-bg {
|
||||
background: url('https://cdn.cunwuyun.cn/wechat/wuxi/wuxi-header-bg.png') center;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
.header {
|
||||
width: 100%;
|
||||
opacity: 1;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
div {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.add {
|
||||
position: fixed;
|
||||
right: 32px;
|
||||
bottom: 32px;
|
||||
z-index: 111;
|
||||
|
||||
image {
|
||||
width: 124px;
|
||||
height: 124px;
|
||||
}
|
||||
}
|
||||
|
||||
.nav-content {
|
||||
padding-top: 16px;
|
||||
width: 100%;
|
||||
height: 192px;
|
||||
margin-bottom: 230px;
|
||||
}
|
||||
.nav {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
margin: 0 32px 24px;
|
||||
padding-top: 30px;
|
||||
background: #ffffff;
|
||||
border-radius: 16px;
|
||||
// box-shadow: inset 0 -1px 0 0 #eeeeee;
|
||||
|
||||
.nav-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
width: 25%;
|
||||
padding-bottom: 32px;
|
||||
|
||||
image {
|
||||
width: 108px;
|
||||
height: 108px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
line-height: 32px;
|
||||
margin-top: 8px;
|
||||
font-size: 26px;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.AppCircle-list {
|
||||
.item {
|
||||
margin: 0 32px 24px;
|
||||
padding: 24px 24px 0;
|
||||
background: #ffffff;
|
||||
border-radius: 16px;
|
||||
box-shadow: inset 0 -1px 0 0 #eeeeee;
|
||||
|
||||
.item-top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
image {
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
margin-right: 16px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #333333;
|
||||
text-align: left;
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-top: 12px;
|
||||
color: #999999;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
.item-imgs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
|
||||
image {
|
||||
height: 208px;
|
||||
width: 33.33%;
|
||||
padding-right: 12px;
|
||||
margin-bottom: 12px;
|
||||
box-sizing: border-box;
|
||||
|
||||
&:nth-of-type(3n) {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > p {
|
||||
margin: 12px 0;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 26px;
|
||||
color: #999;
|
||||
line-height: 36px;
|
||||
}
|
||||
|
||||
.item-bottom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 88px;
|
||||
border-top: 1px solid #eeeeee;
|
||||
|
||||
div, button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex: 1;
|
||||
|
||||
image {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin: 16px;
|
||||
}
|
||||
|
||||
i {
|
||||
color: #687DA6;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.item-content {
|
||||
margin: 16px 0;
|
||||
line-height: 1.3;
|
||||
text-align: justify;
|
||||
word-break: break-all;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
|
||||
span {
|
||||
font-size: 28px;
|
||||
color: #4181FF;
|
||||
}
|
||||
|
||||
text {
|
||||
font-size: 28px;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 11;
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
padding: 0 32px;
|
||||
|
||||
.left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100px;
|
||||
|
||||
span {
|
||||
position: relative;
|
||||
height: 100px;
|
||||
line-height: 100px;
|
||||
color: #222;
|
||||
font-size: 30px;
|
||||
|
||||
&:first-child {
|
||||
margin-right: 64px;
|
||||
}
|
||||
|
||||
&.active {
|
||||
font-weight: 600;
|
||||
font-size: 32px;
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
bottom: 12px;
|
||||
left: 50%;
|
||||
width: 40px;
|
||||
height: 8px;
|
||||
background: #026AF2;
|
||||
border-radius: 4px;
|
||||
transform: translateX(-50%);
|
||||
content: ' ';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.right {
|
||||
position: relative;
|
||||
|
||||
i {
|
||||
position: absolute;
|
||||
top: -6px;
|
||||
right: 0;
|
||||
z-index: 11;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border-radius: 50%;
|
||||
background: #FF4747;
|
||||
// height: 24px;
|
||||
// line-height: 24px;
|
||||
// padding: 0 10px;
|
||||
// font-size: 16px;
|
||||
// color: #4181FF;
|
||||
// border-radius: 50%;
|
||||
// border: 2px solid #4181FF;
|
||||
// background: #fff;
|
||||
// box-sizing: border-box;
|
||||
// transform: translateX(50%);
|
||||
}
|
||||
|
||||
span {
|
||||
display: block;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 24px;
|
||||
color: #333;
|
||||
line-height: 54px;
|
||||
text-align: center;
|
||||
width: 164px;
|
||||
height: 56px;
|
||||
border: 1px solid #8A929F;
|
||||
border-radius: 28px;
|
||||
img {
|
||||
display: inline-block;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.row2 {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
791
src/project/weiyang/AppCircle/Detail.vue
Normal file
@@ -0,0 +1,791 @@
|
||||
<template>
|
||||
<div class="Detail" v-if="pageShow">
|
||||
<div class="top">
|
||||
<div class="item-top">
|
||||
<image :src="info.createUserAvatar || 'https://cdn.cunwuyun.cn/wxmp/fengdu/avatar.png'"/>
|
||||
<div class="right">
|
||||
<h3>{{ info.createUserName }}</h3>
|
||||
<span v-if="info.publishDepartName">{{ info.publishDepartName }}</span>
|
||||
</div>
|
||||
<div class="top-btn" v-if="info.integralTaskId && info.integralTaskInfo.status != 2 && info.showSignBtn"
|
||||
@click="toTask">去参与
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-content">
|
||||
<span v-if="name" @click="toTopic('./TopicDetail?themeId=' + themeId + '&name=' + name)">#【{{ name }}】</span>
|
||||
<text v-if="info.integralTaskId">{{ info.integralTaskInfo.detail }}</text>
|
||||
<text v-else>{{ info.content }}</text>
|
||||
</div>
|
||||
<div v-if="info.integralTaskId">
|
||||
<div class="info-flex">
|
||||
<div class="label"><img src="https://cdn.cunwuyun.cn/fengdu/address-icon.png" alt="">活动地点:</div>
|
||||
<div class="value">{{ info.integralTaskInfo.address }}</div>
|
||||
</div>
|
||||
<div class="info-flex">
|
||||
<div class="label"><img src="https://cdn.cunwuyun.cn/fengdu/come-icon.png" alt="">任务类型:</div>
|
||||
<div class="value">{{ info.integralTaskInfo.type == 1 ? '报名得积分' : '打卡得积分' }}</div>
|
||||
</div>
|
||||
<div class="info-flex">
|
||||
<div class="label"><img src="https://cdn.cunwuyun.cn/fengdu/time-icon.png"
|
||||
alt="">{{ info.integralTaskInfo.type == 1 ? '报名时间:' : '进场时间:' }}
|
||||
</div>
|
||||
<div class="value">{{ info.integralTaskInfo.intoBegintime }}至{{ info.integralTaskInfo.intoEndtime }}</div>
|
||||
</div>
|
||||
<div class="info-flex" v-if="info.integralTaskInfo.type != 1">
|
||||
<div class="label"><img src="https://cdn.cunwuyun.cn/fengdu/leave-icon.png" alt="">离场时间:</div>
|
||||
<div class="value">{{ info.integralTaskInfo.exitBegintime }}至{{ info.integralTaskInfo.exitEndtime }}</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="item-imgs" v-if="info.files && info.files.length">
|
||||
<image mode="aspectFill" @click="previewImage(item.url, info.files)" v-for="(item, index) in info.files"
|
||||
:key="index" :src="item.url"/>
|
||||
</div>
|
||||
<p>{{ info.createTime }}</p>
|
||||
<div class="item-bottom">
|
||||
<button open-type="share">
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-zhuanfa.png"/>
|
||||
<i>{{ info.sharedCount }}</i>
|
||||
</button>
|
||||
<div>
|
||||
<image
|
||||
:src="info.appreciateStatus ? 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan-active.png' : 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan.png'"
|
||||
@click="reciate"/>
|
||||
<i>{{ info.appreciateCount }}</i>
|
||||
</div>
|
||||
<div>
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-pinglun.png"/>
|
||||
<i>{{ info.commentCount }}</i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="comment">
|
||||
<h2>评论</h2>
|
||||
<div class="comment-wrapper">
|
||||
<div class="comment-item" v-for="(item, index) in list" :key="index">
|
||||
<image :src="item.createUserAvatar || 'https://cdn.cunwuyun.cn/wxmp/fengdu/avatar.png'"/>
|
||||
<div class="right">
|
||||
<h3>{{ item.createUserName }}</h3>
|
||||
<p>{{ item.content }}</p>
|
||||
<div class="bottom">
|
||||
<span>{{ item.createTime }}</span>
|
||||
<div hover-class="text-hover" @click="replay(item)">回复</div>
|
||||
</div>
|
||||
<div class="replay-list" v-if="item.replyList.length">
|
||||
<div class="replay-item" v-for="replay in item.replyList" :key="replay.id">
|
||||
<image :src="replay.createUserAvatar || 'https://cdn.cunwuyun.cn/wxmp/fengdu/avatar.png'"/>
|
||||
<div class="replay-item__right">
|
||||
<div class="top">
|
||||
<div class="replay-left">
|
||||
<h3>{{ replay.createUserName }}</h3>
|
||||
<span>回复</span>
|
||||
<h3>{{ item.createUserName }}</h3>
|
||||
</div>
|
||||
<p>{{ replay.createTime }}</p>
|
||||
</div>
|
||||
<p>{{ replay.content }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!list.length"></AiEmpty>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer" @click="showComment">
|
||||
<span>请输入评论内容</span>
|
||||
<!-- <div hover-class="hover-class">发送</div> -->
|
||||
</div>
|
||||
<u-popup v-model="isShow" mode="bottom" hidden height="350rpx" border-radius="30">
|
||||
<div class="popup">
|
||||
<div class="popup-title">
|
||||
<h2>请选择</h2>
|
||||
<image @click="isShow = false" src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-guanbi.png"/>
|
||||
</div>
|
||||
<div class="popup-list">
|
||||
<button open-type="share">
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-wechat.png"/>
|
||||
<span>微信</span>
|
||||
</button>
|
||||
<!-- <button open-type="share">
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-pyq.png" />
|
||||
<span>朋友圈</span>
|
||||
</button>
|
||||
<button>
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-link.png" />
|
||||
<span>复制链接</span>
|
||||
</button> -->
|
||||
</div>
|
||||
</div>
|
||||
</u-popup>
|
||||
<u-popup v-model="isShowComment" mode="bottom" hidden height="400rpx" border-radius="30" @close="focus = false">
|
||||
<div class="popup">
|
||||
<div class="popup-title">
|
||||
<h2>评论</h2>
|
||||
<image @click="isShowComment = false, focus = false" src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-guanbi.png"/>
|
||||
</div>
|
||||
<div class="form">
|
||||
<textarea :maxlength="100" :cursor-spacing="10"
|
||||
:placeholder="commentId ? '回复' + replyName : '请输入评论内容'" :focus="focus"
|
||||
v-model="content"></textarea>
|
||||
<div>
|
||||
<div class="send-btn" hover-class="hover-class" @click="send">发送</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</u-popup>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapActions, mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'Detail',
|
||||
appName: '详情',
|
||||
|
||||
data() {
|
||||
return {
|
||||
id: '',
|
||||
isShow: false,
|
||||
info: {},
|
||||
name: '',
|
||||
themeId: '',
|
||||
isFrom: '',
|
||||
list: [],
|
||||
isMore: false,
|
||||
isShowComment: false,
|
||||
current: 1,
|
||||
content: '',
|
||||
focus: false,
|
||||
pageShow: false,
|
||||
commentId: '',
|
||||
replyName: ''
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
...mapState(['user', 'token'])
|
||||
},
|
||||
|
||||
onLoad(query) {
|
||||
this.isFrom = query.isFrom
|
||||
this.id = query.id
|
||||
this.themeId = query.themeId
|
||||
this.name = query.name || ''
|
||||
this.$loading()
|
||||
Promise.resolve(this.token || this.autoLogin()).then(() =>
|
||||
Promise.all([
|
||||
this.getInfo(query.id),
|
||||
this.getCommontList(query.id)
|
||||
])
|
||||
).finally(() => this.$hideLoading())
|
||||
},
|
||||
methods: {
|
||||
...mapActions(['autoLogin']),
|
||||
|
||||
toTask() {
|
||||
if (!this.user.areaId) {
|
||||
this.$dialog.confirm({
|
||||
content: '您只有完成信息认证后,才可进行相关操作。',
|
||||
confirmText: '去认证'
|
||||
}).then(() => {
|
||||
this.$linkTo('/pages/AppMine/userInfo')
|
||||
})
|
||||
return false
|
||||
}
|
||||
this.$linkTo(`/mods/AppNewFarmerBank/taskDetail?id=${this.info.integralTaskId}`)
|
||||
},
|
||||
|
||||
previewImage(url, files) {
|
||||
uni.previewImage({
|
||||
current: url,
|
||||
urls: files.map(v => v.url)
|
||||
})
|
||||
},
|
||||
|
||||
showComment() {
|
||||
if (!this.user.areaId) {
|
||||
this.$dialog.confirm({
|
||||
content: '您只有完成信息认证后,才可进行相关操作。',
|
||||
confirmText: '去认证'
|
||||
}).then(() => {
|
||||
this.$linkTo('/pages/AppMine/userInfo')
|
||||
}).catch(() => {
|
||||
})
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
this.commentId = ''
|
||||
this.replyName = ''
|
||||
this.isShowComment = true
|
||||
|
||||
this.$nextTick(() => {
|
||||
setTimeout(() => {
|
||||
this.focus = true
|
||||
}, 500)
|
||||
})
|
||||
},
|
||||
|
||||
replay(item) {
|
||||
if (!this.user.areaId) {
|
||||
this.$dialog.confirm({
|
||||
content: '您只有完成信息认证后,才可进行相关操作。',
|
||||
confirmText: '去认证'
|
||||
}).then(() => {
|
||||
this.$linkTo('/pages/AppMine/userInfo')
|
||||
}).catch(() => {
|
||||
})
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
this.commentId = item.id
|
||||
this.replyName = item.createUserName
|
||||
|
||||
this.isShowComment = true
|
||||
|
||||
this.$nextTick(() => {
|
||||
setTimeout(() => {
|
||||
this.focus = true
|
||||
}, 500)
|
||||
})
|
||||
},
|
||||
|
||||
getInfo(id) {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/queryDetailById?id=${id}`, null, {
|
||||
withoutToken: !this.token,
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.info = res.data
|
||||
this.pageShow = true
|
||||
}
|
||||
|
||||
uni.hideLoading()
|
||||
})
|
||||
},
|
||||
|
||||
reciate() {
|
||||
this.$loading()
|
||||
this.$instance.post(`/app/appneighborhoodassistance/appreciate?id=${this.id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$toast(this.info.appreciateStatus ? '取消点赞' : '点赞成功')
|
||||
uni.$emit('updateList')
|
||||
this.getInfo(this.id)
|
||||
}
|
||||
uni.hideLoading()
|
||||
})
|
||||
},
|
||||
|
||||
send() {
|
||||
if (!this.content) {
|
||||
return this.$toast('内容不能为空')
|
||||
}
|
||||
|
||||
this.$loading()
|
||||
this.$instance.post(!this.commentId ? `/app/appneighborhoodassistance/addComment` : `/app/appneighborhoodassistance/addReply`, {
|
||||
content: this.content,
|
||||
naId: this.id,
|
||||
type: this.commentId ? 1 : 0,
|
||||
commentId: this.commentId || ''
|
||||
}).then(res => {
|
||||
uni.hideLoading()
|
||||
if (res.code === 0) {
|
||||
this.isShowComment = false
|
||||
this.$toast('提交成功')
|
||||
this.content = ''
|
||||
this.replyName = ''
|
||||
this.commentId = ''
|
||||
this.focus = false
|
||||
|
||||
this.isMore = false
|
||||
this.current = 1
|
||||
|
||||
this.$nextTick(() => {
|
||||
this.getCommontList(this.id)
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
toTopic(url) {
|
||||
if (this.isFrom === 'topic') {
|
||||
uni.navigateBack({
|
||||
delta: 1
|
||||
})
|
||||
} else {
|
||||
this.$linkTo(url)
|
||||
}
|
||||
},
|
||||
|
||||
getCommontList(id) {
|
||||
if (this.isMore) return
|
||||
|
||||
this.$loading()
|
||||
this.$instance.post(`/app/appneighborhoodassistance/commontList`, null, {
|
||||
withoutToken: !this.token,
|
||||
params: {
|
||||
id,
|
||||
current: this.current,
|
||||
size: 10
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$hideLoading()
|
||||
if (this.current > 1) {
|
||||
this.list = [...this.list, ...res.data.records]
|
||||
} else {
|
||||
this.list = res.data.records
|
||||
}
|
||||
if (res.data.records.length < 10) {
|
||||
this.isMore = true
|
||||
|
||||
return false
|
||||
}
|
||||
this.current++
|
||||
} else {
|
||||
this.isMore = true
|
||||
}
|
||||
}).catch(() => {
|
||||
this.$hideLoading()
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
onReachBottom() {
|
||||
this.getCommontList()
|
||||
},
|
||||
|
||||
// onShareTimeline() {
|
||||
// return {
|
||||
// title: this.info.content,
|
||||
// // path: `/mods/AppCircle/Detail?id=${this.id}&themeId=${this.themeId}&name=${this.name}`
|
||||
// }
|
||||
// },
|
||||
onShareAppMessage() {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/share?id=${this.id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
uni.$emit('updateList')
|
||||
this.getInfo(this.id)
|
||||
}
|
||||
})
|
||||
return {
|
||||
title: this.info.content,
|
||||
path: `/mods/AppCircle/Detail?id=${this.id}&themeId=${this.themeId}&name=${this.name}`
|
||||
}
|
||||
},
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.Detail {
|
||||
padding-top: 24px;
|
||||
padding-bottom: 130px;
|
||||
|
||||
div {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.popup {
|
||||
height: 400px;
|
||||
border-radius: 20px 20px 0 0;
|
||||
|
||||
.popup-title {
|
||||
position: relative;
|
||||
height: 98px;
|
||||
line-height: 98px;
|
||||
text-align: center;
|
||||
|
||||
image {
|
||||
position: absolute;
|
||||
right: 40px;
|
||||
top: 50%;
|
||||
z-index: 1;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #333333;
|
||||
font-size: 34px;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
.popup-list {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 30px;
|
||||
|
||||
button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex: 1;
|
||||
flex-direction: column;
|
||||
|
||||
image {
|
||||
width: 94px;
|
||||
height: 94px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 26px;
|
||||
color: #1D2229;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form {
|
||||
padding: 0 32px;
|
||||
|
||||
textarea {
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
height: 200px;
|
||||
line-height: 1.3;
|
||||
padding: 20px;
|
||||
font-size: 28px;
|
||||
color: #333;
|
||||
box-sizing: border-box;
|
||||
background: #eeeeee;
|
||||
}
|
||||
|
||||
& > div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.send-btn {
|
||||
display: inline-block;
|
||||
width: 100px;
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
text-align: right;
|
||||
text-align: center;
|
||||
font-size: 26px;
|
||||
color: #fff;
|
||||
border-radius: 30px;
|
||||
background: #2d7dffff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
z-index: 111;
|
||||
width: 100%;
|
||||
padding: 18px 32px;
|
||||
background: #fff;
|
||||
|
||||
span {
|
||||
flex: 1;
|
||||
height: 70px;
|
||||
line-height: 70px;
|
||||
// margin-right: 16px;
|
||||
padding: 0 24px;
|
||||
border-radius: 36px;
|
||||
font-size: 26px;
|
||||
box-sizing: border-box;
|
||||
background: #eeeeee;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
div {
|
||||
width: 100px;
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
text-align: center;
|
||||
font-size: 26px;
|
||||
color: #fff;
|
||||
border-radius: 30px;
|
||||
background: #2d7dffff;
|
||||
}
|
||||
}
|
||||
|
||||
.comment {
|
||||
margin-top: 24px;
|
||||
padding: 32px 32px 26px;
|
||||
background: #fff;
|
||||
|
||||
.comment-wrapper {
|
||||
.comment-item {
|
||||
display: flex;
|
||||
padding: 26px 0;
|
||||
|
||||
&:first-child {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
& > image {
|
||||
width: 72px;
|
||||
height: 72px;
|
||||
margin-right: 16px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.replay-list {
|
||||
margin-top: 32px;
|
||||
|
||||
.replay-item {
|
||||
display: flex;
|
||||
margin-bottom: 32px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
image {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
margin-right: 16px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.replay-item__right {
|
||||
flex: 1;
|
||||
|
||||
.top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 6px;
|
||||
|
||||
.replay-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #666666;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
span {
|
||||
margin: 0 8px;
|
||||
font-size: 24px;
|
||||
color: #687DA6;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #999999;
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
& > p {
|
||||
line-height: 1.3;
|
||||
color: #333333;
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > .right {
|
||||
flex: 1;
|
||||
padding-bottom: 32px;
|
||||
border-bottom: 1px solid #EEEEEE;
|
||||
|
||||
& > h3 {
|
||||
line-height: 40px;
|
||||
margin-bottom: 8px;
|
||||
color: #666666;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
& > p {
|
||||
line-height: 42px;
|
||||
margin-bottom: 24px;
|
||||
color: #333;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.bottom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
span {
|
||||
color: #999999;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
div {
|
||||
color: #687DA6;
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
padding-bottom: 0;
|
||||
|
||||
.right {
|
||||
padding-bottom: 0;
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > h2 {
|
||||
margin-bottom: 32px;
|
||||
color: #3d3d3d;
|
||||
font-size: 38px;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
& > .top {
|
||||
padding: 32px 32px 0;
|
||||
background: #ffffff;
|
||||
position: relative;
|
||||
|
||||
.item-top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
image {
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
margin-right: 16px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #333333;
|
||||
text-align: left;
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-top: 12px;
|
||||
color: #999999;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.item-imgs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
|
||||
image {
|
||||
height: 208px;
|
||||
width: 33.33%;
|
||||
padding-right: 12px;
|
||||
margin-bottom: 12px;
|
||||
box-sizing: border-box;
|
||||
|
||||
&:nth-of-type(3n) {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > p {
|
||||
margin: 12px 0;
|
||||
font-size: 28px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.item-bottom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 88px;
|
||||
border-top: 1px solid #eeeeee;
|
||||
|
||||
div, button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex: 1;
|
||||
|
||||
image {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin: 16px;
|
||||
}
|
||||
|
||||
i {
|
||||
color: #687DA6;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.item-content {
|
||||
margin: 16px 0;
|
||||
line-height: 1.3;
|
||||
text-align: justify;
|
||||
|
||||
span {
|
||||
font-size: 28px;
|
||||
color: #4181FF;
|
||||
}
|
||||
|
||||
text {
|
||||
font-size: 28px;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
|
||||
.info-flex {
|
||||
display: flex;
|
||||
color: #666;
|
||||
font-size: 24px;
|
||||
font-family: "PingFang SC";
|
||||
line-height: 30px;
|
||||
margin-bottom: 16px;
|
||||
|
||||
.label {
|
||||
width: 160px;
|
||||
|
||||
img {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-right: 8px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
}
|
||||
|
||||
.value {
|
||||
width: calc(100% - 160px);
|
||||
color: #333;
|
||||
vertical-align: text-top;
|
||||
}
|
||||
}
|
||||
|
||||
.top-btn {
|
||||
width: 154px;
|
||||
height: 56px;
|
||||
line-height: 56px;
|
||||
text-align: center;
|
||||
background-color: #2E7DFF;
|
||||
border-radius: 28px;
|
||||
color: #fff;
|
||||
font-size: 30px;
|
||||
font-family: "PingFang SC";
|
||||
position: absolute;
|
||||
top: 52px;
|
||||
right: 32px;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
748
src/project/weiyang/AppCircle/MyPostList.vue
Normal file
@@ -0,0 +1,748 @@
|
||||
<template>
|
||||
<div class="MyPostList">
|
||||
<div class="userinfo">
|
||||
<div class="top">
|
||||
<div class="left">
|
||||
<image :src="user.avatarUrl || 'https://cdn.cunwuyun.cn/wxmp/fengdu/avatar.png'"/>
|
||||
<h2>{{ user.nickName }}</h2>
|
||||
</div>
|
||||
<div class="add-btn" hover-class="text-hover" @click="handleAdd">发贴</div>
|
||||
</div>
|
||||
<div class="bottom">
|
||||
<div class="bottom-item" @click="changeTab(0)" :class="[currIndex === 0 ? 'active' : '']">
|
||||
<span>发贴</span>
|
||||
<h2>{{ totalInfo['发帖'] }}</h2>
|
||||
</div>
|
||||
<div class="bottom-item" @click="changeTab(1)" :class="[currIndex === 1 ? 'active' : '']">
|
||||
<span>点赞</span>
|
||||
<h2>{{ totalInfo['点赞'] }}</h2>
|
||||
</div>
|
||||
<div class="bottom-item" @click="changeTab(2)" :class="[currIndex === 2 ? 'active' : '']">
|
||||
<span>评论</span>
|
||||
<h2>{{ totalInfo['评论'] }}</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="body">
|
||||
<div class="body-list" v-if="currIndex === 0">
|
||||
<div class="item"
|
||||
v-for="(item, index) in list"
|
||||
:key="index"
|
||||
@click="$linkTo('./Detail?id=' + item.id + '&name=' + item.topicName + '&themeId=' + item.themeId)">
|
||||
<div class="item-top">
|
||||
<image class="avatar" :src="item.createUserAvatar || 'https://cdn.cunwuyun.cn/wxmp/fengdu/avatar.png'"/>
|
||||
<div class="right">
|
||||
<h3>{{ item.createUserName }}</h3>
|
||||
<span v-if="item.publishDepartName">{{ item.publishDepartName }}</span>
|
||||
</div>
|
||||
<image hover-stop-propagation @click.stop="remove(item.id)" class="remove" src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-delete.png"/>
|
||||
</div>
|
||||
<div class="item-content">
|
||||
<span v-if="item.topicName" @click.stop="$linkTo('./TopicDetail?themeId=' + item.themeId + '&name=' + item.topicName)">#【{{ item.topicName }}】</span>
|
||||
<text>{{ item.content }}</text>
|
||||
</div>
|
||||
<div class="item-imgs" v-if="item.files.length">
|
||||
<image mode="aspectFill" hover-stop-propagation @click.stop="previewImage(e.url, item.files)" v-for="(e, i) in item.files" :key="i" :src="e.url"/>
|
||||
</div>
|
||||
<p>{{ item.createTime }}</p>
|
||||
<div class="item-bottom">
|
||||
<div>
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-zhuanfa.png"/>
|
||||
<i>{{ item.sharedCount }}</i>
|
||||
</div>
|
||||
<div>
|
||||
<image :src="item.appreciateStatus ? 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan-active.png' : 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan.png'"/>
|
||||
<i>{{ item.appreciateCount }}</i>
|
||||
</div>
|
||||
<div>
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-pinglun.png"/>
|
||||
<i>{{ item.commentCount }}</i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="body-list" v-if="currIndex === 1">
|
||||
<div class="item"
|
||||
v-for="(item, index) in list"
|
||||
:key="index"
|
||||
@click="$linkTo('./Detail?id=' + item.id + '&name=' + item.topicName + '&themeId=' + item.themeId)">
|
||||
<div class="item-top">
|
||||
<image class="avatar" :src="item.createUserAvatar || 'https://cdn.cunwuyun.cn/wxmp/fengdu/avatar.png'"/>
|
||||
<div class="right">
|
||||
<h3>{{ item.createUserName }}</h3>
|
||||
<span v-if="item.publishDepartName">{{ item.publishDepartName }}</span>
|
||||
</div>
|
||||
<image hover-stop-propagation @click.stop="removeLike(item.id)" class="remove" src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-delete.png"/>
|
||||
</div>
|
||||
<div class="item-content">
|
||||
<span v-if="item.topicName" @click.stop="$linkTo('./TopicDetail?themeId=' + item.themeId + '&name=' + item.topicName)">#【{{ item.topicName }}】</span>
|
||||
<text>{{ item.content }}</text>
|
||||
</div>
|
||||
<div class="item-imgs" v-if="item.files.length">
|
||||
<image mode="aspectFill" hover-stop-propagation @click.stop="previewImage(e.url, item.files)" v-for="(e, i) in item.files" :key="i" :src="e.url"/>
|
||||
</div>
|
||||
<p>{{ item.createTime }}</p>
|
||||
<div class="item-bottom">
|
||||
<div>
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-zhuanfa.png"/>
|
||||
<i>{{ item.sharedCount }}</i>
|
||||
</div>
|
||||
<div>
|
||||
<image :src="item.appreciateStatus ? 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan-active.png' : 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan.png'"/>
|
||||
<i>{{ item.appreciateCount }}</i>
|
||||
</div>
|
||||
<div>
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-pinglun.png"/>
|
||||
<i>{{ item.commentCount }}</i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="comment" v-if="currIndex === 2">
|
||||
<div class="comment-item" v-for="(item, index) in list" :key="index">
|
||||
<div class="comment-top">
|
||||
<span>{{ item.myComment.createTime }}</span>
|
||||
<image hover-stop-propagation @click.stop="removeComment(item.myComment.id)" class="remove"
|
||||
src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-delete.png"/>
|
||||
</div>
|
||||
<p>{{ item.myComment.content }}</p>
|
||||
<div
|
||||
class="bottom"
|
||||
@click="$linkTo('./Detail?id=' + item.id + '&name=' + item.topicName + '&themeId=' + item.themeId)">
|
||||
<div class="item-top">
|
||||
<image class="avatar" :src="item.createUserAvatar || 'https://cdn.cunwuyun.cn/wxmp/fengdu/avatar.png'"/>
|
||||
<div class="right">
|
||||
<h3>{{ item.createUserName }}</h3>
|
||||
<span v-if="item.publishDepartName">{{ item.publishDepartName }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-content">
|
||||
<span v-if="item.topicName">#【{{ item.topicName }}】</span>
|
||||
<text>{{ item.content }}</text>
|
||||
</div>
|
||||
<div class="item-imgs" v-if="item.files.length">
|
||||
<image mode="aspectFill" hover-stop-propagation @click.stop="previewImage(e.url, item.files)" v-for="(e, i) in item.files" :key="i" :src="e.url"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!list.length && isMore"></AiEmpty>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import {mapState} from "vuex";
|
||||
|
||||
export default {
|
||||
name: 'MyPostList',
|
||||
appName: '我的帖子',
|
||||
data() {
|
||||
return {
|
||||
currIndex: 0,
|
||||
totalInfo: {},
|
||||
list: [],
|
||||
isMore: false,
|
||||
current: 1
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
...mapState(['user', 'token']),
|
||||
isAuth: v => !!v.user.areaId
|
||||
},
|
||||
|
||||
onLoad() {
|
||||
this.getTopicList()
|
||||
this.getInfo()
|
||||
},
|
||||
|
||||
methods: {
|
||||
getTopicList() {
|
||||
this.$instance.post(`/app/appneighborhoodassistancetheme/list`, null, {
|
||||
withoutToken: true,
|
||||
params: {
|
||||
current: 1,
|
||||
size: 1000,
|
||||
status: 1
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.topicList = res.data.records
|
||||
this.getMyPublish()
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
getInfo() {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/wechatInfo`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.totalInfo = res.data
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
previewImage(url, files) {
|
||||
uni.previewImage({
|
||||
current: url,
|
||||
urls: files.map(v => v.url)
|
||||
})
|
||||
},
|
||||
|
||||
remove(id) {
|
||||
this.$dialog.confirm({
|
||||
title: '温馨提示',
|
||||
content: '您确定删除该帖子吗?'
|
||||
}).then(() => {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/delete?id=${id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$toast('删除成功!')
|
||||
this.getInfo()
|
||||
uni.$emit('updateList')
|
||||
this.changeTab(this.currIndex)
|
||||
}
|
||||
})
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
removeLike(id) {
|
||||
this.$dialog.confirm({
|
||||
title: '温馨提示',
|
||||
content: '您确定取消点赞吗?'
|
||||
}).then(() => {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/appreciate?id=${id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$toast('删除成功!')
|
||||
this.getInfo()
|
||||
uni.$emit('updateList')
|
||||
this.changeTab(this.currIndex)
|
||||
}
|
||||
})
|
||||
}).catch(() => 0)
|
||||
},
|
||||
removeComment(id) {
|
||||
this.$dialog.confirm({
|
||||
title: '温馨提示',
|
||||
content: '您确定删除吗?'
|
||||
}).then(() => {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/delComment?id=${id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$toast('删除成功!')
|
||||
this.getInfo()
|
||||
uni.$emit('updateList')
|
||||
this.changeTab(this.currIndex)
|
||||
}
|
||||
})
|
||||
}).catch(() => {
|
||||
})
|
||||
},
|
||||
changeTab(index) {
|
||||
this.currIndex = index
|
||||
this.isMore = false
|
||||
this.current = 1
|
||||
|
||||
this.$nextTick(() => {
|
||||
if (this.currIndex === 0) {
|
||||
this.getMyPublish()
|
||||
} else if (this.currIndex === 1) {
|
||||
this.myPraiseList()
|
||||
} else {
|
||||
this.getMyCommentList()
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
getMyPublish() {
|
||||
if (this.isMore) return
|
||||
|
||||
this.$loading()
|
||||
this.$instance.post(`/app/appneighborhoodassistance/list`, null, {
|
||||
params: {
|
||||
current: this.current,
|
||||
size: 10,
|
||||
listType: 0,
|
||||
createUserId: this.user.id
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$hideLoading()
|
||||
if (this.current > 1) {
|
||||
this.list = [...this.list, ...res.data.records.map(e => {
|
||||
return {
|
||||
...e,
|
||||
files: e.files.filter((v, index) => index < 3),
|
||||
topicName: this.topicList.filter(v => v.id === e.themeId).length ? this.topicList.filter(v => v.id === e.themeId)[0].title : ''
|
||||
}
|
||||
})]
|
||||
} else {
|
||||
this.list = res.data.records.map(e => {
|
||||
return {
|
||||
...e,
|
||||
files: e.files.filter((v, index) => index < 3),
|
||||
topicName: this.topicList.filter(v => v.id === e.themeId).length ? this.topicList.filter(v => v.id === e.themeId)[0].title : ''
|
||||
}
|
||||
})
|
||||
}
|
||||
if (res.data.records.length < 10) {
|
||||
this.isMore = true
|
||||
|
||||
return false
|
||||
}
|
||||
this.current = this.current + 1
|
||||
} else {
|
||||
this.isMore = true
|
||||
}
|
||||
}).catch(() => {
|
||||
this.$hideLoading()
|
||||
})
|
||||
},
|
||||
|
||||
getMyCommentList() {
|
||||
if (this.isMore) return
|
||||
|
||||
this.$loading()
|
||||
this.$instance.post(`/app/appneighborhoodassistance/list`, null, {
|
||||
params: {
|
||||
current: this.current,
|
||||
size: 10,
|
||||
listType: 2
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$hideLoading()
|
||||
if (this.current > 1) {
|
||||
this.list = [...this.list, ...res.data.records.map(e => {
|
||||
return {
|
||||
...e,
|
||||
files: e.files.filter((v, index) => index < 3),
|
||||
topicName: this.topicList.filter(v => v.id === e.themeId).length ? this.topicList.filter(v => v.id === e.themeId)[0].title : ''
|
||||
}
|
||||
})]
|
||||
} else {
|
||||
this.list = res.data.records.map(e => {
|
||||
return {
|
||||
...e,
|
||||
files: e.files.filter((v, index) => index < 3),
|
||||
topicName: this.topicList.filter(v => v.id === e.themeId).length ? this.topicList.filter(v => v.id === e.themeId)[0].title : ''
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
if (res.data.records.length < 10) {
|
||||
this.isMore = true
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
this.current = this.current + 1
|
||||
} else {
|
||||
this.isMore = true
|
||||
}
|
||||
}).catch(() => {
|
||||
this.$hideLoading()
|
||||
})
|
||||
},
|
||||
|
||||
myPraiseList() {
|
||||
if (this.isMore) return
|
||||
|
||||
this.$loading()
|
||||
this.$instance.post(`/app/appneighborhoodassistance/list`, null, {
|
||||
params: {
|
||||
current: this.current,
|
||||
size: 10,
|
||||
listType: 1
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$hideLoading()
|
||||
if (this.current > 1) {
|
||||
this.list = [...this.list, ...res.data.records.map(e => {
|
||||
return {
|
||||
...e,
|
||||
files: e.files.filter((v, index) => index < 3),
|
||||
topicName: this.topicList.filter(v => v.id === e.themeId).length ? this.topicList.filter(v => v.id === e.themeId)[0].title : ''
|
||||
}
|
||||
})]
|
||||
} else {
|
||||
this.list = res.data.records.map(e => {
|
||||
return {
|
||||
...e,
|
||||
files: e.files.filter((v, index) => index < 3),
|
||||
topicName: this.topicList.filter(v => v.id === e.themeId).length ? this.topicList.filter(v => v.id === e.themeId)[0].title : ''
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
if (res.data.records.length < 10) {
|
||||
this.isMore = true
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
this.current = this.current + 1
|
||||
} else {
|
||||
this.isMore = true
|
||||
}
|
||||
}).catch(() => {
|
||||
this.$hideLoading()
|
||||
})
|
||||
},
|
||||
handleAdd() {
|
||||
if (this.isAuth) {
|
||||
this.$linkTo('./Add')
|
||||
} else {
|
||||
this.$dialog.confirm({
|
||||
content: '您只有完成信息认证后,才可进行相关操作。',
|
||||
confirmText: '去认证'
|
||||
}).then(() => {
|
||||
this.$linkTo('/pages/AppMine/userInfo')
|
||||
}).catch(() => 0)
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
onReachBottom() {
|
||||
if (this.currIndex === 0) {
|
||||
this.getMyPublish()
|
||||
} else if (this.currIndex === 1) {
|
||||
this.myPraiseList()
|
||||
} else {
|
||||
this.getMyCommentList()
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.MyPostList {
|
||||
padding-bottom: 40px;
|
||||
box-sizing: border-box;
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.userinfo {
|
||||
position: sticky;
|
||||
top: 0px;
|
||||
margin: 0 0 24px;
|
||||
border-top: 24px solid #eee;
|
||||
background: #fff;
|
||||
z-index: 202303211143;
|
||||
|
||||
.top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 32px 56px;
|
||||
border-bottom: 1px solid #eee;
|
||||
|
||||
.left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
image {
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
margin-right: 16px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #333333;
|
||||
font-size: 34px;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
.add-btn {
|
||||
width: 132px;
|
||||
height: 56px;
|
||||
line-height: 56px;
|
||||
text-align: center;
|
||||
font-size: 30px;
|
||||
color: #fff;
|
||||
border-radius: 26px;
|
||||
background: #2D7DFF;
|
||||
}
|
||||
}
|
||||
|
||||
.bottom {
|
||||
display: flex;
|
||||
height: 120px;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
|
||||
.bottom-item {
|
||||
display: flex;
|
||||
position: relative;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
height: 100%;
|
||||
|
||||
&.active:after {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
z-index: 1;
|
||||
width: 40px;
|
||||
height: 6px;
|
||||
border-radius: 3px;
|
||||
background: #2D7DFF;
|
||||
transform: translateX(-50%);
|
||||
content: ' ';
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 24px;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
h2 {
|
||||
line-height: 48px;
|
||||
font-size: 34px;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.comment {
|
||||
padding: 0 32px;
|
||||
|
||||
.comment-item {
|
||||
margin-bottom: 24px;
|
||||
padding: 28px 24px;
|
||||
border-radius: 18px;
|
||||
background: #fff;
|
||||
|
||||
.comment-top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
span {
|
||||
font-size: 28px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
image {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
& > p {
|
||||
line-height: 1.3;
|
||||
margin: 26px 0 20px;
|
||||
font-size: 28px;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
.bottom {
|
||||
padding: 24px;
|
||||
background: #f6f6f6;
|
||||
}
|
||||
|
||||
.item-top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.avatar {
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
margin-right: 16px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.right {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.remove {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #333333;
|
||||
text-align: left;
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-top: 12px;
|
||||
color: #999999;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
.item-imgs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
|
||||
image {
|
||||
height: 208px;
|
||||
width: 33.33%;
|
||||
padding-right: 12px;
|
||||
margin-bottom: 12px;
|
||||
box-sizing: border-box;
|
||||
|
||||
&:nth-of-type(3n) {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.item-content {
|
||||
margin: 16px 0;
|
||||
line-height: 1.3;
|
||||
text-align: justify;
|
||||
word-break: break-all;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
|
||||
span {
|
||||
font-size: 28px;
|
||||
color: #4181FF;
|
||||
}
|
||||
|
||||
text {
|
||||
font-size: 28px;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.body-list {
|
||||
.item {
|
||||
margin: 0 32px 24px;
|
||||
padding: 24px 24px 0;
|
||||
background: #ffffff;
|
||||
border-radius: 16px;
|
||||
box-shadow: inset 0 -1px 0 0 #eeeeee;
|
||||
|
||||
.item-top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.avatar {
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
margin-right: 16px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.right {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.remove {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #333333;
|
||||
text-align: left;
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-top: 12px;
|
||||
color: #999999;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
.item-imgs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
|
||||
image {
|
||||
height: 208px;
|
||||
width: 33.33%;
|
||||
padding-right: 12px;
|
||||
margin-bottom: 12px;
|
||||
box-sizing: border-box;
|
||||
|
||||
&:nth-of-type(3n) {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > p {
|
||||
margin: 12px 0;
|
||||
font-size: 28px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.item-bottom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 88px;
|
||||
border-top: 1px solid #eeeeee;
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex: 1;
|
||||
|
||||
image {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin: 16px;
|
||||
}
|
||||
|
||||
i {
|
||||
color: #687DA6;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.item-content {
|
||||
margin: 16px 0;
|
||||
line-height: 1.3;
|
||||
text-align: justify;
|
||||
word-break: break-all;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
|
||||
span {
|
||||
font-size: 28px;
|
||||
color: #4181FF;
|
||||
}
|
||||
|
||||
text {
|
||||
font-size: 28px;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.row2 {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
89
src/project/weiyang/AppCircle/Topic.vue
Normal file
@@ -0,0 +1,89 @@
|
||||
<template>
|
||||
<div class="Topic">
|
||||
<div
|
||||
class="Topic-item"
|
||||
v-for="(item, index) in list"
|
||||
:key="index"
|
||||
hover-class="text-hover"
|
||||
@click="$linkTo('./TopicDetail?themeId=' + item.id + '&name=' + item.title)">
|
||||
<h2>#{{item.title}}</h2>
|
||||
<span>去看看</span>
|
||||
</div>
|
||||
<AiLogin ref="login"/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
export default {
|
||||
name: 'Topic',
|
||||
appName: '更多话题',
|
||||
|
||||
data () {
|
||||
return {
|
||||
current: 1,
|
||||
pages: 2,
|
||||
list: []
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
this.getList()
|
||||
},
|
||||
|
||||
methods: {
|
||||
getList() {
|
||||
if (this.current > this.pages) return
|
||||
this.$instance.post(`/app/appneighborhoodassistancetheme/list?current=${this.current}&size=20&status=1`).then(res => {
|
||||
if (res.code === 0 && res.data) {
|
||||
const list = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records
|
||||
this.pages = Math.ceil(res.data.total / 10)
|
||||
this.list = list
|
||||
}
|
||||
})
|
||||
},
|
||||
toTopicDetail(id) {
|
||||
uni.navigateTo({url: `./TopicDetail?id=${id}`})
|
||||
}
|
||||
},
|
||||
onReachBottom() {
|
||||
this.current ++
|
||||
this.getList()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.Topic {
|
||||
min-height: 100vh;
|
||||
background: #fff;
|
||||
padding-bottom: 40px;
|
||||
border-top: 24px solid #f4f6fa;
|
||||
box-sizing: border-box;
|
||||
|
||||
div {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.Topic-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 20px 32px;
|
||||
|
||||
h2 {
|
||||
font-size: 30px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
span {
|
||||
width: 126px;
|
||||
height: 52px;
|
||||
line-height: 52px;
|
||||
text-align: center;
|
||||
border-radius: 26px;
|
||||
border: 2px solid #2d7dffff;
|
||||
font-size: 24px;
|
||||
color: #2D7DFF;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
336
src/project/weiyang/AppCircle/TopicDetail.vue
Normal file
@@ -0,0 +1,336 @@
|
||||
<template>
|
||||
<div class="TopicDetail">
|
||||
<h2>#{{ name }}</h2>
|
||||
<p>贴子:{{ total }}</p>
|
||||
<div class="tab">
|
||||
<span @click="changeTab(0)" :class="[currIndex === 0 ? 'active' : '']">广场</span>
|
||||
<!-- <span @click="changeTab(1)" :class="[currIndex === 1 ? 'active' : '']">社区</span> -->
|
||||
</div>
|
||||
<div class="AppCircle-list">
|
||||
<div
|
||||
class="item"
|
||||
v-for="(item, index) in list"
|
||||
:key="index"
|
||||
@click="$linkTo('./Detail?isFrom=topic&id=' + item.id + '&name=' + name + '&themeId=' + themeId)">
|
||||
<div class="item-top">
|
||||
<image :src="item.createUserAvatar || 'https://cdn.cunwuyun.cn/wxmp/fengdu/avatar.png'" />
|
||||
<div class="right">
|
||||
<h3>{{ item.createUserName }}</h3>
|
||||
<span v-if="item.publishDepartName">{{ item.publishDepartName }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item-content">
|
||||
<text v-if="item.integralTaskId">{{ item.integralTaskInfo.detail }}</text>
|
||||
<text v-else>{{ item.content }}</text>
|
||||
</div>
|
||||
<div class="item-imgs" v-if="item.files.length">
|
||||
<image mode="aspectFill" hover-stop-propagation @click.stop="previewImage(e.url, item.files)" v-for="(e, i) in item.files" :key="i" :src="e.url" />
|
||||
</div>
|
||||
<p>{{ item.createTime }}</p>
|
||||
<div class="item-bottom">
|
||||
<button
|
||||
hover-stop-propagation
|
||||
@click.stop=""
|
||||
open-type="share"
|
||||
:data-content="item.content"
|
||||
:data-themeid="item.themeId"
|
||||
:data-id="item.id"
|
||||
:data-name="item.topicName">
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-zhuanfa.png" />
|
||||
<i>{{ item.sharedCount }}</i>
|
||||
</button>
|
||||
<div hover-stop-propagation @click.stop="reciate(item.id, item.appreciateStatus)">
|
||||
<image :src="item.appreciateStatus ? 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan-active.png' : 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan.png'" />
|
||||
<i>{{ item.appreciateCount }}</i>
|
||||
</div>
|
||||
<div>
|
||||
<image src="https://cdn.cunwuyun.cn/wxmp/fengdu/ic-pinglun.png" />
|
||||
<i>{{ item.commentCount }}</i>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!list.length"></AiEmpty>
|
||||
</div>
|
||||
<AiLogin ref="login"/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { mapActions, mapState } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'TopicDetail',
|
||||
appName: '话题详情',
|
||||
|
||||
data () {
|
||||
return {
|
||||
currIndex: 0,
|
||||
name: '',
|
||||
themeId: '',
|
||||
list: [],
|
||||
isMore: false,
|
||||
current: 1,
|
||||
total: 0
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
...mapState(['user', 'token'])
|
||||
},
|
||||
|
||||
onLoad (query) {
|
||||
this.themeId = query.themeId
|
||||
this.name = query.name
|
||||
|
||||
this.$nextTick(() => {
|
||||
this.getList()
|
||||
})
|
||||
},
|
||||
|
||||
methods: {
|
||||
...mapActions(['autoLogin', 'authCheck']),
|
||||
|
||||
changeTab (index) {
|
||||
this.currIndex = index
|
||||
this.isMore = false
|
||||
this.current = 1
|
||||
|
||||
this.$nextTick(() => {
|
||||
this.getList()
|
||||
})
|
||||
},
|
||||
|
||||
reciate (id, appreciateStatus) {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/appreciate?id=${id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$toast(appreciateStatus ? '取消点赞' : '点赞成功')
|
||||
|
||||
this.changeTab(this.currIndex)
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
previewImage (url, files) {
|
||||
uni.previewImage({
|
||||
current: url,
|
||||
urls: files.map(v => v.url)
|
||||
})
|
||||
},
|
||||
|
||||
getList () {
|
||||
if (this.isMore) return
|
||||
|
||||
this.$loading()
|
||||
this.$instance.post(`/app/appneighborhoodassistance/list`, null, {
|
||||
params: {
|
||||
current: this.current,
|
||||
size: 10,
|
||||
themeId: this.themeId,
|
||||
visibleRange: this.currIndex === 0 ? 1 : 0
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$hideLoading()
|
||||
if (this.current > 1) {
|
||||
this.list = [...this.list, ...res.data.records]
|
||||
} else {
|
||||
this.list = res.data.records
|
||||
}
|
||||
|
||||
this.total = res.data.total
|
||||
|
||||
if (res.data.records.length < 10) {
|
||||
this.isMore = true
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
this.current = this.current + 1
|
||||
} else {
|
||||
this.isMore = true
|
||||
}
|
||||
}).catch(() => {
|
||||
this.$hideLoading()
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
onReachBottom () {
|
||||
this.getList()
|
||||
},
|
||||
|
||||
onShareAppMessage (e) {
|
||||
this.$instance.post(`/app/appneighborhoodassistance/share?id=${e.target.dataset.id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.changeTab(this.currIndex)
|
||||
}
|
||||
})
|
||||
|
||||
return {
|
||||
title: e.target.dataset.content,
|
||||
path: `/mods/AppCircle/Detail?id=${e.target.dataset.id}&themeId=${e.target.dataset.themeid}&name=${e.target.dataset.name}`
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.TopicDetail {
|
||||
padding-top: 32px;
|
||||
padding-bottom: 40px;
|
||||
|
||||
div {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
& > h2 {
|
||||
margin: 0 32px 24px;
|
||||
font-size: 46px;
|
||||
color: #3d3d3d;
|
||||
}
|
||||
|
||||
.tab {
|
||||
margin: 0 32px 24px;
|
||||
}
|
||||
|
||||
& > p {
|
||||
margin: 0 32px 12px;
|
||||
color: #999999;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.AppCircle-list {
|
||||
.item {
|
||||
margin: 0 24px 24px;
|
||||
padding: 24px 24px 0;
|
||||
background: #ffffff;
|
||||
border-radius: 16px;
|
||||
box-shadow: inset 0 -1px 0 0 #eeeeee;
|
||||
|
||||
.item-top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
image {
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
margin-right: 16px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #333333;
|
||||
text-align: left;
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-top: 12px;
|
||||
color: #999999;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
.item-imgs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
|
||||
image {
|
||||
height: 208px;
|
||||
width: 33.33%;
|
||||
padding-right: 12px;
|
||||
margin-bottom: 12px;
|
||||
box-sizing: border-box;
|
||||
|
||||
&:nth-of-type(3n) {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > p {
|
||||
margin: 12px 0;
|
||||
font-size: 28px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.item-bottom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 88px;
|
||||
border-top: 1px solid #eeeeee;
|
||||
|
||||
div, button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex: 1;
|
||||
|
||||
image {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin: 16px;
|
||||
}
|
||||
|
||||
i {
|
||||
color: #687DA6;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.item-content {
|
||||
margin: 16px 0;
|
||||
line-height: 1.3;
|
||||
text-align: justify;
|
||||
|
||||
span {
|
||||
font-size: 28px;
|
||||
color: #4181FF;
|
||||
}
|
||||
|
||||
text {
|
||||
font-size: 28px;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tab {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100px;
|
||||
|
||||
span {
|
||||
position: relative;
|
||||
height: 100px;
|
||||
line-height: 100px;
|
||||
color: #222;
|
||||
font-size: 30px;
|
||||
|
||||
&:first-child {
|
||||
margin-right: 64px;
|
||||
}
|
||||
|
||||
&.active {
|
||||
font-weight: 600;
|
||||
font-size: 32px;
|
||||
|
||||
&::after {
|
||||
position: absolute;
|
||||
bottom: 12px;
|
||||
left: 50%;
|
||||
width: 40px;
|
||||
height: 6px;
|
||||
border-radius: 3px;
|
||||
background: #2d7dffff;
|
||||
transform: translateX(-50%);
|
||||
content: ' ';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
BIN
src/project/weiyang/AppCircle/circle-selected.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
src/project/weiyang/AppCircle/circle.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
219
src/project/weiyang/AppGeneralElection/AppGeneralElection.vue
Normal file
@@ -0,0 +1,219 @@
|
||||
<template>
|
||||
<view class="page">
|
||||
<view v-if="isShow" style="height:100%;">
|
||||
<view class="session-list">
|
||||
<view class="session-item" v-for="(item, index) in list" :key="index">
|
||||
<view class="item-top">
|
||||
<view class="item-title mar-b9">{{item.title}}</view>
|
||||
<view class="item-info">
|
||||
<text class="info-label">选举状态:</text>
|
||||
<text class="info-value" :class="'item-status'+item.status">
|
||||
{{$dict.getLabel('electionStatus',item.status)||'-'}}
|
||||
</text>
|
||||
</view>
|
||||
<view class="item-info mar-b9">
|
||||
<text class="info-label">应选人数:</text>
|
||||
<text class="info-value" style="display:inline-block;width: 100rpx;">{{item.chooseNumber || '0'}}</text>
|
||||
<text class="info-label">候选人数:</text>
|
||||
<text class="info-value">{{item.candidatesNumber || '0'}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="item-bottom">
|
||||
<text class="item-btn" v-if="item.status == 1 && item.partyVoteStatus === null" @click="toDetail(item.id)">去投票</text>
|
||||
<text class="item-btn border-999" v-if="item.status == 2 && item.partyVoteStatus != null" @click="showTips(item.status)">已投票</text>
|
||||
<text class="item-btn border-999" v-if="item.status == 1 && item.partyVoteStatus != null" @click="showTips(item.status)">已投票</text>
|
||||
<text class="item-btn border-999" v-if="item.status == 0" @click="showTips(item.status)">未开始</text>
|
||||
<text class="item-btn border-999" v-if="item.status == 2 && item.partyVoteStatus === null" @click="showTips(item.status)">未投票</text>
|
||||
</view>
|
||||
<view class="item-status" :class="'item-status'+item.status">
|
||||
{{$dict.getLabel('electionStatus',item.status)||'-'}}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<AiEmpty v-if="list.length == 0"/>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import {mapState} from 'vuex'
|
||||
export default {
|
||||
name: 'AppGeneralElection',
|
||||
appName: "换届选举",
|
||||
computed: {
|
||||
...mapState(['user', 'token']),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
isShow: true,
|
||||
list: [],
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
pages: 2,
|
||||
partyId: ''
|
||||
};
|
||||
},
|
||||
onLoad() {
|
||||
this.$dict.load('electionStatus').then(() => {
|
||||
this.partyId =this.user.partyId
|
||||
this.getList()
|
||||
})
|
||||
},
|
||||
onShow() {
|
||||
this.$dict.load('electionStatus').then(() => {
|
||||
this.partyId = this.user.partyId
|
||||
this.getList()
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
getList() {
|
||||
if (this.pageNum > this.pages) return
|
||||
this.$instance.post(`/app/appgeneralelectioninfo/list-xcx?partyId=${this.partyId}¤t=${this.pageNum}&size=${this.pageSize}`, null, {}).then(res => {
|
||||
if (res.code == 0) {
|
||||
const list = this.pageNum > 1 ? [...this.list, ...res.data.records] : res.data.records
|
||||
this.pages = Math.ceil(res.data.total / 10)
|
||||
this.list = list
|
||||
}
|
||||
})
|
||||
},
|
||||
toSessionDetail(id) {
|
||||
// uni.navigateTo({
|
||||
// url: '../threeSessions/threeSessionsDetail?id=' + id
|
||||
// })
|
||||
},
|
||||
toDetail(id) {
|
||||
uni.navigateTo({
|
||||
url: `./generalElectionDetail?id=${id}`
|
||||
})
|
||||
},
|
||||
showTips(status) {
|
||||
var title = '投票未开始'
|
||||
if (status == 1) {
|
||||
title = '已投票'
|
||||
}
|
||||
if (status == 2) {
|
||||
title = '已结束'
|
||||
}
|
||||
uni.showToast({
|
||||
title: title,
|
||||
icon: "none"
|
||||
})
|
||||
}
|
||||
},
|
||||
onReachBottom() {
|
||||
this.pageNum = this.pageNum + 1
|
||||
this.getList()
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scope>
|
||||
|
||||
.page {
|
||||
background-color: #F3F6F9;
|
||||
|
||||
.session-list {
|
||||
.session-item {
|
||||
width: 686px;
|
||||
margin: 32px auto 0 auto;
|
||||
background-color: #fff;
|
||||
// min-height: 308px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-radius: 8px;
|
||||
|
||||
.item-top {
|
||||
padding: 32px 32px 0 32px;
|
||||
}
|
||||
|
||||
.item-title {
|
||||
font-size: 32px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
line-height: 44px;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.item-info {
|
||||
line-height: 42px;
|
||||
font-size: 28px;
|
||||
margin-bottom: 8px;
|
||||
|
||||
.info-label {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.item-bottom {
|
||||
border-top: 2px solid #EEE;
|
||||
text-align: right;
|
||||
padding-right: 34px;
|
||||
box-sizing: border-box;
|
||||
line-height: 96px;
|
||||
|
||||
.item-btn {
|
||||
display: inline-block;
|
||||
width: 152px;
|
||||
height: 52px;
|
||||
line-height: 52px;
|
||||
border-radius: 28px;
|
||||
text-align: center;
|
||||
font-size: 28px;
|
||||
margin-left: 32px;
|
||||
border: 2px solid #E1E1E1;
|
||||
color: #1365DD;
|
||||
border: 2px solid #1365DD;
|
||||
}
|
||||
}
|
||||
|
||||
.info-value {
|
||||
color: #343D65;
|
||||
background-color: #fff !important;
|
||||
}
|
||||
|
||||
.item-status {
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
right: -30rpx;
|
||||
width: 140px;
|
||||
text-align: center;
|
||||
line-height: 44px;
|
||||
font-size: 24px;
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.item-status0 {
|
||||
color: #FF9B2B;
|
||||
background-color: #FFF3E8;
|
||||
}
|
||||
|
||||
.item-status1 {
|
||||
color: #5A98F2;
|
||||
background-color: #F1F6FF;
|
||||
}
|
||||
|
||||
.item-status2 {
|
||||
color: #f46;
|
||||
background-color: #FFECF0;
|
||||
}
|
||||
|
||||
.border-999 {
|
||||
color: #999 !important;
|
||||
border-color: #999 !important;
|
||||
}
|
||||
|
||||
.mar-b9 {
|
||||
margin-bottom: 18px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.no-affairs {
|
||||
width: 100%;
|
||||
height: calc(100% - 210rpx);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
377
src/project/weiyang/AppGeneralElection/generalElectionDetail.vue
Normal file
@@ -0,0 +1,377 @@
|
||||
<template>
|
||||
<view class="page">
|
||||
<div class="line-bg"></div>
|
||||
<div class="banner-top">
|
||||
<image
|
||||
src="https://cdn.cunwuyun.cn/img/election-banner.png"
|
||||
class="banner-img"
|
||||
></image>
|
||||
<span class="tips" @click="viewMask()"
|
||||
><image
|
||||
src="https://cdn.cunwuyun.cn/img/explain-icon.png"
|
||||
class="tips-icon"
|
||||
></image
|
||||
>投票说明</span
|
||||
>
|
||||
<image
|
||||
src="https://cdn.cunwuyun.cn/img/party-icon.png"
|
||||
class="party-icon"
|
||||
></image>
|
||||
<div class="banner-info">
|
||||
<div class="title">{{ title }}</div>
|
||||
<div class="num-info">应选人{{ chooseNumber || "0" }}人</div>
|
||||
<div class="user-list">
|
||||
<div class="user-item user-item-title">
|
||||
<span>候选人</span>
|
||||
<span>赞成</span>
|
||||
<span>反对</span>
|
||||
<span>弃权</span>
|
||||
</div>
|
||||
<div class="user-item" v-for="(item, index) in userList" :key="index">
|
||||
<span>{{ item.candidateUserName }}</span>
|
||||
<span>
|
||||
<image
|
||||
:src="
|
||||
item.voteStatus == '0'
|
||||
? 'https://cdn.cunwuyun.cn/img/circle-check.png'
|
||||
: 'https://cdn.cunwuyun.cn/img/circle-icon.png'
|
||||
"
|
||||
class="check-icon"
|
||||
@click="checkClick(index, '0')"
|
||||
></image>
|
||||
</span>
|
||||
<span>
|
||||
<image
|
||||
:src="
|
||||
item.voteStatus == '1'
|
||||
? 'https://cdn.cunwuyun.cn/img/circle-check.png'
|
||||
: 'https://cdn.cunwuyun.cn/img/circle-icon.png'
|
||||
"
|
||||
class="check-icon"
|
||||
@click="checkClick(index, '1')"
|
||||
></image>
|
||||
</span>
|
||||
<span>
|
||||
<image
|
||||
:src="
|
||||
item.voteStatus == '2'
|
||||
? 'https://cdn.cunwuyun.cn/img/circle-check.png'
|
||||
: 'https://cdn.cunwuyun.cn/img/circle-icon.png'
|
||||
"
|
||||
class="check-icon"
|
||||
@click="checkClick(index, '2')"
|
||||
></image>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-bottom">
|
||||
<div class="btn" @click="submitVote()">提交投票</div>
|
||||
</div>
|
||||
<view class="mask" v-if="showMask">
|
||||
<view class="mask-content">
|
||||
<view class="mask-title">投票说明</view>
|
||||
<!-- <view class="mask-text">1、本次选举采用无记名投票方式,差额选举的办法</view>
|
||||
<view class="mask-text">2、选举工作由选举委员会主持,未尽事宜由选举委员会研究决定。</view> -->
|
||||
<view class="mask-text">{{ votingInstructions }}</view>
|
||||
<view class="mask-btn" @click="closeMask()">关闭</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import { mapState } from "vuex";
|
||||
export default {
|
||||
computed: {
|
||||
...mapState(["user"]),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
detailId: "",
|
||||
userList: [],
|
||||
showMask: false,
|
||||
title: "",
|
||||
chooseNumber: "",
|
||||
partyId: "",
|
||||
votingInstructions: "",
|
||||
};
|
||||
},
|
||||
onLoad(options) {
|
||||
this.detailId = options.id;
|
||||
this.partyId = this.user.partyId;
|
||||
this.getDetailInfo();
|
||||
},
|
||||
methods: {
|
||||
submitVote() {
|
||||
var flags = true;
|
||||
var checkNum = 0;
|
||||
var checkList = [];
|
||||
this.userList.map((item) => {
|
||||
if (item.voteStatus) {
|
||||
checkNum++;
|
||||
checkList.push(item);
|
||||
}
|
||||
});
|
||||
|
||||
if (checkNum > this.chooseNumber) {
|
||||
uni.showToast({ title: `投票人数大于应选人数,请重试`, icon: "none" });
|
||||
flags = false;
|
||||
}
|
||||
if (checkNum < this.chooseNumber) {
|
||||
uni.showToast({ title: `请给候选人投票`, icon: "none" });
|
||||
flags = false;
|
||||
}
|
||||
// if (checkNum < this.userList.length) {
|
||||
// uni.showToast({title: `请给候选人投票`, icon: 'none'})
|
||||
// flags = false
|
||||
// }
|
||||
|
||||
if (!flags) return;
|
||||
this.$instance
|
||||
.post("/app/appgeneralelectioninfo/vote", checkList)
|
||||
.then((res) => {
|
||||
if (res.code == 0) {
|
||||
uni.showToast({ title: "投票成功!" });
|
||||
setTimeout(function () {
|
||||
uni.navigateBack({
|
||||
delta: 1,
|
||||
});
|
||||
}, 1000);
|
||||
}
|
||||
});
|
||||
},
|
||||
checkClick(index, status) {
|
||||
if (this.userList[index].voteStatus == status) {
|
||||
this.userList[index].voteStatus = "";
|
||||
} else {
|
||||
this.userList[index].voteStatus = status;
|
||||
}
|
||||
},
|
||||
closeMask() {
|
||||
this.showMask = false;
|
||||
},
|
||||
viewMask() {
|
||||
this.showMask = true;
|
||||
},
|
||||
getDetailInfo() {
|
||||
this.$instance
|
||||
.post(
|
||||
`/app/appgeneralelectioninfo/queryDetailById?id=${this.detailId}`,
|
||||
null
|
||||
)
|
||||
.then((res) => {
|
||||
if (res.data) {
|
||||
this.votingInstructions = res.data.votingInstructions;
|
||||
this.chooseNumber = res.data.chooseNumber;
|
||||
this.title = res.data.title;
|
||||
res.data.candidateUsers.map((item) => {
|
||||
var info = {
|
||||
candidateUserId: item.id,
|
||||
candidateUserName: item.name,
|
||||
electionId: this.detailId,
|
||||
voteStatus: "",
|
||||
voterUserId: this.partyId,
|
||||
};
|
||||
this.userList.push(info);
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scope>
|
||||
.page {
|
||||
.line-bg {
|
||||
width: 100%;
|
||||
height: 12px;
|
||||
background-color: #e60012;
|
||||
}
|
||||
|
||||
.banner-top {
|
||||
width: 100%;
|
||||
height: 340px;
|
||||
position: relative;
|
||||
|
||||
.banner-img {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 340px;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.tips {
|
||||
position: absolute;
|
||||
right: 42px;
|
||||
color: #fff;
|
||||
font-size: 30px;
|
||||
z-index: 88;
|
||||
top: 137px;
|
||||
|
||||
.tips-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
vertical-align: text-top;
|
||||
margin-right: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.party-icon {
|
||||
position: absolute;
|
||||
z-index: 3;
|
||||
width: 140px;
|
||||
height: 140px;
|
||||
left: 50%;
|
||||
margin-left: -70rpx;
|
||||
top: 180px;
|
||||
}
|
||||
|
||||
.banner-info {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 2;
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
padding-bottom: 136px;
|
||||
|
||||
|
||||
.title {
|
||||
width: 100%;
|
||||
font-size: 44px;
|
||||
font-family: PingFangSC-Semibold, PingFang SC;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
padding: 12px 0 10px 0;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
}
|
||||
|
||||
.num-info {
|
||||
width: 100%;
|
||||
font-size: 36px;
|
||||
font-family: PingFangSC-Semibold, PingFang SC;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
|
||||
.user-list {
|
||||
width: 710px;
|
||||
background: #fff;
|
||||
border-radius: 24px 24px 0 0;
|
||||
margin: 0 auto;
|
||||
|
||||
.user-item {
|
||||
width: 688px;
|
||||
height: 112px;
|
||||
line-height: 112px;
|
||||
margin: 0 auto;
|
||||
border-bottom: 2px solid #eee;
|
||||
display: flex;
|
||||
font-size: 32px;
|
||||
color: #666;
|
||||
|
||||
span {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
|
||||
.check-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.user-item:nth-last-of-type(1) {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.user-item-title {
|
||||
color: #333;
|
||||
font-size: 34px;
|
||||
padding-top: 88px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-bottom {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 9;
|
||||
width: 100%;
|
||||
|
||||
.btn {
|
||||
width: 100%;
|
||||
line-height: 112px;
|
||||
background: #e60012;
|
||||
color: #fff;
|
||||
font-size: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.mask {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
z-index: 99;
|
||||
|
||||
.mask-content {
|
||||
width: 560px;
|
||||
height: 680px;
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
border: 2px solid rgba(151, 151, 151, 1);
|
||||
margin: 200px auto 0;
|
||||
padding: 48px 48px 0;
|
||||
box-sizing: border-box;
|
||||
|
||||
|
||||
.mask-title {
|
||||
font-size: 32px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
line-height: 44px;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.mask-text {
|
||||
width: 100%;
|
||||
line-height: 44px;
|
||||
font-size: 28px;
|
||||
height: 460px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
color: #333;
|
||||
word-break: break-all;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.mask-btn {
|
||||
width: 128px;
|
||||
height: 40px;
|
||||
font-size: 28px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #1365dd;
|
||||
line-height: 40px;
|
||||
margin: 30px 0 20px 332px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
176
src/project/weiyang/AppModules/AppModules.vue
Normal file
@@ -0,0 +1,176 @@
|
||||
<template>
|
||||
<div class="wrapper">
|
||||
<!-- <div class="header" :class="[isFixed ? 'header-active' : '']">
|
||||
<div class="status-bar" :style="{height: statusBarHeight + 'px'}"></div>
|
||||
<div class="nav-bar">
|
||||
<h2>服务</h2>
|
||||
</div>
|
||||
</div> -->
|
||||
<u-navbar :is-back="false" title="服务" title-color="#000" title-width="300" title-size="32" :title-bold="true" :background="backgroundNavbar"></u-navbar>
|
||||
<div class="header-bg"></div>
|
||||
<div class="body" v-if="list">
|
||||
<div class="card" v-for="(obj,key) in list" :key="key">
|
||||
<div class="title">{{ $dict.getLabel('homeConfigMenuType', key) }}</div>
|
||||
<u-grid :col="4" hover-class="text-hover">
|
||||
<u-grid-item
|
||||
v-for="(item, index) in obj" :key="index" class="grid-item" :custom-style="{padding:'9px 0'}"
|
||||
@click="handleClick(item)">
|
||||
<img :src="item.pictureUrl" alt=""/>
|
||||
<div class="grid-text">{{ item.name }}</div>
|
||||
</u-grid-item>
|
||||
</u-grid>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapActions, mapState} from "vuex";
|
||||
|
||||
export default {
|
||||
name: "AppModules",
|
||||
appName: "服务",
|
||||
customNavigation: true,
|
||||
computed: {
|
||||
...mapState(['user', 'token']),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
list: null,
|
||||
isFixed: false,
|
||||
statusBarHeight: 20,
|
||||
backgroundNavbar: {
|
||||
background: 'url(https://cdn.cunwuyun.cn/wechat/wuxi/wuxi-nav-bg.png) no-repeat',
|
||||
backgroundSize: 'cover',
|
||||
}
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
|
||||
this.$dict.load("homeConfigMenuType").then(() => {
|
||||
this.getList()
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
...mapActions(['authCheck']),
|
||||
handleClick({type, appId, modulePath, url, checkType, corpId}) {
|
||||
if (checkType == 3 && this.user.partyStatusForWX != 2) { //张硕让改的
|
||||
return this.$u.toast('您还不是党员,暂时无法使用该功能')
|
||||
}
|
||||
//先判读是不是系统应用
|
||||
if (type != "0") {
|
||||
if (type == "1") {
|
||||
uni.navigateToMiniProgram({appId});
|
||||
} else if (type == "2") {
|
||||
uni.navigateTo({url: "/subPages/h5/webview?link=" + url});
|
||||
} else if (type == "3") {
|
||||
this.$linkTo(url);
|
||||
} else if (type == "4") {
|
||||
uni.openCustomerServiceChat({
|
||||
extInfo: {url: url},
|
||||
corpId: corpId,
|
||||
fail: () => {
|
||||
this.$u.toast('请使用普通微信打开小程序进行咨询');
|
||||
}
|
||||
});
|
||||
}
|
||||
} else if (type && type == "0") {
|
||||
uni.showLoading({title: '正在进入应用...'})
|
||||
this.authCheck({checkType, modulePath}).finally(() => uni.hideLoading())
|
||||
}
|
||||
},
|
||||
getList() {
|
||||
this.$instance.post("/app/appminihomeconfig/listAll", null, {withoutToken: true}).then(res => {
|
||||
if (res?.data) {
|
||||
this.list = res.data.all;
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
},
|
||||
onPageScroll(params) {
|
||||
this.isFixed = params.scrollTop > 60;
|
||||
},
|
||||
onShareAppMessage() {
|
||||
return {
|
||||
title: '欢迎使用数字乡村治理服务一体化平台~',
|
||||
path: `/pages/AppModules/AppModules`
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.header {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 0;
|
||||
width: 100%;
|
||||
opacity: 0;
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&.header-active {
|
||||
z-index: 1111;
|
||||
opacity: 1;
|
||||
background: #4181FF;
|
||||
}
|
||||
|
||||
.nav-bar {
|
||||
position: relative;
|
||||
height: 88px;
|
||||
line-height: 88px;
|
||||
color: #fff;
|
||||
font-size: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.header-bg {
|
||||
height: 592px;
|
||||
background: url('https://cdn.cunwuyun.cn/wechat/wuxi/wuxi-header-bg.png') center;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
|
||||
.liner {
|
||||
height: 192px;
|
||||
background: linear-gradient(360deg, #F3F6F9 0%, #4181FF 100%);
|
||||
}
|
||||
|
||||
.body {
|
||||
margin-top: -568px;
|
||||
|
||||
.card {
|
||||
width: 686px;
|
||||
min-height: 304px;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.02);
|
||||
border-radius: 16px;
|
||||
margin: 0 auto 24px;
|
||||
box-sizing: border-box;
|
||||
padding: 32px;
|
||||
|
||||
.title {
|
||||
font-size: 34px;
|
||||
font-weight: 600;
|
||||
color: #333333;
|
||||
line-height: 48px;
|
||||
margin-bottom: 36px;
|
||||
}
|
||||
|
||||
.grid-item {
|
||||
img {
|
||||
width: 108px;
|
||||
height: 108px;
|
||||
object-fit: fill;
|
||||
}
|
||||
|
||||
.grid-text {
|
||||
font-size: 26px;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
BIN
src/project/weiyang/AppModules/service.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
src/project/weiyang/AppModules/service_selected.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
345
src/project/weiyang/AppNewFarmerBank/AppNewFarmerBank.vue
Normal file
@@ -0,0 +1,345 @@
|
||||
<template>
|
||||
<div class="page">
|
||||
<div class="header-content">
|
||||
<u-navbar :is-back="false" title="积分" title-color="#000" title-width="300" title-size="32" :title-bold="true" :background="backgroundNavbar"></u-navbar>
|
||||
<div class="header-bg">
|
||||
<div class="swiper-content">
|
||||
<u-swiper :list="swiperList" mode="none" height="364" bg-color="none" @click="handleBannerClick"/>
|
||||
</div>
|
||||
<div class="user-info">
|
||||
<p>{{ user.realName || user.nickName }},欢迎进入{{user.areaName}}!</p>
|
||||
<div @click="toPages('./signIn',status)">{{ status==1? '已签到':'签到' }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="banner-list">
|
||||
<div class="item" v-for="(item, index) in bannerList" :key="index" @click="toPages(item.path)">
|
||||
<img :src="item.imgUrl" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<tempalte>
|
||||
<div class="title-wrap">
|
||||
<span class="title">精选动态</span>
|
||||
<div class="right" hover-class="text-hover" @click="$linkTo('./handpick')">
|
||||
<span class="title-more">更多</span>
|
||||
<u-icon name="arrow-right" size="28" color="#687DA6"></u-icon>
|
||||
</div>
|
||||
</div>
|
||||
<div class="list-news" v-if="list.length">
|
||||
<div class="item" v-for="(item,index) in list" :key="index" @click="$linkTo(`./pickDetail?id=${item.id}`)">
|
||||
<p class="title" v-if="item.girdName">{{item.girdName}}</p>
|
||||
<div class="user-flex">
|
||||
<span>{{item.createUserName}}</span>
|
||||
<p>{{item.title}}</p>
|
||||
<div @click.stop="upCount(item.id,index)">
|
||||
<img :src="item.upStatus==0? 'https://cdn.cunwuyun.cn/wechat/biaopin/integral/dianzan.png':'https://cdn.cunwuyun.cn/wechat/biaopin/integral/dianzan-select.png'" alt="">{{ item.upCount || 0 }}<span v-if="item.upCount > 99">+</span>
|
||||
</div>
|
||||
</div>
|
||||
<p class="item-content">{{item.content}}</p>
|
||||
<div class="img-list" v-if="item.images.length">
|
||||
<img v-for="(img, i) in item.images" :key="i" :src="img.url">
|
||||
</div>
|
||||
<div class="img-list" v-if="!item.images.length && item.videos.length">
|
||||
<img v-for="(video, ins) in item.videos" :key="ins" :src="video.facePicture.toString()">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</tempalte>
|
||||
<AiLogin ref="login"/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import {mapActions, mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
customNavigation: true,
|
||||
name: 'AppIntegral',
|
||||
appName: "积分",
|
||||
data() {
|
||||
return {
|
||||
cdn: "https://cdn.cunwuyun.cn/wxmp",
|
||||
swiperList: ['https://cdn.cunwuyun.cn/wechat/biaopin/integral/integral-swiper1.png'],
|
||||
backgroundNavbar: {
|
||||
background: 'url(https://cdn.cunwuyun.cn/wechat/wuxi/wuxi-nav-bg.png) no-repeat',
|
||||
backgroundSize: 'cover',
|
||||
},
|
||||
bannerList: [
|
||||
{
|
||||
imgUrl: 'https://cdn.cunwuyun.cn/wechat/biaopin/integral/integral-banner-jfsq.png',
|
||||
path: './integralApply'
|
||||
},
|
||||
{
|
||||
imgUrl: 'https://cdn.cunwuyun.cn/wechat/biaopin/integral/integral-banner-jfrw.png',
|
||||
path: './integralTask'
|
||||
},
|
||||
{
|
||||
imgUrl: 'https://cdn.cunwuyun.cn/wechat/biaopin/integral/integral-banner-jfph.png',
|
||||
path: './integralRank'
|
||||
},
|
||||
{
|
||||
imgUrl: 'https://cdn.cunwuyun.cn/wechat/biaopin/integral/integral-banner-jfsc.png',
|
||||
path: '/mods/AppRedemptionPoints/AppRedemptionPoints'
|
||||
},
|
||||
{
|
||||
imgUrl: 'https://cdn.cunwuyun.cn/wechat/biaopin/integral/integral-banner-jfgs.png',
|
||||
path: '/mods/AppRedemptionPoints/pointsPublicity'
|
||||
},
|
||||
{
|
||||
imgUrl: 'https://cdn.cunwuyun.cn/wechat/biaopin/integral/integral-banner-wdjf.png',
|
||||
path: '/pages/AppMine/myIntegral'
|
||||
}
|
||||
],
|
||||
status: null,
|
||||
current: 1,
|
||||
list: [],
|
||||
allList: [],
|
||||
flag: false,
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user'])
|
||||
},
|
||||
methods: {
|
||||
getList(moduleId) {
|
||||
this.$instance.post(`/app/appcontentinfo/list-web`,null,{
|
||||
params: {
|
||||
moduleId: moduleId,
|
||||
current: this.current,
|
||||
girdId: this.user.girdId,
|
||||
containContent: true,
|
||||
}
|
||||
}).then(res=> {
|
||||
if(res?.data) {
|
||||
this.allList = res.data.records
|
||||
let newList = res.data.records.length > 3 ? res.data.records.slice(0,3) : res.data.records
|
||||
let mapList = newList.map(e=> {
|
||||
|
||||
return {
|
||||
...e,
|
||||
images: e?.files.filter(i => (i.postfix == '.jpg' || i.postfix == '.jpeg' || i.postfix == '.png')),
|
||||
videos: e?.files.filter(i => (i.postfix == '.mp4' || i.postfix == '.MP4')),
|
||||
}
|
||||
})
|
||||
this.list = mapList.map(v=> {
|
||||
return {
|
||||
...v,
|
||||
images: v.images.length > 3? v.images.slice(0, 3) : v.images,
|
||||
videos: v.videos.length > 3? v.videos.slice(0, 3) : v.videos,
|
||||
upStatus: 0
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
handleBannerClick() {
|
||||
|
||||
},
|
||||
// 点赞
|
||||
upCount(id,index) {
|
||||
if (this.flag) return
|
||||
|
||||
this.flag = true
|
||||
this.$instance.post(`/app/appcontentinfo/supportById?id=${id}`).then(res=> {
|
||||
if(res?.code==0) {
|
||||
this.flag = false
|
||||
this.list[index].upStatus = 1
|
||||
this.$u.toast(`点赞成功`)
|
||||
}
|
||||
}).finally(() => this.flag = false)
|
||||
},
|
||||
toPages(url,status) {
|
||||
if(!this.user.areaId) {
|
||||
this.$dialog.confirm({
|
||||
content: '您只有完成信息认证后,才可进行相关操作。',
|
||||
confirmText: '去认证'
|
||||
}).then(() => {
|
||||
this.$linkTo('/pages/AppMine/userInfo')
|
||||
}).catch(() => {
|
||||
})
|
||||
} else {
|
||||
if(!status) {
|
||||
this.$linkTo(url)
|
||||
} else {
|
||||
// 停留
|
||||
}
|
||||
|
||||
}
|
||||
},
|
||||
getStatus() {
|
||||
this.$instance.post(`/app/appwechatsigninfo/checkSign`).then(res=> {
|
||||
if(res?.data !== null) {
|
||||
this.status = 1
|
||||
}
|
||||
})
|
||||
},
|
||||
getModule() {
|
||||
this.$instance.post(`/app/appintegraluserapply/queryModuleByName`).then(res=> {
|
||||
if(res?.data) {
|
||||
this.getList(res.data)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
},
|
||||
onShow() {
|
||||
this.getStatus()
|
||||
this.getModule()
|
||||
},
|
||||
|
||||
onShareAppMessage() {
|
||||
return {
|
||||
title: '欢迎使用基层治理~',
|
||||
path: `/pages/AppHome/AppHome`
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import "~dvcp-wui/common";
|
||||
|
||||
.page {
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
position: relative;
|
||||
|
||||
.header-content {
|
||||
.header-bg {
|
||||
background: url('https://cdn.cunwuyun.cn/wechat/wuxi/wuxi-header-bg.png') center;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
.swiper-content {
|
||||
width: 686px;
|
||||
height: 364px;
|
||||
margin: 0 auto 24px;
|
||||
}
|
||||
.user-info {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 14px 32px 18px;
|
||||
p {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 28px;
|
||||
color: #222;
|
||||
line-height: 56px;
|
||||
}
|
||||
div {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 24px;
|
||||
color: #0262F2;
|
||||
line-height: 52px;
|
||||
padding: 0 24px;
|
||||
border: 1px solid #0262f280;
|
||||
border-radius: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.banner-list {
|
||||
padding: 32px 0 0 32px;
|
||||
background-color: #fff;
|
||||
.item {
|
||||
display: inline-block;
|
||||
width: 330px;
|
||||
height: 160px;
|
||||
margin: 0 26px 32px 0;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.title-wrap {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
box-sizing: border-box;
|
||||
padding: 32px 32px 24px;
|
||||
|
||||
.title {
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 700;
|
||||
font-size: 44px;
|
||||
color: #222;
|
||||
line-height: 44px;
|
||||
}
|
||||
|
||||
.right {
|
||||
|
||||
.title-more {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
line-height: 44px;
|
||||
color: #687DA6;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-news {
|
||||
width: 686px;
|
||||
margin: 0 0 0 32px;
|
||||
.item {
|
||||
padding: 32px 24px 16px 24px;
|
||||
background-color: #fff;
|
||||
border-radius: 16px;
|
||||
margin-bottom: 32px;
|
||||
.title {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 34px;
|
||||
color: #333;
|
||||
line-height: 40px;
|
||||
word-break: break-all;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.user-flex {
|
||||
line-height: 40px;
|
||||
font-family: PingFangSC-Regular;
|
||||
span {
|
||||
display: inline-block;
|
||||
font-size: 34px;
|
||||
color: #2D7DFF;
|
||||
margin-right: 20px;
|
||||
}
|
||||
p {
|
||||
display: inline-block;
|
||||
font-size: 26px;
|
||||
color: #666;
|
||||
}
|
||||
div {
|
||||
float: right;
|
||||
font-size: 28px;
|
||||
color: #687DA6;
|
||||
line-height: 40px;
|
||||
img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin-right: 4px;
|
||||
vertical-align: sub;
|
||||
}
|
||||
}
|
||||
}
|
||||
.item-content {
|
||||
margin-top: 30px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 28px;
|
||||
color: #333;
|
||||
line-height: 42px;
|
||||
word-break: break-all;
|
||||
}
|
||||
.img-list {
|
||||
margin-top: 24px;
|
||||
img {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
margin: 0 16px 16px 0;
|
||||
}
|
||||
img:nth-of-type(3n) {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
396
src/project/weiyang/AppNewFarmerBank/AppNewFarmerBankOld.vue
Normal file
@@ -0,0 +1,396 @@
|
||||
<template>
|
||||
<div class="AppNewFarmerBank">
|
||||
<div class="swiper-content">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/img-gongdeyinhang.png" alt="">
|
||||
</div>
|
||||
<div class="welcome">
|
||||
<div class="welcome-user">
|
||||
<span class="name">{{ user.realName || user.nickName }}</span>,
|
||||
<span v-if="!user.idNumber">欢迎来到功德银行!</span>
|
||||
<span v-else>欢迎进入{{ user.areaName }}!</span>
|
||||
|
||||
</div>
|
||||
<div class="signin" @click="toPages('./signIn',status)">{{ status==1? '已签到':'签到' }}</div>
|
||||
</div>
|
||||
<div class="card-list">
|
||||
<div class="jfsq" @click="toPages('./integralApply')">
|
||||
<p>积分申请</p>
|
||||
<h4>好事自荐得积分</h4>
|
||||
</div>
|
||||
<div class="jsrw" @click="toPages('./integralTask')">
|
||||
<p>积分任务</p>
|
||||
<h4>完成任务得积分</h4>
|
||||
</div>
|
||||
<div class="jfph" @click="toPages('./integralRank')">
|
||||
<p>积分排行</p>
|
||||
<h4>社区荣誉榜</h4>
|
||||
</div>
|
||||
<div class="jfsc" @click="toPages('/mods/AppRedemptionPoints/AppRedemptionPoints')">
|
||||
<p>积分商城</p>
|
||||
<h4>兑换得好物</h4>
|
||||
</div>
|
||||
<div class="jfgs" @click="toPages('/mods/AppRedemptionPoints/pointsPublicity')">
|
||||
<p>积分公示</p>
|
||||
<h4>积分获取规则</h4>
|
||||
</div>
|
||||
<div class="wdjf" @click="toPages('/pages/AppMine/myIntegral')">
|
||||
<p>我的积分</p>
|
||||
<h4>积分获取一目了然</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="handpick" v-if="list.length">
|
||||
<div class="title">
|
||||
<h1>精选动态</h1>
|
||||
<div class="more" v-if="allList.length > 3" @click="$linkTo('./handpick')">
|
||||
<span>更多</span>
|
||||
<u-icon name="arrow-right" color="#687DA6" size="28"></u-icon>
|
||||
</div>
|
||||
</div>
|
||||
<div class="list" v-if="list.length">
|
||||
<div class="card" v-for="(item,index) in list" :key="index" @click="$linkTo(`./pickDetail?id=${item.id}`)">
|
||||
<div class="title-info" v-if="item.girdName">
|
||||
{{item.girdName}}
|
||||
</div>
|
||||
<div class="top">
|
||||
<div class="left" >
|
||||
<div class="type-info">{{item.createUserName}}<span>{{item.title}}</span></div>
|
||||
</div>
|
||||
<div class="right" @click.stop="upCount(item.id,index)">
|
||||
<img :src="item.upStatus==0? 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan.png':'https://cdn.cunwuyun.cn/wxmp/fengdu/zan-active.png'" alt="">
|
||||
<span>{{ item.upCount || 0 }}</span><span v-if="item.upCount > 99">+</span>
|
||||
</div>
|
||||
</div>
|
||||
<p class="content-info">{{item.content}}</p>
|
||||
<div class="imgs" v-if="item.images.length">
|
||||
<image v-for="(img, i) in item.images" :key="i" class="banner" :src="img.url"/>
|
||||
</div>
|
||||
<div class="imgs" v-if="!item.images.length && item.videos.length">
|
||||
<image v-for="(video, ins) in item.videos" :key="ins" class="banner" :src="video.facePicture.toString()"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
export default {
|
||||
name: "AppNewFarmerBank",
|
||||
appName: "功德银行",
|
||||
data() {
|
||||
return {
|
||||
status: null,
|
||||
current: 1,
|
||||
list: [],
|
||||
allList: [],
|
||||
flag: false,
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user'])
|
||||
},
|
||||
methods: {
|
||||
getList(moduleId) {
|
||||
this.$instance.post(`/app/appcontentinfo/list-web`,null,{
|
||||
params: {
|
||||
moduleId: moduleId,
|
||||
current: this.current,
|
||||
girdId: this.user.girdId,
|
||||
containContent: true,
|
||||
}
|
||||
}).then(res=> {
|
||||
if(res?.data) {
|
||||
this.allList = res.data.records
|
||||
let newList = res.data.records.length > 3 ? res.data.records.slice(0,3) : res.data.records
|
||||
let mapList = newList.map(e=> {
|
||||
|
||||
return {
|
||||
...e,
|
||||
images: e?.files.filter(i => (i.postfix == '.jpg' || i.postfix == '.jpeg' || i.postfix == '.png')),
|
||||
videos: e?.files.filter(i => (i.postfix == '.mp4' || i.postfix == '.MP4')),
|
||||
}
|
||||
})
|
||||
this.list = mapList.map(v=> {
|
||||
return {
|
||||
...v,
|
||||
images: v.images.length > 3? v.images.slice(0, 3) : v.images,
|
||||
videos: v.videos.length > 3? v.videos.slice(0, 3) : v.videos,
|
||||
upStatus: 0
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
handleBannerClick() {
|
||||
|
||||
},
|
||||
// 点赞
|
||||
upCount(id,index) {
|
||||
if (this.flag) return
|
||||
|
||||
this.flag = true
|
||||
this.$instance.post(`/app/appcontentinfo/supportById?id=${id}`).then(res=> {
|
||||
if(res?.code==0) {
|
||||
this.flag = false
|
||||
this.list[index].upStatus = 1
|
||||
this.$u.toast(`点赞成功`)
|
||||
}
|
||||
}).finally(() => this.flag = false)
|
||||
},
|
||||
toPages(url,status) {
|
||||
if(!this.user.areaId) {
|
||||
this.$dialog.confirm({
|
||||
content: '您只有完成信息认证后,才可进行相关操作。',
|
||||
confirmText: '去认证'
|
||||
}).then(() => {
|
||||
this.$linkTo('/pages/AppMine/userInfo')
|
||||
}).catch(() => {
|
||||
})
|
||||
} else {
|
||||
if(!status) {
|
||||
this.$linkTo(url)
|
||||
} else {
|
||||
// 停留
|
||||
}
|
||||
|
||||
}
|
||||
},
|
||||
getStatus() {
|
||||
this.$instance.post(`/app/appwechatsigninfo/checkSign`).then(res=> {
|
||||
if(res?.data !== null) {
|
||||
this.status = 1
|
||||
}
|
||||
})
|
||||
},
|
||||
getModule() {
|
||||
this.$instance.post(`/app/appintegraluserapply/queryModuleByName`).then(res=> {
|
||||
if(res?.data) {
|
||||
this.getList(res.data)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
},
|
||||
onShow() {
|
||||
this.getStatus()
|
||||
this.getModule()
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.AppNewFarmerBank {
|
||||
padding-bottom: 20px;
|
||||
box-sizing: border-box;
|
||||
.swiper-content {
|
||||
width: 100%;
|
||||
height: 332px;
|
||||
padding: 32px 32px 0;
|
||||
box-sizing: border-box;
|
||||
background: #FFF;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.welcome {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
height: 120px;
|
||||
padding: 0 32px;
|
||||
box-sizing: border-box;
|
||||
background: #FFF;
|
||||
.signin {
|
||||
width: 104px;
|
||||
height: 52px;
|
||||
line-height: 52px;
|
||||
border: 2px solid #2D7DFF;
|
||||
border-radius: 40px;
|
||||
color: #2D7DFF;
|
||||
text-align: center;
|
||||
font-size: 22px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.welcome-user {
|
||||
width: calc(100% - 60px);
|
||||
font-size: 30px;
|
||||
font-weight: 400;
|
||||
font-family: "PingFang SC";
|
||||
.name {
|
||||
color: #2D7DFF;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-list {
|
||||
background: #FFF;
|
||||
padding: 0 32px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
.jfsq {
|
||||
background: url('https://cdn.cunwuyun.cn/fengdu/img-jifenshenqing.png') no-repeat ;
|
||||
color: #DF863E;
|
||||
}
|
||||
.jsrw {
|
||||
background: url('https://cdn.cunwuyun.cn/fengdu/img-jifenrenwu.png') no-repeat;
|
||||
color: #2D7DFF;
|
||||
}
|
||||
.jfph {
|
||||
background: url('https://cdn.cunwuyun.cn/fengdu/img-jifenpaihang.png') no-repeat;
|
||||
color: #338A77;
|
||||
}
|
||||
.jfsc {
|
||||
background: url('https://cdn.cunwuyun.cn/fengdu/img-jifenshangcheng.png') no-repeat;
|
||||
color: #D9606E;
|
||||
}
|
||||
.jfgs {
|
||||
background: url('https://cdn.cunwuyun.cn/fengdu/img-jifengongshi.png') no-repeat;
|
||||
color: #484899;
|
||||
}
|
||||
.wdjf {
|
||||
background: url('https://cdn.cunwuyun.cn/fengdu/img-wodejifen.png') no-repeat;
|
||||
color: #DA9A07;
|
||||
}
|
||||
& > div:nth-child(2n+1) {
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
div {
|
||||
background-size: 100% 100%;
|
||||
width: 328px;
|
||||
height: 144px;
|
||||
margin-bottom: 32px;
|
||||
padding: 28px 32px;
|
||||
box-sizing: border-box;
|
||||
p {
|
||||
font-size: 30px;
|
||||
font-weight: 600;
|
||||
}
|
||||
h4 {
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
margin-top: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.handpick {
|
||||
padding: 0 32px;
|
||||
box-sizing: border-box;
|
||||
.title {
|
||||
margin: 32px 0;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.more {
|
||||
width: 200px;
|
||||
color: #687DA6;
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
.list {
|
||||
.card {
|
||||
margin-bottom: 24px;
|
||||
padding: 32px 24px;
|
||||
box-sizing: border-box;
|
||||
background: #FFF;
|
||||
border-radius: 12px;
|
||||
.title-info {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 34px;
|
||||
color: #333;
|
||||
letter-spacing: 0;
|
||||
line-height: 40px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.type-info {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 34px;
|
||||
color: #687DA6;
|
||||
line-height: 40px;
|
||||
span {
|
||||
display: inline-block;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 26px;
|
||||
color: #666;
|
||||
line-height: 40px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
}
|
||||
.top {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 28px;
|
||||
.left {
|
||||
width: calc(100% - 100px);
|
||||
p {
|
||||
overflow:hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
}
|
||||
}
|
||||
.right {
|
||||
width: 100px;
|
||||
text-align: right;
|
||||
img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
span {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
color: #687DA6;
|
||||
}
|
||||
}
|
||||
}
|
||||
.content-info {
|
||||
word-break: break-all;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
overflow: hidden;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 28px;
|
||||
color: #333;
|
||||
line-height: 42px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
.imgs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
background: #FFF;
|
||||
|
||||
image,
|
||||
video {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
margin: 0 12px 0 0;
|
||||
}
|
||||
image:nth-child(3n + 0),
|
||||
video:nth-child(3n + 0) {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
199
src/project/weiyang/AppNewFarmerBank/handpick.vue
Normal file
@@ -0,0 +1,199 @@
|
||||
<template>
|
||||
<div class="handpick">
|
||||
<div class="list" v-for="(item,index) in list" :key="index" @click="$linkTo(`./pickDetail?id=${item.id}`)">
|
||||
<div class="title-info" v-if="item.girdName">
|
||||
{{item.girdName}}
|
||||
</div>
|
||||
<div class="top">
|
||||
<div class="left" >
|
||||
<div class="type-info">{{item.createUserName}}<span>{{item.title}}</span></div>
|
||||
</div>
|
||||
<div class="right" @click.stop="upCount(item.id, index)">
|
||||
<img :src="item.upStatus == 0 ? 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan.png' : 'https://cdn.cunwuyun.cn/wxmp/fengdu/zan-active.png'" alt="">
|
||||
<span>{{ item.upCount || 0 }}</span><span v-if="item.upCount > 99">+</span>
|
||||
</div>
|
||||
</div>
|
||||
<p class="content-info">{{item.content}}</p>
|
||||
<div class="imgs" v-if="item.images.length">
|
||||
<image v-for="(img, i) in item.images" :key="i" class="banner" :src="img.url"/>
|
||||
</div>
|
||||
<div class="imgs" v-if="!item.images.length && item.videos.length">
|
||||
<image v-for="(video, i) in item.videos" :key="i" class="banner" :src="video.facePicture.toString()"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
export default {
|
||||
name: "handpick",
|
||||
appName: "精选动态",
|
||||
computed: {
|
||||
...mapState(['user'])
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
list: [],
|
||||
flag: false,
|
||||
current: 1,
|
||||
moduleId: ''
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getModule() {
|
||||
this.$instance.post(`/app/appintegraluserapply/queryModuleByName`).then(res => {
|
||||
if (res?.data) {
|
||||
this.moduleId = res.data
|
||||
this.getList()
|
||||
}
|
||||
})
|
||||
},
|
||||
getList() {
|
||||
this.$instance.post(`/app/appcontentinfo/list-web`, null, {
|
||||
params: {
|
||||
moduleId: this.moduleId,
|
||||
current: this.current,
|
||||
girdId: this.user.girdId,
|
||||
containContent: true,
|
||||
}
|
||||
}).then(res => {
|
||||
if (res?.data) {
|
||||
this.allList = res.data.records
|
||||
let newList = this.current==1? res.data.records : [...this.list, ...res.data.records]
|
||||
let mapList = newList.map(e => {
|
||||
return {
|
||||
...e,
|
||||
images: e?.files.filter(i => (i.postfix == '.jpg' || i.postfix == '.jpeg' || i.postfix == '.png')),
|
||||
videos: e?.files.filter(i => (i.postfix == '.mp4' || i.postfix == '.MP4')),
|
||||
}
|
||||
})
|
||||
this.list = mapList.map(v => {
|
||||
return {
|
||||
...v,
|
||||
images: v.images.length > 3 ? v.images.slice(0, 3) : v.images,
|
||||
videos: v.videos.length > 3 ? v.videos.slice(0, 3) : v.videos,
|
||||
upStatus: 0
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
// 点赞
|
||||
upCount(id,index) {
|
||||
if (this.flag) return
|
||||
|
||||
this.flag = true
|
||||
this.$instance.post(`/app/appcontentinfo/supportById?id=${id}`).then(res => {
|
||||
if (res?.code == 0) {
|
||||
this.flag = false
|
||||
this.list[index].upStatus = 1
|
||||
this.$u.toast(`点赞成功`)
|
||||
}
|
||||
}).finally(() => this.flag = false)
|
||||
},
|
||||
},
|
||||
onShow() {
|
||||
this.getModule()
|
||||
},
|
||||
onReachBottom() {
|
||||
this.current++
|
||||
this.getList()
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.handpick {
|
||||
padding: 24px 32px;
|
||||
box-sizing: border-box;
|
||||
.list {
|
||||
padding: 32px 24px;
|
||||
box-sizing: border-box;
|
||||
background: #FFF;
|
||||
border-radius: 12px;
|
||||
margin-bottom: 24px;
|
||||
.title-info {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 34px;
|
||||
color: #333;
|
||||
letter-spacing: 0;
|
||||
line-height: 40px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.type-info {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 34px;
|
||||
color: #687DA6;
|
||||
line-height: 40px;
|
||||
span {
|
||||
display: inline-block;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 26px;
|
||||
color: #666;
|
||||
line-height: 40px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
}
|
||||
.top {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 28px;
|
||||
.left {
|
||||
width: calc(100% - 100px);
|
||||
p {
|
||||
overflow:hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
}
|
||||
}
|
||||
.right {
|
||||
width: 100px;
|
||||
text-align: right;
|
||||
img {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
span {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
color: #687DA6;
|
||||
}
|
||||
}
|
||||
}
|
||||
.content-info {
|
||||
word-break: break-all;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
overflow: hidden;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 28px;
|
||||
color: #333;
|
||||
line-height: 42px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
.imgs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
background: #FFF;
|
||||
|
||||
image,
|
||||
video {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
margin: 0 12px 0 0;
|
||||
}
|
||||
image:nth-child(3n + 0),
|
||||
video:nth-child(3n + 0) {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
BIN
src/project/weiyang/AppNewFarmerBank/img/xz.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
src/project/weiyang/AppNewFarmerBank/img/xzh.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
src/project/weiyang/AppNewFarmerBank/integral.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
254
src/project/weiyang/AppNewFarmerBank/integralAdd.vue
Normal file
@@ -0,0 +1,254 @@
|
||||
<template>
|
||||
<div class="integralAdd">
|
||||
<div class="item">
|
||||
<div class="left">事件类型</div>
|
||||
<!-- <AiSelect class="right" :list="dictList" v-model="form.applyItemId"></AiSelect> -->
|
||||
<div class="right" @click="toSelectType">
|
||||
<span v-if="form.applyItemId">{{ form.applyItemName }}</span>
|
||||
<i v-else>请选择</i>
|
||||
<u-icon name="arrow-right" color="#ddd"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="items">
|
||||
<p>详情描述</p>
|
||||
<textarea v-model="form.content" :maxlength="300" placeholder="请输入详细描述..."></textarea>
|
||||
<div class="tips">{{ form.content.length }}/300</div>
|
||||
</div>
|
||||
<div class="items">
|
||||
<p>上传图片</p>
|
||||
<div class="upload">
|
||||
<AiUploader :def.sync="form.images" placeholder="上传图片" type="image" :limit="9" multiple></AiUploader>
|
||||
</div>
|
||||
<div class="tips left">可上传图片,最多上传9张。</div>
|
||||
</div>
|
||||
<div class="items">
|
||||
<p>上传视频</p>
|
||||
<div class="upload">
|
||||
<AiUploader :def.sync="form.videos" placeholder="上传视频" type="video" :limit="9" multiple :size="30 * 1024 * 1024"></AiUploader>
|
||||
</div>
|
||||
<div class="tips left">可上传视频,最大30M。</div>
|
||||
</div>
|
||||
|
||||
<div class="item">
|
||||
<div class="left">所属网格</div>
|
||||
<AiPagePicker type="gird" v-model="form.girdId" :params="{ formType: 2 }" @select="handleSelectGrid" nodeKey="id">
|
||||
<AiMore v-model="form.girdName"/>
|
||||
</AiPagePicker>
|
||||
</div>
|
||||
|
||||
<div class="btn-wrapper">
|
||||
<div class="btn" hover-class="text-hover" @click="submit">提交申请</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapActions, mapState} from "vuex";
|
||||
export default {
|
||||
name: "integralAdd",
|
||||
appName: '积分申请',
|
||||
data() {
|
||||
return {
|
||||
form: {
|
||||
applyItemId: '',
|
||||
applyIntegral: '',
|
||||
applyItemName: '',
|
||||
content: '',
|
||||
files: [],
|
||||
images: [],
|
||||
videos: [],
|
||||
girdId: '',
|
||||
girdName: '',
|
||||
},
|
||||
list: [],
|
||||
dictList: [],
|
||||
flag: false,
|
||||
id: '',
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
},
|
||||
onLoad(o) {
|
||||
if(o.id) {
|
||||
this.id = o.id
|
||||
this.getDetail()
|
||||
}
|
||||
this.$dict.load(['clapEventStatus'])
|
||||
this.getAuth()
|
||||
this.form.girdId = this.user.girdId
|
||||
this.form.girdName = this.user.girdName
|
||||
uni.$on('applyTypeSelect', (res) => {
|
||||
this.form.applyItemId = res[0].id
|
||||
this.form.applyItemName = res[0].ruleName
|
||||
this.form.applyIntegral = res[0].integral
|
||||
})
|
||||
},
|
||||
watch: {
|
||||
'form.applyItemId'(v) {
|
||||
if(v) {
|
||||
this.form.applyItemName = this.list.filter(e=> (e.id==v))[0].ruleName
|
||||
this.form.applyIntegral = this.list.filter(e => (e.id == v))[0].integral
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
...mapActions(['getUserInfo']),
|
||||
submit() {
|
||||
if(this.flag) return
|
||||
|
||||
if (!this.form.applyItemId) {
|
||||
return this.$u.toast('请选择事件类型')
|
||||
}
|
||||
|
||||
if (!this.form.content) {
|
||||
return this.$u.toast('请输入详细描述')
|
||||
}
|
||||
|
||||
if ((this.form.images.length + this.form.videos.length) > 9) {
|
||||
return this.$u.toast('图片和视频不得超过9个')
|
||||
} else {
|
||||
this.form.files = [...this.form.images,...this.form.videos]
|
||||
}
|
||||
|
||||
if (!this.form.girdId) {
|
||||
return this.$u.toast('请选择所属网格')
|
||||
}
|
||||
|
||||
this.flag = true
|
||||
this.$instance.post(`/app/appintegraluserapply/addOrUpdate`,{
|
||||
...this.form
|
||||
}).then(res=> {
|
||||
if(res?.data) {
|
||||
this.$u.toast('提交成功')
|
||||
uni.$emit('edit')
|
||||
setTimeout(()=> {
|
||||
uni.navigateBack()
|
||||
},500)
|
||||
}
|
||||
})
|
||||
},
|
||||
// 事件类型
|
||||
getType() {
|
||||
this.$instance.post(`/app/appintegralrule/listByFdAndGirdInfo`).then(res=> {
|
||||
if(res?.data) {
|
||||
this.list = res.data
|
||||
this.dictList = res.data.map(v => {
|
||||
return {
|
||||
value: v.id,
|
||||
label: v.ruleName
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
handleSelectGrid(v) {
|
||||
this.form.girdName = v.girdName
|
||||
this.form.girdId = v.girdId
|
||||
},
|
||||
getDetail() {
|
||||
this.$instance.post(`/app/appintegraluserapply/queryDetailById?id=${this.id}`).then(res => {
|
||||
if (res?.data) {
|
||||
this.form = res.data
|
||||
this.form.images = res.data.files.filter(e => (['jpeg', 'jpg', 'png'].includes(e.postfix.split('.')[1])))
|
||||
this.form.videos = res.data.files.filter(e => (['mp4', 'MOV'].includes(e.postfix.split('.')[1])))
|
||||
this.form.files = []
|
||||
}
|
||||
})
|
||||
},
|
||||
getAuth() {
|
||||
this.$nextTick(() => {
|
||||
this.getUserInfo('qujing')
|
||||
this.getType()
|
||||
})
|
||||
},
|
||||
toSelectType() {
|
||||
uni.navigateTo({url: `./selectType?applyItemId=${this.form.applyItemId}`})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.integralAdd {
|
||||
padding: 24px 0 120px 0;
|
||||
box-sizing: border-box;
|
||||
.item {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
background: #FFF;
|
||||
padding: 24px 32px;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 24px;
|
||||
.left {
|
||||
width: 250px;;
|
||||
}
|
||||
.right {
|
||||
width: calc(100% - 200px);
|
||||
text-align: right;
|
||||
font-size: 32px;
|
||||
span {
|
||||
display: inline-block;
|
||||
max-width: 400px;
|
||||
margin-right: 8px;
|
||||
color: #333333;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
i {
|
||||
display: inline-block;
|
||||
margin-right: 8px;
|
||||
color: #999999;
|
||||
}
|
||||
}
|
||||
::v-deep .AiSelect {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
.items {
|
||||
width: 100%;
|
||||
background: #FFF;
|
||||
margin-bottom: 24px;
|
||||
p {
|
||||
padding: 24px 32px;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid #EEEEEE;
|
||||
}
|
||||
textarea {
|
||||
padding: 24px 32px;
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.tips {
|
||||
padding: 12px 32px;
|
||||
box-sizing: border-box;
|
||||
text-align: right;
|
||||
color: #999999;
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.left {
|
||||
text-align: left;
|
||||
}
|
||||
.upload {
|
||||
padding: 24px 32px 0 32px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep .btn-wrapper {
|
||||
background: #FFF;
|
||||
}
|
||||
|
||||
::v-deep .btn-wrapper .btn {
|
||||
height: 80px;
|
||||
line-height: 80px;
|
||||
border-radius: 40px;
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
125
src/project/weiyang/AppNewFarmerBank/integralApply.vue
Normal file
@@ -0,0 +1,125 @@
|
||||
<template>
|
||||
<div class="integralApply">
|
||||
<div class="card-list" v-if="list.length">
|
||||
<div class="card" v-for="(item,index) in list" :key="index" @click="$linkTo(`./integralDetail?id=${item.id}`)">
|
||||
<div class="left">
|
||||
<div class="title">{{ item.applyItemName }}</div>
|
||||
<div class="time">{{ item.createTime.slice(0,16) }}</div>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="integral">+{{ item.applyIntegral }}</div>
|
||||
<div class="status" :class="item.status==0? 'status0':item.status==1? 'status1':'status2'">{{ $dict.getLabel('appIntegralApplyEventStatus',item.status) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty :description="`暂无数据`" class="emptyWrap" v-else/>
|
||||
<div class="btn-wrapper">
|
||||
<div class="btn" hover-class="text-hover" @click="toAdd">积分申请</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "integralApply",
|
||||
appName: "积分申请",
|
||||
data() {
|
||||
return {
|
||||
current: 1,
|
||||
list: [],
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
toAdd() {
|
||||
this.$linkTo('./integralAdd')
|
||||
},
|
||||
getList() {
|
||||
this.$instance.post(`/app/appintegraluserapply/listByAppletUser`,null,{
|
||||
params: {
|
||||
current: this.current,
|
||||
size: 10
|
||||
}
|
||||
}).then(res => {
|
||||
if (res?.data) {
|
||||
this.list = this.current==1 ? res.data.records: [...this.list, ...res.data.records]
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
onShow() {
|
||||
this.$dict.load('appIntegralApplyEventStatus').then(()=> {
|
||||
this.getList()
|
||||
})
|
||||
},
|
||||
onReachBottom() {
|
||||
this.current++
|
||||
this.getList()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.integralApply {
|
||||
padding: 24px 0 130px 0;
|
||||
box-sizing: border-box;
|
||||
|
||||
.card-list {
|
||||
background: #FFF;
|
||||
.card {
|
||||
padding: 32px 40px;
|
||||
box-sizing: border-box;
|
||||
border-bottom: 1px solid #EEEEEE;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.left {
|
||||
width: calc(100% - 200px);
|
||||
.title {
|
||||
font-size: 32px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.time {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
color: #666666;
|
||||
margin-top: 8px;
|
||||
}
|
||||
}
|
||||
.right {
|
||||
width: 200px;
|
||||
text-align: right;
|
||||
.integral {
|
||||
font-size: 38px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.status {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.status0 {
|
||||
color: #FF9A40;
|
||||
}
|
||||
.status1 {
|
||||
color: #5AAD6A;
|
||||
}
|
||||
.status2 {
|
||||
color: #CD413A;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep .btn-wrapper {
|
||||
background: #FFF;
|
||||
}
|
||||
|
||||
::v-deep .btn-wrapper .btn {
|
||||
height: 80px;
|
||||
line-height: 80px;
|
||||
border-radius: 40px;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
</style>
|
||||
158
src/project/weiyang/AppNewFarmerBank/integralDetail.vue
Normal file
@@ -0,0 +1,158 @@
|
||||
<template>
|
||||
<div class="integralDetail">
|
||||
<div class="detail">
|
||||
<div class="title">
|
||||
<h1>{{ info.applyItemName }}</h1>
|
||||
<p :class="info.status==0?'status0':info.status==1?'status1':'status2'">{{ $dict.getLabel('appIntegralApplyEventStatus', info.status) }}</p>
|
||||
</div>
|
||||
<div class="content">{{ info.content }}</div>
|
||||
<div class="imgs" v-if="images.length">
|
||||
<image v-for="(img, i) in images" @click="preview(img.url,images)" :key="i" class="banner" :src="img.url"/>
|
||||
</div>
|
||||
<div class="imgs" v-if="videos.length">
|
||||
<video v-for="(video, ins) in videos" :key="ins" class="file-img" :src="video.url"/>
|
||||
</div>
|
||||
|
||||
<div class="refuse" v-if="info.status == 2">
|
||||
<p><span></span>未通过理由</p>
|
||||
<div class="desc">{{ info.auditDesc }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="btn-wrapper" v-if="info.status==2">
|
||||
<div class="btn" hover-class="text-hover" @click="$linkTo(`./integralAdd?id=${info.id}`)">修改</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "integralDetail",
|
||||
appName: "积分申请详情",
|
||||
data() {
|
||||
return {
|
||||
id: '',
|
||||
info: {},
|
||||
images: [],
|
||||
videos: [],
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getDetail() {
|
||||
this.$instance.post(`/app/appintegraluserapply/queryDetailById?id=${this.id}`).then(res=> {
|
||||
if(res?.data) {
|
||||
this.info = res.data
|
||||
this.images = res.data.files.filter(e=> (['jpeg','jpg','png', 'JPG'].includes(e.postfix.split('.')[1])))
|
||||
this.videos = res.data.files.filter(e => (['mp4', 'MP4', 'MOV'].includes(e.postfix.split('.')[1])))
|
||||
}
|
||||
})
|
||||
},
|
||||
preview(url, imgs) {
|
||||
uni.previewImage({
|
||||
urls: imgs.map((v) => v.url),
|
||||
current: url,
|
||||
})
|
||||
},
|
||||
},
|
||||
onLoad(o) {
|
||||
this.id = o.id
|
||||
this.getDetail()
|
||||
uni.$on('edit',()=> {
|
||||
this.getDetail()
|
||||
})
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.integralDetail {
|
||||
padding: 24px 0 120px 0;
|
||||
|
||||
.detail {
|
||||
.title {
|
||||
padding: 32px 32px;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
background: #FFF;
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
font-weight: 600;
|
||||
}
|
||||
p {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.status0 {
|
||||
color: #FF9A40;
|
||||
}
|
||||
.status1 {
|
||||
color: #5AAD6A;
|
||||
}
|
||||
.status2 {
|
||||
color: #CD413A;
|
||||
}
|
||||
}
|
||||
.content {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
background: #FFF;
|
||||
padding: 0 32px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.imgs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
padding: 20px 32px;
|
||||
box-sizing: border-box;
|
||||
background: #FFF;
|
||||
|
||||
image,
|
||||
video {
|
||||
width: 226px;
|
||||
height: 226px;
|
||||
margin: 0 4px 4px 0;
|
||||
}
|
||||
image:nth-child(3n + 0),
|
||||
video:nth-child(3n + 0) {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
.refuse {
|
||||
background: #FFF;
|
||||
padding: 32px 32px;
|
||||
box-sizing: border-box;
|
||||
margin-top: 24px;
|
||||
p {
|
||||
margin-bottom: 32px;
|
||||
font-size: 30px;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
span {
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: #CD413A;
|
||||
border-radius: 50%;
|
||||
margin-right: 8px;
|
||||
}
|
||||
}
|
||||
.desc {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
color: #666666;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep .btn-wrapper {
|
||||
background: #FFF;
|
||||
}
|
||||
|
||||
::v-deep .btn-wrapper .btn {
|
||||
height: 80px;
|
||||
line-height: 80px;
|
||||
border-radius: 40px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
480
src/project/weiyang/AppNewFarmerBank/integralRank.vue
Normal file
@@ -0,0 +1,480 @@
|
||||
<template>
|
||||
<div class="integralRank" v-if="pageShow">
|
||||
<div class="credit-points">
|
||||
<div class="fixed-top">
|
||||
<div class="header-tab">
|
||||
<div class="tab-item" :class="{ active: tabIndex == index }" v-for="(item, index) in tabList" :key="index" @click="tabClick(index)">{{ item }}
|
||||
<span class="active-line" v-if="tabIndex == index"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="rank">
|
||||
<!-- <u-subsection :list="typeList" :current="typeCurrent" active-color="#4181FF" inactive-color="#666666" :bold="false" @change="typeChange"></u-subsection> -->
|
||||
<div class="content-subsection">
|
||||
<div class="type-subsection">
|
||||
<div class="item" :class="index == typeCurrent ? 'item-active' : ''" v-for="(item, index) in typeList" :key="index" @click="typeChange(index)">{{ item }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faultage"></div>
|
||||
<div class="header-content" v-if="userInfo.length">
|
||||
<div class="item">
|
||||
<span class="item-num">{{ inx + 1 }}</span>
|
||||
<div class="user-img-content" v-if="userInfo[0].avatar_url">
|
||||
<image :src="userInfo[0].avatar_url" alt="" class="user-img mar-b4" />
|
||||
</div>
|
||||
<div class="user-name-bg mar-b4 mar-r24" v-else>{{ formatName(userInfo[0].name) }}</div>
|
||||
<span class="item-name">{{ userInfo[0].name }}</span>
|
||||
<span class="item-point">{{ userInfo[0].integral }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faultage"></div>
|
||||
<div v-if="list && list.length">
|
||||
<div class="ranking-content">
|
||||
<div class="item" v-if="list.length > 1">
|
||||
<img src="https://cdn.cunwuyun.cn/dvcp/credit/2.png" alt="" class="top-img">
|
||||
<img :src="list[1].avatar_url" alt="" class="user-img mar-b4" v-if="list[1].avatar_url">
|
||||
<div class="user-name-bg mar-b4" v-else>{{ formatName(list[1].name) }}</div>
|
||||
<p class="user-name mar-b8">{{ list[1].name }}</p>
|
||||
<p class="item-num">{{ list[1].integral }}</p>
|
||||
</div>
|
||||
<div class="item-top item" v-if="list.length > 0">
|
||||
<img src="https://cdn.cunwuyun.cn/dvcp/credit/1.png" alt="" class="top-img-one">
|
||||
<img :src="list[0].avatar_url" alt="" class="user-img mar-b4" v-if="list[0].avatar_url">
|
||||
<div class="user-name-bg mar-b4" v-else>{{ formatName(list[0].name) }}</div>
|
||||
<p class="user-name mar-b8">{{ list[0].name }}</p>
|
||||
<p class="item-num">{{ list[0].integral }}</p>
|
||||
</div>
|
||||
<div class="item" v-if="list.length > 2">
|
||||
<img src="https://cdn.cunwuyun.cn/dvcp/credit/3.png" alt="" class="top-img">
|
||||
<img :src="list[2].avatar_url" alt="" class="user-img mar-b4" v-if="list[2].avatar_url">
|
||||
<div class="user-name-bg mar-b4" v-else>{{ formatName(list[2].name) }}</div>
|
||||
<p class="user-name mar-b8">{{ list[2].name }}</p>
|
||||
<p class="item-num">{{ list[2].integral }}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ranking-list">
|
||||
<div class="item" v-for="(item, index) in list" :key="index" v-if="index > 2">
|
||||
<span class="item-num">{{ index+1 }}</span>
|
||||
<img :src="item.avatar_url" alt="" class="user-img mar-b4" v-if="item.avatar_url">
|
||||
<div class="user-name-bg mar-b4 mar-r24" v-else>{{ formatName(item.name) }}</div>
|
||||
<span class="item-name">{{ item.name }}</span>
|
||||
<span class="item-point">{{ item.integral }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!list.length"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
export default {
|
||||
name: "integralRank",
|
||||
appName: "积分排行",
|
||||
computed: {
|
||||
...mapState(['user', 'token'])
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
// tabList: ['总榜','月榜','周榜'],
|
||||
tabList: ['个人排行', '家庭排行'],
|
||||
tabIndex: 0,
|
||||
current: 1,
|
||||
userInfo: {},
|
||||
inx: 0,
|
||||
pageShow: false,
|
||||
list: [],
|
||||
typeList: ['总榜', '月榜', '周榜'],
|
||||
typeCurrent: 0
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
this.getList()
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user', 'token'])
|
||||
},
|
||||
methods: {
|
||||
tabClick(index) {
|
||||
this.tabIndex = index
|
||||
this.typeCurrent = 0
|
||||
this.getList()
|
||||
},
|
||||
getList() {// 积分排行
|
||||
this.list = {}
|
||||
var url = this.tabIndex == 1 ? `/app/appintegraluser/integralSortFDHouse` : `/app/appintegraluser/integralSortFD` //tabIndex: 1家庭 0个人
|
||||
this.$instance.post(url+`?type=${this.typeCurrent}&size=50&areaId=${this.user.areaId}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.list = res.data.map(e=> ({...e, index: e.index}))
|
||||
this.userInfo = res.data.filter(e => e.open_id === this.user.openId)
|
||||
this.inx = res.data.findIndex(e=> e.open_id == this.user.openId)
|
||||
this.pageShow = true
|
||||
}
|
||||
})
|
||||
},
|
||||
formatName(name) {
|
||||
if (name == undefined) {
|
||||
return
|
||||
}
|
||||
return name.substr(name.length - 2, name.length > 2 ? (name.length - 1) : name.length)
|
||||
},
|
||||
typeChange(index) {
|
||||
this.typeCurrent = index
|
||||
this.getList()
|
||||
}
|
||||
},
|
||||
onReachBottom() {
|
||||
// if (this.list.length < 50) {
|
||||
// this.current++;
|
||||
// this.getList()
|
||||
// }
|
||||
},
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
@import "~dvcp-wui/common";
|
||||
|
||||
.integralRank {
|
||||
width: 100vw;
|
||||
overflow-x: hidden;
|
||||
background-color: #f3f6f9;
|
||||
|
||||
::v-deep .header-tab {
|
||||
background: #FFF;
|
||||
height: 116px;
|
||||
padding: 34px 0 42px 0;
|
||||
border-bottom: 1px solid #eee;
|
||||
.tab-item {
|
||||
color: #222222;
|
||||
font-size: 30px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.active {
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.active-line {
|
||||
background: #2D7DFF;
|
||||
top: 82px;
|
||||
}
|
||||
}
|
||||
|
||||
.fixed-top {
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.rank {
|
||||
width: 100vw;
|
||||
overflow-x: hidden;
|
||||
height: calc(100% - 156px);
|
||||
margin-top: 116px;
|
||||
|
||||
.content-subsection {
|
||||
width: 100%;
|
||||
height: 116px;
|
||||
padding: 22px 28px;
|
||||
box-sizing: border-box;
|
||||
background: #FFFF;
|
||||
|
||||
.type-subsection {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 4px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 36px;
|
||||
background-color: #f6f7f9;
|
||||
display: flex;
|
||||
.item {
|
||||
flex: 1;
|
||||
line-height: 64px;
|
||||
text-align: center;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-weight: 400;
|
||||
font-size: 28px;
|
||||
color: #666;
|
||||
}
|
||||
.item-active {
|
||||
background: #FFF;
|
||||
border-radius: 32px;
|
||||
color: #4181FF;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.header-content {
|
||||
.item {
|
||||
width: 100%;
|
||||
height: 120px;
|
||||
line-height: 120px;
|
||||
background: #FFF;
|
||||
padding: 0 64px;
|
||||
box-sizing: border-box;
|
||||
// border: 4px solid #2d7dffff;
|
||||
display: flex;
|
||||
|
||||
.item-num {
|
||||
display: inline-block;
|
||||
width: 68px;
|
||||
height: 112px;
|
||||
line-height: 112px;
|
||||
color: #858594;
|
||||
font-size: 28px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.user-img-content {
|
||||
display: inline-block;
|
||||
width: 92px;
|
||||
height: 92px;
|
||||
padding: 4px;
|
||||
box-sizing: border-box;
|
||||
border-radius: 50%;
|
||||
border: 1px solid #2D7DFF;
|
||||
margin: 14px 24px 0 0;
|
||||
}
|
||||
|
||||
.item-name {
|
||||
color: #333;
|
||||
font-size: 30px;
|
||||
display: inline-block;
|
||||
width: 240px;
|
||||
}
|
||||
|
||||
.item-point {
|
||||
display: inline-block;
|
||||
width: calc(100% - 430px);
|
||||
text-align: right;
|
||||
font-size: 30px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.mar-r24 {
|
||||
margin-right: 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.faultage {
|
||||
width: 100%;
|
||||
height: 32px;
|
||||
background: #f3f5f7;
|
||||
}
|
||||
|
||||
.ranking-content {
|
||||
padding: 94px 30px 0;
|
||||
background: #fff;
|
||||
|
||||
.item {
|
||||
display: inline-block;
|
||||
width: 216px;
|
||||
box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 12px;
|
||||
padding: 40px 0 76px 0;
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
|
||||
.user-name {
|
||||
font-size: 30px;
|
||||
font-family: PingFang-SC-Medium, PingFang-SC;
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
line-height: 42px;
|
||||
}
|
||||
|
||||
.item-num {
|
||||
font-size: 46px;
|
||||
font-weight: 6000;
|
||||
color: #2C51CE;
|
||||
line-height: 54px;
|
||||
}
|
||||
|
||||
.top-img {
|
||||
width: 100%;
|
||||
height: 34px;
|
||||
position: absolute;
|
||||
top: -11px;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.item-top {
|
||||
margin: -46px 20px 0;
|
||||
vertical-align: top;
|
||||
height: 370px;
|
||||
|
||||
.user-img {
|
||||
width: 104px;
|
||||
height: 104px;
|
||||
}
|
||||
|
||||
.user-name-bg {
|
||||
width: 104px;
|
||||
height: 104px;
|
||||
border-radius: 50%;
|
||||
background-color: #4E8EEE;
|
||||
font-size: 28px;
|
||||
line-height: 104px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.top-img-one {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: -22px;
|
||||
left: 0;
|
||||
height: 46px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ranking-list {
|
||||
background-color: #fff;
|
||||
|
||||
.item {
|
||||
width: 100%;
|
||||
height: 120px;
|
||||
line-height: 120px;
|
||||
background: #FFF;
|
||||
padding: 0 64px;
|
||||
box-sizing: border-box;
|
||||
|
||||
.item-num {
|
||||
display: inline-block;
|
||||
width: 68px;
|
||||
color: #858594;
|
||||
font-size: 28px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.user-img {
|
||||
margin-right: 24px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.item-name {
|
||||
color: #333;
|
||||
font-size: 30px;
|
||||
display: inline-block;
|
||||
width: 240px;
|
||||
}
|
||||
|
||||
.item-point {
|
||||
display: inline-block;
|
||||
width: 210px;
|
||||
text-align: right;
|
||||
font-size: 30px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.mar-r24 {
|
||||
margin-right: 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.user-img {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.user-name-bg {
|
||||
display: inline-block;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 50%;
|
||||
background-color: #4E8EEE;
|
||||
font-size: 28px;
|
||||
line-height: 80px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.mar-b4 {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.mar-b8 {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.detail-content {
|
||||
width: 690px;
|
||||
background: #FFF;
|
||||
border-radius: 16px;
|
||||
margin: 0 0 0 32px;
|
||||
padding: 30px 30px 94px;
|
||||
box-sizing: border-box;
|
||||
|
||||
.title {
|
||||
font-size: 34px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
line-height: 48px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.item {
|
||||
padding: 34px 0 32px 0;
|
||||
border-bottom: 2px solid #ddd;
|
||||
display: flex;
|
||||
|
||||
.item-info {
|
||||
width: 500px;
|
||||
|
||||
p {
|
||||
word-break: break-all;
|
||||
font-size: 32px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #333;
|
||||
line-height: 44px;
|
||||
}
|
||||
|
||||
span {
|
||||
display: inline-block;
|
||||
margin-top: 8px;
|
||||
font-size: 24px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
font-weight: 400;
|
||||
color: #999;
|
||||
line-height: 34px;
|
||||
}
|
||||
}
|
||||
|
||||
.item-num {
|
||||
width: calc(100% - 500px);
|
||||
text-align: right;
|
||||
font-size: 36px;
|
||||
font-family: PingFangSC-Semibold, PingFang SC;
|
||||
font-weight: 600;
|
||||
line-height: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.color-0 {
|
||||
color: #2C51CE !important;
|
||||
}
|
||||
|
||||
.color-1 {
|
||||
color: #E6736E !important;
|
||||
}
|
||||
|
||||
.fixed-top {
|
||||
z-index: 999;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
206
src/project/weiyang/AppNewFarmerBank/integralTask.vue
Normal file
@@ -0,0 +1,206 @@
|
||||
<template>
|
||||
<div class="integralTask">
|
||||
<div class="fix-top">
|
||||
<div class="img-bg">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/img-jifenlist.png" alt="">
|
||||
</div>
|
||||
<div class="title">任务大厅</div>
|
||||
</div>
|
||||
<div class="card-list" v-if="list.length">
|
||||
<div class="card" v-for="(item,index) in list" :key="index" @click="$linkTo('./taskDetail?id='+item.id)">
|
||||
<h4>{{ item.title }}</h4>
|
||||
<p>
|
||||
<span>{{ item.detail }}</span>
|
||||
</p>
|
||||
<div class="imgs" v-if="item.files">
|
||||
<image mode="aspectFill" v-for="(e, i) in item.files" :key="i" :src="e.url"/>
|
||||
</div>
|
||||
<div class="time">
|
||||
<div class="goin" v-if="item.intoBegintime && item.intoEndtime">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/ic-jinchangshijian.png" alt="">
|
||||
<div class="label">{{ item.type == 0 ? '进场时间:' : '报名时间:' }}</div>
|
||||
<div class="value">{{ item.intoBegintime.substring(0, 16)}} 至 {{ item.intoEndtime.substring(0, 16) }}</div>
|
||||
</div>
|
||||
<div class="exit" v-if="item.exitBegintime && item.exitEndtime && item.type == 0">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/ic-lichangshijian.png" alt="">
|
||||
<div class="label">离场时间:</div>
|
||||
<div class="value">{{ item.exitBegintime.substring(0, 16) }} 至 {{ item.exitEndtime.substring(0, 16) }}</div>
|
||||
</div>
|
||||
<div class="type">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/ic-renwuleixing.png" alt="">
|
||||
<div class="label">任务类型:</div>
|
||||
<div class="value">{{ $dict.getLabel('fdIntegralTaskType', item.type) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty :description="`暂无任务`" class="emptyWrap" v-else/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
export default {
|
||||
name: 'integralTask',
|
||||
appName: '积分任务',
|
||||
data() {
|
||||
return {
|
||||
list: [],
|
||||
current: 1,
|
||||
files: [],
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user', 'token'])
|
||||
},
|
||||
methods: {
|
||||
getList() {
|
||||
this.$instance.post('/app/appintegraltask/list',null,{
|
||||
params: {
|
||||
current: this.current,
|
||||
status: 1,
|
||||
}
|
||||
}).then(res=> {
|
||||
if(res?.data) {
|
||||
const arr = res.data.records.map(e => {
|
||||
return {
|
||||
...e,
|
||||
files: e.files.length > 3 ? e.files.slice(0, 3) : e.files
|
||||
}
|
||||
})
|
||||
this.$nextTick(()=> {
|
||||
this.list = this.current > 1 ? [...this.list, ...arr] : arr
|
||||
})
|
||||
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
onShow() {
|
||||
uni.setNavigationBarTitle({
|
||||
title: '积分任务'
|
||||
});
|
||||
this.$dict.load(['fdIntegralTaskType']).then(() => {
|
||||
this.getList()
|
||||
})
|
||||
},
|
||||
onReachBottom() {
|
||||
this.current++
|
||||
this.getList()
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.integralTask {
|
||||
padding-top: 292px;
|
||||
.fix-top {
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 999;
|
||||
.img-bg {
|
||||
width: 100%;
|
||||
height: 216px;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.title {
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
color: #222222;
|
||||
padding: 32px 32px 0;
|
||||
background: #f3f5f7;
|
||||
z-index: 999;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.card-list {
|
||||
padding: 24px 32px;
|
||||
box-sizing: border-box;
|
||||
.card {
|
||||
background: #FFF;
|
||||
color: #333333;
|
||||
border-radius: 16px;
|
||||
margin-bottom: 24px;
|
||||
h4 {
|
||||
padding: 24px 24px 0;
|
||||
box-sizing: border-box;
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
p {
|
||||
padding: 16px 24px;
|
||||
box-sizing: border-box;
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
span {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
}
|
||||
}
|
||||
.imgs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
padding: 16px 24px;
|
||||
box-sizing: border-box;
|
||||
|
||||
image {
|
||||
height: 208px;
|
||||
width: 33.33%;
|
||||
padding-right: 12px;
|
||||
margin-bottom: 12px;
|
||||
box-sizing: border-box;
|
||||
|
||||
&:nth-of-type(3n) {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.time {
|
||||
padding: 0 24px 24px;
|
||||
box-sizing: border-box;
|
||||
border-top: 2px solid #EEEEEE;
|
||||
& > div {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.goin,
|
||||
.exit,
|
||||
.type {
|
||||
display: flex;
|
||||
img {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
align-self: center;
|
||||
}
|
||||
.label {
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
color: #666666;
|
||||
align-self: center;
|
||||
width: 130px;
|
||||
}
|
||||
.value {
|
||||
color: #333333;
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
width: calc(100% - 160px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
BIN
src/project/weiyang/AppNewFarmerBank/integral_select.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
125
src/project/weiyang/AppNewFarmerBank/pickDetail.vue
Normal file
@@ -0,0 +1,125 @@
|
||||
<template>
|
||||
<div class="pickDetail">
|
||||
<div class="container">
|
||||
<div class="title-info" v-if="data.girdName">
|
||||
{{data.girdName}}
|
||||
</div>
|
||||
<div class="type-info">{{data.createUserName}}<span>{{data.title}}</span></div>
|
||||
<div class="content-info">{{ data.content }}</div>
|
||||
<div class="imgs" v-if="images.length">
|
||||
<image v-for="(img, i) in images" @click="preview(img.url, images)" :key="i" class="banner" :src="img.url"/>
|
||||
</div>
|
||||
<div class="imgs" v-if="videos.length">
|
||||
<video v-for="(video, ins) in videos" :key="ins" class="file-img" :src="video.url"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'pickDetail',
|
||||
appName: '精选动态',
|
||||
data() {
|
||||
return {
|
||||
images: [],
|
||||
videos: [],
|
||||
id: '',
|
||||
data: {}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getDetail() {
|
||||
this.$instance.post(`/app/appcontentinfo/queryDetailById?id=${this.id}`).then(res=> {
|
||||
if(res?.data) {
|
||||
this.data = res.data
|
||||
this.images = res.data.files.filter(e => (['jpeg', 'jpg', 'png', 'JPG'].includes(e.postfix.split('.')[1])))
|
||||
this.videos = res.data.files.filter(e => (['mp4','MP4', 'MOV'].includes(e.postfix.split('.')[1])))
|
||||
}
|
||||
})
|
||||
},
|
||||
preview(url, imgs) {
|
||||
uni.previewImage({
|
||||
urls: imgs.map((v) => v.url),
|
||||
current: url,
|
||||
})
|
||||
},
|
||||
|
||||
},
|
||||
onLoad(o) {
|
||||
this.id = o.id;
|
||||
this.getDetail()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.pickDetail {
|
||||
padding-top: 32px;
|
||||
box-sizing: border-box;
|
||||
.container {
|
||||
padding: 32px;
|
||||
box-sizing: border-box;
|
||||
background: #FFF;
|
||||
.title-info {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 34px;
|
||||
color: #333;
|
||||
letter-spacing: 0;
|
||||
line-height: 40px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.type-info {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 34px;
|
||||
color: #687DA6;
|
||||
line-height: 40px;
|
||||
margin-bottom: 28px;
|
||||
span {
|
||||
display: inline-block;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 26px;
|
||||
color: #666;
|
||||
line-height: 40px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
}
|
||||
.title {
|
||||
font-size: 34px;
|
||||
font-weight: 600;
|
||||
color: #333333;
|
||||
}
|
||||
.avatar {
|
||||
font-size: 26px;
|
||||
font-weight: 400;
|
||||
color: #999999;
|
||||
margin-top: 16px;
|
||||
}
|
||||
.content-info {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
color: #333333;
|
||||
background: #FFF;
|
||||
padding: 0;
|
||||
}
|
||||
.imgs {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 24px;
|
||||
background: #FFF;
|
||||
|
||||
image,
|
||||
video {
|
||||
width: 226px;
|
||||
height: 226px;
|
||||
margin: 0 4px 4px 0;
|
||||
}
|
||||
image:nth-child(3n + 0),
|
||||
video:nth-child(3n + 0) {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
155
src/project/weiyang/AppNewFarmerBank/selectType.vue
Normal file
@@ -0,0 +1,155 @@
|
||||
<template>
|
||||
<div class="selectType">
|
||||
<div class="user-list">
|
||||
<template v-if="list.length>0">
|
||||
<div class="item" v-for="(item, index) in list" :key="index">
|
||||
<div class="select-img" @click="checkClick(index)">
|
||||
<img :src="item.isCheck ? checkIcon : cirIcon" alt="">
|
||||
</div>
|
||||
<div class="user-info">
|
||||
{{ item.ruleName }}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<AiEmpty v-else/>
|
||||
</div>
|
||||
<div class="pad-b118"></div>
|
||||
<div class="footer">
|
||||
<div class="btn" @click="confirm">确定选择</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
appName:"事件类型选择",
|
||||
name: "selectType",
|
||||
data() {
|
||||
return {
|
||||
list: [],
|
||||
cirIcon: require('./img/xz.png'),
|
||||
checkIcon: require('./img/xzh.png'),
|
||||
applyItemId: ''
|
||||
}
|
||||
},
|
||||
onLoad(option) {
|
||||
this.applyItemId = option.applyItemId
|
||||
this.getList()
|
||||
},
|
||||
methods: {
|
||||
getList() {
|
||||
this.$instance.post(`/app/appintegralrule/listByFdAndGirdInfo`).then(res => {
|
||||
if (res.code == 0) {
|
||||
res.data.map((item) => {
|
||||
if(item.id == this.applyItemId) {
|
||||
item.isCheck = true
|
||||
}else {
|
||||
item.isCheck = false
|
||||
}
|
||||
|
||||
})
|
||||
this.list = res.data
|
||||
}
|
||||
})
|
||||
},
|
||||
checkClick(index) {
|
||||
this.list.map((item) => {
|
||||
item.isCheck = false
|
||||
})
|
||||
this.list[index].isCheck = true
|
||||
},
|
||||
confirm() {
|
||||
let checkList = []
|
||||
this.list.map((item) => {
|
||||
if (item.isCheck) {
|
||||
checkList.push(item)
|
||||
}
|
||||
})
|
||||
if (!checkList.length) {
|
||||
return this.$u.toast('请先选择事件类型')
|
||||
} else {
|
||||
uni.navigateBack({
|
||||
success: () => {
|
||||
uni.$emit("applyTypeSelect", checkList)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.selectType {
|
||||
::v-deep .AiTopFixed .u-search {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.pad-b118 {
|
||||
padding-bottom: 118px;
|
||||
}
|
||||
|
||||
.user-list {
|
||||
background-color: #fff;
|
||||
|
||||
.item {
|
||||
.select-img {
|
||||
display: inline-block;
|
||||
|
||||
img {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
margin: 12px 36px 12px 30px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
.user-info {
|
||||
display: inline-block;
|
||||
padding: 20px 0 20px 0;
|
||||
width: calc(100% - 114px);
|
||||
height: 100%;
|
||||
border-bottom: 1px solid #E4E5E6;
|
||||
font-size: 36px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
line-height: 74px;
|
||||
|
||||
img {
|
||||
width: 74px;
|
||||
height: 74px;
|
||||
border-radius: 8px;
|
||||
margin-right: 34px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footer {
|
||||
width: 100%;
|
||||
height: 118px;
|
||||
background: #F4F8FB;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
text-align: right;
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
width: 192px;
|
||||
height: 80px;
|
||||
line-height: 80px;
|
||||
background: #1365DD;
|
||||
border-radius: 4px;
|
||||
text-align: center;
|
||||
font-size: 32px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
color: #FFF;
|
||||
margin: 20px 34px 0 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
96
src/project/weiyang/AppNewFarmerBank/signIn.vue
Normal file
@@ -0,0 +1,96 @@
|
||||
<template>
|
||||
<div class="signIn">
|
||||
<div class="card">
|
||||
<div class="imgs">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/img-qiandaochenggong.png" alt="">
|
||||
</div>
|
||||
<p class="status">今日已完成签到</p>
|
||||
<h4>积分<span>+{{ data.changeIntegral || 0}}</span></h4>
|
||||
<div class="times">
|
||||
<div>时间</div>
|
||||
<div class="value">{{ data.createTime.slice(0,16) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
name: 'signIn',
|
||||
appName: '签到',
|
||||
data() {
|
||||
return {
|
||||
showPage: false,
|
||||
data: {},
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
sign() {
|
||||
this.$instance.post(`/app/appwechatsigninfo/sign`,{}).then(res=> {
|
||||
if(res?.data) {
|
||||
this.data = res.data
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
onShow() {
|
||||
this.sign()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.signIn {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
padding: 32px;
|
||||
box-sizing: border-box;
|
||||
.card {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #FFFFFF;
|
||||
border-radius: 16px;
|
||||
padding-top: 120px;
|
||||
box-sizing: border-box;
|
||||
|
||||
.imgs {
|
||||
margin: 0 auto;
|
||||
width: 238px;
|
||||
height: 238px;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.status {
|
||||
margin-top: 72px;
|
||||
text-align: center;
|
||||
font-size: 36px;
|
||||
font-weight: 500;
|
||||
}
|
||||
h4 {
|
||||
text-align: center;
|
||||
margin-top: 24px;
|
||||
color: #666666;
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
span {
|
||||
font-size: 52rpx;
|
||||
font-weight: 600;
|
||||
color: #5AAD6A;
|
||||
}
|
||||
}
|
||||
.times {
|
||||
width: 70%;
|
||||
border-top: 2px solid #f5f5f5;
|
||||
margin: 70px auto 0;
|
||||
padding-top: 72px;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
.value {
|
||||
color: #666666;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
534
src/project/weiyang/AppNewFarmerBank/taskDetail.vue
Normal file
@@ -0,0 +1,534 @@
|
||||
<template>
|
||||
<div class="page">
|
||||
<div class="taskDetail" v-if="showPages">
|
||||
<div class="task">
|
||||
<h4>{{ info.title }}</h4>
|
||||
<p>{{ info.detail }}</p>
|
||||
<div class="imgs" v-if="info.files">
|
||||
<image :src="item.url" v-for="(item, index) in info.files" :key="index" mode="aspectFill" @click="preview(item.url)" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="info">
|
||||
<div class="title">基础信息</div>
|
||||
<div class="items">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/ic-dizhi.png" alt="">
|
||||
<div class="items-info">
|
||||
<label>活动地点:</label>
|
||||
<div class="value">{{ info.address }}</div>
|
||||
</div>
|
||||
<div class="address" @click="toAddress">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/ic-daohang.png" alt="">
|
||||
<i>导航</i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/ic-renwuleixing.png" alt="">
|
||||
<div class="item-info">
|
||||
<label>任务类型:</label>
|
||||
<div class="value">{{ $dict.getLabel('fdIntegralTaskType', info.type) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/ic-jinchangshijian.png" alt="">
|
||||
<div class="item-info" v-if="info.intoBegintime && info.intoEndtime">
|
||||
<label>{{ info.type == 0 ? '进场时间:' : '报名时间:' }}</label>
|
||||
<div class="value">{{ info.intoBegintime.substring(0, 16) }} 至 {{ info.intoEndtime.substring(0, 16) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item" v-if="info.type == 0">
|
||||
<img src="https://cdn.cunwuyun.cn/fengdu/ic-lichangshijian.png" alt="">
|
||||
<div class="item-info" v-if="info.exitBegintime && info.exitEndtime">
|
||||
<label>离场时间:</label>
|
||||
<div class="value">{{ info.exitBegintime.substring(0, 16) }} 至 {{ info.exitEndtime.substring(0, 16) }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-wrapper" v-if="info.type == 1">
|
||||
<div class="btn" @click="signUp" hover-class="text-hover" :class="baoming == 1 ? 'opacity' : baoming == 0 ? 'gray' : ''">
|
||||
<span v-if="baoming == 2 || baoming == 0">报名得积分<span v-if="baoming == 2">/积分+{{ info.enrollIntegral }}</span></span>
|
||||
<span v-if="baoming == 1">已报名</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-wrapper" v-if="info.type == 0">
|
||||
<div class="btn" @click="clockIn" hover-class="text-hover" :class="isClock == 0 ? 'gray' : isClock == 3 ? 'gray' : isClock == 2 ? 'opacity' : isClock == 4 ? 'opacity' : ''">
|
||||
<div class="daka">{{ dkqd }}<span v-if="isClock == 1">/积分+{{ intoIntegral }}</span></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiLogin ref="login" @success="getAuth()"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState, mapActions } from 'vuex'
|
||||
var QQMapWX = require('./libs/qqmap-wx-jssdk.js')
|
||||
export default {
|
||||
name: "taskDetail",
|
||||
appName: "任务详情",
|
||||
data() {
|
||||
return {
|
||||
info: {},
|
||||
id: '',
|
||||
latitude: '',
|
||||
longitude: '',
|
||||
address: '',
|
||||
qqmapsdk: null,
|
||||
distance: 100,
|
||||
flag: false,
|
||||
showPages: false,
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user', 'token']),
|
||||
intoIntegral() {
|
||||
const times = new Date().getTime()
|
||||
const inSTimes = new Date(this.info.intoBegintime?.replaceAll('-', '/')).getTime()
|
||||
const inETimes = new Date(this.info.intoEndtime?.replaceAll('-', '/')).getTime()
|
||||
const outSTimes = new Date(this.info.exitBegintime?.replaceAll('-', '/')).getTime()
|
||||
const outETimes = new Date(this.info.exitEndtime?.replaceAll('-', '/')).getTime()
|
||||
|
||||
if (times > inSTimes && times < inETimes) {
|
||||
return this.info.intoIntegral
|
||||
}
|
||||
|
||||
if (times > outSTimes && times < outETimes) {
|
||||
return this.info.exitIntegral
|
||||
}
|
||||
|
||||
return 0
|
||||
},
|
||||
isClock() {
|
||||
const times = new Date().getTime()
|
||||
const inSTimes = new Date(this.info.intoBegintime?.replaceAll('-', '/')).getTime()
|
||||
const inETimes = new Date(this.info.intoEndtime?.replaceAll('-', '/')).getTime()
|
||||
const outSTimes = new Date(this.info.exitBegintime?.replaceAll('-', '/')).getTime()
|
||||
const outETimes = new Date(this.info.exitEndtime?.replaceAll('-', '/')).getTime()
|
||||
// 不符合条件(任务未开始、已经结束..)
|
||||
if (times < inSTimes || times > outETimes || (inETimes < times && times < outSTimes)) {
|
||||
return 0
|
||||
}
|
||||
// 在打卡范围内未打卡
|
||||
if (this.info.clockRange > this.distance && (!this.info.intoClock && (inSTimes < times && times < inETimes)) || !this.info.exitClock && (outSTimes < times && times < outETimes)) {
|
||||
return 1
|
||||
}
|
||||
// 已打卡(打卡距离内 && 打卡时间内)
|
||||
if(this.info.clockRange > this.distance && (this.info.intoClock && (inSTimes < times && times < inETimes)) || (this.info.exitClock && outSTimes < times && times < outETimes)) {
|
||||
return 2
|
||||
}
|
||||
// 没在指定范围
|
||||
if(this.distance > this.info.clockRange) {
|
||||
return 3
|
||||
}
|
||||
// 在打卡范围内,没有积分
|
||||
if (this.info.clockRange > this.distance && (this.info.intoClock && (inSTimes < times && times < inETimes) && this.info.intoIntegral) || (this.info.exitClock && outSTimes < times && times < outETimes) && !this.info.exitIntegral) {
|
||||
return 4
|
||||
}
|
||||
},
|
||||
scope() {
|
||||
const times = new Date().getTime()
|
||||
const inSTimes = new Date(this.info.intoBegintime?.replaceAll('-', '/')).getTime() // 进场开始
|
||||
const inETimes = new Date(this.info.intoEndtime?.replaceAll('-', '/')).getTime() // 进场结束
|
||||
const outSTimes = new Date(this.info.exitBegintime?.replaceAll('-', '/')).getTime() // 离场开始
|
||||
const outETimes = new Date(this.info.exitEndtime?.replaceAll('-', '/')).getTime() // 离场结束
|
||||
|
||||
if (this.info.clockRange > this.distance && (this.info.intoClock && (inSTimes < times && times < inETimes)) || (this.info.exitClock && outSTimes < times && times < outETimes)) {
|
||||
return `无法重复打卡`
|
||||
}
|
||||
|
||||
if (this.info.clockRange > this.distance && (!this.info.intoClock && (times > inSTimes && times < inETimes)) || !this.info.exitClock && (times > outSTimes && times < outETimes)) {
|
||||
return `符合打卡条件`
|
||||
}
|
||||
|
||||
return `未到打卡时间/不在指定位置`
|
||||
},
|
||||
dkqd() {
|
||||
const times = new Date().getTime()
|
||||
const inSTimes = new Date(this.info.intoBegintime?.replaceAll('-', '/')).getTime() // 进场开始
|
||||
const inETimes = new Date(this.info.intoEndtime?.replaceAll('-', '/')).getTime() // 进场结束
|
||||
const outSTimes = new Date(this.info.exitBegintime?.replaceAll('-', '/')).getTime() // 离场开始
|
||||
const outETimes = new Date(this.info.exitEndtime?.replaceAll('-', '/')).getTime() // 离场结束
|
||||
if (this.info.clockRange > this.distance && (this.info.intoClock && (times > inSTimes && times < inETimes)) || (this.info.exitClock && outSTimes < times && times < outETimes)) {
|
||||
return `已打卡`
|
||||
}
|
||||
if (this.info.clockRange > this.distance && (!this.info.intoClock && (times > inSTimes && times < inETimes) && this.info.intoIntegral) || !this.info.exitClock && (times > outSTimes && times < outETimes) && this.info.exitIntegral) {
|
||||
return `打卡签到`
|
||||
}
|
||||
|
||||
if (times > outSTimes && times < outETimes && !this.info.exitIntegral) {
|
||||
return `已打卡`
|
||||
}
|
||||
|
||||
return `打卡签到`
|
||||
},
|
||||
baoming() {
|
||||
const times = new Date().getTime()
|
||||
const inSTimes = new Date(this.info.intoBegintime).getTime() // 报名开始
|
||||
const inETimes = new Date(this.info.intoEndtime).getTime() // 报名结束
|
||||
// 1已报名
|
||||
if (this.info.enrollClock) {
|
||||
return 1
|
||||
}
|
||||
// 2可以报名
|
||||
if (!this.info.enrollClock && times < inETimes && times > inSTimes) {
|
||||
return 2
|
||||
}
|
||||
// 0不符合条件
|
||||
return 0
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
...mapActions(['getUserInfo']),
|
||||
toAddress() {
|
||||
wx.openLocation({
|
||||
latitude: this.info.lat,
|
||||
longitude: this.info.lng,
|
||||
scale: 18
|
||||
})
|
||||
},
|
||||
preview(url) {
|
||||
uni.previewImage({
|
||||
urls: this.info.files.map(v => v.url),
|
||||
current: url
|
||||
})
|
||||
},
|
||||
getDetail() {
|
||||
this.$instance.post(`/app/appintegraltask/queryDetailById?id=${this.id}`).then(res=> {
|
||||
if(res?.data) {
|
||||
this.info = res.data
|
||||
this.$nextTick(() => {
|
||||
this.getLocation()
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
// 打卡积分
|
||||
clockIn() {
|
||||
if(!this.user.areaId) {
|
||||
return this.$dialog.confirm({
|
||||
content: '您只有完成信息认证后,才可进行相关操作。',
|
||||
confirmText: '去认证'
|
||||
}).then(() => {
|
||||
this.$linkTo('/mods/AppMine/userInfo')
|
||||
}).catch(() => {
|
||||
})
|
||||
}
|
||||
if (!this.latitude) {
|
||||
this.$dialog.alert({
|
||||
title: '温馨提示',
|
||||
content: '您未授权定位,请先授权!'
|
||||
}).then(() => {
|
||||
this.getLocation()
|
||||
}).catch(() => {
|
||||
})
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
if (this.isClock == 0 || this.isClock == 3) {
|
||||
return this.$dialog.alert({
|
||||
title: '温馨提示',
|
||||
content: '不满足打卡条件!'
|
||||
}).then(() => {
|
||||
this.getLocation()
|
||||
}).catch(() => {
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
if (this.isClock == 2 || this.isClock == 4) {
|
||||
return this.$u.toast(`已打卡,请勿重复打卡!`)
|
||||
}
|
||||
|
||||
this.flag = true
|
||||
this.daKa()
|
||||
},
|
||||
// 报名积分
|
||||
signUp() {
|
||||
if(this.info.enrollClock) return
|
||||
|
||||
if(this.baoming==0) {
|
||||
return this.$u.toast('不符合报名条件')
|
||||
}
|
||||
|
||||
this.flag = true
|
||||
this.daKa()
|
||||
},
|
||||
daKa() {
|
||||
this.$instance.post(`/app/appintegraltask/clock`, {
|
||||
address: this.address,
|
||||
clockTime: this.$dayjs(new Date()).format('YYYY-MM-DD HH:mm:ss'),
|
||||
lat: this.latitude,
|
||||
lng: this.longitude,
|
||||
openId: this.user.openId,
|
||||
realName: this.user.realName,
|
||||
taskId: this.id,
|
||||
type: this.info.type
|
||||
}).then(res => {
|
||||
if (res?.code == 0) {
|
||||
this.flag = false
|
||||
if (this.info.type == 1) {
|
||||
this.$u.toast('报名成功!')
|
||||
} else {
|
||||
this.$u.toast('打卡签到成功!')
|
||||
}
|
||||
setTimeout(()=> {
|
||||
this.getDetail()
|
||||
}, 400)
|
||||
}
|
||||
}).catch(err => this.$u.toast(err))
|
||||
},
|
||||
getLocation() {
|
||||
wx.authorize({
|
||||
scope: 'scope.userLocation',
|
||||
success: () => {
|
||||
uni.getLocation({
|
||||
type: 'gcj02',
|
||||
success: res => {
|
||||
this.latitude = res.latitude
|
||||
this.longitude = res.longitude
|
||||
this.qqmapsdk.reverseGeocoder({
|
||||
location: `${res.latitude},${res.longitude}`,
|
||||
success: data => {
|
||||
this.address = data.result.formatted_addresses.recommend
|
||||
},
|
||||
fail: function (info) {
|
||||
console.log(info)
|
||||
}
|
||||
})
|
||||
|
||||
this.qqmapsdk.calculateDistance({
|
||||
from: {
|
||||
longitude: res.longitude,
|
||||
latitude: res.latitude
|
||||
},
|
||||
to: [{
|
||||
longitude: this.info.lng,
|
||||
latitude: this.info.lat
|
||||
}],
|
||||
success: res => {
|
||||
this.distance = res.result.elements[0].distance
|
||||
},
|
||||
fail: function (error) {
|
||||
console.error(error)
|
||||
},
|
||||
complete: function (res) {
|
||||
}
|
||||
})
|
||||
},
|
||||
fail: e => {
|
||||
console.log(e)
|
||||
}
|
||||
})
|
||||
},
|
||||
fail: () => {
|
||||
this.$dialog.confirm({
|
||||
content: '您未授权定位,功能将无法使用'
|
||||
}).then(() => {
|
||||
uni.openSetting({
|
||||
success: res => {
|
||||
if (!res.authSetting['scope.userLocation']) {
|
||||
this.$dialog.alert({
|
||||
content: '您未授权定位,功能将无法使用'
|
||||
}).then(() => {
|
||||
})
|
||||
} else {
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
getAuth() {
|
||||
this.$nextTick(() => {
|
||||
this.token && this.getUserInfo('qujing')
|
||||
this.$nextTick(() => {
|
||||
this.toAuth()
|
||||
})
|
||||
})
|
||||
},
|
||||
toAuth() {
|
||||
if (!this.user.areaId) {
|
||||
this.$dialog.confirm({
|
||||
content: '您只有完成信息认证后,才可进行相关操作。',
|
||||
confirmText: '去认证'
|
||||
}).then(() => {
|
||||
this.$linkTo('/pages/AppMine/userInfo')
|
||||
}).catch(() => {
|
||||
})
|
||||
} else {
|
||||
this.getDetail()
|
||||
this.showPages = true
|
||||
}
|
||||
}
|
||||
},
|
||||
onLoad(o) {
|
||||
this.id = o?.id
|
||||
if (decodeURIComponent(o.scene) != 'undefined') {
|
||||
this.id = decodeURIComponent(o.scene)
|
||||
}
|
||||
uni.setNavigationBarTitle({
|
||||
title: '任务详情'
|
||||
});
|
||||
this.qqmapsdk = new QQMapWX({
|
||||
key: process.env.NODE_ENV == 'production' ? 'RWWBZ-64BEJ-MVLFJ-FTHLQ-JTR6J-SAB2S' : '3RZBZ-LZUCF-CT6J5-NWKZH-FCWOQ-UUFKY'
|
||||
})
|
||||
this.$dict.load(['fdIntegralTaskType'])
|
||||
},
|
||||
onShow() {
|
||||
if (!this.token) {
|
||||
this.$refs.login.show()
|
||||
} else {
|
||||
this.toAuth()
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.taskDetail {
|
||||
padding-bottom: 400px;
|
||||
box-sizing: border-box;
|
||||
.task,
|
||||
.info {
|
||||
margin-top: 24px;
|
||||
padding: 32px;
|
||||
box-sizing: border-box;
|
||||
background: #FFF;
|
||||
h4 {
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 32px;
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.imgs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
padding-top: 20px;
|
||||
box-sizing: border-box;
|
||||
|
||||
image {
|
||||
height: 208px;
|
||||
width: 33.33%;
|
||||
padding-right: 12px;
|
||||
margin-bottom: 12px;
|
||||
box-sizing: border-box;
|
||||
|
||||
&:nth-of-type(3n) {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.info {
|
||||
.title {
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.items,
|
||||
.item {
|
||||
display: flex;
|
||||
margin-top: 24px;
|
||||
img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
align-self: center;
|
||||
margin-right: 32px;
|
||||
}
|
||||
|
||||
.items-info {
|
||||
width: calc(100% - 100px);
|
||||
}
|
||||
|
||||
.address {
|
||||
width: 60px;
|
||||
img {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
i {
|
||||
font-size: 24px;
|
||||
font-weight: 400;
|
||||
color: #687DA6;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.item-info,
|
||||
.items-info {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
label {
|
||||
color: #666666;
|
||||
}
|
||||
.value {
|
||||
color: #333333;
|
||||
margin-top: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
::v-deep .btn-wrapper {
|
||||
background: #FFF;
|
||||
}
|
||||
|
||||
::v-deep .btn-wrapper .btn {
|
||||
height: 80px;
|
||||
line-height: 80px;
|
||||
border-radius: 40px;
|
||||
}
|
||||
|
||||
.opacity {
|
||||
opacity: 0.6000000238418579 !important;
|
||||
}
|
||||
|
||||
.gray {
|
||||
background: #b5b5bcff !important;
|
||||
}
|
||||
.btn-clock {
|
||||
height: 372px;
|
||||
width: 100%;
|
||||
background: #FFF;
|
||||
.btn-circle {
|
||||
width: 226px;
|
||||
height: 226px;
|
||||
background: #2D7DFF;
|
||||
border-radius: 50%;
|
||||
margin: 40px auto 24px;
|
||||
text-align: center;
|
||||
.text,
|
||||
.daka {
|
||||
color: #FFF;
|
||||
font-size: 34px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.daka {
|
||||
padding-top: 62px;
|
||||
box-sizing: border-box;
|
||||
font-size: 40px;
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
|
||||
.opacity {
|
||||
opacity: 0.6000000238418579 !important;
|
||||
}
|
||||
|
||||
.gray {
|
||||
background: #b5b5bcff !important;
|
||||
}
|
||||
.tips {
|
||||
text-align: center;
|
||||
color: #666666;
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
210
src/project/weiyang/AppOrganizational/AppOrganizational.vue
Normal file
@@ -0,0 +1,210 @@
|
||||
<template>
|
||||
<view class="AppOrganizational" :class="tabIndex == 1 ? 'bg-369' : 'bg-fff'">
|
||||
<div class="detail-top">
|
||||
<p>{{ dataInfo.organizationName || '-' }}</p>
|
||||
<div>成立时间:{{ formatTime(dataInfo.createOrganizationTime) || '-' }}</div>
|
||||
</div>
|
||||
<div class="line-bg"></div>
|
||||
<div class="select-tab">
|
||||
<div :class="tabIndex == 0 ? 'tab-active' : ''" @click="tabClick(0)">当前届次</div>
|
||||
<div :class="tabIndex == 1 ? 'tab-active' : ''" @click="tabClick(1)">历史届次</div>
|
||||
</div>
|
||||
<div class="organization-detail" v-if="!tabIndex">
|
||||
<p>当前届次:{{ dataInfo.sessionTime || '-' }}</p>
|
||||
<p>本届换届时间:{{ dataInfo.changeTime || '-' }}</p>
|
||||
<p>换届类型:{{ $dict.getLabel('organizationChangeType', dataInfo.type) || '-' }}</p>
|
||||
<p class="padd-b32">下届换届时间:{{ dataInfo.nextChangeTime || '-' }}</p>
|
||||
|
||||
<p class="fw500">本届任职</p>
|
||||
<div style="margin-bottom: 40px;">
|
||||
<p v-for="(item, index) in dataInfo.serveList" :key="index">{{ item.position }}:{{ item.name }}</p>
|
||||
</div>
|
||||
|
||||
<p class="fw500">本届候选人</p>
|
||||
<p v-for="(item, index) in dataInfo.candidateList" :key="index">{{ item.position }}:{{ item.name }}</p>
|
||||
</div>
|
||||
<div class="history-list" v-if="historyList.length && tabIndex">
|
||||
<div class="item" v-for="(item, index) in historyList" :key="index" @click="toDetail(item.id)">
|
||||
<div class="item-top">
|
||||
<image src="https://cdn.cunwuyun.cn/img/organizationalchange-icon.png"/>
|
||||
届次:{{ item.sessionTime }}
|
||||
</div>
|
||||
<div class="item-date">换届时间:{{ item.changeTime }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!historyList.length && tabIndex"/>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
import {mapState} from 'vuex'
|
||||
export default {
|
||||
name:"AppOrganizational",
|
||||
appName: "组织换届",
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
formatTime() {
|
||||
return function (time) {
|
||||
return time && time.substring(0, 10);
|
||||
}
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
tabIndex: 0,
|
||||
historyList: [],
|
||||
dataInfo: {}
|
||||
};
|
||||
},
|
||||
onShow() {
|
||||
uni.setNavigationBarColor({
|
||||
frontColor: "#ffffff",
|
||||
backgroundColor: "#e60012",
|
||||
})
|
||||
this.$dict.load('organizationChangeType').then(() => {
|
||||
this.getDetail()
|
||||
this.getHistory()
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
getDetail() {
|
||||
this.$instance.post(`/app/apporganizationgeneralelection/queryDetailByOrganizationId-forwx`, null, {
|
||||
params: {organizationId: this.user.partyOrgId}
|
||||
}).then(res => {
|
||||
if (res?.data) {
|
||||
this.dataInfo = res.data
|
||||
}
|
||||
}).catch(err => {
|
||||
this.$toast(err)
|
||||
})
|
||||
},
|
||||
getHistory() {
|
||||
this.$instance.post(`/app/apporganizationgeneralelection/list-forwx?organizationId=${this.user.partyOrgId}`).then(res => {
|
||||
if (res && res.data) {
|
||||
this.historyList = res.data
|
||||
}
|
||||
})
|
||||
},
|
||||
tabClick(index) {
|
||||
this.tabIndex = index
|
||||
},
|
||||
toDetail(id) {
|
||||
uni.navigateTo({
|
||||
url: `./detail?id=${id}`
|
||||
})
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.AppOrganizational {
|
||||
.detail-top {
|
||||
padding: 32px;
|
||||
background-color: #E60012;
|
||||
color: #fff;
|
||||
|
||||
p {
|
||||
line-height: 64px;
|
||||
font-size: 40px;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
div {
|
||||
line-height: 40px;
|
||||
font-size: 28px;
|
||||
margin-top: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.line-bg {
|
||||
height: 8px;
|
||||
background-color: #F3F6F9;
|
||||
}
|
||||
|
||||
.select-tab {
|
||||
display: flex;
|
||||
line-height: 96px;
|
||||
background-color: #fff;
|
||||
|
||||
div {
|
||||
flex: 1;
|
||||
border-bottom: 2px solid #D8DDE6;
|
||||
font-size: 28px;
|
||||
text-align: center;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.tab-active {
|
||||
color: #F26C77;
|
||||
border-bottom: 4px solid #E60012;
|
||||
}
|
||||
}
|
||||
|
||||
.organization-detail {
|
||||
padding: 48px 32px 0;
|
||||
|
||||
p {
|
||||
font-size: 32px;
|
||||
color: #666;
|
||||
line-height: 48px;
|
||||
}
|
||||
|
||||
.padd-b32 {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.fw500 {
|
||||
font-weight: 600;
|
||||
font-family: PingFangSC-Medium, PingFang SC;
|
||||
}
|
||||
}
|
||||
|
||||
.history-list {
|
||||
padding: 16px 32px;
|
||||
|
||||
.item {
|
||||
width: 686px;
|
||||
background: #fff;
|
||||
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.02);
|
||||
border-radius: 8px;
|
||||
margin-bottom: 32px;
|
||||
display: flex;
|
||||
|
||||
.item-top {
|
||||
width: 622px;
|
||||
height: 108px;
|
||||
line-height: 106px;
|
||||
margin-left: 16px;
|
||||
color: #333;
|
||||
font-size: 32px;
|
||||
flex: 1;
|
||||
|
||||
image {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin: 0 20px 0 16px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
.item-date {
|
||||
line-height: 106px;
|
||||
padding-right: 32px;
|
||||
flex: 1;
|
||||
color: #999;
|
||||
font-size: 28px;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bg-fff {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.bg-369 {
|
||||
background-color: #F3F6F9 !important;
|
||||
}
|
||||
|
||||
</style>
|
||||
65
src/project/weiyang/AppOrganizational/detail.vue
Normal file
@@ -0,0 +1,65 @@
|
||||
<template>
|
||||
<view class="detail">
|
||||
<div class="line-bg"></div>
|
||||
<div class="organization-detail">
|
||||
<p>当前届次:{{dataInfo.sessionTime || '-'}}</p>
|
||||
<p>换届时间:{{dataInfo.changeTime || '-'}}</p>
|
||||
<p class="fw500">该届任职</p>
|
||||
<div style="margin-bottom: 40rpx;">
|
||||
<p v-for="(item, index) in dataInfo.serveList" :key="index">{{item.position}}:{{item.name}}</p>
|
||||
</div>
|
||||
<p class="fw500">该届候选人</p>
|
||||
<p v-for="(item, index) in dataInfo.candidateList" :key="index">{{item.position}}:{{item.name}}</p>
|
||||
</div>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
id: '',
|
||||
dataInfo: {}
|
||||
};
|
||||
},
|
||||
onLoad(options){
|
||||
uni.setNavigationBarColor({
|
||||
frontColor: "#ffffff",
|
||||
backgroundColor: "#e60012",
|
||||
})
|
||||
this.$dict.load('organizationChangeType')
|
||||
this.id = options.id
|
||||
this.getDetail()
|
||||
},
|
||||
methods: {
|
||||
getDetail() {
|
||||
this.$instance.post(`/app/apporganizationgeneralelection/queryDetailById-forwx?id=${this.id}`).then( res => {
|
||||
this.dataInfo = res.data
|
||||
})
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scope>
|
||||
.detail {
|
||||
background-color: #fff;
|
||||
.line-bg{
|
||||
height: 20rpx;
|
||||
background-color: #F3F6F9;
|
||||
}
|
||||
.organization-detail{
|
||||
padding: 20rpx 32rpx 0;
|
||||
p{
|
||||
font-size: 32rpx;
|
||||
color: #666;
|
||||
line-height: 48rpx;
|
||||
}
|
||||
.padd-b32{
|
||||
padding-bottom: 40rpx;
|
||||
}
|
||||
.fw500{
|
||||
font-weight: 600;
|
||||
font-family:PingFangSC-Medium,PingFang SC;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,102 @@
|
||||
<template>
|
||||
<div class="AppCommunityInfo" v-if="pageShow">
|
||||
<h2>{{ info.title }}</h2>
|
||||
<div class="info-info">
|
||||
<span>{{ info.areaName }}</span>
|
||||
<span>{{ info.createDate }}</span>
|
||||
</div>
|
||||
<image class="banner" @click="preview(banner)" v-if="banner" mode="widthFix" :src="banner"/>
|
||||
<div class="rich-content">
|
||||
<u-parse :html="info.content"></u-parse>
|
||||
</div>
|
||||
<AiEmpty v-if="!info.title"></AiEmpty>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "AppCommunityInfo",
|
||||
appName: "社区简介",
|
||||
data() {
|
||||
return {
|
||||
pageShow: false,
|
||||
info: {},
|
||||
banner: ''
|
||||
}
|
||||
},
|
||||
|
||||
onLoad(query) {
|
||||
if (query.type !== '0') {
|
||||
uni.setNavigationBarTitle({
|
||||
title: query.type == 4 ? '社区公约' : '党员阵地'
|
||||
})
|
||||
}
|
||||
|
||||
this.$loading()
|
||||
this.getInfo(query.type)
|
||||
},
|
||||
|
||||
methods: {
|
||||
getInfo(type) {
|
||||
this.$instance.post(`/app/appcountrysidetourism/queryDetailByAreaIdForWX?areaId=${uni.getStorageSync('areaId')}&type=${type}`).then(res => {
|
||||
if (res.code === 0 && res.data) {
|
||||
this.info = res.data
|
||||
this.banner = res.data.thumbUrl ? JSON.parse(res.data.thumbUrl)[0].url : ''
|
||||
}
|
||||
|
||||
this.$nextTick(() => {
|
||||
this.pageShow = true
|
||||
})
|
||||
})
|
||||
},
|
||||
|
||||
preview(url) {
|
||||
uni.previewImage({
|
||||
urls: [url],
|
||||
current: url
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.AppCommunityInfo {
|
||||
min-height: 100vh;
|
||||
padding: 0 32px 40px;
|
||||
box-sizing: border-box;
|
||||
background-color: #fff;
|
||||
|
||||
.banner {
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
line-height: 1.3;
|
||||
padding: 32px 0 16px;
|
||||
font-size: 48px;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.info-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 30px;
|
||||
|
||||
span {
|
||||
color: #999999;
|
||||
font-size: 30px;
|
||||
|
||||
&:last-child {
|
||||
margin-left: 32px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep.emptyWrap {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,666 @@
|
||||
<template>
|
||||
<div class="AppPartyEnteringCommunity">
|
||||
<div class="header" :class="[isFixed ? 'header-active' : '']">
|
||||
<div class="status-bar" :style="{height: statusBarHeight + 'px'}"></div>
|
||||
<div class="nav-bar">
|
||||
<h2>进村</h2>
|
||||
</div>
|
||||
</div>
|
||||
<header>
|
||||
<image src="https://cdn.cunwuyun.cn/wechat/biaopin/custom/custom-top-bg.png"/>
|
||||
<div>
|
||||
<AiAreaPicker :selectRoot="false" ref="area" :value="areaId" :name.sync="areaName" :areaId="$areaId"
|
||||
@input="areaSelect">
|
||||
<div class="ai-area__wrapper">
|
||||
<span class="label" v-if="areaName">{{ areaName }}</span>
|
||||
<span v-else>请选择</span>
|
||||
<image src="/static/img/area-bottom.png"/>
|
||||
</div>
|
||||
</AiAreaPicker>
|
||||
<div class="welcome">欢迎进入{{ areaName }}</div>
|
||||
<div class="tag" v-if="user.homeArea === areaId">我的家乡</div>
|
||||
<div class="tag1" @click="updateUserInfo" v-if="!user.homeArea && token">设为家乡</div>
|
||||
</div>
|
||||
</header>
|
||||
<div class="card">
|
||||
<div class="card-item" hover-class="text-hover" @click="$linkTo('./AppCommunityInfo?type=0')">
|
||||
<image src="https://cdn.cunwuyun.cn/wechat/biaopin/custom/custom-banner-sqjj.png"/>
|
||||
</div>
|
||||
<div class="card-item" hover-class="text-hover" @click="$linkTo('./AppCommunityInfo?type=4')">
|
||||
<image src="https://cdn.cunwuyun.cn/wechat/biaopin/custom/custom-banner-sqgy.png"/>
|
||||
</div>
|
||||
<!-- <div class="card-item" hover-class="text-hover" @click="$linkTo('./AppCommunityInfo?type=5')">
|
||||
<image src="https://cdn.cunwuyun.cn/pingchang/dyzd.png"/>
|
||||
</div>
|
||||
<div class="card-item" hover-class="text-hover"
|
||||
@click="$linkTo('/mods/AppVillagerDiscussion/AppVillagerDiscussion')">
|
||||
<image src="https://cdn.cunwuyun.cn/pingchang/jmys.png"/>
|
||||
</div> -->
|
||||
</div>
|
||||
<!-- <div class="banner" @click="linkTo('/mods/AppCreditPoints/AppCpSupermarket', 'idNumber')">
|
||||
<image src="/static/img/jf-banner.png" class="banner"/>
|
||||
</div> -->
|
||||
<tempalte v-if="publicList.length">
|
||||
<div class="title-wrap">
|
||||
<span class="title">三务公开</span>
|
||||
<div class="right" hover-class="text-hover"
|
||||
@click="$linkTo(`/mods/AppContent/AppContent?names=三务公开&areaId=${areaId}`)">
|
||||
<span class="title-more">更多专题</span>
|
||||
<u-icon name="arrow-right" size="28" color="#999999"></u-icon>
|
||||
</div>
|
||||
</div>
|
||||
<div class="list-news">
|
||||
<div class="news-wrap" v-for="(item,index) in publicList" :key="index"
|
||||
@click="$linkTo('/mods/AppContent/contentDetail?id='+ item.id)">
|
||||
<div class="news-title">{{ item.title }}</div>
|
||||
<div class="news-bottom">
|
||||
<div class="tag">{{ item.categoryName }}</div>
|
||||
<div class="date">{{ item.createTime ? item.createTime.split(' ')[0] : '' }}</div>
|
||||
<div class="view">
|
||||
<em>{{ item.viewCount }}</em>
|
||||
人看过
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</tempalte>
|
||||
<div class="title-wrap" v-if="activityList.length">
|
||||
<span class="title">专题活动</span>
|
||||
<div class="right">
|
||||
<span class="title-more" @click="$linkTo('/mods/AppVillageActivity/AppVillageActivity')">更多活动</span>
|
||||
<u-icon name="arrow-right" size="28" color="#999999"></u-icon>
|
||||
</div>
|
||||
</div>
|
||||
<scroll-view :scroll-x="true" style="width: 100%" class="scroll-wrap" v-if="activityList.length">
|
||||
<div
|
||||
class="scroll-card"
|
||||
@click="$linkTo('/mods/AppVillageActivity/ActivityDetail?id=' + item.id)"
|
||||
hover-class="text-hover"
|
||||
v-for="(item, index) in activityList"
|
||||
:key="index">
|
||||
<image :src="item.url" mode="aspectFill"/>
|
||||
<div class="text">
|
||||
<span>{{ item.title }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!activityList.length"></AiEmpty>
|
||||
</scroll-view>
|
||||
<!-- <div class="title-wrap">
|
||||
<span class="title">乡村相册</span>
|
||||
</div>
|
||||
<div class="album-list">
|
||||
<div
|
||||
class="album"
|
||||
v-for="(item, index) in albumList"
|
||||
hover-class="text-hover"
|
||||
:key="index"
|
||||
@click="$linkTo('/mods/AppPhotoAlbum/AppPhotoAlbum?type=' + item.type + '&name=' + item.name + '&url=' + item.coverImg)">
|
||||
<image :src="item.coverImg"/>
|
||||
<div class="total">共{{ item.total }}张</div>
|
||||
<div class="desc">{{ item.name }}</div>
|
||||
</div>
|
||||
<AiEmpty style="width: 100%" v-if="!albumList.length"></AiEmpty>
|
||||
</div> -->
|
||||
<AiLogin ref="login"/>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import {mapActions, mapState} from 'vuex'
|
||||
|
||||
export default {
|
||||
name: "AppPartyEnteringCommunity",
|
||||
appName: "社区",
|
||||
customNavigation: true,
|
||||
data() {
|
||||
return {
|
||||
isFixed: false,
|
||||
statusBarHeight: 20,
|
||||
top: 0,
|
||||
areaName: '',
|
||||
areaId: '',
|
||||
$areaId: '',
|
||||
albumList: [],
|
||||
activityList: [],
|
||||
publicList: [],
|
||||
moduleId: "",
|
||||
isInit: false
|
||||
}
|
||||
},
|
||||
|
||||
onLoad() {
|
||||
this.areaId = this.$mp.query.areaId || this.$areaId
|
||||
this.areaName = this.$mp.query.areaName || this.$areaName
|
||||
this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight
|
||||
this.autoLogin()
|
||||
|
||||
this.$nextTick(() => {
|
||||
this.getName()
|
||||
this.getAlbumList()
|
||||
this.getActiveList()
|
||||
})
|
||||
uni.$on('update', () => {
|
||||
this.getAlbumList()
|
||||
})
|
||||
},
|
||||
|
||||
computed: {
|
||||
...mapState(['user', 'token'])
|
||||
},
|
||||
|
||||
onShow() {
|
||||
this.$nextTick(() => {
|
||||
this.token && this.getUserInfo('qujing')
|
||||
})
|
||||
|
||||
if (this.user.homeArea) {
|
||||
if (!this.isInit) {
|
||||
this.areaId = this.user.homeArea
|
||||
this.areaName = this.user.homeName
|
||||
uni.setStorageSync('areaId', this.user.homeArea)
|
||||
uni.setStorageSync('areaName', this.user.homeName)
|
||||
this.isInit = true
|
||||
}
|
||||
} else if (!this.isInit && !this.user.homeArea) {
|
||||
setTimeout(() => {
|
||||
this.$dialog.alert({
|
||||
content: '请选择您的家乡'
|
||||
}).then(() => {
|
||||
this.$refs.area?.handleJump()
|
||||
this.isInit = true
|
||||
})
|
||||
}, 600)
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
...mapActions(['autoLogin', 'getUserInfo']),
|
||||
getName() {
|
||||
this.$instance.post("/app/appcontentmoduleinfo/listByNames", null, {
|
||||
params: {names: "三务公开"}
|
||||
}).then(res => {
|
||||
if (res.data && res.data.length) {
|
||||
this.moduleId = res.data[0]["id"];
|
||||
this.getPublicList();
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
updateUserInfo() {
|
||||
if (this.areaId.endsWith('000')) {
|
||||
this.$dialog.alert({
|
||||
content: '请选择村'
|
||||
}).then(() => {
|
||||
})
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
this.$instance.post("/app/appwechatuser/updateById", {
|
||||
id: this.user.id,
|
||||
homeArea: this.areaId,
|
||||
homeName: this.areaName
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.getUserInfo('qujing')
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
getPublicList() {
|
||||
this.$instance.post("/app/appcontentinfo/list", null, {
|
||||
params: {moduleId: this.moduleId, size: 3, areaId: this.areaId}
|
||||
}).then(res => {
|
||||
if (res?.data) {
|
||||
this.publicList = res.data.records;
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
linkTo(url, type) {
|
||||
if (type) {
|
||||
if (this.token) {
|
||||
if (type === 'idNumber') {
|
||||
if (!this.user.residentId) {
|
||||
this.$linkTo('/mods/AppAuth/AppAuth')
|
||||
} else {
|
||||
this.$linkTo(url)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
this.$refs.login.show()
|
||||
}
|
||||
} else {
|
||||
this.$linkTo(url)
|
||||
}
|
||||
},
|
||||
|
||||
areaSelect(v) {
|
||||
this.areaId = v
|
||||
this.isMore = false
|
||||
this.current = 0
|
||||
this.newsList = []
|
||||
|
||||
this.$nextTick(() => {
|
||||
this.getActiveList()
|
||||
this.getAlbumList()
|
||||
this.getPublicList()
|
||||
uni.setStorageSync('areaId', this.areaId)
|
||||
uni.setStorageSync('areaName', this.areaName)
|
||||
})
|
||||
},
|
||||
|
||||
getAlbumList() {
|
||||
this.$instance.post(`/app/appvillagepicturealbum/queryAlbumMenu?areaId=${this.areaId}`).then(res => {
|
||||
if (res.code == 0) {
|
||||
this.albumList = res.data.map(v => {
|
||||
return {
|
||||
...v,
|
||||
coverImg: `${this.$cdn}/dvcp/album/album${v.type}.png`
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
getActiveList() {
|
||||
this.$instance.post(`/app/appvillageactivityinfo/listUp`, null, {
|
||||
params: {
|
||||
current: 1,
|
||||
size: 6,
|
||||
areaId: this.areaId
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code == 0) {
|
||||
this.activityList = res.data.records.map(v => {
|
||||
return {
|
||||
...v,
|
||||
url: v.url ? JSON.parse(v.url)[0].url : ''
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
onShareAppMessage() {
|
||||
return {
|
||||
title: '欢迎使用数字党建平昌~',
|
||||
path: `/pages/AppPartyEnteringCommunity/AppPartyEnteringCommunity`
|
||||
}
|
||||
},
|
||||
|
||||
onPageScroll(params) {
|
||||
this.isFixed = params.scrollTop > 60;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.AppPartyEnteringCommunity {
|
||||
min-height: 100%;
|
||||
background: #F3F6F9;
|
||||
|
||||
::v-deep .emptyImg {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 0;
|
||||
width: 100%;
|
||||
opacity: 0;
|
||||
transition: all 0.2s ease;
|
||||
|
||||
&.header-active {
|
||||
z-index: 1111;
|
||||
opacity: 1;
|
||||
background: #4181FF;
|
||||
}
|
||||
|
||||
.nav-bar {
|
||||
position: relative;
|
||||
height: 88px;
|
||||
line-height: 88px;
|
||||
color: #fff;
|
||||
font-size: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
& > header {
|
||||
position: relative;
|
||||
height: 480px;
|
||||
box-sizing: border-box;
|
||||
padding-left: 32px;
|
||||
|
||||
& > div {
|
||||
position: relative;
|
||||
z-index: 11;
|
||||
}
|
||||
|
||||
.ai-area__wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding-top: 100px;
|
||||
|
||||
span {
|
||||
margin-right: 16px;
|
||||
color: #FFFFFF;
|
||||
font-size: 44px;
|
||||
}
|
||||
|
||||
image {
|
||||
width: 16px;
|
||||
height: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
& > image {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
height: 480px;
|
||||
}
|
||||
|
||||
.welcome {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
color: #FFFFFF;
|
||||
line-height: 40px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.tag {
|
||||
width: 120px;
|
||||
height: 44px;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 22px;
|
||||
font-weight: 400;
|
||||
color: #c0cae0;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
.tag1 {
|
||||
width: 120px;
|
||||
height: 44px;
|
||||
border: 1px solid #c0cae0;
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 22px;
|
||||
font-weight: 400;
|
||||
color: #c0cae0;
|
||||
margin-top: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.card {
|
||||
position: relative;
|
||||
left: 32px;
|
||||
z-index: 1;
|
||||
background: #FFFFFF;
|
||||
border-radius: 32px;
|
||||
margin-top: -132px;
|
||||
box-sizing: border-box;
|
||||
padding: 28px 24px 0 24px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
width: 686px;
|
||||
box-sizing: border-box;
|
||||
|
||||
.card-item {
|
||||
width: 308px;
|
||||
height: 144px;
|
||||
margin-bottom: 28px;
|
||||
|
||||
image {
|
||||
width: 308px;
|
||||
height: 144px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.banner {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
height: 200px;
|
||||
background: linear-gradient(180deg, #FFFFFF 0%, #F3F6F9 100%);
|
||||
|
||||
image {
|
||||
display: block;
|
||||
width: 692px;
|
||||
height: 200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
.title-wrap {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
box-sizing: border-box;
|
||||
padding: 32px 32px 24px;
|
||||
|
||||
.title {
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 34px;
|
||||
color: #222;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
.right {
|
||||
|
||||
.title-more {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
line-height: 40px;
|
||||
color: #687DA6;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.album-list {
|
||||
box-sizing: border-box;
|
||||
padding: 0 32px 32px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 16px;
|
||||
|
||||
.album {
|
||||
position: relative;
|
||||
width: 218px;
|
||||
height: 240px;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.02);
|
||||
border-radius: 16px;
|
||||
overflow: hidden;
|
||||
|
||||
image {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.total {
|
||||
display: flex;
|
||||
position: absolute;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
right: 8px;
|
||||
top: 8px;
|
||||
z-index: 2;
|
||||
width: 74px;
|
||||
height: 40px;
|
||||
background: rgba(0, 0, 0, .6);
|
||||
border-radius: 8px;
|
||||
font-size: 22px;
|
||||
font-weight: 400;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.desc {
|
||||
position: absolute;
|
||||
bottom: 16px;
|
||||
left: 0;
|
||||
z-index: 2;
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
padding: 0 12px;
|
||||
font-size: 32px;
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
font-weight: 600;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-news {
|
||||
box-sizing: border-box;
|
||||
padding: 0 32px;
|
||||
|
||||
.news-wrap {
|
||||
height: 186px;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.02);
|
||||
border-radius: 16px;
|
||||
box-sizing: border-box;
|
||||
padding: 32px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 24px;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.news-title {
|
||||
font-size: 36px;
|
||||
font-weight: 600;
|
||||
color: #333333;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.news-bottom {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
.tag {
|
||||
width: 144px;
|
||||
height: 48px;
|
||||
background: #EEEEEE;
|
||||
border-radius: 24px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.date {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
color: #999999;
|
||||
margin-left: 16px;
|
||||
}
|
||||
|
||||
.view {
|
||||
font-size: 28px;
|
||||
font-weight: 400;
|
||||
color: #999999;
|
||||
margin-left: auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
& > em {
|
||||
color: #4181FF;
|
||||
font-style: normal;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.scroll-wrap {
|
||||
box-sizing: border-box;
|
||||
padding: 0 32px;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
|
||||
.scroll-card {
|
||||
display: inline-block;
|
||||
width: 400px;
|
||||
height: 332px;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.02);
|
||||
border-radius: 16px;
|
||||
margin-right: 32px;
|
||||
font-size: 0;
|
||||
|
||||
& > image {
|
||||
width: 400px;
|
||||
height: 240px;
|
||||
border-radius: 16px 16px 0 0;
|
||||
}
|
||||
|
||||
.text {
|
||||
height: calc(100% - 240px);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
padding: 0 32px;
|
||||
|
||||
& > span {
|
||||
font-size: 32px;
|
||||
font-weight: 600;
|
||||
color: #333333;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep .AiArea {
|
||||
padding-top: 64px;
|
||||
height: 88px;
|
||||
|
||||
._img {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.area-name {
|
||||
font-size: 44px;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
BIN
src/project/weiyang/AppPartyEnteringCommunity/custom.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
@@ -32,7 +32,7 @@ export default {
|
||||
customNavigation: true,
|
||||
data() {
|
||||
return {
|
||||
component: 'List',
|
||||
component: 'Statistics',
|
||||
params: {},
|
||||
refresh: true,
|
||||
tabIndex: 0,
|
||||
|
||||
@@ -91,15 +91,18 @@ export default {
|
||||
|
||||
Object.keys(res.data.finishCountMap).forEach((key) => {
|
||||
var info = {
|
||||
name: key,
|
||||
value: res.data.finishCountMap[key]
|
||||
'name': key,
|
||||
'value': res.data.finishCountMap[key]
|
||||
}
|
||||
this.finishData.push(info)
|
||||
|
||||
if (res.data.finishCountMap[key] > 0) {
|
||||
this.showFinish = true
|
||||
}
|
||||
this.finishData.push(info)
|
||||
})
|
||||
|
||||
console.log(this.finishData)
|
||||
|
||||
if (this.showFinish) {
|
||||
var num = res.data.finishCountMap['累计事件办结'] / res.data.finishCountMap['累计事件上报']
|
||||
this.finshNum = Number(num * 100).toFixed(2)
|
||||
@@ -110,14 +113,14 @@ export default {
|
||||
})
|
||||
res.data.groupList.map((item) => {
|
||||
var info = {
|
||||
name: item.groupName,
|
||||
value: item.totalNum
|
||||
'name': item.groupName,
|
||||
'value': item.totalNum
|
||||
}
|
||||
this.typeData.push(info)
|
||||
})
|
||||
|
||||
this.$nextTick(() => {
|
||||
if (this.showFinish) {
|
||||
console.log(this.finishData)
|
||||
if (this.showFinish) {
|
||||
this.finishChartInit('finish')
|
||||
}
|
||||
if (this.trendData.length) {
|
||||
@@ -126,7 +129,6 @@ export default {
|
||||
if (this.typeData.length) {
|
||||
this.typeChartInit('type')
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
})
|
||||
@@ -144,11 +146,12 @@ export default {
|
||||
})
|
||||
},
|
||||
finishChartInit(id) {
|
||||
console.log(this.finishData)
|
||||
var ctx = uni.createCanvasContext(id, this);
|
||||
uChartsInstance[id] = new uCharts({
|
||||
type: "ring",
|
||||
width: 300,
|
||||
height: 240,
|
||||
width: 350,
|
||||
height: 250,
|
||||
context: ctx,
|
||||
series: [
|
||||
{
|
||||
|
||||
377
src/project/weiyang/AppRedemptionPoints/AppRedemptionPoints.vue
Normal file
@@ -0,0 +1,377 @@
|
||||
<template>
|
||||
<div class="AppRedemptionPoints">
|
||||
<div class="fixed-top">
|
||||
<div class="header">
|
||||
<div class="num">
|
||||
<p>积分余额</p>
|
||||
<h3>{{total}}</h3>
|
||||
</div>
|
||||
<div class="btn" @click="toMyOrder">我的订单</div>
|
||||
</div>
|
||||
<div class="search">
|
||||
<u-tabs :list="tabList" :is-scroll="false" :current="currentTabs" height="76" font-size="28" bg-color="#fff" inactive-color="#8891A1"
|
||||
active-color="#1D2229 " :bar-style="barStyle" @change="changeTab" ></u-tabs>
|
||||
<div class="type-select">
|
||||
<div :class="currentType == index ? 'item active' : 'item'" v-for="(item, index) in typeList" :key="index" @click="typeClick(index)">
|
||||
{{item}}
|
||||
<span v-if="index == 1" class="down-icon">⏷</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="point-select" v-if="currentType == 1">
|
||||
<u-tabs :list="pointTypeList" :is-scroll="true" :current="currentPoint" height="80" font-size="24" bg-color="#fff" inactive-color="#666666"
|
||||
active-color="#4181FF" bar-width="0" :bold="false" @change="pointClick" ></u-tabs>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="list-content">
|
||||
<div class="left-list" v-if="leftList.length">
|
||||
<div class="list-info" v-for="(item, index) in leftList" :key="index">
|
||||
<div class="item" @click="toProductDetail(item)">
|
||||
<img :src="item.picUrl" alt="">
|
||||
<div class="type" :class="`type`+item.type">{{ $dict.getLabel('integralSGTypeText', item.typeText) }}</div>
|
||||
<div class="content">
|
||||
<p class="text">{{item.title}}</p>
|
||||
<div class="item-money">
|
||||
<h3>{{item.integralPrice}}积分</h3>
|
||||
<p v-if="item.type == 1">+¥{{item.payMoney}}</p>
|
||||
<span v-if="item.type == 1">兑换后再付</span>
|
||||
</div>
|
||||
<div v-if="item.shopStatus == 1">
|
||||
<div class="btn" :class="total >= item.integralPrice ? 'btn1' : 'btn0'" @click.stop="toOrder(item)" v-if="item.stock > 0">{{total >= item.integralPrice ? '去兑换' : '积分不足'}}</div>
|
||||
<div class="btn btn0" v-else>商品缺货</div>
|
||||
</div>
|
||||
<div v-else>
|
||||
<div class="btn btn0">店铺停用</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right-list" v-if="rightList.length">
|
||||
<div class="list-info" v-for="(item, index) in rightList" :key="index">
|
||||
<div class="item" @click="toProductDetail(item)">
|
||||
<img :src="item.picUrl" alt="">
|
||||
<div class="type" :class="`type`+item.type">{{ $dict.getLabel('integralSGTypeText', item.typeText) }}</div>
|
||||
<div class="content">
|
||||
<p class="text">{{item.title}}</p>
|
||||
<div class="item-money">
|
||||
<h3>{{item.integralPrice}}积分</h3>
|
||||
<p v-if="item.type == 1">+¥{{item.payMoney}}</p>
|
||||
<span v-if="item.type == 1">兑换后再付</span>
|
||||
</div>
|
||||
<div v-if="item.shopStatus == 1">
|
||||
<div class="btn" :class="total >= item.integralPrice ? 'btn1' : 'btn0'" @click.stop="toOrder(item)" v-if="item.stock > 0">{{total >= item.integralPrice ? '去兑换' : '积分不足'}}</div>
|
||||
<div class="btn btn0" v-else>商品缺货</div>
|
||||
</div>
|
||||
<div v-else>
|
||||
<div class="btn btn0">店铺停用</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!goodsList.length"></AiEmpty>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapState} from "vuex";
|
||||
|
||||
export default {
|
||||
name: 'AppRedemptionPoints',
|
||||
appName: '积分兑换',
|
||||
data() {
|
||||
return {
|
||||
tabList: [{name: '全部'}, {name: '积分兑换'}, {name: '低价商品'}],
|
||||
currentTabs: 0,
|
||||
barStyle: {
|
||||
'width': '20px',
|
||||
'height': '3px',
|
||||
'border-radius': '2px',
|
||||
'bottom': '-3px',
|
||||
'background': '#2D7DFF'
|
||||
},
|
||||
typeList: ['最新上架', '积分', '我可兑换的'],
|
||||
currentType: 0,
|
||||
pointTypeList: [{name: '全部'}, {name: '50分以下'}, {name: '100分以下'}, {name: '200分以下'}, {name: '5000分以下'}],
|
||||
currentPoint: 0,
|
||||
goodsList: [],
|
||||
leftList: [],
|
||||
rightList: [],
|
||||
total: 0,
|
||||
current: 1
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
},
|
||||
onLoad() {
|
||||
this.getTotal()
|
||||
this.$dict.load(['integralSGTypeText']).then(() => {
|
||||
this.getList()
|
||||
})
|
||||
uni.$on('updateGoodsList', () => {
|
||||
this.getListInit()
|
||||
})
|
||||
},
|
||||
onShow() {
|
||||
this.getTotal()
|
||||
},
|
||||
methods: {
|
||||
getTotal() {
|
||||
this.$instance.post(`/app/appintegraluser/integralUserInfoFD`).then(res => {
|
||||
if (res?.data) {
|
||||
this.total = res.data.integral || 0
|
||||
}
|
||||
})
|
||||
},
|
||||
getListInit() {
|
||||
this.goodsList = []
|
||||
this.leftList = []
|
||||
this.rightList = []
|
||||
this.current = 1
|
||||
this.getList()
|
||||
},
|
||||
getList() {
|
||||
this.$instance.post(`/app/appintegralsupermarketshop/goodsListXCX`, null, {
|
||||
params: {
|
||||
goodsType: this.currentTabs, //商品类型,0:全部、1:积分兑换、2:京东低价商品,默认0
|
||||
orderType: this.currentType == 0 ? 1 : 0, //排序类型,0:积分升序、1:上架时间倒序,默认0
|
||||
filterIntegral: this.currentType == 2 ? true : false, //过滤我可兑换的,默认false
|
||||
integralRange: this.currentType == 1 ? this.currentPoint : '', //积分区间类型,0:全部、1:50分以下、2:100分以下、3:200分以下、4:5000分以下默认0
|
||||
current: this.current
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.goodsList = this.current == 1 ? res.data.records : [...this.goodsList, ...res.data.records]
|
||||
res.data.records.map((item, index) => {
|
||||
item.typeText = item.type == 0 ? 0 : 1
|
||||
if(index%2 ==0) {
|
||||
this.leftList.push(item)
|
||||
}else {
|
||||
this.rightList.push(item)
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
changeTab(index) {
|
||||
this.currentTabs = index
|
||||
this.getListInit()
|
||||
},
|
||||
typeClick(index) {
|
||||
this.currentType = index
|
||||
this.getListInit()
|
||||
},
|
||||
pointClick(index) {
|
||||
this.currentPoint = index
|
||||
this.getListInit()
|
||||
},
|
||||
toProductDetail(item) {
|
||||
uni.navigateTo({url: `./productDetails?shopGoodsId=${item.shopGoodsId}&total=${this.total}`})
|
||||
},
|
||||
toMyOrder() {
|
||||
uni.navigateTo({url: './myOrderList'})
|
||||
},
|
||||
toOrder(item) {
|
||||
if(this.total >= item.integralPrice && item.stock > 0) {
|
||||
uni.navigateTo({url: `./placeOrder?shopGoodsId=${item.shopGoodsId}&total=${this.total}&backLevel=3`})
|
||||
}
|
||||
},
|
||||
},
|
||||
onReachBottom() {
|
||||
this.current ++
|
||||
this.getList()
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.AppRedemptionPoints {
|
||||
.fixed-top {
|
||||
background-color: #f3f6f9;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 2;
|
||||
}
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 32px 24px;
|
||||
background-color: #fff;
|
||||
margin-bottom: 24px;
|
||||
.num {
|
||||
p {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-weight: 400;
|
||||
font-size: 24px;
|
||||
color: #999;
|
||||
line-height: 34px;
|
||||
}
|
||||
h3 {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 66px;
|
||||
color: #FF6900;
|
||||
line-height: 92px;
|
||||
}
|
||||
}
|
||||
.btn {
|
||||
width: 168px;
|
||||
height: 64px;
|
||||
border: 1px solid #4181FF;
|
||||
line-height: 62px;
|
||||
border-radius: 44px;
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 26px;
|
||||
color: #4181FF;
|
||||
margin-top: 28px;
|
||||
}
|
||||
}
|
||||
.search {
|
||||
background-color: #fff;
|
||||
.type-select {
|
||||
display: flex;
|
||||
border-top: 1px solid #D8D8D8;
|
||||
line-height: 84px;
|
||||
.item {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 26px;
|
||||
color: #8891A1;
|
||||
.down-icon {
|
||||
display: inline-block;
|
||||
margin-left: 8px;
|
||||
transition: all 0.3s ease-in-out;
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
}
|
||||
.active {
|
||||
color: #4181FF;
|
||||
.down-icon {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.list-content {
|
||||
padding: 396px 0 24px 24px;
|
||||
background-color: #f3f6f9;
|
||||
overflow: hidden;
|
||||
.left-list,
|
||||
.right-list {
|
||||
width: 50%;
|
||||
float: left;
|
||||
}
|
||||
.list-info {
|
||||
width: 100%;
|
||||
}
|
||||
.item {
|
||||
width: calc(100% - 24px);
|
||||
background-color: #fff;
|
||||
border-radius: 20px;
|
||||
position: relative;
|
||||
margin-bottom: 24px;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 340px;
|
||||
border-top-left-radius: 20px;
|
||||
border-top-right-radius: 20px;
|
||||
}
|
||||
.type {
|
||||
padding: 8px 16px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
color: #FFF;
|
||||
border-top-right-radius: 20px;
|
||||
border-bottom-left-radius: 20px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
.type2 {
|
||||
background-color: #E64E39;
|
||||
}
|
||||
.type1 {
|
||||
background-color: #E64E39;
|
||||
}
|
||||
.type0 {
|
||||
background-color: #FF6900;
|
||||
}
|
||||
.content {
|
||||
padding: 16px 16px 24px;
|
||||
position: relative;
|
||||
background-color: #fff;
|
||||
.text {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 26px;
|
||||
color: #222;
|
||||
line-height: 38px;
|
||||
text-overflow: -o-ellipsis-lastline;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.item-money {
|
||||
width: calc(100% - 160px);
|
||||
h3 {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 34px;
|
||||
color: #FF6900;
|
||||
line-height: 48px;
|
||||
}
|
||||
p {
|
||||
font-family: PingFangSC;
|
||||
font-weight: 600;
|
||||
font-size: 26px;
|
||||
color: #4181FF;
|
||||
}
|
||||
span {
|
||||
display: inline-block;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-weight: 400;
|
||||
font-size: 20px;
|
||||
color: #4181FF;
|
||||
line-height: 22px;
|
||||
}
|
||||
}
|
||||
.btn {
|
||||
padding: 14px 32px;
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 22px;
|
||||
line-height: 28px;
|
||||
border-radius: 44px;
|
||||
position: absolute;
|
||||
bottom: 24px;
|
||||
right: 16px;
|
||||
}
|
||||
.btn1 {
|
||||
background-color: #2D7DFF;
|
||||
color: #FFF;
|
||||
}
|
||||
.btn0 {
|
||||
background-color: #E2E2E2;
|
||||
color: #666;
|
||||
}
|
||||
}
|
||||
}
|
||||
.item:nth-of-type(2n-1) {
|
||||
margin-right: 22px;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
BIN
src/project/weiyang/AppRedemptionPoints/img/success.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
20
src/project/weiyang/AppRedemptionPoints/jdH5.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<template>
|
||||
<div class="jdH5">
|
||||
<web-view :src="goodsJdUrl"></web-view>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
name: 'jdH5',
|
||||
data() {
|
||||
return {
|
||||
goodsJdUrl: ''
|
||||
}
|
||||
},
|
||||
onLoad(option) {
|
||||
this.goodsJdUrl = option.goodsJdUrl
|
||||
},
|
||||
}
|
||||
</script>
|
||||
315
src/project/weiyang/AppRedemptionPoints/myOrderList.vue
Normal file
@@ -0,0 +1,315 @@
|
||||
<template>
|
||||
<div class="myOrderList">
|
||||
<div class="fixed-top">
|
||||
<u-tabs :list="tabList" :is-scroll="false" :current="currentTabs" height="90" font-size="28" bg-color="#fff" inactive-color="#8891A1"
|
||||
active-color="#1D2229 " :bar-style="barStyle" @change="changeTab" ></u-tabs>
|
||||
</div>
|
||||
<div class="list-content" v-if="list.length">
|
||||
<div class="item" v-for="(item, index) in list" :key="index">
|
||||
<div class="time-flex">
|
||||
<p>{{item.createTime.substring(0, 16)}}</p>
|
||||
<div :class="`status`+item.status">{{ $dict.getLabel('integralSGOStatus', item.status) }}</div>
|
||||
</div>
|
||||
<div class="flex">
|
||||
<img :src="item.goodsPicUrl" alt="">
|
||||
<div class="type" :class="`type`+item.goodsTypeText">{{ $dict.getLabel('integralSGTypeText', item.goodsTypeText) }}</div>
|
||||
<div class="flex-right">
|
||||
<p>{{item.goodsTitle}}</p>
|
||||
<div class="num-flex">
|
||||
<h3>{{item.usedIntegral}}积分<span v-if="item.goodsType == 2">+{{item.payMoney}}元</span></h3>
|
||||
<div>x {{item.quantity}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p class="tips" v-if="item.goodsType == 2"><span>兑换成功后,点击「去购买」前往京东低价购买</span></p>
|
||||
<p class="tips" v-else>积分兑换商品,可到固定的兑换点进行「核销兑换」</p>
|
||||
<p class="remark" v-if="item.remarks">备注:{{item.remarks}}</p>
|
||||
<div class="flex-btn" v-if="item.goodsType == 2 && item.status != 2">
|
||||
<p></p>
|
||||
<div class="btn confirm" @click="openJd(item)">去购买</div>
|
||||
</div>
|
||||
<div class="flex-btn" v-if="item.goodsType != 2">
|
||||
<p>核销码:<span>{{item.verificationCode}}</span></p>
|
||||
<div class="btn" v-if="item.status == 0" @click="cancel(item)">取消订单</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-else></AiEmpty>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapState} from "vuex";
|
||||
|
||||
export default {
|
||||
name: 'myOrderList',
|
||||
appName: '我的订单',
|
||||
data() {
|
||||
return {
|
||||
tabList: [{name: '全部'}, {name: '待核销'}, {name: '已完成'}, {name: '已取消'}],
|
||||
currentTabs: 0,
|
||||
barStyle: {
|
||||
'width': '20px',
|
||||
'height': '3px',
|
||||
'border-radius': '2px',
|
||||
'bottom': '3px',
|
||||
'background': '#2D7DFF'
|
||||
},
|
||||
list: [],
|
||||
current: 1
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
},
|
||||
onLoad() {
|
||||
this.$dict.load(['integralSGOStatus', 'integralSGTypeText']).then(() => {
|
||||
this.getList()
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
changeTab(index) {
|
||||
this.currentTabs = index
|
||||
this.getListInit()
|
||||
},
|
||||
getListInit() {
|
||||
this.current = 1
|
||||
this.getList()
|
||||
},
|
||||
getList() {
|
||||
this.$instance.post(`/app/appintegralsupermarketorder/listForXCX`, null, {
|
||||
params: {
|
||||
current: this.current,
|
||||
status: this.currentTabs == 0 ? '' : this.currentTabs - 1,
|
||||
createUserId: this.user.id
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
res.data.records.map((item) => {
|
||||
item.goodsTypeText = item.goodsType == 0 ? 0 : 1
|
||||
})
|
||||
this.list = this.current == 1 ? res.data.records : [...this.list, ...res.data.records]
|
||||
}
|
||||
})
|
||||
},
|
||||
openJd(item) {
|
||||
if(item.goodsType == 1) {
|
||||
uni.navigateTo({url: `./jdH5?goodsJdUrl=${item.goodsJdUrl}`})
|
||||
}else {
|
||||
uni.navigateToMiniProgram({
|
||||
appId: item.goodsJdAppid,
|
||||
path: item.goodsJdUrl
|
||||
})
|
||||
}
|
||||
},
|
||||
cancel(item) {
|
||||
uni.showModal({
|
||||
title: '确认取消此订单?',
|
||||
content: '取消订单后,积分将退回至积分余额',
|
||||
confirmColor: "#2D7DFF",
|
||||
cancelColor: "#2D7DFF",
|
||||
cancelText: "我在想想",
|
||||
confirmText: "确认取消",
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
this.cancelOrder(item)
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
cancelOrder(item) {
|
||||
this.$instance.post(`/app/appintegralsupermarketorder/cancelForXCX?id=${item.id}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.getListInit()
|
||||
uni.$emit('updateGoodsList')
|
||||
}
|
||||
})
|
||||
},
|
||||
},
|
||||
onReachBottom() {
|
||||
this.current = this.current + 1
|
||||
this.getList()
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.myOrderList {
|
||||
min-height: 100%;
|
||||
.fixed-top {
|
||||
background-color: #fff;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 2;
|
||||
}
|
||||
.list-content {
|
||||
padding: 112px 24px 24px;
|
||||
background-color: #F3F6F9;
|
||||
.item {
|
||||
width: 100%;
|
||||
background: #FFF;
|
||||
border-radius: 16px;
|
||||
margin-bottom: 32px;
|
||||
.time-flex {
|
||||
padding: 0 32px;
|
||||
line-height: 64px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 24px;
|
||||
color: #666;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
border-bottom: 1px solid #ddd;
|
||||
div {
|
||||
color: #2D7DFF;
|
||||
}
|
||||
.status2 {
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
.flex {
|
||||
padding: 32px 32px 0;
|
||||
display: flex;
|
||||
position: relative;
|
||||
margin-bottom: 20px;
|
||||
img {
|
||||
width: 166px;
|
||||
height: 166px;
|
||||
border-radius: 16px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.type {
|
||||
position: absolute;
|
||||
left: 32px;
|
||||
bottom: 0;
|
||||
border-bottom-left-radius: 16px;
|
||||
border-bottom-right-radius: 16px;
|
||||
width: 166px;
|
||||
text-align: center;
|
||||
line-height: 34px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 18px;
|
||||
color: #FFF;
|
||||
p {
|
||||
scale: 0.9;
|
||||
}
|
||||
}
|
||||
.type2 {
|
||||
background-color: #E64E39;
|
||||
}
|
||||
.type1 {
|
||||
background-color: #E64E39;
|
||||
}
|
||||
.type0 {
|
||||
background-color: #FF6900;
|
||||
}
|
||||
.flex-right {
|
||||
width: calc(100% - 186px);
|
||||
p {
|
||||
word-break: break-all;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 26px;
|
||||
color: #222;
|
||||
line-height: 34px;
|
||||
text-overflow: -o-ellipsis-lastline;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
.num-flex {
|
||||
display: flex;
|
||||
h3 {
|
||||
width: calc(100% - 100px);
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 34px;
|
||||
color: #FF6900;
|
||||
line-height: 48px;
|
||||
span {
|
||||
display: inline-block;
|
||||
font-size: 34px;
|
||||
color: #4181FF;
|
||||
margin-left: 8px;
|
||||
}
|
||||
}
|
||||
div {
|
||||
width: 100px;
|
||||
text-align: right;
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 24px;
|
||||
color: #222;
|
||||
line-height: 48px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
.tips {
|
||||
display: inline-block;
|
||||
padding: 12px;
|
||||
line-height: 36px;
|
||||
background: #F5FCF5;
|
||||
border-radius: 16px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 24px;
|
||||
color: #3BBC37;
|
||||
margin: 0 32px 16px 32px;
|
||||
span {
|
||||
display: inline-block;
|
||||
scale: 0.9;
|
||||
}
|
||||
}
|
||||
.remark {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 24px;
|
||||
color: #666;
|
||||
line-height: 34px;
|
||||
word-break: break-all;
|
||||
margin: 0 32px 24px 32px;
|
||||
}
|
||||
.flex-btn {
|
||||
padding: 0 32px 32px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
p {
|
||||
height: 56px;
|
||||
line-height: 56px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 24px;
|
||||
color: #666;
|
||||
span {
|
||||
display: inline-block;
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 28px;
|
||||
color: #2D7DFF;
|
||||
margin-left: 8px;
|
||||
}
|
||||
}
|
||||
.btn {
|
||||
width: 136px;
|
||||
text-align: center;
|
||||
line-height: 54px;
|
||||
border: 1px solid #CCC;
|
||||
border-radius: 44px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 22px;
|
||||
color: #666;
|
||||
}
|
||||
.confirm {
|
||||
border: 1px solid #2D7DFF;
|
||||
background-color: #2D7DFF;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
</style>
|
||||
291
src/project/weiyang/AppRedemptionPoints/placeOrder.vue
Normal file
@@ -0,0 +1,291 @@
|
||||
<template>
|
||||
<div class="placeOrder">
|
||||
<div class="header-info">
|
||||
<div class="flex">
|
||||
<img :src="goodsInfo.picUrl" alt="">
|
||||
<div class="type" :class="`type`+goodsInfo.typeText">{{ $dict.getLabel('integralSGTypeText', goodsInfo.typeText) }}</div>
|
||||
<div class="flex-right">
|
||||
<p>{{goodsInfo.title}}</p>
|
||||
<div>
|
||||
<u-number-box v-model="goodsNum" @change="valChange" input-height="44" size="24" :min="1" :max="goodsInfo.stock"></u-number-box>
|
||||
</div>
|
||||
<h3>{{goodsInfo.integralPrice}}积分<span v-if="goodsInfo.type == 2">+¥{{goodsInfo.payMoney}}.00</span></h3>
|
||||
</div>
|
||||
</div>
|
||||
<p class="tips" v-if="goodsInfo.type == 2">兑换成功后,点击「去购买」前往京东低价购买</p>
|
||||
<p class="tips" v-else>积分兑换商品,可到固定的兑换点进行「核销兑换」</p>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="item-flex" @click="show=true">
|
||||
<div class="label">订单备注</div>
|
||||
<div class="value" :class="value ? '' : 'color-999'">{{value || '无备注'}}<u-icon name="arrow-right" color="#bbb" size="24"></u-icon></div>
|
||||
</div>
|
||||
<div class="item-flex">
|
||||
<div class="label">积分余额</div>
|
||||
<div class="value color-FF6900">{{total}}积分</div>
|
||||
</div>
|
||||
<div class="item-flex">
|
||||
<div class="label">支付积分</div>
|
||||
<div class="value">减{{(goodsNum*goodsInfo.integralPrice).toFixed(2)}}积分</div>
|
||||
</div>
|
||||
<div class="item-flex" v-if="goodsInfo.type == 2">
|
||||
<div class="label">京东支付</div>
|
||||
<div class="value color-999">¥{{(goodsNum*goodsInfo.payMoney).toFixed(2)}}</div>
|
||||
</div>
|
||||
</div>
|
||||
<u-popup v-model="show" mode="bottom">
|
||||
<div class="textarea">
|
||||
<u-input v-model="value" type="textarea" :height="120" :auto-height="true" placeholder="请输入备注" :clearable="false" maxlength="1000" />
|
||||
<p>字数{{value.length}}/1000</p>
|
||||
</div>
|
||||
<div class="btn">
|
||||
<span @click="value=''">清空内容</span>
|
||||
<span class="confirm" @click="confirm">保存</span>
|
||||
</div>
|
||||
</u-popup>
|
||||
<div class="bottom-btn" @click="confirmOrder()">
|
||||
<div>提交订单</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapState} from "vuex";
|
||||
|
||||
export default {
|
||||
name: 'placeOrder',
|
||||
appName: '提交订单',
|
||||
data() {
|
||||
return {
|
||||
value: '',
|
||||
show: false,
|
||||
total: 0,
|
||||
goodsInfo: {},
|
||||
goodsNum: 1,
|
||||
backLevel: 0
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
},
|
||||
onLoad(option) {
|
||||
this.shopGoodsId = option.shopGoodsId
|
||||
this.total = option.total
|
||||
this.backLevel = option.backLevel
|
||||
this.$dict.load(['integralSGTypeText']).then(() => {
|
||||
this.getDetail()
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
getDetail() {
|
||||
this.$instance.post(`/app/appintegralsupermarketshop/queryGoodsInfoXCX?shopGoodsId=${this.shopGoodsId}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.goodsInfo = res.data
|
||||
this.goodsInfo.typeText = this.goodsInfo.type == 0 ? 0 : 1
|
||||
}
|
||||
})
|
||||
},
|
||||
valChange(e) {
|
||||
this.goodsNum = e.value
|
||||
},
|
||||
confirm() {
|
||||
this.show = false
|
||||
},
|
||||
confirmOrder() {
|
||||
this.$instance.post(`/app/appintegralsupermarketorder/add`, {
|
||||
shopId: this.goodsInfo.shopId,
|
||||
goodsId: this.goodsInfo.id,
|
||||
remarks: this.value,
|
||||
quantity: this.goodsNum
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
uni.$emit('updateGoodsList')
|
||||
this.toSuccess()
|
||||
}
|
||||
})
|
||||
},
|
||||
toSuccess() {
|
||||
var integralPrice = this.goodsNum*this.goodsInfo.integralPrice
|
||||
uni.navigateTo({url: `./successOrder?integralPrice=${integralPrice}&backLevel=${this.backLevel}&shopGoodsId=${this.goodsInfo.shopGoodsId}`})
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.placeOrder {
|
||||
.header-info {
|
||||
padding: 48px 32px;
|
||||
background-color: #fff;
|
||||
margin-bottom: 24px;
|
||||
.flex {
|
||||
margin-bottom: 32px;
|
||||
display: flex;
|
||||
position: relative;
|
||||
img {
|
||||
width: 166px;
|
||||
height: 166px;
|
||||
border-radius: 16px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.type {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
border-bottom-left-radius: 16px;
|
||||
border-bottom-right-radius: 16px;
|
||||
width: 166px;
|
||||
text-align: center;
|
||||
line-height: 34px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 18px;
|
||||
color: #FFF;
|
||||
p {
|
||||
scale: 0.9;
|
||||
}
|
||||
}
|
||||
.type2 {
|
||||
background-color: #E64E39;
|
||||
}
|
||||
.type1 {
|
||||
background-color: #E64E39;
|
||||
}
|
||||
.type0 {
|
||||
background-color: #FF6900;
|
||||
}
|
||||
.flex-right {
|
||||
width: calc(100% - 186px);
|
||||
p {
|
||||
word-break: break-all;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 26px;
|
||||
color: #222;
|
||||
line-height: 34px;
|
||||
text-overflow: -o-ellipsis-lastline;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
div {
|
||||
text-align: right;
|
||||
}
|
||||
h3 {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 34px;
|
||||
color: #FF6900;
|
||||
line-height: 48px;
|
||||
span {
|
||||
display: inline-block;
|
||||
font-size: 34px;
|
||||
color: #4181FF;
|
||||
margin-left: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.tips {
|
||||
display: inline-block;
|
||||
padding: 12px;
|
||||
line-height: 36px;
|
||||
background: #F5FCF5;
|
||||
border-radius: 16px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 24px;
|
||||
color: #3BBC37;
|
||||
span {
|
||||
display: inline-block;
|
||||
scale: 0.9;
|
||||
}
|
||||
}
|
||||
}
|
||||
.content {
|
||||
padding: 0 32px;
|
||||
background-color: #fff;
|
||||
.item-flex {
|
||||
display: flex;
|
||||
padding: 30px 0;
|
||||
font-size: 26px;
|
||||
line-height: 34px;
|
||||
font-family: PingFangSC-Regular;
|
||||
.label {
|
||||
color: #222;
|
||||
width: 120px;
|
||||
}
|
||||
.value {
|
||||
width: calc(100% - 120px);
|
||||
text-align: right;
|
||||
color: #222;
|
||||
}
|
||||
.color-FF6900 {
|
||||
color: #FF6900;
|
||||
}
|
||||
.color-999 {
|
||||
color: #999;
|
||||
}
|
||||
}
|
||||
}
|
||||
.textarea {
|
||||
margin: 32px 32px 24px;
|
||||
width: calc(100% - 64px);
|
||||
padding: 16px;
|
||||
box-sizing: border-box;
|
||||
background: #f7f7f7;
|
||||
border-radius: 8px;
|
||||
p {
|
||||
font-size: 26px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
color: #999;
|
||||
line-height: 36px;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
.btn {
|
||||
padding: 0 32px 24px;
|
||||
height: 64px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
span {
|
||||
display: inline-block;
|
||||
line-height: 64px;
|
||||
font-size: 26px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
color: #666;
|
||||
}
|
||||
.confirm {
|
||||
width: 144px;
|
||||
text-align: center;
|
||||
background: #1365dd;
|
||||
border-radius: 32px;
|
||||
font-size: 28px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
.bottom-btn {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
padding: 20px 32px;
|
||||
box-sizing: border-box;
|
||||
div {
|
||||
width: 100%;
|
||||
height: 88px;
|
||||
line-height: 88px;
|
||||
text-align: center;
|
||||
border-radius: 44px;
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 34px;
|
||||
color: #FFF;
|
||||
background: #4181FF;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
165
src/project/weiyang/AppRedemptionPoints/pointsPublicity.vue
Normal file
@@ -0,0 +1,165 @@
|
||||
<template>
|
||||
<div class="pointsPublicity">
|
||||
<div class="header">
|
||||
<img :src="`${cdn}/publicity-header.png`" alt="">
|
||||
<div class="title">{{user.girdName}}积分公示</div>
|
||||
</div>
|
||||
<div class="list-content">
|
||||
<div class="item" v-for="(item, index) in list" :key="index">
|
||||
<span class="blue-tips"></span>
|
||||
<p class="title">{{item.classOne}}</p>
|
||||
<div class="item-info">
|
||||
<p class="mini-title">{{item.classTwo}}</p>
|
||||
<div class="text-flex">
|
||||
<p>{{item.classThree}}</p>
|
||||
<div>
|
||||
<img :src="`${cdn}/star-icon.png`" alt="">+{{item.integral}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!list.length"></AiEmpty>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapActions, mapState} from "vuex";
|
||||
|
||||
export default {
|
||||
name: 'pointsPublicity',
|
||||
appName: '积分公示',
|
||||
data() {
|
||||
return {
|
||||
cdn: "https://cdn.cunwuyun.cn/fengdu",
|
||||
list: [],
|
||||
current: 1
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
},
|
||||
onLoad() {
|
||||
this.getAuth()
|
||||
},
|
||||
methods: {
|
||||
...mapActions(['getUserInfo']),
|
||||
getList() {
|
||||
this.$instance.post(`/app/appintegralpublicityinfo/list?current=${this.current}&girdId=${this.user.girdId}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.list = this.current == 1 ? res.data.records : [...this.list, ...res.data.records]
|
||||
}
|
||||
})
|
||||
},
|
||||
getAuth() {
|
||||
this.$nextTick(() => {
|
||||
this.getUserInfo('qujing')
|
||||
this.getList()
|
||||
|
||||
})
|
||||
},
|
||||
},
|
||||
onReachBottom() {
|
||||
this.current++
|
||||
this.getList()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
uni-page-body{
|
||||
background-color: #fff;
|
||||
}
|
||||
.pointsPublicity {
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 9;
|
||||
background-color: #f3f6f9;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 216px;
|
||||
}
|
||||
.title {
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 34px;
|
||||
color: #222;
|
||||
line-height: 40px;
|
||||
padding: 38px 32px;
|
||||
}
|
||||
}
|
||||
.list-content {
|
||||
padding: 332px 32px 32px;
|
||||
.item {
|
||||
width: 100%;
|
||||
background: #FFF;
|
||||
box-shadow: inset 0 0 0 0 #EEEEEE;
|
||||
padding: 32px 32px 0;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
margin-bottom: 24px;
|
||||
.blue-tips {
|
||||
position: absolute;
|
||||
top: 34px;
|
||||
left: 0;
|
||||
width: 8px;
|
||||
height: 36px;
|
||||
background: #2D7DFF;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.title {
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 34px;
|
||||
color: #333;
|
||||
line-height: 40px;
|
||||
word-break: break-all;
|
||||
}
|
||||
.item-info {
|
||||
width: 100%;
|
||||
padding: 32px 0;
|
||||
border-top: 1px solid #eee;
|
||||
.mini-title {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 34px;
|
||||
color: #333;
|
||||
line-height: 40px;
|
||||
word-break: break-all;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.text-flex {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
p {
|
||||
width: calc(100% - 160px);
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 26px;
|
||||
color: #666;
|
||||
word-break: break-all;
|
||||
}
|
||||
div {
|
||||
width: 160px;
|
||||
text-align: right;
|
||||
font-family: DINAlternate-Bold;
|
||||
font-weight: 700;
|
||||
font-size: 30px;
|
||||
color: #FF7109;
|
||||
img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
margin-right: 8px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.item-info:nth-of-type(2) {
|
||||
border-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
185
src/project/weiyang/AppRedemptionPoints/productDetails.vue
Normal file
@@ -0,0 +1,185 @@
|
||||
<template>
|
||||
<div class="productDetails" v-if="goodsInfo.picUrl">
|
||||
<img :src="goodsInfo.picUrl" alt="">
|
||||
<div class="type" :class="`type`+goodsInfo.typeText">{{ $dict.getLabel('integralSGTypeText', goodsInfo.typeText) }}</div>
|
||||
<div class="product-info">
|
||||
<p>{{goodsInfo.title}}</p>
|
||||
<h3>{{goodsInfo.integralPrice}}积分<span v-if="goodsInfo.type == 2">+¥{{goodsInfo.payMoney}}<span v-if="goodsInfo.type == 2">(兑换后再付)</span></span></h3>
|
||||
<div>零售单价¥{{goodsInfo.retailPrice}}</div>
|
||||
<span class="tips" v-if="goodsInfo.type == 2">兑换成功后,点击「去购买」前往京东低价购买</span>
|
||||
<span class="tips" v-else>积分兑换商品,可到固定的兑换点进行「核销兑换」</span>
|
||||
</div>
|
||||
<div class="product-content">
|
||||
<p>商品描述:</p>
|
||||
<p v-html="goodsInfo.description"></p>
|
||||
</div>
|
||||
<div class="btn" @click="toOrder()" v-if="goodsInfo.shopStatus == 1">
|
||||
<div :class="total >= goodsInfo.integralPrice ? 'status1' : 'status0'" v-if="goodsInfo.stock > 0">{{total >= goodsInfo.integralPrice ? '立即兑换' : '积分不足'}}</div>
|
||||
<div class="status0" v-else>商品缺货</div>
|
||||
</div>
|
||||
<div class="btn" v-else>
|
||||
<div class="status0">店铺停用</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapState} from "vuex";
|
||||
|
||||
export default {
|
||||
name: 'productDetails',
|
||||
appName: '兑换商品',
|
||||
data() {
|
||||
return {
|
||||
shopGoodsId: '',
|
||||
goodsInfo: {},
|
||||
total: 0
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
},
|
||||
onLoad(option) {
|
||||
this.shopGoodsId = option.shopGoodsId
|
||||
this.total = option.total
|
||||
this.$dict.load(['integralSGTypeText']).then(() => {
|
||||
this.getDetail()
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
getDetail() {
|
||||
this.$instance.post(`/app/appintegralsupermarketshop/queryGoodsInfoXCX?shopGoodsId=${this.shopGoodsId}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.goodsInfo = res.data
|
||||
this.goodsInfo.typeText = this.goodsInfo.type == 0 ? 0 : 1
|
||||
}
|
||||
})
|
||||
},
|
||||
toOrder() {
|
||||
if(this.total >= this.goodsInfo.integralPrice && this.goodsInfo.stock > 0 && this.goodsInfo.status == 1) {
|
||||
uni.navigateTo({url: `./placeOrder?shopGoodsId=${this.goodsInfo.shopGoodsId}&total=${this.total}&backLevel=4`})
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.productDetails {
|
||||
background-color: #f3f6f9;
|
||||
position: relative;
|
||||
img {
|
||||
width: 100%;
|
||||
height: 750px;
|
||||
}
|
||||
.type {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
line-height: 42px;
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 30px;
|
||||
color: #FFF;
|
||||
padding: 16px 16px 16px 36px;
|
||||
border-bottom-left-radius: 40px;
|
||||
}
|
||||
.type2 {
|
||||
background-color: #E64E39;
|
||||
}
|
||||
.type1 {
|
||||
background-color: #E64E39;
|
||||
}
|
||||
.type0 {
|
||||
background-color: #FF6900;
|
||||
}
|
||||
.product-info {
|
||||
padding: 32px;
|
||||
background-color: #fff;
|
||||
margin-bottom: 24px;
|
||||
p {
|
||||
word-break: break-all;
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 48px;
|
||||
color: #222;
|
||||
letter-spacing: 0;
|
||||
line-height: 76px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
h3 {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 44px;
|
||||
color: #FF6900;
|
||||
margin-bottom: 8px;
|
||||
span {
|
||||
font-size: 44px;
|
||||
color: #4181FF;
|
||||
margin-left: 8px;
|
||||
span {
|
||||
font-weight: 400;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 32px;
|
||||
}
|
||||
}
|
||||
}
|
||||
div {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-weight: 400;
|
||||
font-size: 24px;
|
||||
color: #999;
|
||||
line-height: 34px;
|
||||
margin-bottom: 24px;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
.tips {
|
||||
display: inline-block;
|
||||
padding: 12px;
|
||||
line-height: 36px;
|
||||
background: #F5FCF5;
|
||||
border-radius: 16px;
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 24px;
|
||||
color: #3BBC37;
|
||||
}
|
||||
}
|
||||
.product-content {
|
||||
padding: 34px 64px 162px;
|
||||
background-color: #fff;
|
||||
p {
|
||||
font-family: PingFangSC-Regular;
|
||||
font-size: 32px;
|
||||
color: #666;
|
||||
line-height: 60px;
|
||||
}
|
||||
}
|
||||
.btn {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
background-color: #fff;
|
||||
padding: 20px 32px;
|
||||
box-sizing: border-box;
|
||||
div {
|
||||
width: 100%;
|
||||
height: 88px;
|
||||
line-height: 88px;
|
||||
text-align: center;
|
||||
border-radius: 44px;
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 34px;
|
||||
}
|
||||
.status1 {
|
||||
color: #FFF;
|
||||
background: #4181FF;
|
||||
}
|
||||
.status0 {
|
||||
color: #666;
|
||||
background: #E2E2E2;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
145
src/project/weiyang/AppRedemptionPoints/successOrder.vue
Normal file
@@ -0,0 +1,145 @@
|
||||
<template>
|
||||
<div class="successOrder">
|
||||
<img src="./img/success.png" alt="">
|
||||
|
||||
|
||||
<div v-if="goodsInfo.type == 0">
|
||||
<h3>提交成功</h3>
|
||||
<p>提交「积分兑换」订单成功,扣减 <span>{{integralPrice}}积分</span></p>
|
||||
<div class="btn-flex">
|
||||
<div @click="back">返回</div>
|
||||
<div @click="toOrderList">查看订单</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else>
|
||||
<h3>兑换成功</h3>
|
||||
<p>提交「京东低价商品」订单成功,扣减 <span>{{integralPrice}}积分</span><br/>
|
||||
可点击下方按钮前往京东商城进行低价购买
|
||||
</p>
|
||||
<div class="btn" @click="openJd">去购买</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapState} from "vuex";
|
||||
|
||||
export default {
|
||||
name: 'successOrder',
|
||||
appName: '提交订单',
|
||||
data() {
|
||||
return {
|
||||
integralPrice: 0,
|
||||
backLevel: 1,
|
||||
shopGoodsId: '',
|
||||
goodsInfo: {}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
},
|
||||
onLoad(option) {
|
||||
console.log(option)
|
||||
this.integralPrice = option.integralPrice
|
||||
this.backLevel = option.backLevel
|
||||
this.shopGoodsId = option.shopGoodsId
|
||||
this.getDetail()
|
||||
},
|
||||
methods: {
|
||||
getDetail() {
|
||||
this.$instance.post(`/app/appintegralsupermarketshop/queryGoodsInfoXCX?shopGoodsId=${this.shopGoodsId}`).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.goodsInfo = res.data
|
||||
}
|
||||
})
|
||||
},
|
||||
openJd() {
|
||||
if(this.goodsInfo.type == 1) {
|
||||
uni.navigateTo({url: `./jdH5?goodsJdUrl=${this.goodsInfo.jdUrl}`})
|
||||
}else {
|
||||
uni.navigateToMiniProgram({
|
||||
appId: this.goodsInfo.jdAppid,
|
||||
path: this.goodsInfo.jdUrl
|
||||
})
|
||||
}
|
||||
},
|
||||
back() {
|
||||
uni.navigateBack({delta: Number(this.backLevel)})
|
||||
},
|
||||
toOrderList() {
|
||||
uni.redirectTo({
|
||||
url: './myOrderList'
|
||||
})
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
uni-page-body{
|
||||
background-color: #fff;
|
||||
}
|
||||
.successOrder {
|
||||
padding: 0 60px;
|
||||
text-align: center;
|
||||
img {
|
||||
width: 240px;
|
||||
height: 232px;
|
||||
margin: 168px auto 32px auto;
|
||||
}
|
||||
h3 {
|
||||
font-family: PingFangSC-SNaNpxibold;
|
||||
font-weight: 600;
|
||||
font-size: 40px;
|
||||
color: #333;
|
||||
line-height: 56px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
p {
|
||||
color: #333;
|
||||
font-size: 30px;
|
||||
font-family: PingFangSC;
|
||||
line-height: 50px;
|
||||
text-align: center;
|
||||
margin-bottom: 80px;
|
||||
span {
|
||||
color: #FF6900;
|
||||
}
|
||||
}
|
||||
.btn {
|
||||
width: 410px;
|
||||
height: 88px;
|
||||
line-height: 88px;
|
||||
background: #2D7DFF;
|
||||
border-radius: 44px;
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 34px;
|
||||
color: #FFF;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.btn-flex {
|
||||
font-family: PingFangSC-Medium;
|
||||
font-weight: 500;
|
||||
font-size: 34px;
|
||||
margin: 0 auto;
|
||||
div {
|
||||
display: inline-block;
|
||||
width: 272px;
|
||||
text-align: center;
|
||||
height: 88px;
|
||||
line-height: 88px;
|
||||
border-radius: 44px;
|
||||
color: #FFF;
|
||||
background-color: #2D7DFF;
|
||||
}
|
||||
div:nth-of-type(1) {
|
||||
background-color: #E5EFFF;
|
||||
color: #2D7DFF;
|
||||
margin-right: 26px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
472
src/project/weiyang/AppVillageActivity/ActivityDetail.vue
Normal file
@@ -0,0 +1,472 @@
|
||||
<template>
|
||||
<div class="detail" v-if="pageShow" :style="{ paddingBottom: info.status === '0' ? '130px' : '40px' }">
|
||||
<div class="detail-wrapper">
|
||||
<image class="banner" mode="aspectFill" :src="info.url" />
|
||||
<h2>{{ info.title }}</h2>
|
||||
<div class="detail-status">
|
||||
<span :class="'status' + info.status">{{ $dict.getLabel('villageActivityStatus', info.status) }}</span>
|
||||
<div class="detail-status__right">
|
||||
<span>已有</span>
|
||||
<i>{{ info.realNum }}</i>
|
||||
<span>人报名</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="detail-info">
|
||||
<div class="detail-info__item">
|
||||
<label>联系人</label>
|
||||
<div class="right">
|
||||
<span>{{ info.contactPerson }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="detail-info__item">
|
||||
<label>联系方式</label>
|
||||
<div class="right detail-info__item--phone" hover-class="text-hover" @click="call(info.contactPhone)">
|
||||
<span>{{ info.contactPhone }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="detail-info__item">
|
||||
<label>开始时间</label>
|
||||
<div class="right">
|
||||
<span>{{ info.beginTime }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="detail-info__item">
|
||||
<label>结束时间</label>
|
||||
<div class="right">
|
||||
<span>{{ info.endTime }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="detail-info__item">
|
||||
<label>活动地点</label>
|
||||
<div class="right">
|
||||
<span>{{ info.areaName }}{{ info.address }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="detail-tips">
|
||||
<u-tabs :list="tabs" font-size="32" bg-color="transparent" inactive-color="#999999" :active-item-style="tabActive" :is-scroll="true" :current="currIndex" @change="(i) => (currIndex = i)"> </u-tabs>
|
||||
<div class="tab-content">
|
||||
<div class="rich-content" v-show="currIndex === 0">
|
||||
<u-parse :html="info.content"></u-parse>
|
||||
</div>
|
||||
<div class="dynamic-list" v-show="currIndex === 1">
|
||||
<div class="dynamic-item" v-for="(item, index) in list" :key="index">
|
||||
<div class="dynamic-item__top">
|
||||
<h2>{{ item.name }}</h2>
|
||||
<span>{{ item.createTime }}</span>
|
||||
</div>
|
||||
<p>{{ item.content }}</p>
|
||||
<div class="images" v-if="item.images.length">
|
||||
<image v-for="(img, i) in item.images" @click="preview(img.url, item.images)" :key="i" class="banner" :src="img.url" v-if="i < 3" />
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!list.length"></AiEmpty>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="add" v-if="isShowAdd" hover-class="text-hover" @click="toAdd(`./AddDynamic?activityId=${id}`)">
|
||||
<image src="/static/img/add-big.png" />
|
||||
</div>
|
||||
<div class="btn-wrapper" v-if="info.status === '0'">
|
||||
<div class="btn" :class="[info.hasReport === '1' ? 'disabled' : '']" @click="signUp" hover-class="text-hover">{{ info.hasReport === '1' ? '已报名' : '立即报名' }}</div>
|
||||
</div>
|
||||
<AiLogin ref="login" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
|
||||
export default {
|
||||
appName: '活动详情',
|
||||
data() {
|
||||
return {
|
||||
currIndex: 0,
|
||||
tabActive: {
|
||||
color: '#333333',
|
||||
fontSize: '16px',
|
||||
},
|
||||
pageShow: false,
|
||||
id: '',
|
||||
current: 1,
|
||||
list: [],
|
||||
isMore: false,
|
||||
info: '',
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
tabs() {
|
||||
return [
|
||||
{
|
||||
name: '活动须知',
|
||||
},
|
||||
{
|
||||
name: '活动动态',
|
||||
},
|
||||
]
|
||||
},
|
||||
...mapState(['user', 'token']),
|
||||
|
||||
isShowAdd() {
|
||||
const time = (new Date().getTime() - new Date(this.info.endTime).getTime()) / 60 / 60 / 1000
|
||||
if (!this.info.endTime) {
|
||||
return false
|
||||
}
|
||||
|
||||
if (this.info.status === '0') {
|
||||
return false
|
||||
}
|
||||
|
||||
return !(this.info.status === '2' && time > 24)
|
||||
},
|
||||
},
|
||||
|
||||
onLoad(query) {
|
||||
this.$loading()
|
||||
this.id = query.id
|
||||
this.getList(query.id)
|
||||
this.$dict.load(['villageActivityStatus']).then(() => {
|
||||
this.getInfo(query.id)
|
||||
})
|
||||
uni.$on('update', () => {
|
||||
this.isMore = false
|
||||
this.current = 1
|
||||
this.getList(query.id)
|
||||
})
|
||||
},
|
||||
|
||||
methods: {
|
||||
getInfo(id) {
|
||||
this.$instance
|
||||
.post(`/app/appvillageactivityinfo/queryDetailById?id=${id}`)
|
||||
.then((res) => {
|
||||
if (res.code === 0) {
|
||||
this.info = res.data
|
||||
this.info.url = res.data.url ? JSON.parse(res.data.url)[0].url : ''
|
||||
|
||||
this.$nextTick(() => {
|
||||
this.pageShow = true
|
||||
})
|
||||
}
|
||||
|
||||
this.$hideLoading()
|
||||
})
|
||||
.catch(() => {
|
||||
this.$hideLoading()
|
||||
})
|
||||
},
|
||||
|
||||
toAdd(url) {
|
||||
if (!this.token) {
|
||||
this.$refs.login.show()
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
if (!this.user.areaId) {
|
||||
this.$linkTo('/pages/AppMine/userInfo')
|
||||
return false
|
||||
}
|
||||
|
||||
if (this.info.hasReport === '0') {
|
||||
return this.$toast('您还未报名,无法发布活动动态!')
|
||||
}
|
||||
|
||||
this.$linkTo(url)
|
||||
},
|
||||
|
||||
signUp() {
|
||||
if (this.info.status === '1') {
|
||||
return this.$toast('报名已截止')
|
||||
}
|
||||
|
||||
if (this.info.status === '2') {
|
||||
return this.$toast('活动已结束')
|
||||
}
|
||||
|
||||
if (!this.token) {
|
||||
this.$refs.login.show()
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
if (!this.user.areaId) {
|
||||
this.$linkTo('/pages/AppMine/userInfo')
|
||||
return false
|
||||
}
|
||||
|
||||
this.$loading()
|
||||
this.$instance
|
||||
.post('/app/appvillageactivityuser/report', {
|
||||
activityId: this.id,
|
||||
userId: this.$store.state.user.id,
|
||||
name: this.$store.state.user.nickName,
|
||||
phone: this.$store.state.user.phone,
|
||||
})
|
||||
.then((res) => {
|
||||
if (res.code === 0) {
|
||||
this.$toast('报名成功')
|
||||
this.getInfo(this.id)
|
||||
}
|
||||
|
||||
this.$hideLoading()
|
||||
})
|
||||
},
|
||||
|
||||
preview(url, imgs) {
|
||||
uni.previewImage({
|
||||
urls: imgs.map((v) => v.url),
|
||||
current: url,
|
||||
})
|
||||
},
|
||||
|
||||
getList(id) {
|
||||
if (this.isMore) return
|
||||
|
||||
this.$instance
|
||||
.post(`/app/appvillageactivitypost/list?activityId=${id}`, null, {
|
||||
params: {
|
||||
current: this.current,
|
||||
size: 10,
|
||||
},
|
||||
})
|
||||
.then((res) => {
|
||||
if (res.code == 0) {
|
||||
if (this.current > 1) {
|
||||
this.list = [...this.list, ...res.data.records].map((v) => {
|
||||
return {
|
||||
...v,
|
||||
images: v.images ? JSON.parse(v.images) : [],
|
||||
}
|
||||
})
|
||||
} else {
|
||||
this.list = res.data.records.map((v) => {
|
||||
return {
|
||||
...v,
|
||||
images: v.images ? JSON.parse(v.images) : [],
|
||||
}
|
||||
})
|
||||
}
|
||||
this.pageShow = true
|
||||
if (res.data.records.length < 10) {
|
||||
this.isMore = true
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
this.current = this.current + 1
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
call(phone) {
|
||||
uni.makePhoneCall({
|
||||
phoneNumber: phone,
|
||||
})
|
||||
},
|
||||
},
|
||||
|
||||
onReachBottom() {
|
||||
this.getList()
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.detail {
|
||||
min-height: 100vh;
|
||||
padding: 0 0 250px 0;
|
||||
background: #fff;
|
||||
|
||||
.add {
|
||||
position: fixed;
|
||||
bottom: 140px;
|
||||
right: 20px;
|
||||
z-index: 111;
|
||||
width: 128px;
|
||||
height: 128px;
|
||||
|
||||
image {
|
||||
width: 128px;
|
||||
height: 128px;
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep .u-tab-item {
|
||||
font-size: 32px !important;
|
||||
|
||||
&:first-child {
|
||||
padding: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.detail-wrapper {
|
||||
padding-bottom: 48px;
|
||||
background: #fff;
|
||||
|
||||
& > image {
|
||||
width: 100%;
|
||||
height: 480px;
|
||||
}
|
||||
|
||||
& > h2 {
|
||||
line-height: 1.4;
|
||||
padding: 32px;
|
||||
font-size: 40px;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
& > div {
|
||||
padding: 0 32px;
|
||||
}
|
||||
}
|
||||
|
||||
.detail-info {
|
||||
.detail-info__item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 34px 0;
|
||||
border-bottom: 1px solid #dddddd;
|
||||
|
||||
label {
|
||||
color: #999999;
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
max-width: 480px;
|
||||
text-align: right;
|
||||
|
||||
span {
|
||||
color: #333333;
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
&.detail-info__item--phone {
|
||||
span {
|
||||
color: #4181ff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.detail-status {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding-bottom: 12px;
|
||||
|
||||
& > span {
|
||||
width: 96px;
|
||||
height: 44px;
|
||||
line-height: 44px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
background: #42d784;
|
||||
border-radius: 8px;
|
||||
font-size: 26px;
|
||||
|
||||
&.status1 {
|
||||
background: #1aaaff;
|
||||
}
|
||||
|
||||
&.status2 {
|
||||
background: #e4e4e4;
|
||||
}
|
||||
}
|
||||
|
||||
.detail-status__right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
span {
|
||||
color: #999999;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
i {
|
||||
font-style: normal;
|
||||
color: #4181ff;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tab-active {
|
||||
color: #333333;
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.detail-tips {
|
||||
padding: 10px 32px 0 !important;
|
||||
|
||||
& > h2 {
|
||||
height: 116px;
|
||||
line-height: 116px;
|
||||
color: #333333;
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.4;
|
||||
margin-top: 24px;
|
||||
color: #333333;
|
||||
font-size: 32px;
|
||||
text-align: justify;
|
||||
}
|
||||
}
|
||||
|
||||
.dynamic-list {
|
||||
.dynamic-item {
|
||||
padding: 24px 0;
|
||||
|
||||
.images {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 16px;
|
||||
|
||||
image {
|
||||
width: 226px;
|
||||
height: 226px;
|
||||
margin: 0 4px 4px 0;
|
||||
border-radius: 16px;
|
||||
}
|
||||
image:nth-child(3n + 0) {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.dynamic-item__top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
span {
|
||||
color: #999999;
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #333333;
|
||||
font-size: 34px;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.4;
|
||||
text-align: justify;
|
||||
color: #333333;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
127
src/project/weiyang/AppVillageActivity/AddDynamic.vue
Normal file
@@ -0,0 +1,127 @@
|
||||
<template>
|
||||
<div class="dynamic">
|
||||
<div class="form-item">
|
||||
<div class="form-item__wrapper">
|
||||
<div class="form-item__title">
|
||||
<i></i>
|
||||
<h2>内容</h2>
|
||||
</div>
|
||||
<div class="form-item__textarea">
|
||||
<textarea v-model="content" :maxlength="500" placeholder="请输入详细描述信息"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="form-item__wrapper">
|
||||
<div class="form-item__title">
|
||||
<i style="opacity: 0;"></i>
|
||||
<h2>图片上传</h2>
|
||||
<span>(最多9张)</span>
|
||||
</div>
|
||||
<div class="form-item__img">
|
||||
<AiUploader v-model="images" :limit="9"></AiUploader>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-wrapper">
|
||||
<div class="btn disabled" hover-class="text-hover" @click="submit">提交</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
appName: "添加活动动态",
|
||||
data() {
|
||||
return {
|
||||
content: '',
|
||||
images: [],
|
||||
id: '',
|
||||
flag: false
|
||||
}
|
||||
},
|
||||
onLoad(e) {
|
||||
this.id = e.activityId
|
||||
},
|
||||
|
||||
methods: {
|
||||
submit() {
|
||||
if (this.flag) return
|
||||
|
||||
if (!this.content && !this.images.length) {
|
||||
return this.$u.toast('内容或图片不能为空')
|
||||
}
|
||||
this.flag = true
|
||||
|
||||
|
||||
this.$loading()
|
||||
this.$instance.post('/app/appvillageactivitypost/addOrUpdate', {
|
||||
content: this.content,
|
||||
activityId: this.id,
|
||||
avatar: this.$store.state.user.avatarUrl,
|
||||
name: this.$store.state.user.nickName,
|
||||
images: JSON.stringify(this.images)
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$toast('提交成功')
|
||||
uni.$emit('update')
|
||||
setTimeout(() => {
|
||||
uni.navigateBack({
|
||||
delta: 1
|
||||
})
|
||||
}, 800)
|
||||
}
|
||||
|
||||
this.$hideLoading()
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.dynamic {
|
||||
.form-item {
|
||||
margin-bottom: 24px;
|
||||
padding-left: 32px;
|
||||
padding-bottom: 20px;
|
||||
background: #fff;
|
||||
|
||||
.form-item__wrapper {
|
||||
padding-right: 32px;
|
||||
}
|
||||
|
||||
.form-item__textarea, .form-item__img {
|
||||
padding-left: 18px;
|
||||
|
||||
textarea {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.form-item__title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 32px 0;
|
||||
|
||||
i {
|
||||
font-size: 32px;
|
||||
color: #FF4466;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 28px;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
h2 {
|
||||
padding: 0 4px;
|
||||
font-weight: 600;
|
||||
font-size: 32px;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
228
src/project/weiyang/AppVillageActivity/AppVillageActivity.vue
Normal file
@@ -0,0 +1,228 @@
|
||||
<template>
|
||||
<div class="activity" v-if="pageShow">
|
||||
<div class="activity-title">
|
||||
<h2>活动列表</h2>
|
||||
<div class="right">
|
||||
<span>共</span>
|
||||
<i>{{ total }}</i>
|
||||
<span>个活动</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="activity-list">
|
||||
<div class="item" hover-class="bg-hover" @click="$linkTo(`./ActivityDetail?id=${item.id}`)" v-for="(item, index) in list" :key="index">
|
||||
<div class="left">
|
||||
<h2>{{ item.title }}</h2>
|
||||
<div class="left-info">
|
||||
<span>由</span>
|
||||
<i>{{ item.createUserName }}</i>
|
||||
<span>发起</span>
|
||||
</div>
|
||||
<div class="date">{{ item.beginTime }} 至 {{ item.endTime }}</div>
|
||||
<div class="address">{{ item.areaName }}{{ item.address }}</div>
|
||||
</div>
|
||||
<div class="right">
|
||||
<span :class="'status' + item.status">{{ item.statusName }}</span>
|
||||
<image :src="item.url" mode="aspectFill" />
|
||||
</div>
|
||||
</div>
|
||||
<AiEmpty v-if="!list.length"></AiEmpty>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'AppVillageActivity',
|
||||
appName: '志愿活动',
|
||||
data() {
|
||||
return {
|
||||
list: [],
|
||||
pageShow: false,
|
||||
current: 1,
|
||||
total: 0,
|
||||
isMore: false,
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
this.$loading()
|
||||
this.$dict.load(['villageActivityStatus']).then(() => {
|
||||
this.getList()
|
||||
})
|
||||
},
|
||||
computed: {
|
||||
...mapState(['user']),
|
||||
},
|
||||
methods: {
|
||||
getList() {
|
||||
if (this.isMore) return
|
||||
|
||||
this.$instance
|
||||
.post(`/app/appvillageactivityinfo/listUp`, null, {
|
||||
params: {
|
||||
current: this.current,
|
||||
size: 15,
|
||||
// areaId: uni.getStorageSync('areaId'),
|
||||
areaId: this.user.areaId,
|
||||
},
|
||||
})
|
||||
.then((res) => {
|
||||
if (res.code == 0) {
|
||||
this.total = res.data.total
|
||||
if (this.current > 1) {
|
||||
this.list = [...this.list, ...res.data.records].map((v) => {
|
||||
return {
|
||||
...v,
|
||||
statusName: this.$dict.getLabel('villageActivityStatus', v.status),
|
||||
url: v.url ? JSON.parse(v.url)[0].url : '',
|
||||
}
|
||||
})
|
||||
} else {
|
||||
this.list = res.data.records.map((v) => {
|
||||
return {
|
||||
...v,
|
||||
statusName: this.$dict.getLabel('villageActivityStatus', v.status),
|
||||
url: v.url ? JSON.parse(v.url)[0].url : '',
|
||||
}
|
||||
})
|
||||
}
|
||||
uni.hideLoading()
|
||||
this.pageShow = true
|
||||
if (res.data.records.length < 15) {
|
||||
this.isMore = true
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
this.current = this.current + 1
|
||||
} else {
|
||||
uni.hideLoading()
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
uni.hideLoading()
|
||||
})
|
||||
},
|
||||
},
|
||||
onReachBottom() {
|
||||
this.getList()
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.activity {
|
||||
padding-bottom: 40px;
|
||||
|
||||
.activity-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 32px;
|
||||
padding: 48px 32px 0 32px;
|
||||
|
||||
& > h2 {
|
||||
font-size: 38px;
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
span {
|
||||
color: #666666;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
i {
|
||||
color: #4181ff;
|
||||
font-style: normal;
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0 32px 24px;
|
||||
padding: 32px;
|
||||
border-radius: 16px;
|
||||
background: #fff;
|
||||
|
||||
.left {
|
||||
flex: 1;
|
||||
color: #666666;
|
||||
font-size: 26px;
|
||||
|
||||
h2 {
|
||||
margin-bottom: 16px;
|
||||
color: #333;
|
||||
font-size: 32px;
|
||||
font-weight: 600;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.date {
|
||||
margin: 8px 0;
|
||||
}
|
||||
|
||||
.left-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
i {
|
||||
color: #4181ff;
|
||||
font-style: normal;
|
||||
font-size: 26px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.right {
|
||||
position: relative;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
|
||||
image {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
span {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
width: 96px;
|
||||
height: 44px;
|
||||
line-height: 44px;
|
||||
font-size: 26px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.status0 {
|
||||
background: #42d784;
|
||||
}
|
||||
|
||||
.status1 {
|
||||
background: #1aaaff;
|
||||
}
|
||||
|
||||
.status2 {
|
||||
background: #e4e4e4;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||