Showing
2 changed files
with
2 additions
and
3 deletions
| ... | @@ -23,7 +23,6 @@ | ... | @@ -23,7 +23,6 @@ |
| 23 | > | 23 | > |
| 24 | <template #default> | 24 | <template #default> |
| 25 | <!-- Today's steps section --> | 25 | <!-- Today's steps section --> |
| 26 | - <!-- TODO: 今日获取的步数怎么同步到下面那个积分池里面去 --> | ||
| 27 | <view class="px-5 py-6 bg-white rounded-xl shadow-md mx-4 mt-4"> | 26 | <view class="px-5 py-6 bg-white rounded-xl shadow-md mx-4 mt-4"> |
| 28 | <view class="flex justify-between items-center mb-1"> | 27 | <view class="flex justify-between items-center mb-1"> |
| 29 | <span class="text-gray-500">今日</span> | 28 | <span class="text-gray-500">今日</span> | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Date: 2022-09-19 14:11:06 | 2 | * @Date: 2022-09-19 14:11:06 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2025-08-29 14:38:56 | 4 | + * @LastEditTime: 2025-09-06 13:24:57 |
| 5 | * @FilePath: /lls_program/src/utils/config.js | 5 | * @FilePath: /lls_program/src/utils/config.js |
| 6 | * @Description: 环境配置文件 - 根据小程序运行环境自动切换API地址 | 6 | * @Description: 环境配置文件 - 根据小程序运行环境自动切换API地址 |
| 7 | */ | 7 | */ |
| ... | @@ -15,7 +15,7 @@ function getBaseUrl() { | ... | @@ -15,7 +15,7 @@ function getBaseUrl() { |
| 15 | const accountInfo = wx.getAccountInfoSync(); | 15 | const accountInfo = wx.getAccountInfoSync(); |
| 16 | const envVersion = accountInfo.miniProgram.envVersion; | 16 | const envVersion = accountInfo.miniProgram.envVersion; |
| 17 | 17 | ||
| 18 | - // 定义不同环境的服务器地址 | 18 | + // TAG: 定义不同环境的服务器地址 |
| 19 | let baseUrl = ''; | 19 | let baseUrl = ''; |
| 20 | switch (envVersion) { | 20 | switch (envVersion) { |
| 21 | case 'develop': // 开发版 | 21 | case 'develop': // 开发版 | ... | ... |
-
Please register or login to post a comment