123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- <template>
- <div class="patrolDetails">
- <div class="search">
- <span>巡更详情</span>
- <div class="search-icon">
- <el-tooltip effect="light" placement="bottom" content="返回">
- <i class="zoniot_font zoniot-icon-fanhui" @click="goback()"></i>
- </el-tooltip>
- </div>
- </div>
- <div class="contentText">
- <div class="leftMap">
- <map-value :point="thisItem" :line="targetData" ref="mapVal" :isStart="true" :height="400"></map-value>
- <div class="formLabel">
- <div class="formLabelList">
- <div class="label">所属社区</div>
- <div class="text">{{ thisObj.communityName }}</div>
- </div>
- <div class="formLabelList">
- <div class="label">巡更路线</div>
- <div class="text">{{ thisObj.routeName }}</div>
- </div>
- <div class="formLabelList">
- <div class="label">巡更人员</div>
- <div class="text">{{ thisObj.partolName }}</div>
- </div>
- <div class="formLabelList">
- <div class="label">巡更日期</div>
- <div class="text">{{ !!thisObj.patrolDate ? $moment(thisObj.patrolDate).format('YYYY-MM-DD') : '' }}</div>
- </div>
- <div class="formLabelList">
- <div class="label">巡更时间</div>
- <div class="text">{{ thisObj.patrolTime }}</div>
- </div>
- </div>
- </div>
- <div class="rightList">
- <template v-for="(item, index) in thisItem">
- <div class="steps" :key="index">
- <div class="steps-left">
- <img v-if="!!item.id" src="@assets/img/point_yiwancheng@2x.png" alt />
- <img v-else src="@assets/img/point_weiwancheng@2x.png" alt />
- <div class="steps-left-line" v-if="index !== thisItem.length - 1"></div>
- </div>
- <div class="steps-right">
- <div class="steps-right-title">
- <span v-if="index == 0">{{ !!item.id ? '开始任务 ' : '待执行' }}</span>
- <span v-else>{{ item.pointName }}</span>
- <span class="status" v-if="index !== 0" :class="!!item.id ? '' : 'grad'">{{
- !!item.id ? '已完成' : '未完成'
- }}</span>
- </div>
- <div class="steps-right-content">{{ item.checkTime }}</div>
- <div class="steps-right-content">
- <span>巡更结果:</span>
- <span>{{ item.result || '-' }}</span>
- </div>
- <div class="steps-right-content">
- <span>图片/视频:</span>
- <template v-if="!!item.picturePath">
- <div class="imgVdio" v-for="items in item.picturePath.split(',')" :key="items">
- <video v-if="typeVideo(items)" :src="items" @click="lookVideos(items)"></video>
- <el-image class="imgs" v-else :src="items" :preview-src-list="[items]">
- <div slot="error" class="image-slot">--</div>
- </el-image>
- </div>
- </template>
- </div>
- </div>
- </div>
- </template>
- </div>
- </div>
- </div>
- </template>
- <script>
- import mapValue from './mapValue.vue';
- export default {
- props: ['thisObj'],
- components: { mapValue },
- data() {
- return {
- thisItem: [],
- targetData: []
- };
- },
- filters: {
- statusType(val) {
- let name = '-';
- switch (val) {
- case 1:
- name = '待执行';
- break;
- case 2:
- name = '执行中';
- break;
- case 3:
- name = '已完成';
- break;
- case 4:
- name = '已完成(超时)';
- break;
- case 5:
- name = '已逾期';
- break;
- }
- return name;
- }
- },
- methods: {
- goback() {
- this.$emit('initPage');
- },
- getDetail(id) {
- this.$http.get('/sc-community/patrolRecord/findRecordDtail', { id: id }).then(({ data, status, msg }) => {
- this.thisItem = data;
- });
- },
- getTrack(id) {
- this.$http.get('/sc-community/patrolRecord/getUserPatrolTrack', { recordId: id }).then(({ data, status, msg }) => {
- if (!!data) {
- this.targetData = data;
- }
- });
- },
- typeVideo(str) {
- let type = str.slice(str.lastIndexOf('.') + 1, str.length);
- let videoType = ['mp4'];
- return videoType.includes(type);
- },
- lookVideos(src) {
- new Promise((resolve) => {
- this.$store.dispatch('addPopup', {
- url: '/lookVideo.vue',
- width: '600px',
- height: '500px',
- props: {
- src: src,
- callback: resolve
- },
- showConfirmButton: true,
- showCancelButton: true,
- hideStar: true,
- title: '查看视频'
- });
- }).then(() => {
- this.mixins_search();
- });
- }
- },
- created() {
- this.getDetail(this.thisObj.id);
- this.getTrack(this.thisObj.id);
- }
- };
- </script>>
- <style lang="scss" scoped>
- @import '@assets/css/public-style.scss';
- .border20 {
- padding: 20px;
- box-sizing: border-box;
- }
- .patrolDetails {
- // @extend .height100;
- .search > span {
- font-size: 16px;
- line-height: 30px;
- }
- .contentText {
- height: calc(100% - 100px);
- display: flex;
- justify-content: space-between;
- .leftMap {
- width: calc(100% - 420px);
- background: white;
- @extend .border20;
- .formLabel {
- box-shadow: 0px 2px 4px 0px rgba(236, 236, 236, 0.5);
- border-radius: 4px;
- border: 1px solid #eeeeee;
- padding: 20px;
- margin-top: 20px;
- .formLabelList {
- display: flex;
- line-height: 30px;
- .label {
- width: 70px;
- }
- .text {
- color: #424656;
- }
- }
- }
- }
- .rightList {
- width: 400px;
- background: white;
- @extend .border20;
- .steps {
- display: flex;
- img {
- width: 20px;
- vertical-align: -webkit-baseline-middle;
- &.grad {
- -webkit-filter: grayscale(100%);
- -moz-filter: grayscale(100%);
- -ms-filter: grayscale(100%);
- -o-filter: grayscale(100%);
- filter: grayscale(100%);
- filter: gray;
- }
- }
- .steps-left {
- margin-right: 10px;
- .steps-left-line {
- width: 2px;
- height: calc(100% - 40px);
- margin: 10px auto;
- background-color: $mainBgColor;
- }
- }
- .steps-right {
- width: calc(100% - 15px);
- line-height: 30px;
- margin-bottom: 10px;
- .steps-right-title {
- font-weight: 600;
- display: flex;
- justify-content: space-between;
- .status {
- color: $mainBgColor;
- font-weight: 400;
- &.grad {
- color: gray;
- }
- }
- }
- .steps-right-content {
- font-size: 12px;
- color: #303133;
- display: flex;
- span:first-child {
- margin-right: 10px;
- }
- }
- }
- }
- }
- }
- }
- .imgVdio {
- display: inline-block;
- margin-right: 10px;
- .imgs,
- video {
- width: 64px;
- cursor: pointer;
- }
- }
- </style>
|