fix 友情链接

This commit is contained in:
赵霄
2024-06-26 15:50:23 +08:00
parent 9d4112a049
commit 3cc61d6bd4
2 changed files with 3 additions and 7 deletions
@@ -140,8 +140,7 @@ export default {
title: this.$t('operation'),
scopedSlots: { customRender: 'action' },
align: 'center',
fixed: 'right',
width: 170
width: 100
}
],
url: {
@@ -26,10 +26,7 @@
:placeholder="$t('pleaseEnter')+$t('system.friendshipLink.link')"
></a-input>
</a-form-item>
<a-form-item :required="true"
:labelCol="labelCol"
:wrapperCol="wrapperCol"
:label="$t('system.friendshipLink.logo')">
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" :label="$t('system.friendshipLink.logo')">
<j-image-upload class="avatar-uploader"
:text="$t('upload')"
v-decorator.trim="['logoUrl', validatorRules.logoUrl]"
@@ -101,7 +98,7 @@ export default {
logoUrl: {
rules: [
{
required: true,
required: false,
message: this.$t('pleaseSelect') + this.$t('system.friendshipLink.logo')
}
],