Compare commits
3 Commits
66ace526b8
...
5af9a9092c
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5af9a9092c | ||
![]() |
56d86f299b | ||
![]() |
2d7980361b |
@ -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>
|
||||||
|
@ -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 => {
|
||||||
|
Loading…
Reference in New Issue
Block a user