diff --git a/pages.json b/pages.json
index b83611a..d61eeb5 100644
--- a/pages.json
+++ b/pages.json
@@ -57,5 +57,29 @@
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#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"
+ }]
+
}
}
diff --git a/pages/index/index.vue b/pages/index/index.vue
index 1e86ffe..e2d1833 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -46,6 +46,7 @@
投诉简介
+
确定
@@ -65,7 +66,7 @@
-
+
发布
@@ -76,7 +77,26 @@
投诉成功
请等待审核结果
- 确认
+ 确认
+
+
+
+
+
+
+
+ 直播
+
+
+
+
+
+
+
+
+
+
+
@@ -136,7 +156,8 @@ export default {
}
]
}
- ]
+ ],
+ publishstate:true
}
},
components: {
@@ -146,6 +167,9 @@ export default {
},
methods: {
+ publish(){
+
+ },
setWorker(e) {
// console.log(e);
this.worker = {
@@ -304,5 +328,35 @@ export default {
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;
+ }
+ }
}
\ No newline at end of file