Przeglądaj źródła

```
feat(components): 新增WdCircle和WdSticky组件声明

新增了WdCircle圆形进度条组件和WdSticky粘性布局组件的类型声明,
使这两个新组件可以在项目中正常使用。

---

feat(charge): 新增充电功能相关页面和组件

新增了充电功能模块的多个页面,包括充电详情、正在充电、地图模式、
启动终端和站点详情页面,并完善了充电首页的搜索组件和筛选功能。

---

refactor(config): 调整开发环境配置

将开发环境地址切换到正式测试域名,注释掉本地IP配置,
便于团队统一开发环境配置。

---

fix(index): 修复首页充电入口导航问题

为首页充电图标添加了正确的路由名称,确保用户点击充电入口时
能够正常跳转到充电功能页面。

---

style(search): 优化搜索组件样式和交互

为搜索组件添加了动态图标和文字支持,增加了页面滚动透明度效果,
并优化了组件布局间距和粘性定位功能。
```

zouzexu 2 dni temu
rodzic
commit
2daaa8b331
3 zmienionych plików z 4 dodań i 7 usunięć
  1. 2 0
      src/components.d.ts
  2. 0 6
      src/pages.json
  3. 2 1
      src/uni-pages.d.ts

+ 2 - 0
src/components.d.ts

@@ -19,6 +19,7 @@ declare module 'vue' {
     WdCellGroup: typeof import('wot-design-uni/components/wd-cell-group/wd-cell-group.vue')['default']
     WdCheckbox: typeof import('wot-design-uni/components/wd-checkbox/wd-checkbox.vue')['default']
     WdCheckboxGroup: typeof import('wot-design-uni/components/wd-checkbox-group/wd-checkbox-group.vue')['default']
+    WdCircle: typeof import('wot-design-uni/components/wd-circle/wd-circle.vue')['default']
     WdConfigProvider: typeof import('wot-design-uni/components/wd-config-provider/wd-config-provider.vue')['default']
     WdCountDown: typeof import('wot-design-uni/components/wd-count-down/wd-count-down.vue')['default']
     WdDivider: typeof import('wot-design-uni/components/wd-divider/wd-divider.vue')['default']
@@ -40,6 +41,7 @@ declare module 'vue' {
     WdStatusTip: typeof import('wot-design-uni/components/wd-status-tip/wd-status-tip.vue')['default']
     WdStep: typeof import('wot-design-uni/components/wd-step/wd-step.vue')['default']
     WdSteps: typeof import('wot-design-uni/components/wd-steps/wd-steps.vue')['default']
+    WdSticky: typeof import('wot-design-uni/components/wd-sticky/wd-sticky.vue')['default']
     WdSwiper: typeof import('wot-design-uni/components/wd-swiper/wd-swiper.vue')['default']
     WdTab: typeof import('wot-design-uni/components/wd-tab/wd-tab.vue')['default']
     WdTabbar: typeof import('wot-design-uni/components/wd-tabbar/wd-tabbar.vue')['default']

+ 0 - 6
src/pages.json

@@ -148,12 +148,6 @@
           "style": {
             "navigationBarTitleText": "订单详情",
             "navigationStyle": "custom"
-          },
-          "plugins": {
-            "logisticsPlugin": {
-              "version": "2.1.12",
-              "provider": "wx9ad912bf20548d92"
-            }
           }
         },
         {

+ 2 - 1
src/uni-pages.d.ts

@@ -28,7 +28,8 @@ type _LocationUrl =
   "/subPack-common/revalue/index" |
   "/subPack-common/revalueSuccess/index" |
   "/subPack-common/user-center/index" |
-  "/subPack-smqjh/order/index";
+  "/subPack-smqjh/order/index" |
+  "/subPack-charge/index/index";
 
 interface NavigateToOptions {
   url: _LocationUrl;