您的位置:首页 > 教育 > 培训 > 网上商城可行性分析报告_上海百度关键词推广_如何刷app推广次数_关键字有哪些

网上商城可行性分析报告_上海百度关键词推广_如何刷app推广次数_关键字有哪些

2025/1/8 10:59:59 来源:https://blog.csdn.net/qq_40476712/article/details/144947717  浏览:    关键词:网上商城可行性分析报告_上海百度关键词推广_如何刷app推广次数_关键字有哪些
网上商城可行性分析报告_上海百度关键词推广_如何刷app推广次数_关键字有哪些

【HarmonyOS Arkts笔记】http网络请求封装
【HarmonyOS Arkts笔记】@ohos.data.preferences用户首选项实现存储信息

登录页

点击登录按钮调用login()方法

import { promptAction, router } from '@kit.ArkUI';
import loginApi from "../../api/login"
import PreferenceUtil from '../../utils/preferencesUtils';@Entry
@Component
struct Login {@State account: string = '';@State password: string = '';@State loading: boolean = false;@State isCheck: boolean = false;login() {if (this.account == '') {promptAction.showToast({message: '请输入账号'})return}if (this.password == '') {promptAction.showToast({message: '请输入密码'})return}if (!this.isCheck) {promptAction.showToast({message: '请同意协议'})return}interface DataFace {token: string}interface ResFace {code: number,data: DataFace,msg: string}/*调用接口*/this.loading = trueloginApi.login({account: this.account,password: this.password,client: 6}).then((res: ResFace) => {if (res.code == 1) {let token: string = res.data.token/*存储用户token*/PreferenceUtil.putPreference('token', token)promptAction.showToast({message: '登录成功'})setTimeout(() => {router.pushUrl({url: 'pages/Index'})}, 2000)}this.loading = false;})}build() {Column() {Image($r('app.media.logo')).width(80).height(80).borderRadius(10).margin({ top: 50 })Text('登录').margin({ top: 15 })Text('登录账号以使用更多服务').fontSize(12).margin({ top: 5 })TextInput({ text: this.account, placeholder: '请输入账号' }).margin({ top: 20 }).onChange((val) => {this.account = val})TextInput({ text: this.password, placeholder: '请输入密码' }).type(InputType.Password).margin({ top: 10 }).onChange((val) => {this.password = val})Row() {Text('忘记密码').fontSize(12).fontColor($r('app.color.color_info'))Text('注册账号').fontSize(12).fontColor($r('app.color.color_primary'))}.justifyContent(FlexAlign.SpaceBetween).margin({ top: 10 }).width('100%')Button() {if (this.loading) {Row() {LoadingProgress().width(30).height(30).margin({ left: 12 }).color(0xFFFFFF)Text('登录中~').fontColor('#fff')}} else {Text('登录').fontColor('#fff')}}.width('100%').height(30).margin({ top: 100 }).backgroundColor($r('app.color.color_primary')).onClick(() => {this.login()})Row() {/*是否同意协议*/if (this.isCheck) {Image($r('app.media.ic_public_todo_filled')).width(15).height(15).onClick(() => {this.isCheck = !this.isCheck})} else {Image($r('app.media.ic_screenshot_circle')).width(15).height(15).onClick(() => {this.isCheck = !this.isCheck})}Text('我已阅读并同意').fontColor($r('app.color.color_info')).fontSize(12).margin({ left: 5 })Text('《用户协议》').fontColor($r('app.color.color_primary')).fontSize(12)Text('和').fontColor($r('app.color.color_info')).fontSize(12)Text('《隐私政策》').fontColor($r('app.color.color_primary')).fontSize(12)}.margin({ top: 20 })}.justifyContent(FlexAlign.Center).width('100%').padding({ left: 30, right: 30 })}
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com