diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..28c3dd8 Binary files /dev/null and b/.DS_Store differ diff --git a/.vscode/settings.json b/.vscode/settings.json index 552ca0b..71eba6f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -25,7 +25,7 @@ }, "eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"], "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" }, "files.associations": { "*.env.*": "dotenv", diff --git a/src/views/game/home/index.vue b/src/views/game/home/index.vue index 46a2fd3..e6566c6 100644 --- a/src/views/game/home/index.vue +++ b/src/views/game/home/index.vue @@ -188,6 +188,7 @@ const model = ref({ introduction: '', cover: [], status: 2, + sort: 0, }) const submit = () => { @@ -211,6 +212,7 @@ const clear = () => { introduction: '', cover: [], status: 2, + sort: 0, } formRef.value?.restoreValidation() showModal.value = false @@ -266,6 +268,9 @@ const dropdownSelect = (e) => { + + +
提交