From 5c3c04b9705db216d199053afc278324ed766f14 Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期二, 10 二月 2026 16:07:34 +0800
Subject: [PATCH] 经销商管理

---
 mini-program/App.vue |   58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 54 insertions(+), 4 deletions(-)

diff --git a/mini-program/App.vue b/mini-program/App.vue
index eb00ac4..3c5fd55 100644
--- a/mini-program/App.vue
+++ b/mini-program/App.vue
@@ -26,7 +26,7 @@
 							// 鍒ゆ柇鏈夋棤鐢ㄦ埛淇℃伅
 							if (res.data.member) {
 								await that.$store.commit('setUserInfo', res.data.member)
-								await that.$store.commit('setOpenId', res.data.member.openid)
+								await that.$store.commit('setOpenId', res.data.member.openId)
 							}
 							// 璁剧疆瀹氫綅
 							await that.checkLocationAuth()
@@ -102,13 +102,13 @@
 					success: function (addr) {
 						const locParam = { latitude: addr.latitude, longitude: addr.longitude };
 						const qqmapsdk = new QQMapWX({
-							key: 'FJKBZ-W5BW3-QGV3M-OEJKT-3H5K7-7FFPM'
+							key: 'HEIBZ-QJLLM-SZ36X-6ZBHI-S6Y2J-S6FND'
 						});
 						qqmapsdk.reverseGeocoder({
 							locParam,
 							success: function(res) {
 								console.log(res, '==================鑾峰彇鍦板潃');
-								that.$store.commit('setPosition', )
+								that.$store.commit('setPosition', res)
 								that.$isResolve()
 							},
 							fail: (err) => {
@@ -125,4 +125,54 @@
 
 <style lang="scss">
 	@import "uview-ui/index.scss";
-</style>
+	/*姣忎釜椤甸潰鍏叡css */
+	.tc {
+		width: calc(100vw - 148rpx);
+		.tc-btn {
+			width: 100%;
+			height: 102rpx;
+			display: flex;
+			align-items: center;
+			justify-content: space-between;
+			border-top: 1rpx solid #EEEEEE;
+			.tc-btn-item {
+				flex: 1;
+				height: 100%;
+				display: flex;
+				align-items: center;
+				justify-content: center;
+				font-weight: 400;
+				font-size: 32rpx;
+				color: #666666;
+				border-right: 1rpx solid #EEEEEE;
+				&:last-child {
+					border: none !important;
+				}
+			}
+		}
+		.tc-contemt {
+			width: 100%;
+			padding: 40rpx 0;
+			box-sizing: border-box;
+			display: flex;
+			align-items: center;
+			justify-content: center;
+			flex-direction: column;
+			.tc-contemt-title {
+				width: 100%;
+				text-align: center;
+				font-weight: 600;
+				font-size: 32rpx;
+				color: #111111;
+			}
+			.tc-contemt-nr {
+				width: 472rpx;
+				text-align: center;
+				font-weight: 400;
+				font-size: 28rpx;
+				color: #333333;
+				margin-top: 40rpx;
+			}
+		}
+	}
+</style>
\ No newline at end of file

--
Gitblit v1.9.3