This commit is contained in:
parent
2de627ccf7
commit
d43464180d
@ -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()
|
||||
{
|
||||
|
@ -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: "" };
|
||||
|
Loading…
Reference in New Issue
Block a user