4.6测试和视频上传限制25M

This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-05-21 18:58:07 +08:00
parent 173e05c13a
commit 4f3989f756
9 changed files with 90 additions and 65 deletions

View File

@@ -267,6 +267,7 @@ let pitchValue = ref({
watchEffect(() => {
// nearSchoolList = store.state.apartment.school || []
console.log('store.state.schoolList',store.state.schoolList);
nearSchoolList = store.state.schoolList || [];
roomTypeList = store.state.apartment.roomtype || [];
roomTypeKey = store.state.roomTypeKey || {};
@@ -738,7 +739,7 @@ const tagList = ["单人间", "大床房", "独立卫浴", "两房整租", "电
}
.option-input {
width: 100px;
width: 70px;
height: 40px;
border: 1px solid rgba(179, 179, 179, 1);
border-radius: 10px;

View File

@@ -10,12 +10,18 @@
<img v-if="item.selection" class="gter-select" src="@/assets/img/publicImage/gter-select.png" />
<div class="name flexflex">{{ item.title }}</div>
<img class="img" v-lazy="item['image']" @load="loadload" />
<div class="apartment-introduce flexacenter" v-if="item.comment.content">
<div class="remark-on flexacenter">
<img class="fang-icon" :src="item.comment.avatar" />
{{ item.comment.type }}
</div>
<div class="remark-text flex1 ellipsis">{{ item.comment.content }}</div>
<div class="apartment-introduce flexacenter">
<template v-if="item.comment.content">
<div class="remark-on flexacenter">
<img class="fang-icon" :src="item.comment.avatar" />
{{ item.comment.type }}
</div>
<div class="remark-text flex1 ellipsis">{{ item.comment.content }}</div>
</template>
<template v-else>
<div class="apartment-tag flexcenter" v-if="item.company">{{ item.company }}</div>
<div class="flex1 ellipsis">{{ item.propaganda }}</div>
</template>
</div>
</div>
<div class="label-list flexacenter">
@@ -233,6 +239,14 @@ const loadload = () => {
.remark-text {
width: 247px;
}
.apartment-tag {
padding: 0 8px;
border-radius: 6px;
border: 1px solid #797979;
margin-right: 8px;
color: #fdda55;
}
}
}
@@ -240,10 +254,10 @@ const loadload = () => {
flex-wrap: wrap;
margin: 0 12px 7px;
.label-item {
color: #555555;
color: #434343;
text-align: center;
height: 22px;
background-color: rgba(235, 235, 235, 1);
background-color: #eeeeee;
border-radius: 8px;
padding: 0 8px;
font-size: 13px;
@@ -346,7 +360,7 @@ const loadload = () => {
.mile {
font-size: 14px;
color: #50e3c2;
color: #34be9f;
}
}
@@ -363,7 +377,7 @@ const loadload = () => {
color: #333333;
padding: 0 6px;
margin-bottom: 5px;
&:not(:last-of-type) {
margin-right: 6px;
}