hookehuyr

fix

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-26 13:57:29 4 + * @LastEditTime: 2024-07-26 15:12:39
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 -->
...@@ -270,7 +270,14 @@ const goShoppingCart = () => { // 点击购物车图标 ...@@ -270,7 +270,14 @@ const goShoppingCart = () => { // 点击购物车图标
270 if ($route.path === '/material_pre_request') { // 待申领物资页面 270 if ($route.path === '/material_pre_request') { // 待申领物资页面
271 onClose(); 271 onClose();
272 } else { 272 } else {
273 - $router.push({ path: '/material_pre_request' }); 273 + $router.push({
274 + path: '/material_pre_request',
275 + query: {
276 + activity_id,
277 + form_id: $route.query.form_id,
278 + client_id: $route.query.client_id
279 + }
280 + });
274 } 281 }
275 } 282 }
276 283
......
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-26 14:10:50 4 + * @LastEditTime: 2024-07-26 14:47:28
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 -->
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
56 </van-row> 56 </van-row>
57 <div v-if="item.error" style="padding: 0.5rem 2rem 0 0; font-size: 0.85rem; color: red; text-align: right;">输入值有误</div> 57 <div v-if="item.error" style="padding: 0.5rem 2rem 0 0; font-size: 0.85rem; color: red; text-align: right;">输入值有误</div>
58 </div> 58 </div>
59 - <div style="height: 6rem;"></div> 59 + <div style="height: 10rem;"></div>
60 <div style="position: fixed; left: 0; right: 0; bottom:4.5rem; padding: 1rem;"> 60 <div style="position: fixed; left: 0; right: 0; bottom:4.5rem; padding: 1rem;">
61 <van-button icon="plus" type="primary" :color="styleColor.baseColor" plain block :disabled="disabled_btn" @click="addMore">添加更多</van-button> 61 <van-button icon="plus" type="primary" :color="styleColor.baseColor" plain block :disabled="disabled_btn" @click="addMore">添加更多</van-button>
62 </div> 62 </div>
......