| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!-- 为发布者个人页面 -->
- <view class="card block-background-color">
- <cover-image class="avatar" src="{{hasPubInfo ? pubInfo[pubIndex].publisher[0].avatar : '/images/user/user.png'}}">
- </cover-image>
- <view wx:if="{{hasPubInfo}}" class="publisher-name primary-text">{{pubInfo[pubIndex].publisher[0].name}}</view>
- </view>
- <view class="gap"></view>
- <view class="btn block-background-color" hover-class="btn-hover" bindtap="publishInfo">
- <image class="btn-icon" mode="aspectFit" src="/images/user/publish1.png"></image>
- <view class="btn-text primary-text">发布消息</view>
- <view class="btn-arrow secondary-text">></view>
- </view>
- <view class="line"></view>
- <view class="btn block-background-color" hover-class="btn-hover" bindtap="myPublish">
- <image class="btn-icon" mode="aspectFit" src="/images/user/publish2.png"></image>
- <view class="btn-text primary-text">我发布的消息</view>
- <view class="btn-arrow secondary-text">></view>
- </view>
- <view class="line"></view>
- <view class="btn block-background-color" hover-class="btn-hover" bindtap="receivedQuestion">
- <image class="btn-icon" mode="aspectFit" src="/images/user/question.png"></image>
- <view class="btn-text primary-text">我收到的问题</view>
- <view class="btn-arrow secondary-text">></view>
- </view>
- <view class="gap"></view>
- <view class="btn block-background-color" hover-class="btn-hover" bindtap="administratorSetting">
- <image class="btn-icon" mode="aspectFit" src="/images/user/setting.png"></image>
- <view class="btn-text primary-text">管理员资格设置</view>
- <view class="btn-arrow secondary-text">></view>
- </view>
- <view class="line"></view>
- <view class="btn block-background-color" hover-class="btn-hover" bindtap="publisherInfoChange">
- <image class="btn-icon" mode="aspectFit" src="/images/user/modify.png"></image>
- <view class="btn-text primary-text">社团组织信息修改</view>
- <view class="btn-arrow secondary-text">></view>
- </view>
- <view class="gap"></view>
- <picker class="btn block-background-color" model:value="{{pubIndex}}" range="{{pubName}}">
- <image class="btn-icon" mode="aspectFit" src="/images/user/setting.png"></image>
- <view class="btn-text primary-text">切换社团组织</view>
- <view class="btn-arrow secondary-text">></view>
- </picker>
|