From df87df692f246f54b03069c59e36c9e25347980c Mon Sep 17 00:00:00 2001 From: chengkun <2500338766@qq.com> Date: Thu, 14 Jul 2022 08:50:21 +0800 Subject: [PATCH] =?UTF-8?q?feature-hub-1.0:=20=E7=B4=A0=E6=9D=90=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E7=95=8C=E9=9D=A2=E6=9E=84=E5=8E=9F=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 2 +- pages/index/index.vue | 4 ++-- pages/index/material/material.vue | 18 +++++++++++++++--- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/pages.json b/pages.json index da4bbff..9760a6a 100644 --- a/pages.json +++ b/pages.json @@ -24,7 +24,7 @@ }, { "path": "pages/index/material/material", "style": { - "navigationBarTitleText": "", + "navigationBarTitleText": "素材管理", "enablePullDownRefresh": false } diff --git a/pages/index/index.vue b/pages/index/index.vue index 1ed92ca..a734c35 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -85,7 +85,7 @@ }, { typeId: 4, - text: '朋友圈动图', + text: '朋友圈', num: '', }, { @@ -95,7 +95,7 @@ }, { typeId: 6, - text: 'apple watch', + text: 'iwatch', num: '' } ] diff --git a/pages/index/material/material.vue b/pages/index/material/material.vue index 63711c7..b5d5857 100644 --- a/pages/index/material/material.vue +++ b/pages/index/material/material.vue @@ -1,6 +1,9 @@ @@ -8,11 +11,20 @@ export default { data() { return { - + statusCurrent: 0, + activeColor: '#007aff', + styleType: 'text', + statusList: ['已上架', '已下架','待审核','审核通过','审核未通过'], + typeList:['头像','Gif动图','手机壁纸','朋友圈','表情包','iwatch'], } }, methods: { - + onClickStatus(e1){ + console.log('statusE',e1) + }, + onClickType(e2){ + console.log('typeE',e2) + }, } }