| | |
| | | <div class="border-b p-4 border-bottom-dashed-1 box-border" style="padding: 10px"> |
| | | <div class="flex items-center"> |
| | | <span class="text-gray-500">离心泵类型:</span> |
| | | <div class="flex flex-1"> |
| | | <div class="flex flex-1 flex-wrap"> |
| | | <span v-for="item in pumptype" class="ant-tag !px-2" |
| | | :class="pumpSelect === item.id ? 'ant-tag-checked' : ''" :key="item.id" |
| | | @click="changeSelectPumpType(item.id)" |
| | |
| | | <div class="border-b p-4 border-bottom-dashed-1 box-border" style="padding: 10px"> |
| | | <div class="flex items-center"> |
| | | <span class="text-gray-500">水泵类型:</span> |
| | | <div class="flex flex-1"> |
| | | <div class="flex flex-1 flex-wrap"> |
| | | <span v-for="item in type.filter((c) => { return c.pumpid == pumpSelect })" |
| | | class="ant-tag !px-2" :class="typeSelect === item.tag ? 'ant-tag-checked' : ''" |
| | | :key="item.tag" @click="changeSelectType(item.tag)" |
| | |
| | | .text-gray-500 { |
| | | display: inline-block; |
| | | width: 150px; |
| | | flex-shrink: 0; |
| | | } |
| | | |
| | | .h-100 { |
| | |
| | | .ant-tag-checked:hover { |
| | | color: #fff; |
| | | } |
| | | .flex-wrap { |
| | | flex-wrap: wrap; |
| | | } |
| | | |
| | | |
| | | :deep(.el-button--default) { |