init
All checks were successful
Deploy to Production / deploy (push) Successful in 16s

This commit is contained in:
梁朝伟 2024-11-13 19:38:27 +08:00
parent 2de627ccf7
commit d43464180d
2 changed files with 14 additions and 3 deletions

View File

@ -8,7 +8,7 @@ class AppVersionUpdateCommand extends Command
{ {
protected $signature = 'app:version {version?} {--auto}'; protected $signature = 'app:version {version?} {--auto}';
protected $description = '更新 .env 文件中的 APP_VERSION 版本号'; protected $description = 'update .env 文件中的 APP_VERSION 版本号';
public function handle() public function handle()
{ {

View File

@ -22,7 +22,7 @@
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
background: url('./1731484241.jpg') no-repeat center center; background: url("./1731484241.jpg") no-repeat center center;
background-size: cover; background-size: cover;
background-color: #58629a; background-color: #58629a;
} }
@ -80,6 +80,7 @@
el: "#app", el: "#app",
data() { data() {
return { return {
isLoading: false,
isAgree: true, isAgree: true,
userdata: { name: "", mobile: "" }, userdata: { name: "", mobile: "" },
vehicles: [], vehicles: [],
@ -123,7 +124,17 @@
this.$message({ message: "请先阅读并同意隐私条款", type: "info" }); this.$message({ message: "请先阅读并同意隐私条款", type: "info" });
return; 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; const { code, message } = resp;
if (code === 0) { if (code === 0) {
this.userdata = { name: "", mobile: "", vehicle: "", province: "", city: "", dealer: "" }; this.userdata = { name: "", mobile: "", vehicle: "", province: "", city: "", dealer: "" };