| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!-- 为发布者个人页面 -->
- <view class="card block-background-color">
- <cover-image class="avatar" src="{{hasPublisherInfo ? publisherInfo.publisherAvatar : '/images/user/user.png'}}"></cover-image>
- <view wx:if="{{hasPublisherInfo}}" class="publisher-name primary-text">{{publisherInfo.publisherName}}</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>
|