Commit b3e6ce01 authored by 罗林杰's avatar 罗林杰

修改bug

parent c4aef400
...@@ -1104,7 +1104,7 @@ import {activityList, userActivityList} from "../../api/activity"; ...@@ -1104,7 +1104,7 @@ import {activityList, userActivityList} from "../../api/activity";
} }
.my-article-image-1{ .my-article-image-1{
display: flex; display: flex;
justify-content: space-between; justify-content: right;
padding: 30rpx 42rpx; padding: 30rpx 42rpx;
image{ image{
width: calc(26% - 10rpx); width: calc(26% - 10rpx);
......
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
<view class="safe-bottom"> <view class="safe-bottom">
<!-- 动态图片--> <!-- 动态图片-->
<view class="card" style="height: auto;" <view class="card" style="height: auto;"
v-if="(articleUrl !== null && articleUrl.length) || articleContent !== null"> v-if="(articleUrl !== null && articleUrl.length) || userData.articleContent !== null">
<view class="content"> <view class="content">
<view class="have_image_two"> <view class="have_image_two">
<view class="have_image_title"> <view class="have_image_title">
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
label="民族" label="民族"
prop="memNationText" prop="memNationText"
borderBottom borderBottom
required
@click="showNation = true; hideKeyboard()" @click="showNation = true; hideKeyboard()"
> >
<u--input <u--input
...@@ -34,6 +35,7 @@ ...@@ -34,6 +35,7 @@
label="昵称" label="昵称"
prop="memNickName" prop="memNickName"
borderBottom borderBottom
required
> >
<u--input <u--input
v-model="userInfo.memNickName" v-model="userInfo.memNickName"
...@@ -46,6 +48,7 @@ ...@@ -46,6 +48,7 @@
label="微信号" label="微信号"
prop="memWxCode" prop="memWxCode"
borderBottom borderBottom
required
> >
<u--input <u--input
v-model="userInfo.memWxCode" v-model="userInfo.memWxCode"
...@@ -76,6 +79,7 @@ ...@@ -76,6 +79,7 @@
label="生日" label="生日"
prop="memBirthday" prop="memBirthday"
borderBottom borderBottom
required
@click="showBirthday = true; hideKeyboard()" @click="showBirthday = true; hideKeyboard()"
> >
<u--input <u--input
...@@ -107,6 +111,7 @@ ...@@ -107,6 +111,7 @@
label="身高" label="身高"
prop="memHeight" prop="memHeight"
borderBottom borderBottom
required
> >
<u--input <u--input
v-model="userInfo.memHeight" v-model="userInfo.memHeight"
...@@ -123,6 +128,7 @@ ...@@ -123,6 +128,7 @@
label="体重" label="体重"
prop="memWeight" prop="memWeight"
borderBottom borderBottom
required
> >
<u--input <u--input
v-model="userInfo.memWeight" v-model="userInfo.memWeight"
...@@ -139,6 +145,7 @@ ...@@ -139,6 +145,7 @@
label="教育经历" label="教育经历"
prop="memMaxEducationText" prop="memMaxEducationText"
borderBottom borderBottom
required
@click="showEducation = true; hideKeyboard()" @click="showEducation = true; hideKeyboard()"
> >
<u--input <u--input
...@@ -157,6 +164,7 @@ ...@@ -157,6 +164,7 @@
label="毕业院校" label="毕业院校"
prop="memCollege" prop="memCollege"
borderBottom borderBottom
required
> >
<u--input <u--input
v-model="userInfo.memCollege" v-model="userInfo.memCollege"
...@@ -169,6 +177,7 @@ ...@@ -169,6 +177,7 @@
label="职业" label="职业"
prop="memCareer" prop="memCareer"
borderBottom borderBottom
required
> >
<u--input <u--input
v-model="userInfo.memCareer" v-model="userInfo.memCareer"
...@@ -181,6 +190,7 @@ ...@@ -181,6 +190,7 @@
label="年收入" label="年收入"
prop="memYearIncome" prop="memYearIncome"
borderBottom borderBottom
required
> >
<u--input <u--input
v-model="userInfo.memYearIncome" v-model="userInfo.memYearIncome"
...@@ -206,6 +216,7 @@ ...@@ -206,6 +216,7 @@
label="居住地" label="居住地"
prop="memResidence" prop="memResidence"
borderBottom borderBottom
required
@click="showResidence = true; hideKeyboard()" @click="showResidence = true; hideKeyboard()"
> >
<u--input <u--input
...@@ -224,6 +235,7 @@ ...@@ -224,6 +235,7 @@
label="籍贯" label="籍贯"
prop="memNative" prop="memNative"
borderBottom borderBottom
required
@click="showNative = true; hideKeyboard()" @click="showNative = true; hideKeyboard()"
> >
<u--input <u--input
......
...@@ -621,6 +621,12 @@ export default { ...@@ -621,6 +621,12 @@ export default {
margin-right: 12rpx; margin-right: 12rpx;
} }
.chat-inner-msg-left, .chat-inner-msg-right {
word-break: break-all; /* 强制文本在必要时断开以进行换行 */
white-space: pre-wrap; /* 允许保留空白符序列,但是正常地进行换行 */
box-sizing: border-box; /* 确保内边距和边框包含在元素的总宽度和高度中 */
}
.submit-layout { .submit-layout {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
......
...@@ -240,7 +240,7 @@ export default { ...@@ -240,7 +240,7 @@ export default {
} }
.message{ .message{
max-width: 300rpx; max-width: 250rpx;
margin-top: 30rpx; margin-top: 30rpx;
font-size: 24rpx; font-size: 24rpx;
color: #8a8888; color: #8a8888;
......
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