index.vue
5.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<template>
<div class="main">
<div class="panel content_box">
<el-card class="panel_left">
<div slot="header" class="clearfix">
<span>工作箱</span>
</div>
<div class="enter_box">
<div
class="box"
v-for="(item, index) in workList"
:key="index"
@click="handleSelect"
>
<el-badge :value="item.count" :max="99" class="item">
<img :src="item.img" alt="" />
</el-badge>
<span>{{ item.name }}</span>
</div>
</div>
</el-card>
<el-card class="panel_right">
<div slot="header" class="clearfix">
<span>快捷入口</span>
<span class="edit" @click="isEdit = true" v-show="!isEdit">编辑</span>
<span class="edit" @click="isEdit = false" v-show="isEdit">完成</span>
</div>
<div class="enter_box">
<div
class="box"
v-for="(item, index) in list"
:key="index"
@click="handleSelect"
>
<div class="psr">
<img :src="item.img" alt="" />
<i class="fa fa-times-circle fa-2x" v-show="isEdit && index!=list.length-1" @click="edit(index)" aria-hidden="true"></i>
</div>
<span>{{ item.name }}</span>
</div>
</div>
</el-card>
</div>
<div class="notice" ref="notice">
<el-card class="news">
<div slot="header" class="clearfix">
<span>通知公告</span>
<span class="edit">查看全部 <i class="fa fa-angle-right " aria-hidden="true"></i></span>
</div>
<el-table
:data="tableData"
:height="tableHeight"
:row-class-name="tableRowClassName"
>
<el-table-column prop="title" width="500" align="center" label="标题">
</el-table-column>
<el-table-column
prop="date"
align="center"
label="发布时间"
>
</el-table-column>
</el-table>
</el-card>
<el-card class="download">
<div slot="header" class="clearfix">
<span>相关下载</span>
<span class="edit">查看全部 <i class="fa fa-angle-right " aria-hidden="true"></i></span>
</div>
<el-table
:data="tableData"
:height="tableHeight"
:row-class-name="tableRowClassName"
>
<el-table-column prop="title" align="center" label="内容名称">
</el-table-column>
</el-table>
</el-card>
</div>
</div>
</template>
<script>
export default {
data() {
return {
workList: [
{ name: "待办箱", img: require("../../assets/images/dbx.png"),count:10 },
{ name: "退件箱", img: require("../../assets/images/tjx.png"),count:3 },
],
list: [
{ name: "宗地分割", img: require("../../assets/images/zdfg.png") },
{
name: "导入楼盘表模板",
img: require("../../assets/images/drlpbmb.png"),
},
{ name: "新办房屋", img: require("../../assets/images/xbfw.png") },
{ name: "重新落宗", img: require("../../assets/images/cxlz.png") },
{ name: "添加", img: require("../../assets/images/cxlz.png") },
],
tableData: [],
tableHeight: 0,
total: 0,
isEdit:false
};
},
mounted() {
this.$nextTick(() => {
this.tableHeight = this.$refs.notice.offsetHeight - 54;
});
},
methods: {
handleSelect() {
//非编辑状态才可以点击
if (!isEdit) {
}
},
tableRowClassName({ row, rowIndex }) {
if (rowIndex % 2 !== 0) {
return "even-row";
} else {
return "";
}
},
//快捷入口管理
edit(index){
this.$confirm('此操作删除该快捷入口, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.list.splice(index,1);
//调用删除接口 TO DO
this.$message({
type: 'success',
message: '删除成功!'
});
}).catch(() => {
});
}
},
};
</script>
<style rel="stylesheet/less" scoped lang="less">
.main {
display: flex;
flex-direction: column;
overflow: hidden;
height: 100%;
.clearfix {
span {
color: #6d7278;
float: left;
}
.edit {
color: #9b9b9b;
float: right;
cursor: pointer;
.fa-angle-right{
font-size: 26px;
line-height: 7px;
position: relative;
top: 2px;
}
}
}
.panel {
@flex();
width: 100%;
.panel_left {
width: 35%;
margin-right: 20px;
flex: 1;
}
.panel_right {
width: 65%;
}
.enter_box {
@flex();
div {
cursor: pointer;
flex: 1;
.el-badge{
width: 68px;
height: 68px;
display: block;
margin: 0 auto;
/deep/.el-badge__content{
top: 10px;
right: 14px;
background-color: #fa6400;
}
}
img {
width: 68px;
height: 68px;
display: block;
margin: 0 auto;
}
span {
color: #6d7278;
display: block;
text-align: center;
margin-top: 10px;
}
.fa-times-circle {
color: #fa6400;
font-size: 24px;
position: absolute;
top: -4px;
right: -10px;
background: #fff;
border-radius: 10px;
box-sizing: border-box;
padding: 1px;
}
}
.psr {
width: 68px;
height: 68px;
display: block;
margin: 0 auto;
img {
width: 68px;
height: 68px;
}
}
}
/deep/ .el-card__body {
padding: 50px 20px;
}
}
.notice {
padding: 0;
height: calc(100% - 285px);
@flex();
.news {
float: left;
float: left;
margin-right: 20px;
flex: 1;
/deep/ .el-card__body{
padding: 0;
}
}
.download {
width: 50%;
/deep/ .el-card__body{
padding: 0;
}
}
.el-card__body {
padding: 0;
}
th.is-left {
text-align: center;
}
tr{
background-color: #FBFBFB;
}
}
.pagination {
padding: 18px;
}
}
</style>