From 4b8fda000f9f600ba5187e738278b340b55ebd7c Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期三, 18 十二月 2024 18:41:53 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
h5/pages/staff/signin.vue | 51 +++++++++++++++++++++++++++++++++++----------------
1 files changed, 35 insertions(+), 16 deletions(-)
diff --git a/h5/pages/staff/signin.vue b/h5/pages/staff/signin.vue
index 881db5f..d1d44ee 100644
--- a/h5/pages/staff/signin.vue
+++ b/h5/pages/staff/signin.vue
@@ -1,20 +1,39 @@
<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" />
+ </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