This commit is contained in:
liuye
2024-07-19 17:49:02 +08:00
parent b1b44cf4fc
commit 0b77d16f3c
5 changed files with 39 additions and 8 deletions

View File

@@ -93,8 +93,8 @@ export default {
this.typeList()
this.forms.girdId = this.user.girdInfos2G[0].girdId
this.forms.girdName = this.user.girdInfos2G[0].girdName
// this.forms.girdMemberId = this.user.girdMemberId
// this.forms.girdMemberName = this.user.name
this.forms.girdMemberId = this.user.girdMemberId
this.forms.girdMemberName = this.user.name
},
onShow() {
this.forms.name = this.user.name
@@ -287,5 +287,20 @@ export default {
color: #999!important;
font-size: 28px!important;
}
::v-deep .ai-uploader {
.item {
width: 26vw!important;
height: 26vw!important;
margin: 0 8px 8px 0;
.u-image__image {
width: 26vw!important;
height: 26vw!important;
}
}
.default {
width: 26vw!important;
height: 26vw!important;
}
}
}
</style>

View File

@@ -99,6 +99,9 @@ export default {
uni.$on('nextPage', () => {
this.nextPage()
})
uni.$on('getListInit', () => {
this.nextPage()
})
},
methods: {
getListInit() {

View File

@@ -300,7 +300,6 @@ export default {
<style scoped lang="scss">
.statistics {
padding-top: 16px;
.select-gird {
width: calc(100% - 64px);
box-sizing: border-box;

View File

@@ -58,7 +58,7 @@
<div class="item" :class="item.isCheck ? 'active' : ''" v-for="(item, index) in tagList" :key="index" @click="tagClick(index)">{{ item.labelName }}</div>
</div>
<div class="poup-btn">
<div>取消</div>
<div @click="showTag=false">取消</div>
<div class="confirm" @click="confirmTag">确定</div>
</div>
</div>

View File

@@ -67,7 +67,7 @@
<h2>图片上传</h2>
<span>(最多9张)</span>
</div>
<AiUploader v-model="form.files" :limit="9"></AiUploader>
<AiUploader v-model="form.files" :limit="9" type="image"></AiUploader>
</div>
</div>
</div>
@@ -275,7 +275,6 @@ export default {
margin: 0 0 32px 32px;
border-radius: 16px;
}
.form-item {
padding-left: 32px;
position: relative;
@@ -301,9 +300,10 @@ export default {
font-size: 28px;
span {
display: inline-block;
max-width: 400px;
margin-right: 8px;
color: #333333;
color: #333;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
@@ -389,7 +389,6 @@ export default {
font-size: 28px!important;
}
}
.footer {
width: 100%;
position: fixed;
@@ -410,5 +409,20 @@ export default {
text-align: center;
}
}
::v-deep .ai-uploader {
.item {
width: 26vw!important;
height: 26vw!important;
margin: 0 8px 8px 0;
.u-image__image {
width: 26vw!important;
height: 26vw!important;
}
}
.default {
width: 26vw!important;
height: 26vw!important;
}
}
}
</style>