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-26 15:17:55 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cce1bee8ccc31542fff967fed20cbf7ea276c83e
cce1bee8
1 parent
62035825
fix
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
src/components/chooseMaterial/index.vue
src/views/material_pre_request.vue
src/components/chooseMaterial/index.vue
View file @
cce1bee
<!--
* @Date: 2024-07-23 16:24:08
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-07-26 1
3:57:2
9
* @LastEditTime: 2024-07-26 1
5:12:3
9
* @FilePath: /temple_material_request/src/components/chooseMaterial/index.vue
* @Description: 选择物资组件
-->
...
...
@@ -270,7 +270,14 @@ const goShoppingCart = () => { // 点击购物车图标
if ($route.path === '/material_pre_request') { // 待申领物资页面
onClose();
} else {
$router.push({ path: '/material_pre_request' });
$router.push({
path: '/material_pre_request',
query: {
activity_id,
form_id: $route.query.form_id,
client_id: $route.query.client_id
}
});
}
}
...
...
src/views/material_pre_request.vue
View file @
cce1bee
<!--
* @Date: 2024-07-23 12:53:15
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-07-26 14:
10:50
* @LastEditTime: 2024-07-26 14:
47:28
* @FilePath: /temple_material_request/src/views/material_pre_request.vue
* @Description: 待申领物资页面
-->
...
...
@@ -56,7 +56,7 @@
</van-row>
<div v-if="item.error" style="padding: 0.5rem 2rem 0 0; font-size: 0.85rem; color: red; text-align: right;">输入值有误</div>
</div>
<div style="height:
6
rem;"></div>
<div style="height:
10
rem;"></div>
<div style="position: fixed; left: 0; right: 0; bottom:4.5rem; padding: 1rem;">
<van-button icon="plus" type="primary" :color="styleColor.baseColor" plain block :disabled="disabled_btn" @click="addMore">添加更多</van-button>
</div>
...
...
Please
register
or
login
to post a comment