index.vue 22.8 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 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
<template>
  <div class="app-container">

    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px" v-if="titleshow">
      <el-form-item label="全宗号1" prop="general">
        <el-input
          v-model="queryParams.general"
          placeholder="请输入全宗号"
          clearable
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
      <el-form-item label="年度" prop="year">
        <el-input
          v-model="queryParams.year"
          placeholder="请输入年度"
          clearable
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
      <el-form-item label="题名" prop="title">
        <el-input
          v-model="queryParams.title"
          placeholder="请输入题名"
          clearable
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
      <el-form-item label="分类号" prop="sort">
        <el-input
          v-model="queryParams.sort"
          placeholder="请输入分类号"
          clearable
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
      <el-form-item>
        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
      </el-form-item>
    </el-form>



    <el-row :gutter="10" class="mb8" v-if="titleshow">
      <el-col :span="1.5" v-if="approvalStatus">
        <el-select v-model="approval" @change="approvalpuRefresh">
          <el-option
            v-for="dict in dict.type.approval_type"
            :key="dict.value"
            :label="dict.label"
            :value="dict.value"
          ></el-option>
        </el-select>
      </el-col>

      <el-col :span="1.5">
        <el-button
          type="primary"
          plain
          icon="el-icon-plus"
          size="mini"
          @click="handleAdd"
          v-hasPermi="['archives:collerctbox:add']"
        >新增</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="success"
          plain
          icon="el-icon-edit"
          size="mini"
          :disabled="single"
          @click="handleUpdate"
          v-hasPermi="['archives:collerctbox:edit']"
        >修改</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="danger"
          plain
          icon="el-icon-delete"
          size="mini"
          :disabled="multiple"
          @click="handleDelete"
          v-hasPermi="['archives:collerctbox:remove']"
        >删除</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button
          type="warning"
          plain
          icon="el-icon-download"
          size="mini"
          @click="handleExport"
          v-hasPermi="['archives:collerctbox:export']"
        >导出</el-button>
      </el-col>
      <el-col :span="1.5" v-if="lecommit">
        <el-button
          type="warning"
          plain
          icon="el-icon-download"
          size="mini"
          @click="handleCommit"
          v-hasPermi="['archives:collerctbox:commmit']"
        >编号</el-button>
      </el-col>

      <el-col :span="1.5" v-if="inserBox">
        <el-button
          type="warning"
          plain
          icon="el-icon-download"
          size="mini"
          :disabled="single"
          @click="handleinserBox"
          v-hasPermi="['archives:collerctbox:inserBox']"
        >加入盒</el-button>
      </el-col>

      <el-col :span="1.5" v-if="updateyfiling">
        <el-button
          type="warning"
          plain
          icon="el-icon-download"
          size="mini"
          :disabled="single"
          @click="handleupdateyfiling"
          v-hasPermi="['archives:collerctbox:inserBox']"
        >预归档</el-button>
      </el-col>

      <el-col :span="1.5" v-if="updatefiling">
        <el-button
          type="warning"
          plain
          icon="el-icon-download"
          size="mini"
          :disabled="single"
          @click="handleupdatefiling"
          v-hasPermi="['archives:collerctbox:inserBox']"
        >归档</el-button>
      </el-col>

      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <el-table v-loading="loading" :data="boxList" @selection-change="handleSelectionChange">
      <el-table-column type="selection" width="55" align="center" />
      <el-table-column label="操作" align="center" prop="year" >
        <template slot-scope="scope">
          <el-button
            size="mini"
            type="text"
            icon="el-icon-edit"
            @click="handleCheck(scope.row)"
            v-hasPermi="['archives:box:check']"
          >查看</el-button>
        </template>
      </el-table-column>
      <el-table-column label="全宗号" align="center" prop="general" />
      <el-table-column label="年度" align="center" prop="year" />
      <el-table-column label="题名" align="center" prop="title" />
      <el-table-column label="分类号" align="center" prop="sort" />
      <el-table-column label="保管期限" align="center" prop="safekeepingDate" width="180">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.safekeepingDate, '{y}-{m}-{d}') }}</span>
        </template>
      </el-table-column>
      <el-table-column label="密级" align="center" prop="secretLevel" />
      <el-table-column label="页数" align="center" prop="pages" />
      <el-table-column label="归档份数" align="center" prop="filingNumber" />
      <el-table-column label="在库份数" align="center" prop="zkNumber" />
      <el-table-column label="库位码" align="center" prop="locationCode" />
      <el-table-column label="归档部门" align="center" prop="filingDept" />
      <el-table-column label="档号" align="center" prop="archivalCode" />
      <el-table-column label="责任者" align="center" prop="responsibilityName" />
      <el-table-column label="序号" align="center" prop="serialMark" />
      <el-table-column label="件号" align="center" prop="pieceMark" />
      <el-table-column label="登记号" align="center" prop="registerMark" />
      <el-table-column label="参议人员" align="center" prop="counsellors" />
      <el-table-column label="归档人" align="center" prop="filingName" />
      <el-table-column label="纪要人" align="center" prop="summaryName" />
      <el-table-column label="文种" align="center" prop="recordType" />
      <el-table-column label="载体类型" align="center" prop="carrierType" />
      <el-table-column label="拟稿人" align="center" prop="draftName" />
      <el-table-column label="页次" align="center" prop="page" />
      <el-table-column label="文号" align="center" prop="documentMark" />
      <el-table-column label="原文" align="center" prop="text" />
      <el-table-column label="1.待整理 2.待审批" align="center" prop="apprvoal" />
      <el-table-column label="该文本属于哪个角色" align="center" prop="belongRole" />
      <el-table-column label="盒号" align="center" prop="boxMark" />
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width" v-if="titleshow">
        <template slot-scope="scope">
          <el-button
            size="mini"
            type="text"
            icon="el-icon-edit"
            @click="handleUpdate(scope.row)"
            v-hasPermi="['archives:collerctbox:edit']"
          >修改</el-button>
          <el-button
            size="mini"
            type="text"
            icon="el-icon-delete"
            @click="handleDelete(scope.row)"
            v-hasPermi="['archives:collerctbox:remove']"
          >删除</el-button>
        </template>
      </el-table-column>
    </el-table>

    <pagination
      v-show="total>0"
      :total="total"
      :page.sync="queryParams.pageNum"
      :limit.sync="queryParams.pageSize"
      @pagination="getList"
    />

    <!-- 添加或修改【登记著录】对话框 -->
    <el-dialog :title="title" :visible.sync="open" width="1200px" append-to-body>
      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
        <el-row>
          <el-col :span="6">
            <el-form-item label="全宗号" prop="general">
              <el-input v-model="form.general" placeholder="请输入全宗号" />
            </el-form-item>
          </el-col>
          <el-col :span="6">
        <el-form-item label="年度" prop="year">
          <el-input v-model="form.year" placeholder="请输入年度" />
        </el-form-item>
          </el-col>
        <el-col :span="6">
        <el-form-item label="题名" prop="title">
          <el-input v-model="form.title" placeholder="请输入题名" />
        </el-form-item>
        </el-col>
          <el-col :span="6">
        <el-form-item label="分类号" prop="sort">
          <el-input v-model="form.sort" placeholder="请输入分类号" />
        </el-form-item>
          </el-col>
        </el-row>
        <el-row>
          <el-col :span="6">
            <el-form-item label="保管期限" prop="safekeepingDate">
              <el-date-picker clearable
                v-model="form.safekeepingDate"
                type="date"
                value-format="yyyy-MM-dd"
                placeholder="请选择保管期限">
              </el-date-picker>
            </el-form-item>
          </el-col>
          <el-col :span="6">
        <el-form-item label="密级" prop="secretLevel">
          <el-input v-model="form.secretLevel" placeholder="请输入密级" />
        </el-form-item>
          </el-col>
            <el-col :span="6">
        <el-form-item label="页数" prop="pages">
          <el-input v-model="form.pages" placeholder="请输入页数" />
        </el-form-item>
            </el-col>
          <el-col :span="6">
        <el-form-item label="归档份数" prop="filingNumber">
          <el-input v-model="form.filingNumber" placeholder="请输入归档份数" />
        </el-form-item>
          </el-col>
        </el-row>
<!--        <el-form-item label="在库份数" prop="zkNumber">
          <el-input v-model="form.zkNumber" placeholder="请输入在库份数" />
        </el-form-item>
        <el-form-item label="库位码" prop="locationCode">
          <el-input v-model="form.locationCode" placeholder="请输入库位码" />
        </el-form-item>
        <el-form-item label="归档部门" prop="filingDept">
          <el-input v-model="form.filingDept" placeholder="请输入归档部门" />
        </el-form-item>
        <el-form-item label="档号" prop="archivalCode">
          <el-input v-model="form.archivalCode" placeholder="请输入档号" />
        </el-form-item>
        <el-form-item label="责任者" prop="responsibilityName">
          <el-input v-model="form.responsibilityName" placeholder="请输入责任者" />
        </el-form-item>
        <el-form-item label="序号" prop="serialMark">
          <el-input v-model="form.serialMark" placeholder="请输入序号" />
        </el-form-item>
        <el-form-item label="件号" prop="pieceMark">
          <el-input v-model="form.pieceMark" placeholder="请输入件号" />
        </el-form-item>
        <el-form-item label="登记号" prop="registerMark">
          <el-input v-model="form.registerMark" placeholder="请输入登记号" />
        </el-form-item>
        <el-form-item label="参议人员" prop="counsellors">
          <el-input v-model="form.counsellors" placeholder="请输入参议人员" />
        </el-form-item>
        <el-form-item label="归档人" prop="filingName">
          <el-input v-model="form.filingName" placeholder="请输入归档人" />
        </el-form-item>
        <el-form-item label="纪要人" prop="summaryName">
          <el-input v-model="form.summaryName" placeholder="请输入纪要人" />
        </el-form-item>
        <el-form-item label="拟稿人" prop="draftName">
          <el-input v-model="form.draftName" placeholder="请输入拟稿人" />
        </el-form-item>
        <el-form-item label="页次" prop="page">
          <el-input v-model="form.page" placeholder="请输入页次" />
        </el-form-item>
        <el-form-item label="文号" prop="documentMark">
          <el-input v-model="form.documentMark" placeholder="请输入文号" />
        </el-form-item>
        <el-form-item label="原文" prop="text">
          <el-input v-model="form.text" placeholder="请输入原文" />
        </el-form-item>

        <el-form-item label="1.待整理 2.待审批" prop="apprvoal">
          <el-input v-model="form.apprvoal" placeholder="请输入1.待整理 2.待审批" />
        </el-form-item>
        <el-form-item label="该文本属于哪个角色" prop="belongRole">
          <el-input v-model="form.belongRole" placeholder="请输入该文本属于哪个角色" />
        </el-form-item>
        <el-form-item label="盒号" prop="boxMark">
          <el-input v-model="form.boxMark" placeholder="请输入盒号" />
        </el-form-item>-->
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitForm">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>



    <el-dialog :title="title" :visible.sync="fileOpen"   width="80%" append-to-body>
            <file  :collboxId=collboxId />
    </el-dialog>


    <el-dialog :title="title" :visible.sync="boxOpen"   width="80%" append-to-body>
      <el-table v-loading="loading" :data="boxtwoList" @selection-change="handleSelectionChange">
        <el-table-column type="selection" width="55" align="center" />
        <el-table-column label="年度" align="center" prop="year" />
        <el-table-column label="卷盒规则" align="center" prop="boxRule" />
        <el-table-column label="盒号" align="center" prop="boxMark" />
        <el-table-column label="库位码" align="center" prop="deportNodeId" />
        <el-table-column label="描述" align="center" prop="describes" />
      </el-table>

      <el-col :span="1.5">
        <el-button
          type="success"
          plain
          icon="el-icon-edit"
          size="mini"
          :disabled="single"
          @click="handleUpdate"
          v-hasPermi="['archives:box:edit']"
        >修改</el-button>
      </el-col>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary"    @click="insetBox">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>

<!--
      <pagination
        v-show="total>0"
        :total="total"
        :page.sync="queryParams.pageNum"
        :limit.sync="queryParams.pageSize"
        @pagination="getList"
      />-->

    </el-dialog>
  </div>
</template>

<script>
import { listCollerBox, getBox, delBox, addBox, updateBox } from "@/api/archives/collerctbox";


import file from "@/views/archives/file/index.vue";
export default {
  name: "collerctbox",
  dicts: ['approval_type'],
  components: { file },
  props: {
    statusPd: {
      type: Number, // 这里你接收的值是什么类型就写什么类型
    },
    boxsId: {
      type: Number,
    }
  },

  data() {
    return {
      // 遮罩层
      loading: true,
      // 选中数组
      ids: [],
      // 非单个禁用
      single: true,
      // 非多个禁用
      multiple: true,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 【登记著录】表格数据
      boxList: [],
      boxtwoList: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      // 查询参数
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        general: null,
        year: null,
        title: null,
        sort: null,
        safekeepingDate: null,
        secretLevel: null,
        pages: null,
        filingNumber: null,
        zkNumber: null,
        locationCode: null,
        filingDept: null,
        archivalCode: null,
        responsibilityName: null,
        serialMark: null,
        pieceMark: null,
        registerMark: null,
        counsellors: null,
        filingName: null,
        summaryName: null,
        recordType: null,
        carrierType: null,
        draftName: null,
        page: null,
        documentMark: null,
        text: null,
        status: null,
        apprvoal: null,
        belongRole: null,
        boxMark: null,
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
      },
      approval : "0", //是否审批 //默认待整理
     // statusPd : null, //页面传递参数  1.未整理 2.已整理 3.盒
      titleshow : true,//2.盒 不显示查询条件
      fileOpen : false,
      collboxId: null,//本次Id
      lecommit: false, //提交按钮
      inserBox: false,//加入盒按钮
      boxOpen:false,  //盒遮罩层
      collerboxid : null, //盒id
      updateyfiling :false, //预归档
      updatefiling: false,//归档
      approvalStatus: false, //待整理 待审核
    };
  },
  //statusPd  0未整理文件 1 已整理文件 2 盒
  created() {
    debugger
    this.getList();
    this.titleshow =this.statusPd == 2 ? false : true; //提交
    if (this.statusPd == 0){ //未整理
      this.lecommit = true;
      this.approvalStatus = true;
    }

    if (this.statusPd == 1){ //已整理
      this.inserBox = true; //加入盒
      this.updateyfiling = true; //预归档
      this.updatefiling = true; //归档
    }
  },
  methods: {
    /** 查询【登记著录】列表 */
    getList() {
      this.loading = true;
      if (this.statusPd == "0"){  //待整理 待审核
        this.queryParams.apprvoal = this.approval;
      }
      this.queryParams.boxId = this.boxsId != null ? this.boxsId : null; //是否盒内文件
      this.queryParams.status = this.statusPd;
      listCollerBox(this.queryParams).then(response => {
        this.boxList = response.rows;
        this.total = response.total;
        this.loading = false;
      });
    },
    // 取消按钮
    cancel() {
      this.open = false;
      this.reset();
    },
    // 表单重置
    reset() {
      this.form = {
        id: null,
        boxId: null,
        general: null,
        year: null,
        title: null,
        sort: null,
        safekeepingDate: null,
        secretLevel: null,
        pages: null,
        filingNumber: null,
        zkNumber: null,
        locationCode: null,
        filingDept: null,
        archivalCode: null,
        responsibilityName: null,
        serialMark: null,
        pieceMark: null,
        registerMark: null,
        counsellors: null,
        filingName: null,
        summaryName: null,
        recordType: null,
        carrierType: null,
        draftName: null,
        page: null,
        documentMark: null,
        text: null,
        createBy: null,
        createTime: null,
        updateBy: null,
        updateTime: null,
        status: "0",
        apprvoal: null,
        belongRole: null,
        boxMark: null,
      };
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.resetForm("queryForm");
      this.handleQuery();
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      this.ids = selection.map(item => item.id)
      this.single = selection.length!==1
      this.multiple = !selection.length
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.open = true;
      this.title = "添加【11】";
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const id = row.id || this.ids
      getBox(id).then(response => {
        this.form = response.data;
        this.open = true;
        this.title = "修改【22】";
      });
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs["form"].validate(valid => {
        if (valid) {
          if (this.form.id != null) {
            updateBox(this.form).then(response => {
              this.$modal.msgSuccess("修改成功");
              this.open = false;
              this.getList();
            });
          } else {
            this.form.approval = "0" //初始创建所有都是0.待整理
            addBox(this.form).then(response => {
              this.$modal.msgSuccess("新增成功");
              this.open = false;
              this.getList();
            });
          }
        }
      });
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const ids = row.id || this.ids;
      this.$modal.confirm('是否确认删除【登记著录】编号为"' + ids + '"的数据项?').then(function() {
        return delBox(ids);
      }).then(() => {
        this.getList();
        this.$modal.msgSuccess("删除成功");
      }).catch(() => {});
    },
    /** 导出按钮操作 */
    handleExport() {
      this.download('archives/box/export', {
        ...this.queryParams
      }, `box_${new Date().getTime()}.xlsx`)
    },

    /** 查看按钮 **/
    handleCheck(row){
      this.fileOpen = true;
      this.collboxId = row.id;
    },

    /** 编号按钮操作 */
    handleCommit(row){
      const id = row.id || this.ids
      let from  = this.handleSelectId(id)
      from.status = "1";  //1.已整理文件
      from.apprvoal = "3"; //3.专职档案提交通过
      updateBox(from).then(response => {
        this.$modal.msgSuccess("提交成功");
        this.open = false;
        this.getList();
      });
    },
    //打开加入盒页面 并保存id
    handleinserBox(row){
      const collerboxid = row.id || this.ids;
      this.boxOpen = true;
      this.collerboxid = collerboxid;
      listBox(this.queryParams).then(response => {
        this.boxtwoList = response.rows;
      });
    },

    //加入盒
    insetBox(row){
      let id = row.id || this.ids;
      if (id.length > 1){
        alert("请选择1个盒")
        return;
      }
      let collerboxid = this.collerboxid;
      let from  = this.handleSelectId(id)
      from.boxId =  id + ""; //盒id
      from.status = "2";
      updateBox(from).then(response => {
        this.$modal.msgSuccess("提交成功");
        this.boxOpen = false;
      });
    },
    /** 预归档 **/
    handleupdateyfiling(row){
      const id = row.id || this.ids
      let from  = this.handleSelectId(id)
      from.apprvoal = "3";
      updateBox(from).then(response => {
        this.$modal.msgSuccess("提交成功");
        this.open = false;
        this.getList();
      });
    },

    /** 归档 **/
    handleupdatefiling(row){
      const id = row.id || this.ids
      let from  = this.handleSelectId(id)
      from.apprvoal = "4";
      updateBox(from).then(response => {
        this.$modal.msgSuccess("提交成功");
        this.open = false;
        this.getList();
      });
    },


    handleSelectId(id){
      getBox(id).then(response => {
        return response.data;
      });
    },

    approvalpuRefresh(){
      this.getList();
    }
  }
};
</script>