tab
This commit is contained in:
parent
006a3a5459
commit
16c21e4152
24
pages.json
24
pages.json
@ -57,5 +57,29 @@
|
|||||||
"navigationBarTitleText": "uni-app",
|
"navigationBarTitleText": "uni-app",
|
||||||
"navigationBarBackgroundColor": "#F8F8F8",
|
"navigationBarBackgroundColor": "#F8F8F8",
|
||||||
"backgroundColor": "#F8F8F8"
|
"backgroundColor": "#F8F8F8"
|
||||||
|
},
|
||||||
|
"tabBar":{
|
||||||
|
"color": "#7A7E83",
|
||||||
|
"selectedColor": "#3cc51f",
|
||||||
|
"borderStyle": "black",
|
||||||
|
"backgroundColor": "#ffffff",
|
||||||
|
"height": "50px",
|
||||||
|
"fontSize": "10px",
|
||||||
|
"iconWidth": "24px",
|
||||||
|
"spacing": "3px",
|
||||||
|
"list": [{
|
||||||
|
"pagePath": "pages/index/index",
|
||||||
|
"iconPath": "",
|
||||||
|
"selectedIconPath": "",
|
||||||
|
"text": "首页",
|
||||||
|
"selectedColor":"#FBFBFB"
|
||||||
|
}, {
|
||||||
|
"pagePath": "pages/user/index",
|
||||||
|
"iconPath": "",
|
||||||
|
"selectedIconPath": "",
|
||||||
|
"text": "我的",
|
||||||
|
"selectedColor":"#FBFBFB"
|
||||||
|
}]
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -46,6 +46,7 @@
|
|||||||
<view class="title">投诉简介</view>
|
<view class="title">投诉简介</view>
|
||||||
<textarea placeholder-style="color:#999999" placeholder="请输入内容" />
|
<textarea placeholder-style="color:#999999" placeholder="请输入内容" />
|
||||||
</view>
|
</view>
|
||||||
|
<!-- 事件 -->
|
||||||
<view class="btn" @click="showComplaint=true">确定</view>
|
<view class="btn" @click="showComplaint=true">确定</view>
|
||||||
</view>
|
</view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
@ -65,7 +66,7 @@
|
|||||||
</scroll-view>
|
</scroll-view>
|
||||||
</swiper-item>
|
</swiper-item>
|
||||||
</swiper>
|
</swiper>
|
||||||
<view class="release-btn">
|
<view class="release-btn" @click="publish">
|
||||||
<image src="/static/home/1.png"></image>
|
<image src="/static/home/1.png"></image>
|
||||||
<view class="text">发布</view>
|
<view class="text">发布</view>
|
||||||
</view>
|
</view>
|
||||||
@ -76,7 +77,26 @@
|
|||||||
<view>投诉成功</view>
|
<view>投诉成功</view>
|
||||||
<view>请等待审核结果</view>
|
<view>请等待审核结果</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="btn">确认</view>
|
<view class="btn" @click="showComplaint = false">确认</view>
|
||||||
|
</view>
|
||||||
|
</u-popup>
|
||||||
|
<u-popup v-model="publishstate" mode="bottom">
|
||||||
|
<view class="publish">
|
||||||
|
<view class="list">
|
||||||
|
<view>
|
||||||
|
<image></image>
|
||||||
|
<text>直播</text>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
|
<image></image>
|
||||||
|
<text></text>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
|
<image></image>
|
||||||
|
<text></text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<image class="off"></image>
|
||||||
</view>
|
</view>
|
||||||
</u-popup>
|
</u-popup>
|
||||||
</view>
|
</view>
|
||||||
@ -136,7 +156,8 @@ export default {
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
publishstate:true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
@ -146,6 +167,9 @@ export default {
|
|||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
publish(){
|
||||||
|
|
||||||
|
},
|
||||||
setWorker(e) {
|
setWorker(e) {
|
||||||
// console.log(e);
|
// console.log(e);
|
||||||
this.worker = {
|
this.worker = {
|
||||||
@ -304,5 +328,35 @@ export default {
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.publish{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 50rpx 84rpx 31rpx 78rpx;
|
||||||
|
.list{
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
>view{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
>image{
|
||||||
|
width: 94rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
}
|
||||||
|
>text{
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.off{
|
||||||
|
width: 37rpx;
|
||||||
|
height: 37rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
Loading…
Reference in New Issue
Block a user