Compare commits

..

No commits in common. "1c83b4a240d94a166040cf5015c568459079e08f" and "178a4c457585822e225678bda9fa11ae7eb376e3" have entirely different histories.

11 changed files with 16 additions and 16 deletions

View File

@ -157,9 +157,9 @@
const formData = reactive({ const formData = reactive({
id: '', id: '',
title: '', title: '',
adSortId: null, adSortId: undefined,
cover: '', cover: '',
type: null, type: undefined,
note: '', note: '',
content: '', content: '',
url: '', url: '',

View File

@ -72,7 +72,7 @@
name: '', name: '',
location: '', location: '',
note: '', note: '',
type: null, type: undefined,
sort: 0, sort: 0,
}); });

View File

@ -109,8 +109,8 @@
*/ */
const formData = reactive({ const formData = reactive({
id: '', id: '',
layoutId: null, layoutId: undefined,
type: null, type: undefined,
typeText: '', typeText: '',
typeId: '', typeId: '',
image: '', image: '',

View File

@ -101,9 +101,9 @@
const formData = reactive({ const formData = reactive({
id: '', id: '',
name: '', name: '',
type: null, type: undefined,
url: '', url: '',
form: null, form: undefined,
image: '', image: '',
status: 1, status: 1,
sort: 0, sort: 0,

View File

@ -172,7 +172,7 @@
const formData = reactive({ const formData = reactive({
id: '', id: '',
pid: 0, pid: 0,
level: null, level: undefined,
name: '', name: '',
cityCode: '', cityCode: '',
areaCode: '', areaCode: '',

View File

@ -83,7 +83,7 @@
const formData = reactive({ const formData = reactive({
id: '', id: '',
name: '', name: '',
type: null, type: undefined,
code: '', code: '',
value: '', value: '',
status: 1, status: 1,

View File

@ -103,7 +103,7 @@
id: '', id: '',
title: '', title: '',
content: '', content: '',
type: null, type: undefined,
code: '', code: '',
filePath: '', filePath: '',
fileName: '', fileName: '',

View File

@ -102,7 +102,7 @@
code: '', code: '',
number: '', number: '',
content: '', content: '',
type: null, type: undefined,
}); });
/** /**

View File

@ -98,7 +98,7 @@
code: '', code: '',
number: '', number: '',
content: '', content: '',
type: null, type: undefined,
}); });
/** /**

View File

@ -104,7 +104,7 @@
id: '', id: '',
name: '', name: '',
code: '', code: '',
dbType: null, dbType: undefined,
dbDriver: '', dbDriver: '',
dbUrl: '', dbUrl: '',
dbName: '', dbName: '',

View File

@ -141,11 +141,11 @@
id: '', id: '',
jobName: '', jobName: '',
jobAlias: '', jobAlias: '',
jobGroup: null, jobGroup: undefined,
jobTrigger: '', jobTrigger: '',
status: null, status: undefined,
cronExpression: '', cronExpression: '',
executePolicy: null, executePolicy: undefined,
isSync: 0, isSync: 0,
url: '', url: '',
note: '', note: '',