hookehuyr

fix 单位取值修改,样式修改

1 <!-- 1 <!--
2 * @Date: 2024-07-23 10:50:38 2 * @Date: 2024-07-23 10:50:38
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-07-26 17:27:03 4 + * @LastEditTime: 2024-07-29 09:52:00
5 * @FilePath: /temple_material_request/src/views/material_list.vue 5 * @FilePath: /temple_material_request/src/views/material_list.vue
6 * @Description: 物资情况页面 6 * @Description: 物资情况页面
7 --> 7 -->
...@@ -27,11 +27,11 @@ ...@@ -27,11 +27,11 @@
27 </van-col> 27 </van-col>
28 <van-col span="5"> 28 <van-col span="5">
29 <div class="item-num-title">申请数量</div> 29 <div class="item-num-title">申请数量</div>
30 - <div class="item-num van-ellipsis">{{ item.total_apply_number }}&nbsp;</div> 30 + <div class="item-num van-ellipsis">{{ item.total_apply_number }}&nbsp;{{ item.spec }}</div>
31 </van-col> 31 </van-col>
32 <van-col span="5"> 32 <van-col span="5">
33 <div class="item-num-title">实际领用</div> 33 <div class="item-num-title">实际领用</div>
34 - <div v-if="item.total_number" class="item-num van-ellipsis">{{ item.total_number }}&nbsp;</div> 34 + <div v-if="item.total_number" class="item-num van-ellipsis">{{ item.total_number }}&nbsp;{{ item.spec }}</div>
35 </van-col> 35 </van-col>
36 </van-row> 36 </van-row>
37 </div> 37 </div>
......
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-29 09:34:23 4 + * @LastEditTime: 2024-07-29 10:30:14
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 -->
...@@ -51,10 +51,10 @@ ...@@ -51,10 +51,10 @@
51 @focus="onFocus(item)" 51 @focus="onFocus(item)"
52 > 52 >
53 <template #left-icon></template> 53 <template #left-icon></template>
54 - </van-field>&nbsp;&nbsp;<span style="font-size: 0.9rem; color: #666;"></span> 54 + </van-field>&nbsp;&nbsp;<span style="font-size: 0.9rem; color: #666;">{{ item.spec }}</span>
55 </van-col> 55 </van-col>
56 <van-col v-else span="8" style="display: flex; align-items: center; justify-content: flex-end;"> 56 <van-col v-else span="8" style="display: flex; align-items: center; justify-content: flex-end;">
57 - <span style="font-size: 0.9rem; color: #666;">{{ item.apply_number }}</span>&nbsp;&nbsp;<span style="font-size: 0.9rem; color: #666;">个</span> 57 + <span style="font-size: 0.9rem; color: #666;">{{ item.apply_number }}</span>&nbsp;&nbsp;<span style="font-size: 0.9rem; color: #666; display: inline-block; width: 1.25rem; text-align: right;">{{ item.spec }}</span>
58 </van-col> 58 </van-col>
59 </van-row> 59 </van-row>
60 <div v-if="item.error" style="padding: 0.5rem 2rem 0 0; font-size: 0.85rem; color: red; text-align: right;">输入值有误</div> 60 <div v-if="item.error" style="padding: 0.5rem 2rem 0 0; font-size: 0.85rem; color: red; text-align: right;">输入值有误</div>
......
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 17:54:05 4 + * @LastEditTime: 2024-07-29 10:26:06
5 * @FilePath: /temple_material_request/src/views/material_request.vue 5 * @FilePath: /temple_material_request/src/views/material_request.vue
6 * @Description: 申领物资页面 6 * @Description: 申领物资页面
7 --> 7 -->
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
47 @blur="onBlur(item)" 47 @blur="onBlur(item)"
48 > 48 >
49 <template #left-icon></template> 49 <template #left-icon></template>
50 - </van-field>&nbsp;&nbsp;<span style="font-size: 0.9rem; color: #666;"></span> 50 + </van-field>&nbsp;&nbsp;<span style="font-size: 0.9rem; color: #666;">{{ item.spec }}</span>
51 </van-col> 51 </van-col>
52 </van-row> 52 </van-row>
53 <div v-if="item.error" style="padding: 0.5rem 2rem 0 0; font-size: 0.85rem; color: red; text-align: right;">输入值有误</div> 53 <div v-if="item.error" style="padding: 0.5rem 2rem 0 0; font-size: 0.85rem; color: red; text-align: right;">输入值有误</div>
......