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

修改bug

parent c4aef400
......@@ -1104,7 +1104,7 @@ import {activityList, userActivityList} from "../../api/activity";
}
.my-article-image-1{
display: flex;
justify-content: space-between;
justify-content: right;
padding: 30rpx 42rpx;
image{
width: calc(26% - 10rpx);
......
......@@ -94,7 +94,7 @@
<view class="safe-bottom">
<!-- 动态图片-->
<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="have_image_two">
<view class="have_image_title">
......
......@@ -16,6 +16,7 @@
label="民族"
prop="memNationText"
borderBottom
required
@click="showNation = true; hideKeyboard()"
>
<u--input
......@@ -34,6 +35,7 @@
label="昵称"
prop="memNickName"
borderBottom
required
>
<u--input
v-model="userInfo.memNickName"
......@@ -46,6 +48,7 @@
label="微信号"
prop="memWxCode"
borderBottom
required
>
<u--input
v-model="userInfo.memWxCode"
......@@ -76,6 +79,7 @@
label="生日"
prop="memBirthday"
borderBottom
required
@click="showBirthday = true; hideKeyboard()"
>
<u--input
......@@ -107,6 +111,7 @@
label="身高"
prop="memHeight"
borderBottom
required
>
<u--input
v-model="userInfo.memHeight"
......@@ -123,6 +128,7 @@
label="体重"
prop="memWeight"
borderBottom
required
>
<u--input
v-model="userInfo.memWeight"
......@@ -139,6 +145,7 @@
label="教育经历"
prop="memMaxEducationText"
borderBottom
required
@click="showEducation = true; hideKeyboard()"
>
<u--input
......@@ -157,6 +164,7 @@
label="毕业院校"
prop="memCollege"
borderBottom
required
>
<u--input
v-model="userInfo.memCollege"
......@@ -169,6 +177,7 @@
label="职业"
prop="memCareer"
borderBottom
required
>
<u--input
v-model="userInfo.memCareer"
......@@ -181,6 +190,7 @@
label="年收入"
prop="memYearIncome"
borderBottom
required
>
<u--input
v-model="userInfo.memYearIncome"
......@@ -206,6 +216,7 @@
label="居住地"
prop="memResidence"
borderBottom
required
@click="showResidence = true; hideKeyboard()"
>
<u--input
......@@ -224,6 +235,7 @@
label="籍贯"
prop="memNative"
borderBottom
required
@click="showNative = true; hideKeyboard()"
>
<u--input
......
......@@ -621,6 +621,12 @@ export default {
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 {
position: absolute;
bottom: 0;
......
......@@ -240,7 +240,7 @@ export default {
}
.message{
max-width: 300rpx;
max-width: 250rpx;
margin-top: 30rpx;
font-size: 24rpx;
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