Browse Source

feature-hub-1.0: 素材管理界面构原型

feature-1.0
chengkun 4 years ago
parent
commit
df87df692f
  1. 2
      pages.json
  2. 4
      pages/index/index.vue
  3. 18
      pages/index/material/material.vue

2
pages.json

@ -24,7 +24,7 @@
}, { }, {
"path": "pages/index/material/material", "path": "pages/index/material/material",
"style": { "style": {
"navigationBarTitleText": "", "navigationBarTitleText": "素材管理",
"enablePullDownRefresh": false "enablePullDownRefresh": false
} }

4
pages/index/index.vue

@ -85,7 +85,7 @@
}, },
{ {
typeId: 4, typeId: 4,
text: '朋友圈动图', text: '朋友圈',
num: '', num: '',
}, },
{ {
@ -95,7 +95,7 @@
}, },
{ {
typeId: 6, typeId: 6,
text: 'apple watch', text: 'iwatch',
num: '' num: ''
} }
] ]

18
pages/index/material/material.vue

@ -1,6 +1,9 @@
<template> <template>
<view> <view>
我是素材管理界面 <uni-segmented-control :current="statusCurrent" :values="statusList" :style-type="styleType"
:active-color="activeColor" @clickItem="onClickStatus" />
<uni-segmented-control :current="ttypeCurrent" :values="typeList" :style-type="styleType"
:active-color="activeColor" @clickItem="onClickType" />
</view> </view>
</template> </template>
@ -8,11 +11,20 @@
export default { export default {
data() { data() {
return { return {
statusCurrent: 0,
activeColor: '#007aff',
styleType: 'text',
statusList: ['已上架', '已下架','待审核','审核通过','审核未通过'],
typeList:['头像','Gif动图','手机壁纸','朋友圈','表情包','iwatch'],
} }
}, },
methods: { methods: {
onClickStatus(e1){
console.log('statusE',e1)
},
onClickType(e2){
console.log('typeE',e2)
},
} }
} }
</script> </script>

Loading…
Cancel
Save