Ver Fonte

```
feat: 添加电影模块功能

- 新增filmMovieList接口类型定义
- 添加film.getMovieList API接口配置
- 在globals.d.ts中注册电影相关API方法
- 集成WdActionSheet组件用于弹窗展示
- 添加开发环境调试地址注释
- 配置电影子包路由页面结构
- 在首页导航中添加电影演出入口
- 实现选电影页面基础功能
- 添加座位选择相关工具类和渲染器
```

wenjie há 2 semanas atrás
pai
commit
758e5380c4
2 ficheiros alterados com 3 adições e 1 exclusões
  1. 1 0
      src/components.d.ts
  2. 2 1
      src/uni-pages.d.ts

+ 1 - 0
src/components.d.ts

@@ -12,6 +12,7 @@ declare module 'vue' {
     GlobalMessage: typeof import('./components/GlobalMessage.vue')['default']
     GlobalToast: typeof import('./components/GlobalToast.vue')['default']
     PrivacyPopup: typeof import('./components/PrivacyPopup.vue')['default']
+    WdActionSheet: typeof import('wot-design-uni/components/wd-action-sheet/wd-action-sheet.vue')['default']
     WdBadge: typeof import('wot-design-uni/components/wd-badge/wd-badge.vue')['default']
     WdButton: typeof import('wot-design-uni/components/wd-button/wd-button.vue')['default']
     WdCard: typeof import('wot-design-uni/components/wd-card/wd-card.vue')['default']

+ 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;