| | |
| | | <div class="main-content"> |
| | | <div class="filters"> |
| | | <el-form :model="state.querys"> |
| | | <el-form-item label="法律法规名称" style="width: 500px;margin-bottom: 0;margin-right: 20px"> |
| | | <el-form-item label="法律法规名称:" style="font-size: 15px; width: 500px;margin-bottom: 0;margin-right: 20px"> |
| | | <el-input v-model="state.querys.title" /> |
| | | </el-form-item> |
| | | </el-form> |
| | |
| | | <div class="list"> |
| | | <div v-for="item in state.dataList" @click="openDetails('法律法规',item.id)"> |
| | | <div> |
| | | <div><img src="src/assets/images/article.png"></div> |
| | | <div><img :src="articlePng"></div> |
| | | <div>{{item.title}}</div> |
| | | </div> |
| | | <span> |
| | |
| | | import useUserStore from '@/store/modules/user' |
| | | import { Search, Refresh } from '@element-plus/icons-vue' |
| | | import {ElMessage} from "element-plus"; |
| | | import articlePng from "@/assets/images/article.png"; |
| | | const emit = defineEmits(['openDetails']) |
| | | const route = useRoute() |
| | | const router = useRouter() |
| | |
| | | display: flex; |
| | | justify-content: center; |
| | | margin-top: 170px; |
| | | :deep(.el-form .el-form-item__label) { |
| | | font-size: 16px; |
| | | } |
| | | |
| | | .main-content{ |
| | | width: 1200px; |