|
@@ -61,7 +61,8 @@ let form: Ref<any> = ref({});
|
|
|
let fields: Ref<any[]> = ref([
|
|
|
{ label: 'logo', model: 'logo_url', custom: true },
|
|
|
{ label: '男头像', model: 'boy_url', custom: true },
|
|
|
- { label: '女头像', model: 'girl_url', custom: true }
|
|
|
+ { label: '女头像', model: 'girl_url', custom: true },
|
|
|
+ { label: '底部文案', model: 'bottom_title' }
|
|
|
]);
|
|
|
const rules = reactive<FormRules>({});
|
|
|
// 请求
|