Compare commits

...

3 Commits

Author SHA1 Message Date
zhaotianfeng
5af9a9092c Merge branch 'main' of http://122.51.230.86:3000/dianliang/oil-station 2024-09-15 21:20:51 +08:00
zhaotianfeng
56d86f299b 修改名称 2024-09-15 21:19:51 +08:00
zhaotianfeng
2d7980361b 中台端 油站配置 编辑油站 5张图片隐藏上传狂 2024-09-15 13:30:40 +08:00
2 changed files with 23 additions and 3 deletions

View File

@ -175,7 +175,7 @@
<el-upload <el-upload
:action="uploadAction" :action="uploadAction"
list-type="picture-card" list-type="picture-card"
:class="{hide:hideUpload}" :class="{hide2:hideUpload2}"
:file-list="uploadImages" :file-list="uploadImages"
:headers="uploadHeader" :headers="uploadHeader"
:auto-upload="true" :auto-upload="true"
@ -232,6 +232,8 @@
props: ["id"], props: ["id"],
data(){ data(){
return{ return{
//
hideUpload2:false,
dataForm:{coverImage:''}, dataForm:{coverImage:''},
// //
// uploadAction: 'http://192.168.0.178:8008/backendApi/file/upload', // uploadAction: 'http://192.168.0.178:8008/backendApi/file/upload',
@ -319,7 +321,21 @@
} }
} }
}, },
watch: {
// uploadImages
'uploadImages.length'(val) {
this.$nextTick(() => {
if (val>=5){
this.$nextTick(() => {
this.hideUpload2=true
});
}
if (val<=5){
this.hideUpload2=false
}
});
}
},
computed: { computed: {
uploadAction(){ uploadAction(){
@ -587,5 +603,9 @@
line-height: 60px; line-height: 60px;
} }
/deep/.hide2 .el-upload--picture-card{
display: none;
}
</style> </style>

View File

@ -716,7 +716,7 @@ export default {
}, },
editRule(data){ editRule(data){
getRuleConfig(data.id).then(res => { getRuleConfig(data.id).then(res => {
this.Ruletitle = '修改商户信息' this.Ruletitle = '修改规则'
this.addRule = true this.addRule = true
this.formRule = res.data this.formRule = res.data
this.formRule.ruleList.forEach(item => { this.formRule.ruleList.forEach(item => {