Showing
2 changed files
with
9 additions
and
3 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2024-07-23 16:24:08 | 2 | * @Date: 2024-07-23 16:24:08 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-07-23 17:50:18 | 4 | + * @LastEditTime: 2024-07-23 18:18:22 |
| 5 | * @FilePath: /temple_material_request/src/components/chooseMaterial/index.vue | 5 | * @FilePath: /temple_material_request/src/components/chooseMaterial/index.vue |
| 6 | * @Description: 选择物资组件 | 6 | * @Description: 选择物资组件 |
| 7 | --> | 7 | --> |
| ... | @@ -33,6 +33,7 @@ | ... | @@ -33,6 +33,7 @@ |
| 33 | </div> | 33 | </div> |
| 34 | </div> | 34 | </div> |
| 35 | </van-sticky> | 35 | </van-sticky> |
| 36 | + <!-- TODO:物资列表显示值需要过滤掉购物车已经选中的物资,新增的物资需要显示在购物车最上面 --> | ||
| 36 | <van-list | 37 | <van-list |
| 37 | v-model:loading="loading" | 38 | v-model:loading="loading" |
| 38 | :finished="finished" | 39 | :finished="finished" | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2024-07-23 12:53:15 | 2 | * @Date: 2024-07-23 12:53:15 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-07-23 16:15:20 | 4 | + * @LastEditTime: 2024-07-23 18:17:22 |
| 5 | * @FilePath: /temple_material_request/src/views/material_pre_request.vue | 5 | * @FilePath: /temple_material_request/src/views/material_pre_request.vue |
| 6 | * @Description: 待申领物资页面 | 6 | * @Description: 待申领物资页面 |
| 7 | --> | 7 | --> |
| ... | @@ -9,7 +9,12 @@ | ... | @@ -9,7 +9,12 @@ |
| 9 | <div class="material-pre-request-page"> | 9 | <div class="material-pre-request-page"> |
| 10 | <div class="list-wrapper"> | 10 | <div class="list-wrapper"> |
| 11 | <van-row justify="space-between" class="select-all-item"> | 11 | <van-row justify="space-between" class="select-all-item"> |
| 12 | - <van-col span="8"><van-icon name="passed" size="1.25rem" /> <span :style="{ color: styleColor.baseColor }">全选</span></van-col> | 12 | + <van-col span="8"> |
| 13 | + <!-- TODO:编辑模式下,不能确认申请 --> | ||
| 14 | + <van-icon name="passed" size="1.25rem" /> <span :style="{ color: styleColor.baseColor }">全选</span> | ||
| 15 | + <!-- TODO:非编辑模式下,显示购物车总数量 --> | ||
| 16 | + <span :style="{ color: styleColor.baseColor }">品项数: 1000</span> | ||
| 17 | + </van-col> | ||
| 13 | <van-col span="16" :style="{ textAlign: 'right', fontSize: '0.85rem', color: styleColor.baseColor }"> | 18 | <van-col span="16" :style="{ textAlign: 'right', fontSize: '0.85rem', color: styleColor.baseColor }"> |
| 14 | <van-icon name="records-o" /> 编辑 | 19 | <van-icon name="records-o" /> 编辑 |
| 15 | <van-icon name="delete-o" /> 删除 | 20 | <van-icon name="delete-o" /> 删除 | ... | ... |
-
Please register or login to post a comment