Commit fae333ddec5e4868b4cb3f8b886dcda088ea2767
1 parent
db0a3534
库位类型选择框样式优化
Signed-off-by: TanYibin <5491541@qq.com>
Showing
6 changed files
with
18 additions
and
31 deletions
ant-design-vue-jeecg/src/views/system/config/LocationList.vue
... | ... | @@ -26,11 +26,9 @@ |
26 | 26 | placeholder="请选择库位类型" |
27 | 27 | option-filter-prop="children" |
28 | 28 | :filter-option="filterOption" |
29 | - v-model="queryParam.locationTypeCode" | |
30 | - style="width: 200px"> | |
31 | - <a-select-option v-for="item in locationTypeList" :key="item.name" :value="item.code">{{ | |
32 | - item.name | |
33 | - }} | |
29 | + v-model="queryParam.locationTypeCode"> | |
30 | + <a-select-option v-for="item in locationTypeList" :key="item.name" :value="item.code"> | |
31 | + {{item.name}} | |
34 | 32 | </a-select-option> |
35 | 33 | </a-select> |
36 | 34 | </a-form-item> |
... | ... | @@ -43,11 +41,9 @@ |
43 | 41 | placeholder="请选择库区编码" |
44 | 42 | option-filter-prop="children" |
45 | 43 | :filter-option="filterOption" |
46 | - v-model="queryParam.zoneCode" | |
47 | - style="width: 200px"> | |
48 | - <a-select-option v-for="item in zoneList" :key="item.name" :value="item.code">{{ | |
49 | - item.name | |
50 | - }} | |
44 | + v-model="queryParam.zoneCode"> | |
45 | + <a-select-option v-for="item in zoneList" :key="item.name" :value="item.code"> | |
46 | + {{item.name}} | |
51 | 47 | </a-select-option> |
52 | 48 | </a-select> |
53 | 49 | </a-form-item> |
... | ... |
ant-design-vue-jeecg/src/views/system/monitor/locationStatus.vue
ant-design-vue-jeecg/src/views/system/task/CircleTaskHeaderList.vue
... | ... | @@ -22,11 +22,9 @@ |
22 | 22 | placeholder="请选择库区" |
23 | 23 | option-filter-prop="children" |
24 | 24 | :filter-option="filterOption" |
25 | - v-model="queryParam.zoneCode" | |
26 | - style="width: 200px"> | |
27 | - <a-select-option v-for="item in zoneList" :key="item.name" :value="item.code">{{ | |
28 | - item.name | |
29 | - }} | |
25 | + v-model="queryParam.zoneCode"> | |
26 | + <a-select-option v-for="item in zoneList" :key="item.name" :value="item.code"> | |
27 | + {{item.name}} | |
30 | 28 | </a-select-option> |
31 | 29 | </a-select> |
32 | 30 | </a-form-item> |
... | ... |
ant-design-vue-jeecg/src/views/system/task/ReceiptTaskHeaderList.vue
... | ... | @@ -22,11 +22,9 @@ |
22 | 22 | placeholder="请选择库区" |
23 | 23 | option-filter-prop="children" |
24 | 24 | :filter-option="filterOption" |
25 | - v-model="queryParam.zoneCode" | |
26 | - style="width: 200px"> | |
27 | - <a-select-option v-for="item in zoneList" :key="item.name" :value="item.code">{{ | |
28 | - item.name | |
29 | - }} | |
25 | + v-model="queryParam.zoneCode"> | |
26 | + <a-select-option v-for="item in zoneList" :key="item.name" :value="item.code"> | |
27 | + {{item.name}} | |
30 | 28 | </a-select-option> |
31 | 29 | </a-select> |
32 | 30 | </a-form-item> |
... | ... |
ant-design-vue-jeecg/src/views/system/task/ShipmentTaskHeaderList.vue
... | ... | @@ -22,11 +22,9 @@ |
22 | 22 | placeholder="请选择库区" |
23 | 23 | option-filter-prop="children" |
24 | 24 | :filter-option="filterOption" |
25 | - v-model="queryParam.zoneCode" | |
26 | - style="width: 200px"> | |
27 | - <a-select-option v-for="item in zoneList" :key="item.name" :value="item.code">{{ | |
28 | - item.name | |
29 | - }} | |
25 | + v-model="queryParam.zoneCode"> | |
26 | + <a-select-option v-for="item in zoneList" :key="item.name" :value="item.code"> | |
27 | + {{item.name}} | |
30 | 28 | </a-select-option> |
31 | 29 | </a-select> |
32 | 30 | </a-form-item> |
... | ... |
ant-design-vue-jeecg/src/views/system/task/TransferTaskHeaderList.vue
... | ... | @@ -22,11 +22,9 @@ |
22 | 22 | placeholder="请选择库区" |
23 | 23 | option-filter-prop="children" |
24 | 24 | :filter-option="filterOption" |
25 | - v-model="queryParam.zoneCode" | |
26 | - style="width: 200px"> | |
27 | - <a-select-option v-for="item in zoneList" :key="item.name" :value="item.code">{{ | |
28 | - item.name | |
29 | - }} | |
25 | + v-model="queryParam.zoneCode"> | |
26 | + <a-select-option v-for="item in zoneList" :key="item.name" :value="item.code"> | |
27 | + {{item.name}} | |
30 | 28 | </a-select-option> |
31 | 29 | </a-select> |
32 | 30 | </a-form-item> |
... | ... |