diff --git a/app/Console/Commands/AppVersionUpdateCommand.php b/app/Console/Commands/AppVersionUpdateCommand.php index bccd0ff..54ea90e 100644 --- a/app/Console/Commands/AppVersionUpdateCommand.php +++ b/app/Console/Commands/AppVersionUpdateCommand.php @@ -8,7 +8,7 @@ class AppVersionUpdateCommand extends Command { protected $signature = 'app:version {version?} {--auto}'; - protected $description = '更新 .env 文件中的 APP_VERSION 版本号'; + protected $description = 'update .env 文件中的 APP_VERSION 版本号'; public function handle() { diff --git a/public/static/testdrive.html b/public/static/testdrive.html index 4314215..f5c92ec 100644 --- a/public/static/testdrive.html +++ b/public/static/testdrive.html @@ -22,7 +22,7 @@ flex-direction: column; align-items: center; justify-content: center; - background: url('./1731484241.jpg') no-repeat center center; + background: url("./1731484241.jpg") no-repeat center center; background-size: cover; background-color: #58629a; } @@ -80,6 +80,7 @@ el: "#app", data() { return { + isLoading: false, isAgree: true, userdata: { name: "", mobile: "" }, vehicles: [], @@ -123,7 +124,17 @@ this.$message({ message: "请先阅读并同意隐私条款", type: "info" }); return; } - const resp = await http(`${api}/testdrive`, "POST", { ...this.userdata }); + if (!this.userdata.name || !this.userdata.mobile) { + this.$message({ message: "请填写姓名和电话", type: "info" }); + return; + } + this.isLoading = true; + const resp = await http(`${api}/testdrive`, "POST", { ...this.userdata }).catch((err) => null); + this.isLoading = false; + if (resp === null) { + this.$message({ message: "网络错误", type: "error" }); + return; + } const { code, message } = resp; if (code === 0) { this.userdata = { name: "", mobile: "", vehicle: "", province: "", city: "", dealer: "" };