Commit 2a7cc30c authored by liwei's avatar liwei

Merge remote-tracking branch 'origin/master'

parents 812769d2 772ad369
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
<u-read-more ref="uReadMore" :toggle="true" color="#415C9E" <u-read-more ref="uReadMore" :toggle="true" color="#415C9E"
:textIndent="0" showHeight="126rpx"> :textIndent="0" showHeight="126rpx">
<view @click="gotoDetail(info)" style="font-size: 28rpx;color: #333333;"> <view @click="gotoDetail(info)" style="font-size: 28rpx;color: #333333;">
<view class="" style="line-height: 1.5;"> <view class="detail" style="line-height: 1.5;">
{{info.content}} {{info.content}}
</view> </view>
</view> </view>
...@@ -401,4 +401,11 @@ ...@@ -401,4 +401,11 @@
} }
} }
.detail{
width: 500rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style> </style>
...@@ -194,9 +194,7 @@ ...@@ -194,9 +194,7 @@
//处理动态照片 //处理动态照片
if (item.pictureId != null){ if (item.pictureId != null){
const urlArray = JSON.parse(item.pictureId) const urlArray = JSON.parse(item.pictureId)
console.log('urlArray.id:',urlArray.id)
if (urlArray.id.length>0){ if (urlArray.id.length>0){
console.log('11111111111111')
let arr = [] let arr = []
urlArray.id.forEach(item => { urlArray.id.forEach(item => {
getOssUrl(item).then(imgRes => { getOssUrl(item).then(imgRes => {
...@@ -228,7 +226,6 @@ ...@@ -228,7 +226,6 @@
} }
}) })
this.$refs.paging.completeByTotal(list,res.data.total); this.$refs.paging.completeByTotal(list,res.data.total);
console.log('22222222',this.dataList)
}) })
// 组件加载时会自动触发此方法,因此默认页面加载时会自动触发,无需手动调用 // 组件加载时会自动触发此方法,因此默认页面加载时会自动触发,无需手动调用
......
...@@ -422,6 +422,10 @@ ...@@ -422,6 +422,10 @@
.timetext { .timetext {
font-size: 14px; font-size: 14px;
width: 300rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-family: Source Han Sans CN-Regular, Source Han Sans CN; font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-weight: 400; font-weight: 400;
color: #666666; color: #666666;
......
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
<view class="my-article-content" v-if="articleInfo.content !== null"> <view class="my-article-content" v-if="articleInfo.content !== null">
{{articleInfo.content}} {{articleInfo.content}}
</view> </view>
<view :class="['my-article-image-1',articleImg.length == 2 ? 'my-article-image-2':'']" v-if="articleImg.length"> <view class="my-article-image-1" v-if="articleImg.length">
<image v-for="item in articleImg" :src="item" mode="aspectFill"></image> <image v-for="item in articleImg" :src="item" mode="aspectFill"></image>
</view> </view>
</view> </view>
...@@ -1010,6 +1010,9 @@ import {articleList, getOssUrl, userArticleList} from "../../api/article"; ...@@ -1010,6 +1010,9 @@ import {articleList, getOssUrl, userArticleList} from "../../api/article";
} }
.my-article-content{ .my-article-content{
padding: 30rpx 42rpx; padding: 30rpx 42rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: 28rpx; font-size: 28rpx;
color: #333333; color: #333333;
} }
...@@ -1018,8 +1021,8 @@ import {articleList, getOssUrl, userArticleList} from "../../api/article"; ...@@ -1018,8 +1021,8 @@ import {articleList, getOssUrl, userArticleList} from "../../api/article";
justify-content: space-between; justify-content: space-between;
padding: 30rpx 42rpx; padding: 30rpx 42rpx;
image{ image{
width: calc(33% - 10rpx); width: calc(26% - 10rpx);
height: 198rpx; height: 168rpx;
border-radius: 12rpx; border-radius: 12rpx;
} }
} }
......
...@@ -28,9 +28,13 @@ ...@@ -28,9 +28,13 @@
<image class="poptime-img" :src="baseUrl+'/activity/date.png'"/> <image class="poptime-img" :src="baseUrl+'/activity/date.png'"/>
<view class="poptime-text">{{activityDetail.startTime}}</view> <view class="poptime-text">{{activityDetail.startTime}}</view>
</view> </view>
<view class="pop-time">
<image class="poptime-img" :src="baseUrl+'/activity/date.png'"/>
<view class="poptime-text">{{activityDetail.endTime}}</view>
</view>
<view class="pop-price"> <view class="pop-price">
<image class="popprice-img" :src="baseUrl+'/activity/unitPrice.png'"/> <image class="popprice-img" :src="baseUrl+'/activity/unitPrice.png'"/>
<view class="popprice-text"><text>{{activityDetail.applicationFee}}</text></view> <view class="popprice-text"><text>{{activityDetail.applicationFee}}</text></view>
</view> </view>
<view class="pop-time" style="margin-top: 10px;"> <view class="pop-time" style="margin-top: 10px;">
<view class="poptime-text">已报名人数:{{activityDetail.applicationCount}}/{{activityDetail.maxApplicationCount}}</view> <view class="poptime-text">已报名人数:{{activityDetail.applicationCount}}/{{activityDetail.maxApplicationCount}}</view>
...@@ -50,7 +54,6 @@ ...@@ -50,7 +54,6 @@
<!-- </view>--> <!-- </view>-->
<!-- </view>--> <!-- </view>-->
<view class="all-price"> <view class="all-price">
<view class="all-money">共计:<text>{{totalprice}}</text></view>
<view v-if="activityDetail.applicationCount != activityDetail.maxApplicationCount" class="all-button" @click="submitorder">确认报名</view> <view v-if="activityDetail.applicationCount != activityDetail.maxApplicationCount" class="all-button" @click="submitorder">确认报名</view>
<view v-else class="all-button" style="background: #999999;" >报名人数已满</view> <view v-else class="all-button" style="background: #999999;" >报名人数已满</view>
</view> </view>
...@@ -445,7 +448,7 @@ export default { ...@@ -445,7 +448,7 @@ export default {
.all-price{ .all-price{
height: 192rpx; height: 192rpx;
display: flex; display: flex;
justify-content: space-between; justify-content: center;
align-items: center; align-items: center;
.all-money{ .all-money{
font-size: 16px; font-size: 16px;
...@@ -457,7 +460,7 @@ export default { ...@@ -457,7 +460,7 @@ export default {
} }
} }
.all-button{ .all-button{
width: 328rpx; width: 460rpx;
height: 88rpx; height: 88rpx;
background: #BD1A2D; background: #BD1A2D;
border-radius: 22px 22px 22px 22px; border-radius: 22px 22px 22px 22px;
......
...@@ -157,9 +157,11 @@ export default{ ...@@ -157,9 +157,11 @@ export default{
//设置上级评论id 加这个逻辑是为了保证永远只有两层结构 //设置上级评论id 加这个逻辑是为了保证永远只有两层结构
if (value.parentId == null){ if (value.parentId == null){
//点击的第一层评论 //点击的第一层评论
this.parentId = value.businessId
this.commentId = value.businessId this.commentId = value.businessId
} else { } else {
//点击的第二层评论 //点击的第二层评论
this.parentId = value.parentId
this.commentId = value.businessId this.commentId = value.businessId
} }
}, },
...@@ -255,6 +257,7 @@ export default{ ...@@ -255,6 +257,7 @@ export default{
const params = { const params = {
articleId: this.articleInfo.businessId,//动态id articleId: this.articleInfo.businessId,//动态id
commentContent:value,//评论内容 commentContent:value,//评论内容
parentId:this.parentId,//上级评论ID
commentId: this.commentId commentId: this.commentId
} }
comment(params).then(res=>{ comment(params).then(res=>{
......
...@@ -218,6 +218,7 @@ ...@@ -218,6 +218,7 @@
.item { .item {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
white-space: pre-wrap;
padding: 40rpx 0 0rpx 0; padding: 40rpx 0 0rpx 0;
margin-left: 32rpx; margin-left: 32rpx;
margin-right: 32rpx; margin-right: 32rpx;
...@@ -288,6 +289,9 @@ ...@@ -288,6 +289,9 @@
font-size: 28rpx; font-size: 28rpx;
color: #333333; color: #333333;
margin-bottom: 16rpx; margin-bottom: 16rpx;
max-width: 700rpx;
word-wrap: break-word; // 允许长单词或URL地址换行到下一行
word-break: break-all; // 对于中文非常有用,允许任意字符间的断行
::v-deep .u-read-more__toggle { ::v-deep .u-read-more__toggle {
justify-content: flex-end !important; justify-content: flex-end !important;
......
...@@ -117,6 +117,7 @@ ...@@ -117,6 +117,7 @@
// 删除图片 // 删除图片
deletePic(event) { deletePic(event) {
this[`fileList${event.name}`].splice(event.index, 1) this[`fileList${event.name}`].splice(event.index, 1)
this.uploadImgJSON.id.splice(event.index, 1)
}, },
// 新增图片 // 新增图片
afterRead(event) { afterRead(event) {
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
<u-read-more ref="uReadMore" :toggle="true" color="#415C9E" <u-read-more ref="uReadMore" :toggle="true" color="#415C9E"
:textIndent="0" showHeight="126rpx"> :textIndent="0" showHeight="126rpx">
<view @click="gotoDetail(info)" style="font-size: 28rpx;color: #333333;"> <view @click="gotoDetail(info)" style="font-size: 28rpx;color: #333333;">
<view class="" style="line-height: 1.5;"> <view class="detail" style="line-height: 1.5;">
{{info.content}} {{info.content}}
</view> </view>
</view> </view>
...@@ -435,4 +435,11 @@ ...@@ -435,4 +435,11 @@
} }
} }
.detail{
width: 500rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style> </style>
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
</view> </view>
</view> </view>
<view class="strs" v-if="userData.articleContent !== null"> <view class="strs" v-if="userData.articleContent !== null">
{{userData.articleContent}} {{userData.articleContent ? userData.articleContent : ''}}
</view> </view>
<view :class="['imgs',articleUrl.length == 2 ? 'twoTemp':'']" v-if="articleUrl !== null && articleUrl.length"> <view :class="['imgs',articleUrl.length == 2 ? 'twoTemp':'']" v-if="articleUrl !== null && articleUrl.length">
<image v-for="item in articleUrl" :src="item" <image v-for="item in articleUrl" :src="item"
...@@ -125,7 +125,7 @@ ...@@ -125,7 +125,7 @@
<image :src="baseUrl+'/user/indexabout.png'" mode="aspectFill"></image> <image :src="baseUrl+'/user/indexabout.png'" mode="aspectFill"></image>
<view class="title" style="font-family: SC-Bold;">关于我自己</view> <view class="title" style="font-family: SC-Bold;">关于我自己</view>
</view> </view>
<view class="one">{{ userData.memIntroduce }}</view> <view class="detail">{{ userData.memIntroduce ? userData.memIntroduce : '' }}</view>
<view class="one"></view> <view class="one"></view>
</view> </view>
</view> </view>
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
<image :src="baseUrl+'/user/indexlove.png'" mode="aspectFill"></image> <image :src="baseUrl+'/user/indexlove.png'" mode="aspectFill"></image>
<view class="title" style="font-family: SC-Bold;">兴趣爱好</view> <view class="title" style="font-family: SC-Bold;">兴趣爱好</view>
</view> </view>
<view class="one">{{ userData.memHobby }}</view> <view class="detail">{{ userData.memHobby ? userData.memHobby : '' }}</view>
<view class="one"></view> <view class="one"></view>
</view> </view>
</view> </view>
...@@ -147,7 +147,7 @@ ...@@ -147,7 +147,7 @@
<image :src="baseUrl+'/user/indexcharacter.png'" mode="aspectFill"></image> <image :src="baseUrl+'/user/indexcharacter.png'" mode="aspectFill"></image>
<view class="title" style="font-family: SC-Bold;">心仪的Ta</view> <view class="title" style="font-family: SC-Bold;">心仪的Ta</view>
</view> </view>
<view class="one">{{ userData.memHalfDesire }}</view> <view class="detail">{{ userData.memHalfDesire ? userData.memHalfDesire : '' }}</view>
<view class="one"></view> <view class="one"></view>
</view> </view>
</view> </view>
...@@ -796,6 +796,14 @@ ...@@ -796,6 +796,14 @@
font-size: 28rpx; font-size: 28rpx;
margin-top: 26rpx; margin-top: 26rpx;
} }
.detail{
color: #434343;
font-size: 28rpx;
margin-top: 25rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
} }
} }
...@@ -1097,6 +1105,9 @@ ...@@ -1097,6 +1105,9 @@
} }
.strs{ .strs{
padding: 30rpx 42rpx; padding: 30rpx 42rpx;
max-width: 700rpx;
word-wrap: break-word; // 允许长单词或URL地址换行到下一行
word-break: break-all; // 对于中文非常有用,允许任意字符间的断行
font-size: 28rpx; font-size: 28rpx;
color: #333333; color: #333333;
} }
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
v-model="addParams.title" v-model="addParams.title"
border="none" border="none"
placeholder="请输入标题" placeholder="请输入标题"
maxlength="40"
></u--input> ></u--input>
</u-form-item> </u-form-item>
<u-form-item <u-form-item
......
...@@ -40,19 +40,19 @@ ...@@ -40,19 +40,19 @@
<view class="divss"> <view class="divss">
<view class="namne">提示</view> <view class="namne">提示</view>
<view class="namnes">充值成功,预计10秒钟后到账</view> <view class="namnes">充值成功,预计10秒钟后到账</view>
<u-count-down <!-- <u-count-down-->
:time="10000" <!-- :time="10000"-->
format="mm:ss" <!-- format="mm:ss"-->
:auto-start="true" <!-- :auto-start="true"-->
@change="updateTimeData" <!-- @change="updateTimeData"-->
> <!-- >-->
<view class="time"> <!-- <view class="time">-->
<text class="time__doc"></text> <!-- <text class="time__doc"></text>-->
<view class="time__custom"> <!-- <view class="time__custom">-->
<text class="time__custom__item">{{ showSeconds }}</text> <!-- <text class="time__custom__item">{{ showSeconds }}</text>-->
</view> <!-- </view>-->
</view> <!-- </view>-->
</u-count-down> <!-- </u-count-down>-->
<view class="button" @click="confirm">确认</view> <view class="button" @click="confirm">确认</view>
</view> </view>
</view> </view>
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<view class="auth-btn" @click="goEducationAuth()" v-if="userInfo.memEducationAuthen=='1'">查看</view> <view class="auth-btn" @click="goEducationAuth()" v-if="userInfo.memEducationAuthen=='1'">查看</view>
<view class="auth-btn" @click="goEducationAuth()" v-else>立即认证</view> <view class="auth-btn" @click="goEducationAuth()" v-else>立即认证</view>
</view> </view>
<ELM ref="elm" :msg="tipMsg" :isConfirm="isConfirm" @confirm="confirm"></ELM> <ELM ref="elm" :msg="tipMsg" :isConfirm="isConfirm" ></ELM>
</view> </view>
</template> </template>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
</view> </view>
</view> </view>
</u-popup> </u-popup>
<ELM ref="elm" :msg="tipMsg" :isConfirm="isConfirm" @confirm="confirm"></ELM> <ELM ref="elm" :msg="tipMsg" :isConfirm="isConfirm" :isCancel="false" @confirm="confirm"></ELM>
</view> </view>
</template> </template>
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
updateUser(params).then(res => { updateUser(params).then(res => {
if (res.data.code == 200) { if (res.data.code == 200) {
this.isConfirm = true; this.isConfirm = true;
this.tipMsg = "操作成功"; this.tipMsg = "上传成功";
this.singleNoClose(); this.singleNoClose();
this.loadPage(); this.loadPage();
this.$refs.elm.showDialog(); this.$refs.elm.showDialog();
......
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
v-model="userInfo.memNickName" v-model="userInfo.memNickName"
border="none" border="none"
placeholder="请输入昵称" placeholder="请输入昵称"
maxlength="10"
></u--input> ></u--input>
</u-form-item> </u-form-item>
<u-form-item <u-form-item
...@@ -50,6 +51,7 @@ ...@@ -50,6 +51,7 @@
v-model="userInfo.memWxCode" v-model="userInfo.memWxCode"
border="none" border="none"
placeholder="请输入微信号" placeholder="请输入微信号"
maxlength="10"
></u--input> ></u--input>
</u-form-item> </u-form-item>
<u-form-item <u-form-item
...@@ -160,6 +162,7 @@ ...@@ -160,6 +162,7 @@
v-model="userInfo.memCollege" v-model="userInfo.memCollege"
border="none" border="none"
placeholder="请输入毕业院校" placeholder="请输入毕业院校"
maxlength="8"
></u--input> ></u--input>
</u-form-item> </u-form-item>
<u-form-item <u-form-item
...@@ -171,6 +174,7 @@ ...@@ -171,6 +174,7 @@
v-model="userInfo.memCareer" v-model="userInfo.memCareer"
border="none" border="none"
placeholder="请输入职业" placeholder="请输入职业"
maxlength="8"
></u--input> ></u--input>
</u-form-item> </u-form-item>
<u-form-item <u-form-item
...@@ -182,6 +186,7 @@ ...@@ -182,6 +186,7 @@
v-model="userInfo.memYearIncome" v-model="userInfo.memYearIncome"
border="none" border="none"
placeholder="请输入年收入" placeholder="请输入年收入"
maxlength="8"
></u--input> ></u--input>
<span slot="right">万元</span> <span slot="right">万元</span>
</u-form-item> </u-form-item>
...@@ -194,6 +199,7 @@ ...@@ -194,6 +199,7 @@
v-model="userInfo.memWorkPlace" v-model="userInfo.memWorkPlace"
border="none" border="none"
placeholder="请输入工作单位" placeholder="请输入工作单位"
maxlength="8"
></u--input> ></u--input>
</u-form-item> </u-form-item>
<u-form-item <u-form-item
...@@ -259,6 +265,7 @@ ...@@ -259,6 +265,7 @@
v-model="userInfo.memMarriageRemarks" v-model="userInfo.memMarriageRemarks"
border="none" border="none"
placeholder="请输入婚姻状况备注" placeholder="请输入婚姻状况备注"
maxlength="12"
></u--input> ></u--input>
</u-form-item> </u-form-item>
<u-form-item <u-form-item
...@@ -270,6 +277,7 @@ ...@@ -270,6 +277,7 @@
v-model="userInfo.memMbti" v-model="userInfo.memMbti"
border="none" border="none"
placeholder="请输入16型人格" placeholder="请输入16型人格"
maxlength="8"
></u--input> ></u--input>
</u-form-item> </u-form-item>
</u--form> </u--form>
......
...@@ -121,11 +121,13 @@ ...@@ -121,11 +121,13 @@
<view class="lable"> <view class="lable">
<view class="lable-div" style="margin-right: 20rpx;"> <view class="lable-div" style="margin-right: 20rpx;">
职业:{{ userInfo.memCareer ? userInfo.memCareer : '' }}</view> 职业:{{ userInfo.memCareer ? userInfo.memCareer : '' }}</view>
</view>
<view class="lable">
<view class="lable-div" style="background-color: #FFE3DE;" v-if="userInfo.memYearIncome"> <view class="lable-div" style="background-color: #FFE3DE;" v-if="userInfo.memYearIncome">
年薪:{{ userInfo.memYearIncome }}k 年薪:{{ userInfo.memYearIncome }}k
</view> </view>
</view> </view>
<view class="lable" style="margin-top: 24rpx;" v-if="userInfo.memMarriage"> <view class="lable" v-if="userInfo.memMarriage">
<view class="lable-div" style="background-color: #F2E8F9;"> <view class="lable-div" style="background-color: #F2E8F9;">
婚姻状况:{{userInfo.memMarriage == '0' ? '无婚史' : '有婚史'}} 婚姻状况:{{userInfo.memMarriage == '0' ? '无婚史' : '有婚史'}}
</view> </view>
...@@ -165,8 +167,8 @@ ...@@ -165,8 +167,8 @@
编辑 编辑
</view> </view>
</view> </view>
<view class=" mt25 fs28" style="color: #434343; "> <view >
<view>{{userInfo.memIntroduce ? userInfo.memIntroduce : ''}}</view> <view class="detail">{{userInfo.memIntroduce ? userInfo.memIntroduce : ''}}</view>
</view> </view>
</view> </view>
<!-- 兴趣爱好--> <!-- 兴趣爱好-->
...@@ -180,8 +182,8 @@ ...@@ -180,8 +182,8 @@
编辑 编辑
</view> </view>
</view> </view>
<view class=" mt25 fs28" style="color: #434343; "> <view >
<view>{{userInfo.memHobby ? userInfo.memHobby : ''}}</view> <view class="detail">{{userInfo.memHobby ? userInfo.memHobby : ''}}</view>
</view> </view>
</view> </view>
<!-- 心仪的Ta--> <!-- 心仪的Ta-->
...@@ -195,8 +197,8 @@ ...@@ -195,8 +197,8 @@
编辑 编辑
</view> </view>
</view> </view>
<view class=" mt25 fs28" style="color: #434343; "> <view>
<view>{{userInfo.memHalfDesire ? userInfo.memHalfDesire : ''}}</view> <view class="detail">{{userInfo.memHalfDesire ? userInfo.memHalfDesire : ''}}</view>
</view> </view>
</view> </view>
<!-- 未来规划--> <!-- 未来规划-->
...@@ -210,8 +212,8 @@ ...@@ -210,8 +212,8 @@
编辑 编辑
</view> </view>
</view> </view>
<view class=" mt25 fs28" style="color: #434343; "> <view >
<view>{{userInfo.memFuturePlan ? userInfo.memFuturePlan : ''}}</view> <view class="detail">{{userInfo.memFuturePlan ? userInfo.memFuturePlan : ''}}</view>
</view> </view>
</view> </view>
...@@ -981,5 +983,12 @@ import {getOssUrl} from "../../api/article"; ...@@ -981,5 +983,12 @@ import {getOssUrl} from "../../api/article";
padding: 0 38rpx; padding: 0 38rpx;
} }
} }
.detail{
color: #434343;
font-size: 28rpx;
margin-top: 25rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style> </style>
...@@ -61,7 +61,7 @@ ...@@ -61,7 +61,7 @@
<u-icon <u-icon
name="close" name="close"
color="#ffffff" color="#ffffff"
size="10" size="16"
></u-icon> ></u-icon>
</view> </view>
</view> </view>
...@@ -452,8 +452,8 @@ ...@@ -452,8 +452,8 @@
top: $u-upload-deletable-top; top: $u-upload-deletable-top;
right: $u-upload-deletable-right; right: $u-upload-deletable-right;
background-color: $u-upload-deletable-bgColor; background-color: $u-upload-deletable-bgColor;
height: $u-upload-deletable-height; height: 32rpx;
width: $u-upload-deletable-width; width: 32rpx;
@include flex; @include flex;
border-bottom-left-radius: $u-upload-deletable-boder-bottom-left-radius; border-bottom-left-radius: $u-upload-deletable-boder-bottom-left-radius;
align-items: center; align-items: center;
...@@ -463,6 +463,7 @@ ...@@ -463,6 +463,7 @@
&__icon { &__icon {
position: absolute; position: absolute;
transform: scale(0.7); transform: scale(0.7);
line-height: 14px;
top: $u-upload-icon-top; top: $u-upload-icon-top;
right: $u-upload-icon-right; right: $u-upload-icon-right;
/* #ifdef H5 */ /* #ifdef H5 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment