小程序公告
This commit is contained in:
@@ -143,8 +143,8 @@ export default {
|
||||
return {
|
||||
lists: [
|
||||
{
|
||||
iconPath: 'home',
|
||||
selectedIconPath: 'home-fill',
|
||||
iconPath: 'order',
|
||||
selectedIconPath: 'order-fill',
|
||||
text: '统计分析',
|
||||
isDot: true,
|
||||
customIcon: false,
|
||||
@@ -385,6 +385,17 @@ export default {
|
||||
|
||||
changeTab(e) {
|
||||
this.currentTabBar = e
|
||||
if (this.currentTabBar == 0) {
|
||||
this.getList()
|
||||
this.$nextTick(() => {
|
||||
if (this.currentTabs == 0) {
|
||||
this.Echarts1 = echarts.init(document.getElementById('echarts1'))
|
||||
} else {
|
||||
this.Echarts2 = echarts.init(document.getElementById('echarts2'))
|
||||
}
|
||||
this.getEchart()
|
||||
})
|
||||
}
|
||||
if (this.currentTabBar == 1) {
|
||||
this.getList()
|
||||
}
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
</p>
|
||||
</div>
|
||||
</AiTopFixed>
|
||||
|
||||
<div class="card">
|
||||
<AiCell title label="群标签">
|
||||
<u-icon label="添加" size="38" name="iconAdd" custom-prefix="iconfont" color="#1365DD" label-color="#1365DD" @tap="showTagManage = true" />
|
||||
@@ -50,6 +51,7 @@
|
||||
</u-row>
|
||||
</AiCell>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<AiCell title label="群成员"></AiCell>
|
||||
<div class="wrap">
|
||||
@@ -70,6 +72,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<TagManage v-if="showTagManage" />
|
||||
<AiBack v-if="isNormal && !showTagManage" />
|
||||
</div>
|
||||
@@ -77,10 +80,13 @@
|
||||
|
||||
<script>
|
||||
import { mapActions } from 'vuex'
|
||||
import TagManage from './tagManage'
|
||||
|
||||
export default {
|
||||
name: 'GroupList',
|
||||
components: {},
|
||||
components: {
|
||||
TagManage,
|
||||
},
|
||||
props: {},
|
||||
provide() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user