| | |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="12" style="position: relative"> |
| | | <div style="width: 150px; position: absolute;"><img alt="" src="../../../../assets/images/s.png"/></div> |
| | | <div style="width: 100%; height: 100%; position: absolute;"> |
| | | <el-form-item class="item" label="赋码" label-width="50px" prop="coding"> |
| | | <template slot-scope="scope"> |
| | | <!-- <div class="yellow-dot" v-if="scope.row.coding === 'yellow'"></div>--> |
| | | <!-- <div class="green-dot" v-if="scope.row.coding === 'green'"></div>--> |
| | | <!-- <div class="red-dot" v-if="scope.row.coding === 'red'"></div>--> |
| | | <div class="red-dot"></div> |
| | | <tag-list></tag-list> |
| | | </template> |
| | | </el-form-item> |
| | | <!-- <img alt="" src="../../../../assets/images/s.png"/>--> |
| | | </div> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row :gutter="20"> |
| | |
| | | <script> |
| | | // import Upload from '@element-plus/icons-vue/dist/Upload.vue'; |
| | | import Map from '@/views/components/Map/index.vue'; |
| | | import TagList from "./TagList.vue"; |
| | | // import MapMouseEvent from '@/views/components/Map/types'; |
| | | // import UploadStandard from '@/components/uploadStandard.vue'; |
| | | // import { usePlanLibrary } from '@/hooks/detailsInformation'; |
| | |
| | | , 'sys_administrative_divisions', 'sys_centralized_management', 'sys_approval_type', 'sys_key_categories', 'sys_annual_plan'], |
| | | components: { |
| | | Map, |
| | | TagList, |
| | | // UploadStandard, |
| | | // RemoteSelect |
| | | }, |
| | |
| | | width: 20px; |
| | | } |
| | | } |
| | | |
| | | .yellow-dot { |
| | | width: 10px; /* 圆点的宽度 */ |
| | | height: 10px; /* 圆点的高度 */ |
| | | background-color: yellow; /* 圆点的颜色 */ |
| | | border-radius: 50%; /* 使元素变成圆形 */ |
| | | display: inline-block; /* 确保元素可以和其他内联元素一起显示 */ |
| | | } |
| | | |
| | | .red-dot { |
| | | width: 10px; /* 圆点的宽度 */ |
| | | height: 10px; /* 圆点的高度 */ |
| | | background-color: red; /* 圆点的颜色 */ |
| | | border-radius: 50%; /* 使元素变成圆形 */ |
| | | display: inline-block; /* 确保元素可以和其他内联元素一起显示 */ |
| | | } |
| | | |
| | | .green-dot { |
| | | width: 10px; /* 圆点的宽度 */ |
| | | height: 10px; /* 圆点的高度 */ |
| | | background-color: green; /* 圆点的颜色 */ |
| | | border-radius: 50%; /* 使元素变成圆形 */ |
| | | display: inline-block; /* 确保元素可以和其他内联元素一起显示 */ |
| | | } |
| | | </style> |