13 changed files with 1029 additions and 200 deletions
@ -0,0 +1,120 @@ |
|||||
|
<template> |
||||
|
<div class="table"> |
||||
|
<el-table :data="list" max-height="375px" height="375px"> |
||||
|
<el-table-column label="序号" type="index" width="80" /> |
||||
|
<el-table-column label="不满意事项类型" prop="scope" width="190" /> |
||||
|
<el-table-column label="不满意事项描述" prop="problemDesc" width="" /> |
||||
|
<el-table-column label="办理状态" prop="completeFlag" width="120" /> |
||||
|
<el-table-column label="是否回访" prop="isReturn" width="120" /> |
||||
|
<el-table-column label="操作" width="90" align="center"> |
||||
|
<template slot-scope="data"> |
||||
|
<el-button type="text" @click="handleView">查看</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: "community", |
||||
|
data() { |
||||
|
return { |
||||
|
queryParams: { |
||||
|
residList: [], |
||||
|
}, |
||||
|
list: [], |
||||
|
total: 0, |
||||
|
}; |
||||
|
}, |
||||
|
created() { |
||||
|
const query = this.$route.query; |
||||
|
this.queryParams.residList[0] = query.user_id; |
||||
|
this.getList(); |
||||
|
}, |
||||
|
mounted() {}, |
||||
|
methods: { |
||||
|
getList() { |
||||
|
// 办理状态(-2:未知,-1:不接受回访,0:接受回访/待回访,1已回访) |
||||
|
const completeFlags = { |
||||
|
"-2": "未知", |
||||
|
"-1": "不接受回访", |
||||
|
0: "接受回访/待回访", |
||||
|
1: "已回访", |
||||
|
}; |
||||
|
// 省满意度列表 |
||||
|
this.$http |
||||
|
.post( |
||||
|
"/actual/base/peopleRoomOverview/communitySatisfactionPageList", |
||||
|
this.queryParams |
||||
|
) |
||||
|
.then(({ data: res }) => { |
||||
|
this.list = res.data.map((item) => { |
||||
|
return { |
||||
|
...item, |
||||
|
completeFlag: completeFlags[item.completeFlag], |
||||
|
}; |
||||
|
}); |
||||
|
this.total = res.data.length; |
||||
|
this.$emit("changeTotal", { name: 2, total: this.total }); |
||||
|
}); |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
</script> |
||||
|
|
||||
|
<style scoped lang="scss"> |
||||
|
.business-records { |
||||
|
margin-bottom: 25px; |
||||
|
} |
||||
|
.table { |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th, |
||||
|
/deep/ .el-table tr { |
||||
|
padding: 14px !important; |
||||
|
border: none !important; |
||||
|
min-height: 52px; |
||||
|
} |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th { |
||||
|
background: none !important; |
||||
|
} |
||||
|
/deep/ .el-table td { |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
color: #ffffff; |
||||
|
text-shadow: 1px 2px 4px rgba(10, 32, 60, 0.51); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table tr { |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background-color: rgba(26, 149, 255, 0.3) !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__body-wrapper tr:nth-of-type(odd) { |
||||
|
background: rgba(14, 56, 115, 0.4); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table { |
||||
|
background: none !important; |
||||
|
|
||||
|
&:before { |
||||
|
background: none; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper tr { |
||||
|
color: #a3b9da !important; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
opacity: 0.76; |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,127 @@ |
|||||
|
<template> |
||||
|
<div class="table"> |
||||
|
<el-table :data="list" max-height="375px" height="375px"> |
||||
|
<el-table-column label="序号" type="index" width="80" /> |
||||
|
<el-table-column label="事件类型" prop="categorycode" width="" /> |
||||
|
<el-table-column label="事件描述" prop="eventcontent" width="" /> |
||||
|
<el-table-column label="办理状态" prop="status" width="" /> |
||||
|
<el-table-column label="接收时间" prop="happentime" width="180" /> |
||||
|
<el-table-column label="标记" prop="marktype" width="" /> |
||||
|
<el-table-column label="操作" width="90" align="center"> |
||||
|
<template slot-scope="data"> |
||||
|
<el-button type="text" @click="handleView">查看</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
<Pagination |
||||
|
v-show="total > 0" |
||||
|
:total="total" |
||||
|
:page.sync="queryParams.pageNo" |
||||
|
:limit.sync="queryParams.pageSize" |
||||
|
@pagination="getList" |
||||
|
/> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: "complaint", |
||||
|
data() { |
||||
|
return { |
||||
|
queryParams: { |
||||
|
pageNo: 1, |
||||
|
pageSize: 10, |
||||
|
eventType: "3", |
||||
|
residList: [], |
||||
|
}, |
||||
|
list: [], |
||||
|
total: 0, |
||||
|
}; |
||||
|
}, |
||||
|
created() {}, |
||||
|
mounted() { |
||||
|
const query = this.$route.query; |
||||
|
this.queryParams.residList[0] = query.user_id; |
||||
|
this.getList(); |
||||
|
}, |
||||
|
methods: { |
||||
|
getList() { |
||||
|
// 事件分页查询 |
||||
|
const statusArr = { |
||||
|
processing: "处理中", |
||||
|
closed_case: "已办结", |
||||
|
}; |
||||
|
const marktypes = ["普通事件", "难点读点", "矛盾纠纷", "自身问题"]; |
||||
|
this.$http |
||||
|
.post("/actual/base/peopleRoomOverview/eventPageList", this.queryParams) |
||||
|
.then(({ data: res }) => { |
||||
|
this.list = res.data.list.map((item) => { |
||||
|
return { |
||||
|
...item, |
||||
|
status: item.status?statusArr[item.status]:null, |
||||
|
marktype: marktypes[item.marktype], |
||||
|
}; |
||||
|
}); |
||||
|
this.total = res.data.total; |
||||
|
this.$emit("changeTotal", { name: 0, total: this.total }); |
||||
|
}); |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
</script> |
||||
|
|
||||
|
<style scoped lang="scss"> |
||||
|
.business-records { |
||||
|
margin-bottom: 25px; |
||||
|
} |
||||
|
.table { |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th, |
||||
|
/deep/ .el-table tr { |
||||
|
padding: 14px !important; |
||||
|
border: none !important; |
||||
|
min-height: 52px; |
||||
|
} |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th { |
||||
|
background: none !important; |
||||
|
} |
||||
|
/deep/ .el-table td { |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
color: #ffffff; |
||||
|
text-shadow: 1px 2px 4px rgba(10, 32, 60, 0.51); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table tr { |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background-color: rgba(26, 149, 255, 0.3) !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__body-wrapper tr:nth-of-type(odd) { |
||||
|
background: rgba(14, 56, 115, 0.4); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table { |
||||
|
background: none !important; |
||||
|
|
||||
|
&:before { |
||||
|
background: none; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper tr { |
||||
|
color: #a3b9da !important; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
opacity: 0.76; |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,105 @@ |
|||||
|
<template> |
||||
|
<div class="table"> |
||||
|
<el-table :data="list" max-height="375px" height="375px"> |
||||
|
<el-table-column label="序号" type="index" width="80" /> |
||||
|
<el-table-column label="不满意事项类型" prop="scope" width="190" /> |
||||
|
<el-table-column label="不满意事项描述" prop="problemDesc" width="" /> |
||||
|
<el-table-column label="办理状态" prop="completeFlag" width="120" /> |
||||
|
<el-table-column label="是否回访" prop="isReturn" width="120" /> |
||||
|
<el-table-column label="操作" width="90" align="center"> |
||||
|
<template slot-scope="data"> |
||||
|
<el-button type="text" @click="handleView">查看</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: "economize", |
||||
|
data() { |
||||
|
return { |
||||
|
queryParams: { |
||||
|
residList: [], |
||||
|
}, |
||||
|
list: [], |
||||
|
total: 0, |
||||
|
}; |
||||
|
}, |
||||
|
created() {}, |
||||
|
mounted() { |
||||
|
const query = this.$route.query; |
||||
|
this.queryParams.residList[0] = query.user_id; |
||||
|
this.getList(); |
||||
|
}, |
||||
|
methods: { |
||||
|
getList() { |
||||
|
// 省满意度列表 |
||||
|
this.$http |
||||
|
.post("/actual/base/peopleRoomOverview/provincialSatisfactionPageList", this.queryParams) |
||||
|
.then(({ data: res }) => { |
||||
|
this.list = res.data; |
||||
|
this.total = res.data.length; |
||||
|
this.$emit("changeTotal", { name: 1, total: this.total }); |
||||
|
}); |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
</script> |
||||
|
|
||||
|
<style scoped lang="scss"> |
||||
|
.business-records { |
||||
|
margin-bottom: 25px; |
||||
|
} |
||||
|
.table { |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th, |
||||
|
/deep/ .el-table tr { |
||||
|
padding: 14px !important; |
||||
|
border: none !important; |
||||
|
min-height: 52px; |
||||
|
} |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th { |
||||
|
background: none !important; |
||||
|
} |
||||
|
/deep/ .el-table td { |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
color: #ffffff; |
||||
|
text-shadow: 1px 2px 4px rgba(10, 32, 60, 0.51); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table tr { |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background-color: rgba(26, 149, 255, 0.3) !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__body-wrapper tr:nth-of-type(odd) { |
||||
|
background: rgba(14, 56, 115, 0.4); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table { |
||||
|
background: none !important; |
||||
|
|
||||
|
&:before { |
||||
|
background: none; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper tr { |
||||
|
color: #a3b9da !important; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
opacity: 0.76; |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,109 @@ |
|||||
|
<template> |
||||
|
<div class="table"> |
||||
|
<el-table :data="list" max-height="375px" height="375px"> |
||||
|
<el-table-column label="序号" type="index" width="80" /> |
||||
|
<el-table-column label="需求类型" prop="serviceCategoryKey" width="" /> |
||||
|
<el-table-column label="事件描述" prop="serviceName" width="" /> |
||||
|
<el-table-column label="服务情况" prop="state" width="" /> |
||||
|
<el-table-column label="创建时间" prop="serviceTimeStart" width="180" /> |
||||
|
<el-table-column label="操作" width="90" align="center"> |
||||
|
<template slot-scope="data"> |
||||
|
<el-button type="text" @click="handleView">查看</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: "give-service", |
||||
|
data() { |
||||
|
return { |
||||
|
queryParams: { |
||||
|
residList: [], |
||||
|
}, |
||||
|
list: [], |
||||
|
total: 0, |
||||
|
}; |
||||
|
}, |
||||
|
created() {}, |
||||
|
mounted() { |
||||
|
const query = this.$route.query; |
||||
|
this.queryParams.residList[0] = query.user_id; |
||||
|
this.getList(); |
||||
|
}, |
||||
|
methods: { |
||||
|
getList() { |
||||
|
// 社区服务列表 |
||||
|
this.$http |
||||
|
.post("/actual/base/peopleRoomOverview/communityServicePageList", this.queryParams) |
||||
|
.then(({ data: res }) => { |
||||
|
this.list = res.data.map((item) => { |
||||
|
return { |
||||
|
...item, |
||||
|
}; |
||||
|
}); |
||||
|
this.total = res.data.length; |
||||
|
this.$emit("changeTotal", { name: 5, total: this.total }); |
||||
|
}); |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
</script> |
||||
|
|
||||
|
<style scoped lang="scss"> |
||||
|
.business-records { |
||||
|
margin-bottom: 25px; |
||||
|
} |
||||
|
.table { |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th, |
||||
|
/deep/ .el-table tr { |
||||
|
padding: 14px !important; |
||||
|
border: none !important; |
||||
|
min-height: 52px; |
||||
|
} |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th { |
||||
|
background: none !important; |
||||
|
} |
||||
|
/deep/ .el-table td { |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
color: #ffffff; |
||||
|
text-shadow: 1px 2px 4px rgba(10, 32, 60, 0.51); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table tr { |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background-color: rgba(26, 149, 255, 0.3) !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__body-wrapper tr:nth-of-type(odd) { |
||||
|
background: rgba(14, 56, 115, 0.4); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table { |
||||
|
background: none !important; |
||||
|
|
||||
|
&:before { |
||||
|
background: none; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper tr { |
||||
|
color: #a3b9da !important; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
opacity: 0.76; |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,125 @@ |
|||||
|
<template> |
||||
|
<div class="table"> |
||||
|
<el-table :data="list" max-height="375px" height="375px"> |
||||
|
<el-table-column label="序号" type="index" width="80" /> |
||||
|
<el-table-column label="事件类型" prop="categorycode" width="" /> |
||||
|
<el-table-column label="事件描述" prop="eventcontent" width="" /> |
||||
|
<el-table-column label="办理状态" prop="status" width="" /> |
||||
|
<el-table-column label="接收时间" prop="happentime" width="180" /> |
||||
|
<el-table-column label="操作" width="90" align="center"> |
||||
|
<template slot-scope="data"> |
||||
|
<el-button type="text" @click="handleView">查看</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
<Pagination |
||||
|
v-show="total > 0" |
||||
|
:total="total" |
||||
|
:page.sync="queryParams.pageNo" |
||||
|
:limit.sync="queryParams.pageSize" |
||||
|
@pagination="getList" |
||||
|
/> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: "reporting-events", |
||||
|
data() { |
||||
|
return { |
||||
|
queryParams: { |
||||
|
pageNo: 1, |
||||
|
pageSize: 10, |
||||
|
residList: [], |
||||
|
}, |
||||
|
list: [], |
||||
|
total: 0, |
||||
|
}; |
||||
|
}, |
||||
|
created() {}, |
||||
|
mounted() { |
||||
|
const query = this.$route.query; |
||||
|
this.queryParams.residList[0] = query.user_id; |
||||
|
this.getList(); |
||||
|
}, |
||||
|
methods: { |
||||
|
getList() { |
||||
|
// 事件分页查询 |
||||
|
const statusArr = { |
||||
|
processing: "处理中", |
||||
|
closed_case: "已办结", |
||||
|
}; |
||||
|
const marktypes = ["普通事件", "难点读点", "矛盾纠纷", "自身问题"]; |
||||
|
this.$http |
||||
|
.post("/actual/base/peopleRoomOverview/eventPageList", this.queryParams) |
||||
|
.then(({ data: res }) => { |
||||
|
this.list = res.data.list.map((item) => { |
||||
|
return { |
||||
|
...item, |
||||
|
status: item.status?statusArr[item.status]:null, |
||||
|
marktype: marktypes[item.marktype], |
||||
|
}; |
||||
|
}); |
||||
|
this.total = res.data.total; |
||||
|
this.$emit("changeTotal", { name: 3, total: this.total }); |
||||
|
}); |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
</script> |
||||
|
|
||||
|
<style scoped lang="scss"> |
||||
|
.business-records { |
||||
|
margin-bottom: 25px; |
||||
|
} |
||||
|
.table { |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th, |
||||
|
/deep/ .el-table tr { |
||||
|
padding: 14px !important; |
||||
|
border: none !important; |
||||
|
min-height: 52px; |
||||
|
} |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th { |
||||
|
background: none !important; |
||||
|
} |
||||
|
/deep/ .el-table td { |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
color: #ffffff; |
||||
|
text-shadow: 1px 2px 4px rgba(10, 32, 60, 0.51); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table tr { |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background-color: rgba(26, 149, 255, 0.3) !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__body-wrapper tr:nth-of-type(odd) { |
||||
|
background: rgba(14, 56, 115, 0.4); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table { |
||||
|
background: none !important; |
||||
|
|
||||
|
&:before { |
||||
|
background: none; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper tr { |
||||
|
color: #a3b9da !important; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
opacity: 0.76; |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,112 @@ |
|||||
|
<template> |
||||
|
<div class="table"> |
||||
|
<el-table :data="list" max-height="375px" height="375px"> |
||||
|
<el-table-column label="序号" type="index" width="80" /> |
||||
|
<el-table-column label="需求类型" prop="categoryName" width="" /> |
||||
|
<el-table-column label="需求描述" prop="content" width="" /> |
||||
|
<el-table-column label="办理情况" prop="status" width="" /> |
||||
|
<el-table-column label="上报时间" prop="reportTime" width="180" /> |
||||
|
<el-table-column label="操作" width="90" align="center"> |
||||
|
<template slot-scope="data"> |
||||
|
<el-button type="text" @click="handleView">查看</el-button> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: "complaint", |
||||
|
data() { |
||||
|
return { |
||||
|
queryParams: { |
||||
|
residList: [], |
||||
|
}, |
||||
|
list: [], |
||||
|
total: 0, |
||||
|
}; |
||||
|
}, |
||||
|
created() { |
||||
|
const query = this.$route.query; |
||||
|
this.queryParams.residList[0] = query.user_id; |
||||
|
this.getList(); |
||||
|
}, |
||||
|
mounted() {}, |
||||
|
methods: { |
||||
|
getList() { |
||||
|
// 居民需求列表 |
||||
|
this.$http |
||||
|
.post( |
||||
|
"/actual/base/peopleRoomOverview/demandOfResidentsPageList", |
||||
|
this.queryParams |
||||
|
) |
||||
|
.then(({ data: res }) => { |
||||
|
this.list = res.data.map((item) => { |
||||
|
return { |
||||
|
...item, |
||||
|
}; |
||||
|
}); |
||||
|
this.total = res.data.length; |
||||
|
this.$emit("changeTotal", { name: 4, total: this.total }); |
||||
|
}); |
||||
|
}, |
||||
|
}, |
||||
|
}; |
||||
|
</script> |
||||
|
|
||||
|
<style scoped lang="scss"> |
||||
|
.business-records { |
||||
|
margin-bottom: 25px; |
||||
|
} |
||||
|
.table { |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th, |
||||
|
/deep/ .el-table tr { |
||||
|
padding: 14px !important; |
||||
|
border: none !important; |
||||
|
min-height: 52px; |
||||
|
} |
||||
|
/deep/ .el-table td, |
||||
|
/deep/ .el-table th { |
||||
|
background: none !important; |
||||
|
} |
||||
|
/deep/ .el-table td { |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
color: #ffffff; |
||||
|
text-shadow: 1px 2px 4px rgba(10, 32, 60, 0.51); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table tr { |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background-color: rgba(26, 149, 255, 0.3) !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__body-wrapper tr:nth-of-type(odd) { |
||||
|
background: rgba(14, 56, 115, 0.4); |
||||
|
} |
||||
|
|
||||
|
/deep/ .el-table { |
||||
|
background: none !important; |
||||
|
|
||||
|
&:before { |
||||
|
background: none; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper tr { |
||||
|
color: #a3b9da !important; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
opacity: 0.76; |
||||
|
background: none; |
||||
|
&:hover { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
/deep/ .el-table__header-wrapper { |
||||
|
background: none !important; |
||||
|
} |
||||
|
} |
||||
|
</style> |
Loading…
Reference in new issue