diff --git a/api/api.js b/api/api.js index 053dc52..cf7e006 100644 --- a/api/api.js +++ b/api/api.js @@ -256,6 +256,11 @@ const config = { url: '/api/login/getPrivacyPolicy', method: 'GET', }, + // 获取发布帖子发布需知 + getPublishPostNotice: { + url: '/api/login/getPublishPostNotice', + method: 'GET', + }, // 获取用户协议 getUserAgreement: { url: '/api/login/getUserAgreement', @@ -302,13 +307,6 @@ const config = { }, - // 立即支付 - payOrder: { - url: '/api/order/payOrder', - method: 'POST', - showLoading : true, - }, - } export function api(key, data, callback, loadingTitle) { diff --git a/components/config/configPopup.vue b/components/config/configPopup.vue index 5b25223..45dcd7b 100644 --- a/components/config/configPopup.vue +++ b/components/config/configPopup.vue @@ -41,6 +41,9 @@ .configPopup { .content{ padding: 30rpx 20rpx; + overflow-x: scroll; + height: 100%; + box-sizing: border-box; } } \ No newline at end of file diff --git a/components/content/contentControls.vue b/components/content/contentControls.vue index 6d5f383..2dcc150 100644 --- a/components/content/contentControls.vue +++ b/components/content/contentControls.vue @@ -14,10 +14,13 @@ 点赞 - - - 分享 + + \ No newline at end of file diff --git a/config.js b/config.js index 0c3a700..9a6313c 100644 --- a/config.js +++ b/config.js @@ -5,7 +5,7 @@ import utils from './utils/utils.js' // 当前环境 -const type = 'dev' +const type = 'prod' // 环境配置 diff --git a/pages.json b/pages.json index fcafb4f..e0396d6 100644 --- a/pages.json +++ b/pages.json @@ -204,7 +204,8 @@ "navigationBarTitleText": "unapp模板", "navigationBarBackgroundColor": "#F8F8F8", "backgroundColor": "#F8F8F8", - "navigationStyle": "custom" + "navigationStyle": "custom", + "onReachBottomDistance": 100 }, "uniIdRouter": {} } \ No newline at end of file diff --git a/pages/auth/login.vue b/pages/auth/login.vue index 6b633a6..7c2321c 100644 --- a/pages/auth/login.vue +++ b/pages/auth/login.vue @@ -1,7 +1,8 @@