【开发】 标协会员

This commit is contained in:
fengachen
2021-12-15 17:49:32 +08:00
parent 2bfeded661
commit 8236283f2c
20 changed files with 842 additions and 8 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ Page({
data: {
pageRputers: [
{
path: "",
path: "../standardBasicInfo/standardBasicInfo",
imgPath:'../../assets/images/basic-info.png',
val: "1",
name: "基本信息"
@@ -31,7 +31,7 @@ Page({
name: "信息交流会"
},
{
path: "../meeting/meeting?type=", // 这里应该是一个新的页面 或者用分标委的页面
path: "../council/council",
imgPath:'../../assets/images/lishi.png',
val: "5",
name: "理事会"
+8 -2
View File
@@ -1,7 +1,11 @@
<!--pages/standardRouter/standardRouter.wxml-->
<view class="select-box">
<view class="wrap">
<view class="select-box">
<view class="select">
<view class="select-item" wx:for="{{pageRputers}}" wx:for-item="item" wx:key="path" bindtap="clickSelect"
<view class="select-item" wx:for="{{pageRputers}}" wx:for-item="item" wx:key="path" bindtap="clickSelect"
data-item="{{item}}" data-index="{{index}}">
<view class="image-box">
<view class="img-mask"></view>
@@ -14,4 +18,6 @@
<text class="select-item"></text>
<text class="select-item"></text>
</view>
</view>
</view>
+13 -1
View File
@@ -1,6 +1,11 @@
/* pages/standardRouter/standardRouter.wxss */
page {
background: #f5f5f5;
padding: 15px;
box-sizing: border-box;
}
.select-box {
transform: translateY(40rpx);
transform: translateY(60rpx);
}
.select {
padding: 20rpx;
@@ -38,4 +43,11 @@
border-radius: 50%;
background-color: #069f99;
opacity: .2;
}
.wrap {
margin: 0 auto;
background-color: #fff;
border-radius: 10px;
height: 150pt;
}