Browse Source

fix: 修正环境变量和字段名称问题

将默认环境从'trial'改为'develop'以匹配开发环境
将表单字段'brief'更名为'userBrief'以保持命名一致性
master
前端-胡立永 6 days ago
parent
commit
d07f9270df
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      otherPages/authentication/serve/index.vue
  2. +1
    -1
      utils/getUrl.js

+ 1
- 1
otherPages/authentication/serve/index.vue View File

@ -340,7 +340,7 @@
id : form.id,
phone: baseFormData.userTelephone,
sex: baseFormData.sex == '男' ? 0 : 1,
brief: formData.userBrief,
userBrief: formData.userBrief,
experience: formData.experience,
petType: form.type.length > 0 ? form.type.join(',') : null,
license: serveFormData.serve.join(';'),


+ 1
- 1
utils/getUrl.js View File

@ -1,4 +1,4 @@
let current = "trial";
let current = "develop";
const accountInfo = wx.getAccountInfoSync();
// current = accountInfo.miniProgram.envVersion;


Loading…
Cancel
Save