修改bug
This commit is contained in:
@@ -266,7 +266,7 @@ const getMyActivityListData = async (pageNum = 1) => {
|
||||
const res = await getMyActivityList(params)
|
||||
|
||||
if (res.code === 200) {
|
||||
const list = res.rows || []
|
||||
const list = res.data || []
|
||||
total.value = res.total || 0
|
||||
|
||||
if (pageNum === 1) {
|
||||
|
||||
@@ -97,7 +97,7 @@
|
||||
<view class="section" style="margin-bottom: 40rpx;">
|
||||
<view class="section-title">活动详情</view>
|
||||
<view class="section-content">
|
||||
<view>{{activityConent.content || "暂无"}}</view>
|
||||
<view v-html="activityConent.content"></view>
|
||||
<view></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -286,28 +286,28 @@ const submitStatus = async () => {
|
||||
|
||||
/* 主体内容 */
|
||||
.content {
|
||||
flex: 1;
|
||||
padding: 15px 0px;
|
||||
max-height: calc(100vh - 120px);
|
||||
padding: 10px 0px;
|
||||
}
|
||||
|
||||
/* 表单项通用样式 */
|
||||
.form-item {
|
||||
background-color: #fff;
|
||||
padding: 15px;
|
||||
padding: 20px 15px;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 15px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.label {
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
margin-bottom: 10px;
|
||||
margin-bottom: 6px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* 输入框样式 */
|
||||
.textarea {
|
||||
width: 100%;
|
||||
min-height: 120px;
|
||||
height: 180px;
|
||||
padding: 10px;
|
||||
border: 1px solid #eee;
|
||||
border-radius: 4px;
|
||||
@@ -318,7 +318,7 @@ const submitStatus = async () => {
|
||||
text-align: right;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
margin-top: 5px;
|
||||
margin-top: 4px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
<view class="nav-title">修改密码</view>
|
||||
</view>
|
||||
|
||||
<!-- 密码提示 -->
|
||||
<view class="pwd-tips">密码为 6-16 位,需同时包含字母和数字</view>
|
||||
|
||||
<!-- 新密码输入框 -->
|
||||
<view class="input-item">
|
||||
<uni-easyinput class="input-content" type="password" v-model="newPassword"
|
||||
@@ -172,6 +175,14 @@ const handleConfirm = () => {
|
||||
line-height: 88rpx;
|
||||
}
|
||||
|
||||
/* 密码提示 */
|
||||
.pwd-tips {
|
||||
font-size: 24rpx;
|
||||
color: #999;
|
||||
margin-bottom: 20rpx;
|
||||
padding-left: 10rpx;
|
||||
}
|
||||
|
||||
/* 确定按钮 */
|
||||
.confirm-btn {
|
||||
width: 100%;
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
<view class="dot" v-if="notice.readStatus === '0'"></view>
|
||||
</view>
|
||||
<view class="info">{{ notice.author }} · {{ notice.publishTime }}</view>
|
||||
<view class="content">{{ notice.noticeContent }}</view>
|
||||
<view class="content" v-html="notice.noticeContent"></view>
|
||||
<view class="detail" @click="goToDetail(notice)">
|
||||
<text style="color:#2F77FD;font-size: 24rpx;">详情</text>
|
||||
<uni-icons type="right" size="13" color="#007AFF"/>
|
||||
|
||||
@@ -19,9 +19,7 @@
|
||||
|
||||
<!-- 文章内容 -->
|
||||
<view class="article-content">
|
||||
<view class="paragraph">
|
||||
{{noticeDetail.noticeContent}}
|
||||
</view>
|
||||
<view class="paragraph" v-html="noticeDetail.noticeContent"></view>
|
||||
<view class="articleimg">
|
||||
<image src="https://wuyeadmin.bugtc.com/images/home/notice-1.png" mode="" style="width: 100%;height: 100%;border-radius: 20rpx;"></image>
|
||||
<image src="https://wuyeadmin.bugtc.com/images/home/notice-2.png" mode="" style="width: 100%;height: 100%;border-radius: 20rpx;"></image>
|
||||
|
||||
@@ -245,7 +245,7 @@ onUnload(() =>{
|
||||
position: sticky;
|
||||
top: 44px;
|
||||
z-index: 100;
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 60px;
|
||||
/* box-shadow: 0 4rpx 12rpx rgba(0, 122, 255, 0.2); */
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user