From 274dab15bfc890c9c18544edd53a63130bc7fb5e Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Mon, 03 Nov 2025 16:10:34 +0800
Subject: [PATCH] 修复名片订单不跳转半屏小程序问题 修复地图点击进去定位问题 修复少了一个上传的按钮图标
---
mobile/pages/plus/business/share.vue | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/mobile/pages/plus/business/share.vue b/mobile/pages/plus/business/share.vue
index 14c963c..09dece1 100644
--- a/mobile/pages/plus/business/share.vue
+++ b/mobile/pages/plus/business/share.vue
@@ -117,6 +117,7 @@
</view>
</view>
</view>
+ </view>
</template>
<script>
@@ -150,7 +151,7 @@
// 获取分享配置
getShareConfig() {
let _this = this;
- _this._post('plus.business/business/getShareConfig', {
+ _this._post('plus.business.business/getShareConfig', {
business_card_id: _this.currentCardId
}, function(res) {
if (res.data) {
@@ -217,7 +218,7 @@
expiry_index: _this.shareConfig.expiryIndex
};
- _this._post('plus.business/business/saveShareConfig', params, function(res) {
+ _this._post('plus.business.business/saveShareConfig', params, function(res) {
if (res.code === 0) {
uni.showToast({ title: '保存成功' });
uni.navigateBack();
--
Gitblit v1.9.2