hookehuyr

fix

<!--
* @Date: 2024-07-23 16:24:08
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-07-26 13:57:29
* @LastEditTime: 2024-07-26 15:12:39
* @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
}
});
}
}
......
<!--
* @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: 6rem;"></div>
<div style="height: 10rem;"></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>
......