From 7298d5354963a88643a543b51b90192dc9fc934c Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期四, 11 九月 2025 18:43:14 +0800
Subject: [PATCH] 最新版本541200007
---
h5/pages/staff/signin.vue | 52 ++++++++++++++++++++++++++++++++++++----------------
1 files changed, 36 insertions(+), 16 deletions(-)
diff --git a/h5/pages/staff/signin.vue b/h5/pages/staff/signin.vue
index 881db5f..a748d77 100644
--- a/h5/pages/staff/signin.vue
+++ b/h5/pages/staff/signin.vue
@@ -1,20 +1,40 @@
<template>
- <view>
- <web-view style="width: 100vw;height: 100vh;" src="https://atwl.ahzyssl.com/dps/web/wxAuth/loginV2?oaId=atwl&redirectId=index"></web-view>
- <!-- <web-view src="https://www.baidu.com/"></web-view> -->
- </view>
+ <view class="box">
+ <!-- <view v-html="info"></view> -->
+ <!-- <mp-html :content="info" /> -->
+ <u-parse :content="info"></u-parse>
+ </view>
</template>
-
<script>
- export default {
- data() {
- return {
-
- };
- }
- }
+import { getSystemDictData } from '@/api'
+export default {
+ data() {
+ return {
+ info: "",
+ }
+ },
+ onLoad() {
+ this.initData()
+ },
+ methods: {
+ initData() {
+ getSystemDictData({
+ dictCode: 'TSM_PARAM',
+ label: 'CENTER_LINK_TYPE'
+ }).then(res => {
+ if (res.code === 200) {
+ this.info = res.data.code
+ uni.setNavigationBarTitle({
+ title: res.data.remark
+ })
+ }
+ })
+ }
+ }
+}
</script>
-
-<style lang="scss">
-
-</style>
+<style lang="scss" scoped>
+.box {
+ padding: 0 30rpx;
+}
+</style>
\ No newline at end of file
--
Gitblit v1.9.3