bug修改

This commit is contained in:
XiuYun CHEN 2025-06-18 10:29:28 +08:00
parent 7414611bc5
commit 4d4a345038
5 changed files with 23 additions and 20 deletions

View File

@ -6,22 +6,22 @@ export class BasicConstant {
static readonly getzcxy = "http://app.igandan.com/expert_zcxy.jsp";// 注册协议正式地址 static readonly getzcxy = "http://app.igandan.com/expert_zcxy.jsp";// 注册协议正式地址
//测试环境 //测试环境
// static readonly urlExpertAPI = "https://dev-app.igandan.com/app/expertAPI/"; static readonly urlExpertAPI = "https://dev-app.igandan.com/app/expertAPI/";
// static readonly urlExpertApp = "https://dev-app.igandan.com/app/expertApp/" static readonly urlExpertApp = "https://dev-app.igandan.com/app/expertApp/"
// static readonly urlHtml = "http://dev-doc.igandan.com/app/" static readonly urlHtml = "http://dev-doc.igandan.com/app/"
// static readonly urlImage = "https://dev-doc.igandan.com/app/" static readonly urlImage = "https://dev-doc.igandan.com/app/"
// static readonly urlExpert = "https://dev-app.igandan.com/app/expert/" static readonly urlExpert = "https://dev-app.igandan.com/app/expert/"
// static readonly wxUrl = "https://dev-wx.igandan.com/"; static readonly wxUrl = "https://dev-wx.igandan.com/";
// static readonly polvId = "11";//保利威视学员id static readonly polvId = "11";//保利威视学员id
//正式环境 //正式环境
static readonly urlExpertAPI = "https://app.igandan.com/app/expertAPI/"; // static readonly urlExpertAPI = "https://app.igandan.com/app/expertAPI/";
static readonly urlExpertApp = "http://app.igandan.com/app/expertApp/" // static readonly urlExpertApp = "http://app.igandan.com/app/expertApp/"
static readonly urlHtml = "http://doc.igandan.com/app/" // static readonly urlHtml = "http://doc.igandan.com/app/"
static readonly urlImage = "http://doc.igandan.com/app/" // static readonly urlImage = "http://doc.igandan.com/app/"
static readonly urlExpert = "http://app.igandan.com/app/expert/" // static readonly urlExpert = "http://app.igandan.com/app/expert/"
static readonly wxUrl = "https://wx.igandan.com/";// 微信服务器地址 // static readonly wxUrl = "https://wx.igandan.com/";// 微信服务器地址
static readonly polvId = "21";//保利威视学员id // static readonly polvId = "21";//保利威视学员id
static readonly getStartpage=BasicConstant.urlExpertApp + "startpage"; static readonly getStartpage=BasicConstant.urlExpertApp + "startpage";

View File

@ -8,6 +8,7 @@ import { CryptoJS } from '@ohos/crypto-js'
import { Base64Util } from './Base64Util'; import { Base64Util } from './Base64Util';
import { ChangeUtil } from './ChangeUtil' import { ChangeUtil } from './ChangeUtil'
import { bundleManager} from '@kit.AbilityKit'; import { bundleManager} from '@kit.AbilityKit';
import { deviceInfo } from '@kit.BasicServicesKit';
interface HdRequestOptions { interface HdRequestOptions {
baseURL?: string baseURL?: string
} }
@ -27,7 +28,7 @@ export interface TimestampBean {
class HdHttp { class HdHttp {
baseURL: string baseURL: string
osFullName: string = deviceInfo.marketName+'/'+ deviceInfo.osFullName;
constructor(options: HdRequestOptions) { constructor(options: HdRequestOptions) {
this.baseURL = options.baseURL || '' this.baseURL = options.baseURL || ''
} }
@ -44,7 +45,8 @@ class HdHttp {
// 开发者根据自身业务需要添加header字段 // 开发者根据自身业务需要添加header字段
header: { header: {
'Content-Type': 'application/json', 'Content-Type': 'application/json',
'sign':this.getSign(extraDatas) 'sign':this.getSign(extraDatas),
'User-Agent':this.osFullName
}, },
extraData:ChangeUtil.map2Json(extraDatas) extraData:ChangeUtil.map2Json(extraDatas)
} }
@ -79,7 +81,7 @@ class HdHttp {
// 开发者根据自身业务需要添加header字段 // 开发者根据自身业务需要添加header字段
// 开发者根据自身业务需要添加header字段 // 开发者根据自身业务需要添加header字段
header: { header: {
'Content-Type': 'application/json' 'Content-Type': 'application/json',
} }
} }

View File

@ -70,7 +70,7 @@ export struct ChooseEmailComp {
Column() { Column() {
// 手机号输入框 // 手机号输入框
Row() { Row() {
TextInput({ placeholder: authStore.getUser().email.length>0?authStore.getUser().email:'请输入您的邮箱' }) TextInput({ placeholder: authStore.getUser().email?authStore.getUser().email:'请输入您的邮箱' })
.fontSize(16) .fontSize(16)
.contentType(ContentType.EMAIL_ADDRESS) .contentType(ContentType.EMAIL_ADDRESS)
.backgroundColor(Color.White) .backgroundColor(Color.White)

View File

@ -47,7 +47,7 @@ export struct LoginComp {
autoCancel:false autoCancel:false
}) })
osFullName: string = deviceInfo.osFullName; osFullName: string = deviceInfo.marketName.replace(/[\s\-\p{P}\p{S}]/gu, '');
login() { login() {
if (this.loading) return; if (this.loading) return;
if (!this.mobile) { if (!this.mobile) {

View File

@ -17,7 +17,7 @@ struct BootPage {
@State @State
isLogin:boolean=preferenceStore.getItemBooleanF('isLogin') isLogin:boolean=preferenceStore.getItemBooleanF('isLogin')
@State @State
photoUrl:ResourceStr=$r('app.media.startIcon') photoUrl:ResourceStr=''
@State @State
newUrl:string=''; newUrl:string='';
aboutToAppear(): void { aboutToAppear(): void {
@ -29,6 +29,7 @@ struct BootPage {
getContext().getApplicationContext().getRunningProcessInformation() getContext().getApplicationContext().getRunningProcessInformation()
if(this.isFirstRun) if(this.isFirstRun)
{ {
this.photoUrl=$r('app.media.startIcon')
} }
else if(this.isLogin) else if(this.isLogin)
{ {