Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
temple_material_request
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-07-29 09:34:58 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
00b289eedeb8e23c7bd3796e532f919745962342
00b289ee
1 parent
b7764466
fix
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
src/views/material_pre_request.vue
src/views/material_pre_request.vue
View file @
00b289e
<!--
* @Date: 2024-07-23 12:53:15
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-07-2
8 12:06:16
* @LastEditTime: 2024-07-2
9 09:34:23
* @FilePath: /temple_material_request/src/views/material_pre_request.vue
* @Description: 待申领物资页面
-->
...
...
@@ -439,7 +439,7 @@ const onDialogCancel = () => {
}
const show_choose_material = ref(false);
const onCloseChoose = async () => { // 关闭选择物资弹窗回调
const onCloseChoose = async (
sum
) => { // 关闭选择物资弹窗回调
show_choose_material.value = false;
// 刷新购物车列表
const { data, code } = await getCartListAPI({ activity_id });
...
...
@@ -449,8 +449,10 @@ const onCloseChoose = async () => { // 关闭选择物资弹窗回调
item.checked = false;
});
sum_num.value = list.value.length; // 品项数量
if (sum_num.value) {
onClickEdit(); // 打开编辑模式
}
}
//
}
...
...
Please
register
or
login
to post a comment