Browse Source

修改导航栏的

lihuilin/feature-20251024095243-我的
Ethereal 4 weeks ago
parent
commit
6b01227736
  1. 2
      pages/deepMate/deepMate.vue
  2. 2
      pages/start/Registration/Registration.vue
  3. 2
      pages/start/login/login.vue
  4. 2
      pages/start/recoverPassword/recoverPassword.vue
  5. 2
      pages/start/select/select.vue
  6. 2
      utils/http.js

2
pages/deepMate/deepMate.vue

@ -314,7 +314,7 @@ const renderMarkdown = (content) => {
return marked.parse(content);
};
const type = ref("member");
const type = ref("deepMate");
const inputMessage = ref("");
const showThinking = ref(true);
const isSending = ref(false);

2
pages/start/Registration/Registration.vue

@ -198,7 +198,7 @@ import {
SendPhoneCodeApi,
} from "../../../api/start/login";
const type = ref("member");
const type = ref("");
const email = ref("");
const password = ref("");
const phone = ref("");

2
pages/start/login/login.vue

@ -268,7 +268,7 @@ import {
import { useUserStore } from "../../../stores/modules/userInfo";
const deepChartID = ref("");
const type = ref("member");
const type = ref("");
const email = ref("");
const password = ref("");
const country = ref("+86");

2
pages/start/recoverPassword/recoverPassword.vue

@ -237,7 +237,7 @@ import uniPopup from "../../../uni_modules/uni-popup/components/uni-popup/uni-po
import { verificationPhone, verificationEmail } from "../login/verification";
import { SendEmailCodeApi, SendPhoneCodeApi } from "../../../api/start/login";
const type = ref("member");
const type = ref("");
const email = ref("");
const password = ref("");
const newPasswordFirst = ref("");

2
pages/start/select/select.vue

@ -26,7 +26,7 @@ import footerBar from "../../../components/footerBar";
import { ref, reactive, toRefs, watch } from "vue";
const type = ref("member");
const type = ref("");
function toRegistration() {
uni.redirectTo({

2
utils/http.js

@ -39,7 +39,7 @@ const httpInterceptor = {
'contentType': 'application/json',
'version': '1',
'client': client,
'deviceId': deviceInfo.deviceId
'deviceId': deviceInfo.deviceInfo.deviceId
}
//4 添加token,优先用store,没有则回退到body中的token,保持与Apifox一致
const memberStore = useUserStore()

Loading…
Cancel
Save