更新天气获取方式;更新关于我们和操作说明地址配置

This commit is contained in:
wyf
2025-08-25 14:09:51 +08:00
parent 523979750d
commit 8f601d498f
524 changed files with 2009 additions and 55 deletions

View File

@@ -6,8 +6,9 @@ import 'package:vbvs_app/common/util/MyUtils.dart';
import 'package:vbvs_app/component/tool/WebViewWidget.dart';
class AboutUsPage extends StatefulWidget {
String url;
late MyWebView webView;
AboutUsPage({super.key});
AboutUsPage({super.key, required this.url});
@override
State<AboutUsPage> createState() => _AboutUsPageState();
@@ -20,9 +21,10 @@ class _AboutUsPageState extends State<AboutUsPage> {
// pdfController.loadPdf();
widget.webView = MyWebView(
url: AppConstants().ent_type == 1
? "https://mp.weixin.qq.com/s/IAr4RNBy0hGJXGKyMxe7eQ"
: "https://mp.weixin.qq.com/s/7BvvprVDqX1eOzM3Lms8dg",
// url: AppConstants().ent_type == 1
// ? "https://mp.weixin.qq.com/s/IAr4RNBy0hGJXGKyMxe7eQ"
// : "https://mp.weixin.qq.com/s/7BvvprVDqX1eOzM3Lms8dg",
url:widget.url,
onLoad: () {
print('网页载入完毕');
},