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.
210 lines
5.7 KiB
210 lines
5.7 KiB
2 years ago
|
<template>
|
||
|
<div>
|
||
|
|
||
|
<el-dialog
|
||
|
:before-close="handleClose"
|
||
|
:modal="true"
|
||
|
:modal-append-to-body="false"
|
||
|
:visible.sync="dialogVisible"
|
||
|
class="dissatisfied-detail"
|
||
|
title=""
|
||
|
width="1118px"
|
||
|
>
|
||
|
<div class="content">
|
||
|
<div class="main-title main-title2">
|
||
|
<Title text="个性服务详情"/>
|
||
|
</div>
|
||
|
|
||
|
<div class="contents">
|
||
|
<el-row>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">所属网格:</div>
|
||
|
<div class="value">xxxx社区第一网格</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">需求类型:</div>
|
||
|
<div class="value">公益事业类-社会困难群体生活帮扶</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">上报类型:</div>
|
||
|
<div class="value">社区帮办</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">上报人:</div>
|
||
|
<div class="value">张俊男</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">上报人联系电话:</div>
|
||
|
<div class="value">182****8989</div>
|
||
|
<el-button class="tel-btn" icon="el-icon-phone" plain round size="small" type="primary">拨打</el-button>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">上报时间:</div>
|
||
|
<div class="value">2023-08-22 15:20:20</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
<div class="hr"></div>
|
||
|
<el-row>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">需求人:</div>
|
||
|
<div class="value">李兵</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">需求人联系电话:</div>
|
||
|
<div class="value">133****5656</div>
|
||
|
<el-button class="tel-btn" icon="el-icon-phone" plain round size="small" type="primary">拨打</el-button>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">服务时间:</div>
|
||
|
<div class="value">2023-08-23 14:20:30</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :span="24">
|
||
|
<div class="items">
|
||
|
<div class="label">需求内容:</div>
|
||
|
<div class="value">
|
||
|
一直失业在家,没有生活来源,生活比较困难。希望社区能给与帮助,找一份稳定的工作维持生活开销。
|
||
|
</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
<div class="hr"></div>
|
||
|
<el-row>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">服务方:</div>
|
||
|
<div class="value">志愿者-王佳俊</div>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<div class="items">
|
||
|
<div class="label">服务方联系电话:</div>
|
||
|
<div class="value">156****5656</div>
|
||
|
<el-button class="tel-btn" icon="el-icon-phone" plain round size="small" type="primary">拨打</el-button>
|
||
|
</div>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
|
||
|
<div class="btn-group">
|
||
|
<el-button class="green" plain round type="success" @click="handleDispatch">资源调度</el-button>
|
||
|
<el-button class="orange" plain round type="warning">催办督办</el-button>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</el-dialog>
|
||
|
<ResourceScheduling ref="ResourceScheduling"/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Title from "@/views/dataBoard/satisfactionEval/components/Title";
|
||
|
import ResourceScheduling from "@/views/dataBoard/overview/components/ResourceScheduling.vue";
|
||
|
|
||
|
export default {
|
||
|
name: "ServiceDetails",
|
||
|
components: {Title, ResourceScheduling},
|
||
|
data() {
|
||
|
return {
|
||
|
dialogVisible: false,
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
handleClose(done) {
|
||
|
this.dialogVisible = false;
|
||
|
},
|
||
|
open(id) {
|
||
|
this.dialogVisible = true;
|
||
|
this.getDetail(id);
|
||
|
},
|
||
|
getDetail(id) {
|
||
|
|
||
|
},
|
||
|
handleDispatch() {
|
||
|
this.$refs.ResourceScheduling.open()
|
||
|
}
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
@import "@/assets/scss/dataBoard/dialog.scss";
|
||
|
|
||
|
.contents {
|
||
|
padding: 40px 50px;
|
||
|
|
||
|
.items {
|
||
|
font-size: 14px;
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
margin-bottom: 17px;
|
||
|
|
||
|
.label {
|
||
|
color: #9CB4D3;
|
||
|
}
|
||
|
|
||
|
.value {
|
||
|
color: #FFFFFF;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.hr {
|
||
|
height: 1px;
|
||
|
margin: 25px 0;
|
||
|
opacity: .4;
|
||
|
border-bottom: 1px #0E79D6 dashed;
|
||
|
}
|
||
|
|
||
|
.tel-btn {
|
||
|
margin-top: -10px;
|
||
|
margin-left: 10px;
|
||
|
color: #06ebff;
|
||
|
border: 1px solid #06ebff;
|
||
|
border-radius: 18px;
|
||
|
background: rgba(#06ebff, 0.3);
|
||
|
}
|
||
|
|
||
|
.btn-group {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
margin-top: 20px;
|
||
|
|
||
|
.green {
|
||
|
color: #00CD96;
|
||
|
border: 1px solid #00CD96;
|
||
|
border-radius: 18px;
|
||
|
background: rgba(39, 189, 127, 0.3);
|
||
|
}
|
||
|
|
||
|
.el-button {
|
||
|
margin: 0 20px;
|
||
|
}
|
||
|
|
||
|
.orange {
|
||
|
color: #FD8904;
|
||
|
border: 1px solid #FD8904;
|
||
|
border-radius: 18px;
|
||
|
background: rgba(253, 137, 4, 0.3);
|
||
|
}
|
||
|
}
|
||
|
</style>
|