diff --git a/app/admin/view/default/config/store.html b/app/admin/view/default/config/store.html
index 72a3c557e..5188d1eb5 100644
--- a/app/admin/view/default/config/store.html
+++ b/app/admin/view/default/config/store.html
@@ -32,23 +32,6 @@
-
+
diff --git a/app/index/controller/Common.php b/app/index/controller/Common.php
index 864ad3aae..2174377de 100755
--- a/app/index/controller/Common.php
+++ b/app/index/controller/Common.php
@@ -240,8 +240,6 @@ class Common extends BaseController
// 商店信息
$assign['site_info_data'] = ResourcesService::SiteInfoData();
- //print_r($assign['site_info_data']);
-
$assign['common_customer_store_chat_tel'] = MyC('common_customer_store_chat_tel');
$assign['common_customer_store_chat_email'] = MyC('common_customer_store_chat_email');
$assign['common_customer_store_address'] = MyC('common_customer_store_address');
diff --git a/app/lang/cht.php b/app/lang/cht.php
index 33e918656..4c8ac8a6f 100644
--- a/app/lang/cht.php
+++ b/app/lang/cht.php
@@ -4023,12 +4023,12 @@ return [
'desc' => '空白則不展示',
],
'common_customer_store_public_alipay' => [
- 'name' => '支付寶公眾號',
- 'desc' => '空白則不展示',
+ 'name' => '生活號',
+ 'desc' => '空白則不顯示',
],
'common_customer_store_public_weixin' => [
- 'name' => '微信生活號',
- 'desc' => '空白則不展示',
+ 'name' => '公眾號',
+ 'desc' => '空白則不顯示',
],
'common_customer_store_platform_client' => [
'name' => '平台用戶端',
diff --git a/app/lang/en.php b/app/lang/en.php
index a534af77e..88e47a9a4 100644
--- a/app/lang/en.php
+++ b/app/lang/en.php
@@ -4034,12 +4034,12 @@ return [
'desc' => 'Not displayed if empty',
],
'common_customer_store_public_alipay' => [
- 'name' => 'Alipay Official Account',
- 'desc' => 'Not displayed if empty',
+ 'name' => 'Alipay Life Account',
+ 'desc' => 'Do not display if empty',
],
'common_customer_store_public_weixin' => [
- 'name' => 'WeChat Life Account',
- 'desc' => 'Not displayed if empty',
+ 'name' => 'WeChat Official Account',
+ 'desc' => 'Do not display if empty',
],
'common_customer_store_platform_client' => [
'name' => 'Platform Client',
diff --git a/app/lang/spa.php b/app/lang/spa.php
index 0e6969ed2..ebd6b7662 100644
--- a/app/lang/spa.php
+++ b/app/lang/spa.php
@@ -4024,12 +4024,12 @@ return [
'desc' => 'No se muestra si está vacío',
],
'common_customer_store_public_alipay' => [
- 'name' => 'Cuenta Oficial de Alipay',
- 'desc' => 'No se muestra si está vacío',
+ 'name' => 'Canal de Vida',
+ 'desc' => 'No mostrar si está vacío',
],
'common_customer_store_public_weixin' => [
- 'name' => 'Cuenta de Vida de WeChat',
- 'desc' => 'No se muestra si está vacío',
+ 'name' => 'Cuenta Oficial',
+ 'desc' => 'No mostrar si está vacío',
],
'common_customer_store_platform_client' => [
'name' => 'Cliente de la Plataforma',
diff --git a/app/lang/zh.php b/app/lang/zh.php
index a3041cf0d..7f1de6e41 100755
--- a/app/lang/zh.php
+++ b/app/lang/zh.php
@@ -4055,11 +4055,11 @@ return [
'desc' => '空则不展示',
],
'common_customer_store_public_alipay' => [
- 'name' => '公众号',
+ 'name' => '生活号',
'desc' => '空则不展示',
],
'common_customer_store_public_weixin' => [
- 'name' => '生活号',
+ 'name' => '公众号',
'desc' => '空则不展示',
],
'common_customer_store_platform_client' => [
diff --git a/app/service/ResourcesService.php b/app/service/ResourcesService.php
index 492aa2a60..64c58e95e 100755
--- a/app/service/ResourcesService.php
+++ b/app/service/ResourcesService.php
@@ -542,18 +542,18 @@ class ResourcesService
];
}
}
- // 基础(公众号、生活号)
+ // 基础(生活号、公众号)
$base_qrcode_arr = [
- [
- 'name' => MyLang('public_account_title'),
- 'key' => 'public_weixin',
- 'icon' => 'icon-wechart'
- ],
[
'name' => MyLang('life_account_title'),
'key' => 'public_alipay',
'icon' => 'icon-life'
],
+ [
+ 'name' => MyLang('public_account_title'),
+ 'key' => 'public_weixin',
+ 'icon' => 'icon-wechart'
+ ],
];
foreach($base_qrcode_arr as $v)
{