addPersonFeature.vue 15.6 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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
<template>
  <div>
    <el-dialog
      :title="$t('button.addPhoto')"
      :visible.sync="isShow"
      :close-on-click-modal="false"
      class="manage-dialog clerk-image-dialog"
      :before-close="closeDialog">
      <el-row class="img-dialog-header">
        <el-col :span="14">
          <!-- 广场 -->
          <div class="manage-select-box">
            <el-select v-model="imgQuery.mallVal" class="mall-opt" filterable :placeholder="$t('pholder.shopSelect')" @change="chooseMall">
              <el-option v-for="(item, index) in mallList" :label="item.name" :value="item.id" :key="item.value"></el-option>
            </el-select>
          </div>
          <!-- 监控点 -->
          <div class="manage-select-box">
            <el-select v-model="imgQuery.monitoryVal" class="monitory-opt" filterable :placeholder="$t('pholder.site')" @change="chooseMonitory">
              <el-option v-for="(item, index) in monitoryList" :label="item.name" :value="item.id" :key="item.value"></el-option>
            </el-select>
          </div>
          <!-- 相机 -->
          <!-- <div class="manage-select-box" v-if="imgQuery.monitoryVal !== ''">
            <el-select v-model="imgQuery.cameraVal" class="camera-opt" filterable placeholder="请选择通道">
              <el-option v-for="item in cameraList" :key="item.id" :label="item.name" :value="item.id"></el-option>
            </el-select>
          </div> -->
          <div class="manage-select-box">
            <el-select v-model="imgQuery.uploadVal" class="camera-opt" placeholder="请选择类型" @change="uploadChange">
              <el-option v-for="item in uploadList" :key="item.value" :label="item.name" :value="item.value"></el-option>
            </el-select>
          </div>
          <div class="manage-select-box switch-box">
            <span>{{ $t('button.recommend') }}:</span>
            <el-switch v-model="imgQuery.filterPersonType" :active-value="1" :inactive-value="null" class="person-switch" @change="filterStaff(imgQuery.filterPersonType)">
            </el-switch>
          </div>
        </el-col>
        <el-col :span="7" :offset="1">
          <div class="manage-input-box time-input-box date-select-box">
            <el-date-picker
              v-model="imgQuery.dateVal"
              class="time-opt date-opt"
              value-format="yyyy-MM-dd"
              :placeholder="$t('pholder.date')"
              :picker-options="pickerOptions1"
            ></el-date-picker>
          </div>
        </el-col>
        <el-col :span="2">
          <el-button type="primary" class="search-btn" plain size="mini" @click="filterHandle">
            {{ $t('button.search') }}
          </el-button>
        </el-col>
      </el-row>
      <el-scrollbar class="img-list-scrollbar" wrap-class="list-scrollbar" :native="false">
        <ul class="img-row" v-if="imgList.length > 0"  v-loading="loading">
          <li class="img-col" v-for="(item, index) in imgList" :key="item.id">
            <p>{{ item.counttime }}</p>
            <div :class="imgQuery.uploadVal === 2 ? 'clerk-img-body-box' : 'clerk-img-box'" @click="checkedImgs(index)">
              <el-image
                :class="imgQuery.uploadVal === 2 ? 'clerk-img-body' : 'clerk-img'"
                :src="imgQuery.uploadVal === 2 ? dealImg(item.bodyPic) : dealImg(item.facePic)"
              >
                <div slot="error" class="image-slot">
                  <i class="el-icon-picture-outline"></i>
                </div>
              </el-image>
            </div>
            <span class="custom-checkbox__input" :class="item.isChecked ? 'checked' : ''" @click="checkedImgs(index)">
              <span class="custom-checkbox__inner"></span>
            </span>
          </li>
        </ul>
        <div v-else style="text-align: center; padding-top: 20px;">{{ noImgText }}</div>
      </el-scrollbar>
      <div class="page-wrapper" v-show="total > 0">
        <el-pagination
          class="manage-pagination-box"
          background
          :current-page="imgQuery.page"
          :page-sizes="pageSizes"
          :page-size="imgQuery.pageSize"
          @size-change="sizeChange"
          @current-change="currentChange"
          layout="sizes, prev, pager, next, slot"
          :total="total"
        >
          <span class="slot-ele-total">{{ $t('table.pageHead') }} {{ total }} {{ $t('table.pageTail') }}</span>
        </el-pagination>
      </div>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitImg" :disabled="buttonLoading" :loading="buttonLoading" class="dialog-btn dialog-confirm-btn">
          {{ $t('dialog.confirm') }}
        </el-button>
      </div>
    </el-dialog>
  </div>
</template>

<script>
import defaultImg from '@/assets/img/behavior/default.png'

export default {
  props: {
    mallList: {
      type: Array,
      default: () => []
    }
  },
  data() {
    return {
      isShow: false,
      loading: true,
      checkedNum: 0,
      noImgText: '',
      pickerOptions1: {
        disabledDate(time) {
          return time.getTime() > Date.now();
        },
      },
      personId: null,
      personUnid: '',
      pageSizes: [50, 100],
      imgQuery: {
        mallVal: null,
        monitoryVal: null,
        cameraVal: null,
        uploadVal: 2,
        dateVal: '',
        filterPersonType: 1,
        page: 1,
        pageSize: 50
      },
      total: 0,
      monitoryList: [],
      cameraList: [],
      uploadList: [
        {
          name: '人脸',
          value: 1,
        },
        {
          name: '人体',
          value: 2
        }
      ],
      checkedImgList: [],
      imgList: [],
      defaultImg,
      buttonLoading: false
    }
  },
  created() {
    this.imgQuery.dateVal = dateUnit.dateFormat(new Date(), 'yyyy-MM-dd')
    // this.imgQuery.dateVal = '2019-03-25'
  },
  methods: {
    async dialogInit({ id, personUnid, mallId }) {
      this.personId = id
      this.personUnid = personUnid
      this.imgQuery.mallVal = mallId
      this.imgQuery.monitoryVal = null
      // this.imgQuery.cameraVal = null
      this.monitoryList = []
      this.cameraList = []
      this.checkedImgList = []
      this.imgList = []
      this.loading = true
      this.noImgText = '图片加载中...'
      this.total = 0;
      this.imgQuery.pageSize = 50;
      this.imgQuery.page = 1;
      this.isShow = true;
      // this.getCheckedImg(id)
      await this.monitoryFetch()
      // await this.cameraFetch()
      await this.getCheckedImg(id)
      this.getImgList()

    },
    getCheckedImg(personId, isChanged) {
      this.$api.management.personPics({
        personId: personId,
      })
        .then(res => {
          let result = res.data.data
          result.forEach(item => {
            this.checkedImgList.push(item.recognitionId)
          })
          if (isChanged) {
            this.imgList.forEach(item => {
              item.isChecked = this.checkedImgList.includes(item.id)
            })
          }
        })
        .catch(err => {
          this.catchErrorHandle(err)
        })
    },
    getImgList() {
      this.loading = true
      this.checkedNum = 0
      this.noImgText = '图片加载中...'
      let {
        imgQuery: {
          mallVal, monitoryVal, cameraVal, dateVal, page, pageSize, filterPersonType
        }
      } = this
      this.$api.flowReport.captureRecord({
        accountId: this.$cookie.get('accountId'),
        mallId: mallVal,
        gateId: monitoryVal || null,
        channelId: cameraVal || null,
        countdate: dateVal,
        // countdate_get: this.timeVal[0].split(' ')[0],
        // countdate_lte: this.timeVal[1].split(' ')[0],
        // counttime_gte: this.timeVal[0],
        // counttime_lte: this.timeVal[1],
        // personType: this.personType,
        personUnid: this.imgQuery.filterPersonType == 1 ? this.personUnid : null,
        direction: 1,
        // facePic_null: false,
        age_gt: 0,
        sortName: 'counttime',
        sortOrder: 'DESC',
        page: page,
        pageSize: pageSize
      })
        .then(res => {
          let result = res.data.data
          result.list.forEach(item => {
            item.isChecked = this.checkedImgList.includes(item.id)
            let dateStr = this.dealDate(item.counttime)
            item.paramFacePic = dateStr + '/' + item.channelSerialnum + '/' + item.facePic
            item.paramBodyPic = dateStr + '/' + item.channelSerialnum + '/' + item.bodyPic
            item.facePic = this.dealTypeImage(item, 'face')
            item.bodyPic = this.dealTypeImage(item, 'body')
          })
          this.checkedNum = this.checkedImgList.length
          this.imgList = result.list
          if (this.imgList.length == 0) {
            this.noImgText = this.$t('echartsTitle.noData')
          }
          this.total = result.total
          this.loading = false
        })
        .catch(err => {
          this.catchErrorHandle(err)
        })
    },
    monitoryFetch() {
      return new Promise(resolve => {
        this.$api.base.gate({
          mallId: this.imgQuery.mallVal,
          isHasFace: 1,
          // type: 1,
          // isMallGate: 1
        })
          .then(res => {
            let result = res.data.data;
            if (result.length) {
              result.unshift({
                id: null,
                name: '全部监控点'
              })
              this.monitoryList = result;
              this.imgQuery.monitoryVal = result[0].id
              resolve()
              // this.getChannels(this.monitoryVal);
            }
          })
          .catch(err => {
            this.catchErrorHandle(err)
          })
      })
    },
    cameraFetch() {
      return new Promise(resolve => {
        this.$api.base.channel({
          gateId: this.imgQuery.monitoryVal
        })
          .then(res => {
            let result = res.data.data;
            result.unshift({
              id: null,
              name: '全部通道'
            })
            this.cameraList = result;
            if (this.cameraList.length > 0) {
              this.imgQuery.cameraVal = this.cameraList[0].id;
            }
            resolve()
          })
          .catch(err => {
            this.catchErrorHandle(err)
          })
      })
    },
    filterStaff(value) {
      this.getImgList()
    },
    filterHandle() {
      this.getImgList()
    },
    sizeChange(val) {
      this.imgQuery.pageSize = val
      this.getImgList()
    },
    currentChange(val) {
      if (this.imgQuery.page != val) {
        this.imgQuery.page = val
        this.getImgList();
      }
    },
    async chooseMall() {
      this.imgQuery.monitoryVal = null
      this.monitoryList = []
      // this.imgQuery.cameraVal = null
      this.cameraList = []
      await this.monitoryFetch()
      // await this.cameraFetch()
    },
    chooseMonitory() {
      // this.imgQuery.cameraVal = null
      // this.cameraList = []
      // this.cameraFetch()
    },
    uploadChange(val) {
      this.getCheckedImg(this.personId, true)
    },
    dealImg(rowPic) {
      console.info(rowPic ,66)
      return window._vionConfig.picUrl + '/picture/' + rowPic
    },
    dealErrImg(e) {
      let ev = e || window.event
      ev.target.src = this.defaultImg
    },
    checkedImgs(index) {
      let isHadImg = this.checkedImgList.some(item => item == this.imgList[index].id);
      if (isHadImg) {
        this.$message({
          showClose: true,
          type: 'warning',
          message: this.$t('message.clerkHasAdded')
        })
        return;
      };
      let facePic = this.imgList[index].facePic;
      let bodyPic = this.imgList[index].bodyPic;
      let featurePicUrl = this.imgQuery.uploadVal==1?facePic:bodyPic;
      console.log(`/feature/${featurePicUrl}.feature`)
      this.$api.management.getFeature({
        featurePath:`/feature/${featurePicUrl}.feature`
      }).then(res => {
        const { code, data } = res.data
        if (code === 200) {
          if(data == 1){
            if (isHadImg) {
              this.$message({
                showClose: true,
                type: "warning",
                message: this.$t("message.clerkHasAdded")
              });
              return;
            }
            if (this.imgList[index].isChecked) {
              this.imgList[index].isChecked = false;
            } else {
              this.imgList[index].isChecked = true;
            }
          }else{
            this.imgList[index].isChecked = false;
            this.$message({
              type: "warning",
              message: '该图片没有特征'
            });
            return;
          }
        }
      })

    },
    submitImg() {
      const { personId, personUnid, imgQuery, checkedImgList } = this
      const { uploadVal } = imgQuery
      let checkedImg = [], filterChecked = []
      this.imgList.forEach(item => {
        if (item.isChecked) {
          let temp = {
            personId: personId,
            recognitionId: item.id,
            recognitionPersonUnid: item.personUnid,
            // type: item.type,
            person: {
              personUnid: personUnid
            }
            // channelSerialnum: item.channelSerialnum,
            // counttime: item.counttime
          }
          if (uploadVal === 2) {
            temp.feature = (item.bodyPath && item.bodyFeature) ? (item.bodyPath + item.bodyFeature) : null
            temp.pic = item.paramBodyPic
          } else {
            temp.feature = (item.facePath && item.faceFeature) ? (item.facePath + item.faceFeature) : null
            temp.pic = item.paramFacePic
          }
          checkedImg.push(temp)
        }
      })
      filterChecked = checkedImg.filter(item => checkedImgList.indexOf(item.recognitionId) === -1)
      // let paramList = [];
      // filterChecked.forEach(item => {
      //     paramList.push({
      //         staffId: this.staffId,
      //         recognitionId: item
      //     })
      // })
      // return;
      this.buttonLoading = true;
      this.$api.management.addPersonFeature(
        uploadVal === 2 ? 'addListBody' : 'addList',
        filterChecked
      ).then((res) => {
        let result = res.data;
        this.buttonLoading = false
        if (result.code == 200) {
          // result.data;
          this.isShow = false;
          this.$parent.getList()
        }
      })
    },
    closeDialog() {
      this.total = 0
      this.imgList = []
      this.isShow = false
    }
  }
}
</script>

<style scoped>
  .img-list-scrollbar {
      height: 500px;
  }
.manage-pagination-box {
    position: relative;
    right: 0px !important;
    bottom: 0px !important;
    text-align: right;
  }
.manage-pagination-box .slot-ele-total{
    float: none;
  }
.img-dialog-header {
  padding-bottom: 20px;
}

.page-wrapper {
  /* text-align: center; */
  padding-bottom: 10px;
}

.img-row {}

.img-row:after,
.img-row:before {
  content: '';
  display: table;
}

.img-row:after {
  clear: both;
}

.img-col {
  float: left;
  text-align: center;
  width: 20%;
  margin-bottom: 20px;
}

.img-col:last-child {
  margin-bottom: 0;
}

.clerk-img-box {
  border: 1px solid #dcdcdc;
  margin: 0px auto;
}

.clerk-img-box,
.clerk-img {
  width: 150px;
  height: 150px;
}

.clerk-img-body-box {
  border: 1px solid #dcdcdc;
  margin: 0px auto;
}

.clerk-img-body-box,
.clerk-img-body {
  width: 150px;
  height: 300px;
}

.custom-checkbox__input.checked::after {
  content: none;
}

.custom-checkbox__input.checked .custom-checkbox__inner {
  background-color: #409eff;
  border-color: #409eff;
}

.custom-checkbox__input.checked .custom-checkbox__inner:after {
  transform: rotate(45deg) scaleY(1);
}

.person-switch {
  top: -2px;
}

.time-input-box .date-opt {
  width: 150px;
}

.switch-box {
  margin-top: 5px;
}

.date-select-box {
  float: right;
}

@media (max-width: 1680px) {
  .switch-box {
    margin-top: 2px;
  }
}
</style>