细节优化
parent
8810fc93c2
commit
1154af4c9a
|
|
@ -5,7 +5,7 @@
|
|||
<view class="flex-col jc-sb dom-content">
|
||||
<view>
|
||||
<!-- 多语言切换 -->
|
||||
<view class="flex-row tr padding-top-sm padding-horizontal-lg padding-bottom-lg margin-bottom-xl">
|
||||
<view v-if="home_use_multilingual_status == 1" class="flex-row tr padding-top-sm padding-horizontal-lg padding-bottom-lg margin-bottom-xl">
|
||||
<view class="flex-1 cr-base text-size" @tap="open_language_event">
|
||||
<view class="pr top-sm margin-right-sm dis-inline-block">
|
||||
<iconfont name="icon-login-language" size="32rpx"></iconfont>
|
||||
|
|
@ -16,6 +16,7 @@
|
|||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 绑定手机 -->
|
||||
<view v-if="current_opt_form == 'bind_verify'" class="form-content">
|
||||
<form @submit="formBind">
|
||||
|
|
@ -396,6 +397,7 @@
|
|||
language_key: '',
|
||||
// 实际提交的语言字段
|
||||
language: '',
|
||||
home_use_multilingual_status: 0,
|
||||
|
||||
theme_view: app.globalData.get_theme_value_view(),
|
||||
login_static_url: login_static_url,
|
||||
|
|
@ -613,6 +615,7 @@
|
|||
home_user_login_img_verify_state: app.globalData.get_config('config.home_user_login_img_verify_state'),
|
||||
home_user_register_img_verify_state: app.globalData.get_config('config.home_user_register_img_verify_state'),
|
||||
common_img_verify_state: app.globalData.get_config('config.common_img_verify_state'),
|
||||
home_use_multilingual_status: app.globalData.get_config('config.home_use_multilingual_status'),
|
||||
plugins_thirdpartylogin_config: app.globalData.get_config('plugins_base.thirdpartylogin.data'),
|
||||
plugins_thirdpartylogin_data: app.globalData.get_config('plugins_thirdpartylogin_data'),
|
||||
});
|
||||
|
|
|
|||
|
|
@ -63,26 +63,27 @@
|
|||
</view>
|
||||
<component-goods-list :propData="{ style_type: 1, goods_list: info.goods_list }" :propCurrencySymbol="currency_symbol"></component-goods-list>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view v-if="(data_base.is_user_add_blog || 0) == 1" class="bottom-fixed btn-content">
|
||||
<view class="flex-row jc-sa align-c text-size fw-b bottom-line-exclude">
|
||||
<navigator url="/pages/plugins/blog/form/form" hover-class="none" class="flex-1 tc flex-col jc-c align-c">
|
||||
<view class="divider-r-d wh-auto"> <iconfont name="icon-wenda-wytw" size="30rpx" color="#333" propClass="margin-right-sm"></iconfont>发布{{ blog_main_name }}</view>
|
||||
</navigator>
|
||||
<navigator url="/pages/plugins/blog/user-list/user-list" hover-class="none" class="flex-1 tc flex-col jc-c align-c">
|
||||
<view class="wh-auto"> <iconfont name="icon-wenda-wdtw" size="32rpx" color="#333" propClass="margin-right-sm pr top-xs"></iconfont>我的{{ blog_main_name }}</view>
|
||||
</navigator>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 结尾 -->
|
||||
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
|
||||
</view>
|
||||
<view v-else>
|
||||
<!-- 提示信息 -->
|
||||
<component-no-data :propStatus="data_list_loding_status" :propMsg="data_list_loding_msg"></component-no-data>
|
||||
</view>
|
||||
|
||||
<!-- 发布博文、我的博文入口 -->
|
||||
<view v-if="(data_base.is_user_add_blog || 0) == 1" class="bottom-fixed btn-content">
|
||||
<view class="flex-row jc-sa align-c text-size fw-b bottom-line-exclude">
|
||||
<navigator url="/pages/plugins/blog/form/form" hover-class="none" class="flex-1 tc flex-col jc-c align-c">
|
||||
<view class="divider-r-d wh-auto"> <iconfont name="icon-wenda-wytw" size="30rpx" color="#333" propClass="margin-right-sm"></iconfont>发布{{ blog_main_name }}</view>
|
||||
</navigator>
|
||||
<navigator url="/pages/plugins/blog/user-list/user-list" hover-class="none" class="flex-1 tc flex-col jc-c align-c">
|
||||
<view class="wh-auto"> <iconfont name="icon-wenda-wdtw" size="32rpx" color="#333" propClass="margin-right-sm pr top-xs"></iconfont>我的{{ blog_main_name }}</view>
|
||||
</navigator>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 结尾 -->
|
||||
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
|
|
|
|||
|
|
@ -105,9 +105,7 @@
|
|||
<component-goods-list :propData="{ style_type: 1, goods_list: goods_list }" :propCurrencySymbol="currency_symbol"></component-goods-list>
|
||||
</view>
|
||||
|
||||
<!-- 结尾 -->
|
||||
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
|
||||
|
||||
<!-- 发布博文、我的博文入口 -->
|
||||
<view v-if="(data_base.is_user_add_blog || 0) == 1" class="bottom-fixed btn-content">
|
||||
<view class="flex-row jc-sa align-c text-size fw-b bottom-line-exclude">
|
||||
<navigator url="/pages/plugins/blog/form/form" hover-class="none" class="flex-1 tc flex-col jc-c align-c">
|
||||
|
|
@ -118,6 +116,9 @@
|
|||
</navigator>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 结尾 -->
|
||||
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
|
||||
</view>
|
||||
<view v-else>
|
||||
<!-- 提示信息 -->
|
||||
|
|
|
|||
|
|
@ -39,7 +39,9 @@
|
|||
<component-no-data :propStatus="data_list_loding_status" :propMsg="data_list_loding_msg"></component-no-data>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</scroll-view>
|
||||
|
||||
<!-- 发布博文、我的博文入口 -->
|
||||
<view v-if="(data_base.is_user_add_blog || 0) == 1" class="bottom-fixed btn-content">
|
||||
<view class="flex-row jc-sa align-c text-size fw-b bottom-line-exclude">
|
||||
<navigator url="/pages/plugins/blog/form/form" hover-class="none" class="flex-1 tc flex-col jc-c align-c">
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
<text>{{ $t('setup.setup.x81v6d') }}</text>
|
||||
<text class="fr cr-grey">{{ user.mobile_security || '' }} {{ $t('setup.setup.j6skqh') }}</text>
|
||||
</view>
|
||||
<view class="padding-top-xxl padding-bottom-xxl padding-right-xxxl arrow-right br-t" data-value="/pages/login/login?opt_form=bind_verify" @tap="open_language_event">
|
||||
<view v-if="home_use_multilingual_status == 1" class="padding-top-xxl padding-bottom-xxl padding-right-xxxl arrow-right br-t" data-value="/pages/login/login?opt_form=bind_verify" @tap="open_language_event">
|
||||
<text>{{ $t('setup.setup.r7jz13') }}</text>
|
||||
<text class="fr cr-grey">{{ language }}</text>
|
||||
</view>
|
||||
|
|
@ -96,6 +96,7 @@
|
|||
system_locale: '',
|
||||
application_locale: '',
|
||||
is_android: '',
|
||||
home_use_multilingual_status: 0,
|
||||
// 语言选择
|
||||
popup_language_status: false,
|
||||
language_list: '',
|
||||
|
|
@ -149,6 +150,7 @@
|
|||
if ((status || false) == true) {
|
||||
this.setData({
|
||||
common_app_customer_service_tel: app.globalData.get_config('config.common_app_customer_service_tel'),
|
||||
home_use_multilingual_status: app.globalData.get_config('config.home_use_multilingual_status'),
|
||||
plugins_invoice: app.globalData.get_config('plugins_base.invoice', null),
|
||||
});
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue