|
@@ -7,11 +7,13 @@
|
|
|
</el-link>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="content">
|
|
|
- <a href="#" v-for="(item,index) in zhengWuList" :key="index">
|
|
|
- <el-image :src="item.url" style="width:42px;height:40px;margin-top: 20px"></el-image>
|
|
|
- <span>{{item.title}}</span>
|
|
|
- </a>
|
|
|
+ <el-col class="list" :span="6" v-for="(item, index) in zhengWuList" :key="index">
|
|
|
+ <el-link :underline="false" :href="item.href" target="_blank">
|
|
|
+ <el-image :src="item.url" style="width:42px;height:40px;margin-top:20px;"></el-image>
|
|
|
+ <span>{{ item.title }}</span>
|
|
|
+ </el-link>
|
|
|
</el-col>
|
|
|
+ </el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -19,12 +21,53 @@
|
|
|
<script>
|
|
|
export default {
|
|
|
name: 'zhengwu',
|
|
|
- props: {
|
|
|
- zhengWuList: null,
|
|
|
- },
|
|
|
+ props: {},
|
|
|
components: {},
|
|
|
- data: () => ({}),
|
|
|
- created() { },
|
|
|
+ data: () => ({
|
|
|
+ zhengWuList: [
|
|
|
+ {
|
|
|
+ url: require('../../../assets/zhengwu1.png'),
|
|
|
+ title: '高企认证',
|
|
|
+ href: 'http://kjt.jl.gov.cn/bsfw/gxjsqyrd/',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: require('@/assets/zhengwu2.png'),
|
|
|
+ title: '成果登记',
|
|
|
+ href: 'http://kjt.jl.gov.cn/bsfw/kjcgdj/',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: require('@/assets/zhengwu3.png'),
|
|
|
+ title: '合同登记',
|
|
|
+ href: 'http://kjt.jl.gov.cn/bsfw/jshtdj/',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: require('@/assets/zhengwu4.png'),
|
|
|
+ title: '计划管理',
|
|
|
+ href: 'http://kjt.jl.gov.cn/bsfw/kjjhxmsb/',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: require('@/assets/zhengwu5.png'),
|
|
|
+ title: '奖励申报',
|
|
|
+ href: 'http://kjt.jl.gov.cn/bsfw/kjjlsb/',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: require('@/assets/zhengwu6.png'),
|
|
|
+ title: '专利申请',
|
|
|
+ href: 'http://kjt.jl.gov.cn/bsfw/zlsq/',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: require('@/assets/zhengwu7.png'),
|
|
|
+ title: '相关下载',
|
|
|
+ href: 'http://kjt.jl.gov.cn/bsfw/xzzx/',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ url: require('@/assets/zhengwu8.png'),
|
|
|
+ title: '政务信息公开',
|
|
|
+ href: 'http://kjt.jl.gov.cn/xxgk/',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ }),
|
|
|
+ created() {},
|
|
|
computed: {},
|
|
|
methods: {},
|
|
|
};
|
|
@@ -49,27 +92,25 @@ export default {
|
|
|
padding: 0 0 0 20px;
|
|
|
}
|
|
|
.content {
|
|
|
- width: 756px;
|
|
|
- height: 230px;
|
|
|
- margin: 0 20px;
|
|
|
+ padding: 0 19px;
|
|
|
}
|
|
|
-.content a {
|
|
|
- display: block;
|
|
|
- width: 174px;
|
|
|
+.list {
|
|
|
+ width: 178px;
|
|
|
height: 110px;
|
|
|
- float: left;
|
|
|
margin-right: 10px;
|
|
|
- margin-top: 10px;
|
|
|
+ margin-top: 15px;
|
|
|
text-align: center;
|
|
|
- color: #3981e5;
|
|
|
border: 1px solid #dee9f9;
|
|
|
- font-size: 18px;
|
|
|
}
|
|
|
-.content span {
|
|
|
+.list:hover {
|
|
|
+ background-color: #DEEBFF;
|
|
|
+}
|
|
|
+.list span {
|
|
|
display: block;
|
|
|
- float: left;
|
|
|
width: 178px;
|
|
|
height: 30px;
|
|
|
line-height: 30px;
|
|
|
+ color: #3981e5;
|
|
|
+ font-size: 18px;
|
|
|
}
|
|
|
</style>
|