bug修改

This commit is contained in:
XiuYun CHEN 2025-06-18 17:23:29 +08:00
parent 4d4a345038
commit cbc0fa3112
2 changed files with 25 additions and 28 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

@ -65,20 +65,17 @@ struct FeedbackPage {
}) })
// 提交按钮 // 提交按钮
Button('提交', { Button({ type: ButtonType.Normal }){
type: ButtonType.Normal, Text('提交')
stateEffect: true }
})
.width('90%') .width('90%')
.height(45) .height(53)
.backgroundColor(Color.White) .position({x:'5%',y:'91%'})
.borderRadius(5) .backgroundColor('#ffffff')
.fontColor('#8B2316') .borderColor($r('app.color.main_color'))
.position({x:'5%',y:'90%'}) .borderRadius(8)
.border({ .borderWidth(1)
width:1, .fontColor($r('app.color.main_color'))
color:'#8B2316'
})
.onClick(() => { .onClick(() => {
if (this.feedbackText.length <= 0 || !this.feedbackText) { if (this.feedbackText.length <= 0 || !this.feedbackText) {
promptAction.showToast({message:'请输入您的建议'}) promptAction.showToast({message:'请输入您的建议'})