市北互联平台前端仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
2.0 KiB

4 years ago
<template>
<div class="warning-box">
<div class="warning-box-top">
<div class="top-item" v-for="item in [1, 2, 3, 4, 5, 6]" :key="item">
<div class="top-item-img">
<img
src="../../../../assets/img/modules/visual/shiye.png"
alt=""
srcset=""
/>
<div class="top-item-left">
<span>失业人员</span>
<span>1022</span>
</div>
</div>
<div class="top-item-num">
<div class="num-item num-item-active" @click="onClickList">
<div>5-10</div>
<div>
<div>6</div>
<img
src="../../../../assets/img/modules/visual/right-icon.png"
alt=""
class="right-icon"
/>
</div>
</div>
<div class="num-item">
<div>5-10</div>
<div>
<div>6</div>
<img
src="../../../../assets/img/modules/visual/right-icon.png"
alt=""
class="right-icon"
/>
</div>
</div>
</div>
4 years ago
</div>
</div>
<div class="warning-box-bottom">
<screen-table :headerList='headerList'></screen-table>
<div class="pagination">
<el-pagination
background
layout="prev, pager, next"
:total="1000">
</el-pagination>
4 years ago
</div>
</div>
</div>
</template>
<script>
import screenTable from "./components/screen-table/index";
export default {
name: "warning-box",
components: {
screenTable
4 years ago
},
data() {
return {
headerList:[
{ title: '序号' },
{ title: '所属网格'},
{ title: '所属小区'},
{ title: '楼号'},
{ title: '姓名' },
],
};
4 years ago
},
methods: {
onClickList(){}
4 years ago
}
};
</script>
4 years ago
<style
lang="scss"
src="@/assets/scss/modules/visual/warning.scss"
scoped
></style>