Blame view

src/views/workflow/components/clxx.vue 14.4 KB
1 2 3 4 5
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-05-17 10:40:46
-->
任超 committed
6
<template>
吴蕾 committed
7
  <div class="clxx">
吴蕾 committed
8
    <div class="left">
任超 committed
9
      <div v-for="item in menuList" :key="item.id" :class="['item', checkedId == item.id ? 'active' : '']"
任超 committed
10
        @click="menuClick(item)">
吴蕾 committed
11
        {{ item.label }}
吴蕾 committed
12
      </div>
吴蕾 committed
13 14 15 16 17
    </div>
    <div class="right">
      <!-- 材料目录明细 -->
      <div class="clmlmx-box" v-if="checkedId == '1'">
        <div class="title">申请材料目录</div>
18
        <lb-table :column="column" :key="key" :heightNum="150" :pagination="false" :data="tableData">
吴蕾 committed
19
        </lb-table>
吴蕾 committed
20
      </div>
吴蕾 committed
21
      <!-- 材料预览 -->
任超 committed
22
      <div class="clyl-box" v-else>
任超 committed
23 24
        <div class="menu-tree">
          <div class="item">
任超 committed
25 26
            材料目录({{tableData.length}})
            <div>
任超 committed
27 28
              <div v-for="(item,index) in tableData" :key="item.bsmSj"
                :class="['child', treeCheckId == item.bsmSj ? 'checked' : '']" @click="treeClick(item,index)">
任超 committed
29 30 31
                <span v-if="item.isrequired==1" class="required">必选</span>
                {{ item.sjmc }}
                <span class="cl_number">({{item.children.length}})</span>
任超 committed
32
              </div>
任超 committed
33
            </div>
任超 committed
34 35
          </div>
        </div>
任超 committed
36 37
        <image-preview ref='imageRef' :previewImg="previewImg" @updateList="updateList" @nextPriview="nextPriview"
          @prevPriview="prevPriview" />
吴蕾 committed
38 39
      </div>
    </div>
吴蕾 committed
40
    <clxxAddDialog v-model="isDialog" />
任超 committed
41 42 43
  </div>
</template>
<script>
44 45 46 47 48 49 50 51 52 53 54 55 56
  import { mapGetters } from "vuex";
  import clxxAddDialog from "./dialog/clxxAddDialog.vue";
  import imagePreview from '@/views/components/imagePreview.vue'
  import { InitClml, saveClml, deleteSjClml, moveClml } from "@/api/clxx.js";
  export default {
    components: { clxxAddDialog, imagePreview },
    data () {
      return {
        isDialog: false,
        menuList: [
          {
            id: "1",
            label: "材料目录明细",
吴蕾 committed
57
          },
58 59 60 61 62 63 64 65 66 67 68 69 70 71
          {
            id: "2",
            label: "材料预览",
          },
        ],
        iclass: "",
        // 材料目录选中
        treeCheckIndex: 0,
        treeCheckId: "",
        checkedId: "1",
        column: [
          {
            width: "50",
            renderHeader: (h, scope) => {
吴蕾 committed
72 73
              return (
                <div>
74 75 76 77 78 79 80 81 82
                  {
                    this.$route.query.viewtype == 1 ? '序号' :
                      <i
                        class="el-icon-plus pointer"
                        onClick={() => {
                          this.handleAdd()
                        }}
                      ></i>
                  }
吴蕾 committed
83
                </div>
84 85 86 87 88
              )
            },
            render: (h, scope) => {
              // 新建的材料,可删除
              // v-show='scope.row.sfxjcl == 1'
吴蕾 committed
89 90
              return (
                <div>
91 92 93 94 95 96 97 98 99 100
                  {
                    this.$route.query.viewtype == 1 ? <span>{scope.$index + 1}</span> :
                      <i
                        class="el-icon-minus pointer"

                        onClick={() => {
                          this.handleDelete(scope.$index, scope.row);
                        }}
                      ></i>
                  }
吴蕾 committed
101
                </div>
102
              )
吴蕾 committed
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
          {
            prop: "isrequired",
            label: "是否必选",
            width: "50",
            render: (h, scope) => {
              if (scope.row.sfxjcl === "1") {
                return (
                  <div>
                    <span>可选</span>
                  </div>
                );
              }
              else {
                return (
                  <div>
                    <span>必选</span>
                  </div>
                );
              }
            },
          },
          {
            prop: "sjmc",
            label: "材料名称",
吴蕾 committed
129
          },
130 131 132 133 134
          {
            prop: "sjlx",
            label: "材料类型",
            width: "80",
            render: (h, scope) => {
吴蕾 committed
135 136
              return (
                <div>
137
                  <span>{this.dicStatus(scope.row.sjlx, "A40")}</span>
吴蕾 committed
138 139
                </div>
              );
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
            },
          },
          {
            prop: "sjsl",
            label: "份数",
            width: "50"
          },
          {
            prop: "smzt",
            label: "扫描状态",
            width: "80",
            render: (h, scope) => {
              if (scope.row.children.length > 0) {
                return (
                  <div>
                    <span>已扫描</span>
                  </div>
                );
              } else {
                return (
                  <div>
                    <span>未扫描</span>
                  </div>
                );
              }
            },
          },
          {
            prop: "ys",
            label: "扫描页数",
            width: "50"
          },
          {
            label: "操作",
            width: "80",
            render: (h, scope) => {
吴蕾 committed
176 177
              return (
                <div>
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
                  <el-button
                    type="text"
                    disabled={scope.$index == 0}
                    onClick={() => {
                      this.moveUpward(scope.$index, scope.row);
                    }}
                  >
                    上移
                  </el-button>
                  <el-button
                    type="text"
                    disabled={scope.$index + 1 == this.tableData.length}
                    onClick={() => {
                      this.moveDown(scope.$index, scope.row);
                    }}
                  >
                    下移
                  </el-button>
吴蕾 committed
196 197
                </div>
              );
198
            },
吴蕾 committed
199
          },
200 201 202 203 204 205 206 207 208 209 210
        ],
        key: 0,
        tableData: [],
        previewImg: {
          // 收件标识码
          bsmSj: '',
          bsmSlsq: this.$parent.bsmSlsq,
          index: 0,
          selectedIndex: 0,
          imgList: []
        }
任超 committed
211 212
      }
    },
213 214
    computed: {
      ...mapGetters(["dictData"])
任超 committed
215
    },
216 217
    created () {
      this.clmlInitList()
任超 committed
218
    },
219 220 221 222 223 224 225 226 227
    methods: {
      // 自动预览
      nextPriview () {
        if (this.treeCheckIndex < this.tableData.length) {
          this.treeCheckIndex++
          this.treeCheckId = this.tableData[this.treeCheckIndex].bsmSj
          this.previewImg.index = 0
          this.previewImg.imgList = this.tableData[this.treeCheckIndex].children
          this.previewImg.bsmSj = this.tableData[this.treeCheckIndex].bsmSj
任超 committed
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
      },
      prevPriview () {
        if (this.treeCheckIndex >= 1) {
          this.treeCheckIndex--
          this.treeCheckId = this.tableData[this.treeCheckIndex].bsmSj
          this.previewImg.index = this.previewImg.imgList.length
          this.previewImg.imgList = this.tableData[this.treeCheckIndex].children
          this.previewImg.bsmSj = this.tableData[this.treeCheckIndex].bsmSj
        }
      },
      // 材料目录明细初始化
      clmlInitList () {
        return new Promise(resolve => {
          this.unitData = this.$parent.unitData;
          var formdata = new FormData();
          formdata.append("bsmSldy", this.unitData[0]?.bsmSldy);
          formdata.append("bsmSlsq", this.$parent.bsmSlsq);
          InitClml(formdata).then((res) => {
            if (res.result.code == 200) {
              resolve(res.code)
              if (res.result.result && res.result.result.length > 0) {
                this.tableData = res.result.result;
                this.treeCheckId = this.tableData[0].bsmSj;
                this.title = this.tableData[0].sjmc;
                this.titleYs = 1;
                this.titleNum = this.tableData[0].children.length;
任超 committed
255

256 257 258 259 260 261
                this.previewImg.imgList = this.tableData[0]?.children;
                this.previewImg.bsmSj = this.tableData[0]?.bsmSj;
              }
            } else {
              this.$message.error(res.result.message)
            }
任超 committed
262
          })
263 264 265 266 267 268 269 270 271
        })
      },
      updateList (val) {
        let that = this
        if (val != null) { //删除最后一张图片时 val=null
          this.tableData.forEach(item => {
            if (item.bsmSj === val.bsmSj) {
              item.children = val.children
            }
任超 committed
272
          })
273 274 275 276
          this.previewImg.imgList = _.cloneDeep(val.children)
          if (this.previewImg.index == this.previewImg.imgList.length) {
            this.previewImg.index = this.previewImg.index - 1
          }
任超 committed
277
        } else {
278 279 280 281 282 283
          this.previewImg.imgList = []
          this.tableData.forEach((item, index) => {
            if (this.treeCheckId == item.bsmSj) {
              item.children = []
              that.treeCheckIndex = index
            }
任超 committed
284
          })
吴蕾 committed
285
        }
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304

      },
      // 左侧菜单点击
      menuClick (item) {
        this.checkedId = item.id
      },
      // 添加材料目录
      handleAdd () {
        this.isDialog = true;
      },
      // 上移
      moveUpward (index, row) {
        let obj = {
          xh: row.xh,
          bsmSlsq: row.bsmSlsq,
          moveDirection: "UP",
        };
        // 接口待调
        moveClml(obj).then(async (res) => {
任超 committed
305
          if (res.code == 200) {
306 307 308 309
            let res = await this.clmlInitList()
            if (res == 200) this.$message({
              message: '上移成功',
              type: 'success'
任超 committed
310
            })
311 312
          } else {
            this.$message.error(res.message);
任超 committed
313 314
          }
        })
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
      },
      // 下移
      moveDown (index, row) {
        let obj = {
          xh: row.xh,
          bsmSlsq: row.bsmSlsq,
          moveDirection: "DOWN",
        }
        // 接口待调
        moveClml(obj).then(async (res) => {
          if (res.code == 200) {
            let res = await this.clmlInitList()
            if (res == 200) this.$message({
              message: '下移成功',
              type: 'success'
            })
          } else {
            this.$message.error(res.message);
          }
任超 committed
334
        })
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
      },
      // 新增弹窗保存
      addSave (data) {
        let obj = {
          bsmSlsq: this.$parent.bsmSlsq,
          isrequired: "1",
          sjmc: data.clmc,
          sjsl: 0,
          smzt: '',
          ys: 0,
          sjlx: data.cllx,
          sfxjcl: "1", // 是否必选
        };
        saveClml(obj).then(async (res) => {
          if (res.code == 200) {
            let res = await this.clmlInitList()
            if (res == 200) this.$message({
              message: "新增成功",
              type: "success",
            })
吴蕾 committed
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
      },
      // 材料目录删除
      handleDelete (index, row) {
        let that = this
        this.$confirm('此操作将永久删除该 是否继续?', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(() => {
          deleteSjClml({ sjBsm: row.bsmSj }).then(async (res) => {
            if (res.code == 200) {
              let res = await that.clmlInitList()
              if (res == 200) that.$message({
                message: "删除成功",
                type: "success",
              })
            }
          })
        }).catch(() => {
          this.$message({
            type: 'info',
            message: '已取消删除'
          })
        })
      },
      // 材料目录点击选中
      treeClick (item, index) {
        this.previewImg.index = 0
        this.treeCheckId = item?.bsmSj
        this.treeCheckIndex = index
        this.previewImg.imgList = item?.children
        this.previewImg.bsmSj = item?.bsmSj
      },
      // 小图片点击
      imgClick (item, index) {
        this.showImg = item;
        this.titleYs = index + 1;
      },
      // 字典
      dicStatus (val, code) {
        let data = this.$store.getters.dictData[code],
          name = "暂无";
        if (data) {
          data.map((item) => {
            if (item.dcode == val) {
              name = item.dname;
            }
          });
          return name;
        }
      },
吴蕾 committed
408
    },
409
  };
任超 committed
410 411
</script>
<style scoped lang='scss'>
412
  @import "~@/styles/mixin.scss";
任超 committed
413

414 415 416 417
  .active {
    background: $light-blue !important;
    color: #fff;
  }
任超 committed
418

419 420 421 422 423
  .required {
    font-size: 12px;
    color: $pink;
    float: left;
  }
任超 committed
424

425 426
  .cl_number {
    float: right;
吴蕾 committed
427
  }
任超 committed
428

429
  .clxx {
任超 committed
430
    width: 100%;
431 432 433
    display: flex;
    padding-left: 5px;
    height: calc(100vh - 125px);
434

435 436 437 438
    .left {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
任超 committed
439

440 441 442 443 444 445 446 447 448 449 450 451 452
      .item {
        width: 28px;
        height: 49%;
        @include flex-center;
        background-color: #e4e7ed;
        border-bottom-right-radius: 10px;
        padding: 5px;
        cursor: pointer;
        transition: all 0.3s;

        &:hover {
          @extend .active;
        }
吴蕾 committed
453 454
      }
    }
吴蕾 committed
455

456
    .right {
吴蕾 committed
457
      width: 100%;
吴蕾 committed
458
      height: 100%;
任超 committed
459

460 461
      .clmlmx-box {
        margin: 0 auto;
任超 committed
462

463
        .title {
任超 committed
464
          text-align: center;
465 466 467 468 469 470 471 472
          height: 60px;
          line-height: 60px;
          border: 1px solid #dfe6ec;
          font-size: 20px;
          background: #81d3f81a;
          margin-bottom: -1px;
        }
      }
任超 committed
473

474 475 476 477
      .clyl-box {
        width: 100%;
        height: 100%;
        display: flex;
吴蕾 committed
478

479 480 481 482 483 484 485
        .menu-tree {
          width: 20%;
          min-width: 160px;
          height: 100%;
          margin-right: 10px;
          border-right: 1px dotted #d9d9d9;
          padding: 0 15px;
任超 committed
486

487 488 489 490 491 492
          .item {
            line-height: 30px;
            padding-top: 5px;
            border-bottom: 1px solid #e8e8e8;
            font-size: 16px;
            text-align: center;
任超 committed
493
            color: $light-blue;
任超 committed
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
            .itemIcon {
              float: right;
              line-height: 60px;
              cursor: pointer;
            }

            .child {
              line-height: 32px;
              border-bottom: 1px solid #e8e8e8;
              padding-left: 10px;
              color: #6b6b6b;
              cursor: pointer;
              box-sizing: border-box;
              border-radius: 6px;
              line-height: 20px;
              transition: all 0.3s;
              padding: 8px 0;
            }

            .child:hover {
              color: $light-blue;
              transform: scale(1.1);
            }

            .checked {
              border: 1px solid $light-blue;
              color: $light-blue;
            }
吴蕾 committed
523 524 525
          }
        }

526 527 528 529 530 531 532
        .clyl-img {
          width: 75%;
          height: 100%;
          background: #f3f4f7;
          margin: 0 auto;
          position: relative;
        }
吴蕾 committed
533 534 535
      }
    }
  }
任超 committed
536
</style>