Commit 999943f3 authored by xhx's avatar xhx

fix:文本

parent 1d7229c4
...@@ -115,6 +115,8 @@ export default Vue.extend({ ...@@ -115,6 +115,8 @@ export default Vue.extend({
title: '提示', title: '提示',
message: '确认关闭当前活动?', message: '确认关闭当前活动?',
}).then(() => { }).then(() => {
this.$store.commit('app/SET_TEXT', '发起的活动')
this.$store.commit('app/SET_TEXT1', '活动')
service.memberCloseVote({ service.memberCloseVote({
voteId: id voteId: id
}).then(res => { }).then(res => {
......
<template> <template>
<div class="flex w-full justify-around bg-app-blue-1 z-50" > <div class="flex w-full justify-around bg-app-blue-1 z-50" >
{{ currentIndex }} <!-- {{ currentIndex }} -->
<div v-for="(i,index) in routeList" :key="index" class="py-3 flex flex-col text-center " @click="navigating(i,index)"> <div v-for="(i,index) in routeList" :key="index" class="py-3 flex flex-col text-center " @click="navigating(i,index)">
<div class="self-center"> <div class="self-center">
<app-icon customize :type='i.meta.icon' size='18px' :color='index===activedIndex?"#FFBB00":" #FFFFFF"'></app-icon> <app-icon customize :type='i.meta.icon' size='18px' :color='index===activedIndex?"#FFBB00":" #FFFFFF"'></app-icon>
...@@ -96,9 +96,9 @@ export default Vue.extend({ ...@@ -96,9 +96,9 @@ export default Vue.extend({
} }
return value return value
}, },
currentIndex() { // currentIndex() {
return this.$store.state.app.index // return this.$store.state.app.index
}, // },
address():string { address():string {
return this.$store.state.app.address return this.$store.state.app.address
}, },
......
...@@ -220,9 +220,9 @@ export default Vue.extend({ ...@@ -220,9 +220,9 @@ export default Vue.extend({
params.isOpen = this.checked params.isOpen = this.checked
params.startHeight = parseInt(params.startHeight) params.startHeight = parseInt(params.startHeight)
params.endHeight = parseInt(params.endHeight) params.endHeight = parseInt(params.endHeight)
this.$store.commit('app/SET_TEXT', '发起的提案') this.$store.commit('app/SET_TEXT', '发起的活动')
service.createVote(params).then(() => { service.createVote(params).then(() => {
this.$store.commit('app/SET_TEXT1', '提案') this.$store.commit('app/SET_TEXT1', '活动')
}) })
}, },
setPerson() { setPerson() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment