diff --git a/components/config/configPopup.vue b/components/config/configPopup.vue index 4f70dd3..ef2d21c 100644 --- a/components/config/configPopup.vue +++ b/components/config/configPopup.vue @@ -40,6 +40,9 @@ .configPopup { .content{ padding: 30rpx 20rpx; + overflow: scroll; + height: 100%; + box-sizing: border-box; } } \ No newline at end of file diff --git a/config.js b/config.js index 9dfb093..178d43d 100644 --- a/config.js +++ b/config.js @@ -6,7 +6,7 @@ import uvUI from '@/uni_modules/uv-ui-tools' Vue.use(uvUI); // 当前环境 -const type = 'dev' +const type = 'prod' // 环境配置 @@ -15,7 +15,7 @@ const config = { baseUrl: 'http://dev.java996.icu/clockin-api', }, prod: { - baseUrl: 'http://xxx.xxx.xxx/xxx', + baseUrl: 'https://clockin.java996.icu/clockin-api', } }