index.vue 18.6 KB
Newer Older
qzhxx's avatar
qzhxx committed
1
<template>
2 3
  <div class="listPage H100">
    <div class="search-container">
4 5
      <el-form :inline="true" :model="form" ref="form"  onsubmit="return false;">
        <el-form-item>
6
          <el-input
7 8
            placeholder="请输入视频分类名称"
            v-model="form.nameOrCode"
9 10 11 12
            @keyup.enter.native="Search"
            clearable
          ></el-input>
        </el-form-item>
13
        <el-form-item>
14
          <el-date-picker
qzhxx's avatar
qzhxx committed
15
            value-format="yyyy-MM-dd"
16 17 18 19 20 21 22 23 24 25
            v-model="value1"
            type="daterange"
            range-separator="至"
            start-placeholder="开始日期"
            end-placeholder="结束日期"
          ></el-date-picker>
        </el-form-item>
        <el-form-item>
          <div class="btn-group">
            <el-button size="mini" type="primary" class="btn_form_search" @click="Search">查询</el-button>
qzhxx's avatar
qzhxx committed
26
            <el-button size="mini" class="btn_form_search" @click="Reset">重置</el-button>
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
          </div>
        </el-form-item>
      </el-form>
      <div class="page-tip">
        <span class="page-tip-title">页面说明:</span>
        <span class="page-tips">可通过创建时间、视频分类名称模糊搜索快速筛选视频分类信息,可对视频分类信息进行修改、删除。可新建视频分类。</span>
      </div>
    </div>
    <div class="table-content">
      <div class="btn-group">
        <el-button type="primary" @click="addPermis()">新建视频分类</el-button>
      </div>
      <div class="party-table">
        <el-table
          border
qzhxx's avatar
qzhxx committed
42 43
          style="width: 100%;height:100%"
          height="100%"
44 45 46 47
          ref="multipleTable"
          :data="tableData"
          @selection-change="handleSelectionChange"
        >
48 49 50 51 52
           <el-table-column type="index" width="120" label="序号">
            <template slot-scope="scope">
              <span>{{ (page.currentPage - 1) * 10 + scope.$index + 1 }}</span>
            </template>
          </el-table-column>
qzhxx's avatar
qzhxx committed
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
          <el-table-column label="视频分类" prop="name"></el-table-column>
          <el-table-column label="版权方" prop="copyrightOwnerName"></el-table-column>
          <el-table-column label="创建时间" prop="createTime"></el-table-column>
          <el-table-column label="备注" prop="remarks"></el-table-column>
          <el-table-column label="操作" header-align="center" align="center">
            <template slot-scope="scope" width="220">
              <div class="table-btn-group">
                <el-tooltip content="修改" placement="top">
                  <el-button circle @click="openEdit(scope.row)">
                    <i class="icon-table icon-edit"></i>
                  </el-button>
                </el-tooltip>
                <el-tooltip content="删除" placement="top">
                  <el-button circle @click="handleDelete(scope.row)">
                    <i class="icon-table icon-del"></i>
                  </el-button>
                </el-tooltip>
              </div>
            </template>
          </el-table-column>
73 74
        </el-table>
      </div>
qzhxx's avatar
qzhxx committed
75
      <div class="partyt-pagination">
76 77 78 79 80 81 82
        <el-pagination
          @current-change="handleCurrentChange"
          :current-page="page.currentPage"
          :page-size="page.pageSize"
          layout="prev, pager, next, jumper"
          :total="page.total"
        ></el-pagination>
qzhxx's avatar
qzhxx committed
83
      </div>
84
    </div>
qzhxx's avatar
qzhxx committed
85 86 87 88 89 90 91 92 93
    <!--新增弹框-->
    <el-dialog
      title="新建"
      custom-class="party-dialog"
      width="468px"
      :visible.sync="FormVisible1"
      :before-close="close1"
    >
      <div class="dialog-content">
94 95 96 97 98 99 100 101 102 103
        <el-form
          :model="classForm"
          ref="classForm"
          label-width="80px"
          label-position="top"
          :rules="rules"
          id="ruleo"
          class="party-form"
        >
          <el-form-item label="视频分类名称" prop="name">
qzhxx's avatar
qzhxx committed
104
            <el-input oninput="value = value.trim()" v-model="classForm.name"></el-input>
105
          </el-form-item>
qzhxx's avatar
qzhxx committed
106
          <el-form-item label="备注" prop="remarks">
107 108 109 110 111 112 113 114 115
            <el-input type="textarea" v-model="classForm.remarks"></el-input>
          </el-form-item>
        </el-form>
      </div>
      <div slot="footer" class="dialog-footer btn-group">
        <el-button size="mini" v-show="type" type="primary" @click="permisSave">确定</el-button>
        <el-button size="mini" v-show="!type" type="primary" @click="permisEdit">确定</el-button>
        <el-button size="mini" @click="close1">取 消</el-button>
      </div>
qzhxx's avatar
qzhxx committed
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
    </el-dialog>
    <!--编辑-->
    <el-dialog
      custom-class="party-dialog"
      title="编辑"
      width="468px"
      :visible.sync="FormVisible"
      :before-close="close"
    >
      <div class="dialog-content">
        <el-form
          :model="editform"
          disabled
          class="party-form"
          ref="editform"
          label-width="80px"
          label-position="right"
          :rules="rules"
        >
          <el-form-item label="审核层级:" :label-width="formLabelWidth">
            <el-input size="small" v-model="editform.sort" auto-complete="off" clearable></el-input>
          </el-form-item>
          <el-form-item label="审核时间:" :label-width="formLabelWidth">
            <el-input
              size="small"
              v-model="editform.menuName"
              auto-complete="off"
              clearable
              onkeyup="this.value=this.value.replace(/^ +| +$/g,'')"
            ></el-input>
          </el-form-item>
          <el-form-item label="审核结果:" :label-width="formLabelWidth">
            <el-input
              size="small"
              v-model="editform.menuUrl"
              auto-complete="off"
              clearable
              onkeyup="this.value=this.value.replace(/^ +| +$/g,'')"
            ></el-input>
          </el-form-item>
          <el-form-item label="驳回原因:" :label-width="formLabelWidth">
            <el-input type="textarea" v-model="editform.desc"></el-input>
          </el-form-item>
        </el-form>
        <div slot="footer" class="dialog-footer btn-group">
          <el-button size="mini" type="primary" @click="submitForm('editform')">确定</el-button>
          <el-button size="mini" @click="close">取 消</el-button>
163
        </div>
qzhxx's avatar
qzhxx committed
164 165
      </div>
    </el-dialog>
qzhxx's avatar
qzhxx committed
166 167 168 169
  </div>
</template>
<script>
export default {
170 171 172 173 174 175 176 177 178 179 180
  data() {
    var checkIsNull = (rule, value, callback) => {
      if (value) {
        if (value.trim() == "") {
          callback(new Error("不允许只输入空格"));
        } else {
          callback();
        }
      }
    };
    return {
qzhxx's avatar
qzhxx committed
181
      type: true,
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
      value1: "",
      page: { currentPage: 1, pageSize: 10, total: 0 },
      tableData: [],
      FormVisible: false,
      FormVisible1: false,
      formLabelWidth: "100px",
      form: {
        name: ""
      },
      editform: {
        menuName: "",
        menuUrl: "",
        parentId: "",
        sort: "",
        id: ""
      },
      classForm: {
qzhxx's avatar
qzhxx committed
199 200 201
        id: "",
        name: "",
        remarks: ""
202 203 204
      },
      typeList: [],
      rules: {
qzhxx's avatar
qzhxx committed
205
        name: [
qzhxx's avatar
qzhxx committed
206 207
         { required: true, message: "请输入分类名称", trigger: "change" },
         { min: 1, max: 20, message: "请输入1到20个字" },
208
        ],
qzhxx's avatar
qzhxx committed
209 210
        remarks: [
          { min: 1, max: 100, message: "请输入1到100个字" },
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
        ]
      },
      value: "",
      name: ""
    };
  },
  computed: {},
  mounted() {
    this.onSearch();
    // this.getPermis();
  },
  components: {},
  methods: {
    // 渲染父级权限
    getPermis() {
      let vm = this;
      vm.$https({
        method: "get",
        url: "menu/getRoleMenu?roleId=" + sessionStorage.getItem("roleId"),
        authType: this.backToken
      }).then(
        res => {
          let data = res.data;
          vm.typeList = data.map((e, i) => {
            return {
              id: e.id,
              name:
                e.menuName.indexOf("-") == -1
                  ? e.menuName
                  : e.menuName.split("-")[1]
            };
          });
        },
        error => {
          console.log(error);
qzhxx's avatar
qzhxx committed
246
        }
247
      );
qzhxx's avatar
qzhxx committed
248
    },
249 250 251 252 253
    // 获得数据接口
    getTableData(param) {
      let vm = this;
      vm.$https(
        {
qzhxx's avatar
qzhxx committed
254
          url: "videoContentCat/getPageList",
255 256 257 258 259 260 261
          method: "post",
          authType: this.backToken
        },
        vm.$qs.stringify(param)
        // param
      )
        .then(res => {
qzhxx's avatar
qzhxx committed
262
          let data = res.data.data;
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
          vm.page.pageSize = data.size;
          vm.page.total = data.total;
          vm.tableData = data.records;
        })
        .catch(function(err) {
          console.log(err);
        });
    },
    // 分页
    handleCurrentChange(val) {
      let _this = this;
      _this.page.currentPage = val;
      _this.onSearch();
    },
    onSearch() {
      let _this = this;
      let param = _this.getSearchQuery();
      _this.getTableData(param);
    },
    Search() {
      let _this = this;
      _this.page.currentPage = 1;
      let searchObj = {
        _index: 1,
        _size: _this.page.pageSize,
288
        nameOrCode: _this.form.nameOrCode,
qzhxx's avatar
qzhxx committed
289 290
        startDate:this.value1?this.value1[0]:"",
        endDate:this.value1?this.value1[1]:"",
291 292 293
      };
      this.getTableData(searchObj);
    },
qzhxx's avatar
qzhxx committed
294
    // 重置
qzhxx's avatar
qzhxx committed
295
    Reset() {
qzhxx's avatar
qzhxx committed
296
      // this.$refs["form"].resetFields();
qzhxx's avatar
qzhxx committed
297
      
qzhxx's avatar
qzhxx committed
298
      this.form = {};
qzhxx's avatar
qzhxx committed
299
      this.value1 = []
qzhxx's avatar
qzhxx committed
300
      this.Search();
qzhxx's avatar
qzhxx committed
301
    },
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
    // // 获取当前查询参数
    getSearchQuery() {
      let _this = this;
      let searchObj = {
        _index: _this.page.currentPage,
        _size: _this.page.pageSize
      };
      for (let key in _this.form) {
        if (_this.form[key]) {
          searchObj[key] = _this.form[key];
        }
      }
      return searchObj;
    },
    // 添加
    addPermis() {
      // this.$router.push({ path: "videoContentAdd", query: { type: "add" } });
qzhxx's avatar
qzhxx committed
319
      $(".el-dialog__title").html("新建");
320
      this.FormVisible1 = true;
qzhxx's avatar
qzhxx committed
321
      this.type = true;
322 323 324 325 326 327 328 329
    },
    // 新建视频分类确认保存
    permisSave() {
      let _this = this;
      _this.$refs.classForm.validate(valid => {
        if (valid) {
          _this
            .$https(
qzhxx's avatar
qzhxx committed
330
              {
qzhxx's avatar
qzhxx committed
331
                url: "videoContentCat/save",
qzhxx's avatar
qzhxx committed
332 333 334
                method: "post",
                authType: this.backToken
              },
335 336
              _this.$qs.stringify(_this.classForm)
              // _this.classForm
337 338 339
            )
            .then(
              res => {
340
                if (res.data.resultCode == 200 || res.data.resultCode == 201) {
341 342
                  _this.$message({
                    type: "success",
qzhxx's avatar
qzhxx committed
343
                    message: "新建成功!"
344 345 346 347 348 349 350 351 352 353 354
                  });
                  //跳回用户列表
                  _this.onSearch();
                  _this.FormVisible1 = false;
                  for (let key in _this.classForm) {
                    _this.classForm[key] = null;
                  }
                  _this.$refs["classForm"].resetFields();
                } else {
                  _this.$message({
                    type: "error",
qzhxx's avatar
qzhxx committed
355
                    message: res.data.message
356 357 358 359 360 361 362 363 364 365 366 367
                  });
                }
              },
              error => {
                _this.$message({
                  type: "error",
                  message: error
                });
              }
            );
        }
      });
qzhxx's avatar
qzhxx committed
368
    },
qzhxx's avatar
qzhxx committed
369
    // 编辑视频分类确认保存
370 371 372 373 374 375
    permisEdit() {
      let _this = this;
      _this.$refs.classForm.validate(valid => {
        if (valid) {
          _this
            .$https(
qzhxx's avatar
qzhxx committed
376
              {
qzhxx's avatar
qzhxx committed
377
                url: "videoContentCat/update",
qzhxx's avatar
qzhxx committed
378 379 380
                method: "put",
                authType: this.backToken
              },
381 382 383 384 385
              _this.$qs.stringify(_this.classForm)
              // _this.classForm
            )
            .then(
              res => {
386
                if (res.data.resultCode == 200 || res.data.resultCode == 201) {
387 388
                  _this.$message({
                    type: "success",
qzhxx's avatar
qzhxx committed
389
                    message: "修改成功!"
390 391 392 393 394 395 396 397 398 399 400
                  });
                  //跳回用户列表
                  _this.onSearch();
                  _this.FormVisible1 = false;
                  for (let key in _this.classForm) {
                    _this.classForm[key] = null;
                  }
                  _this.$refs["classForm"].resetFields();
                } else {
                  _this.$message({
                    type: "error",
qzhxx's avatar
qzhxx committed
401
                    message: res.data.message
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
                  });
                }
              },
              error => {
                _this.$message({
                  type: "error",
                  message: error
                });
              }
            );
        }
      });
    },
    // 编辑关闭
    close() {
      this.FormVisible1 = false;
      for (let key in this.classForm) {
        this.classForm[key] = null;
      }
      this.$refs["classForm"].resetFields();
      // this.FormVisible = false;
      // this.$refs["editform"].resetFields();
    },
    // 新增关闭
    close1() {
      this.FormVisible1 = false;
      for (let key in this.classForm) {
        this.classForm[key] = null;
      }
      this.$refs["classForm"].resetFields();
    },
    // 编辑弹框
    openEdit(row) {
qzhxx's avatar
qzhxx committed
435 436 437
      this.type = false;
      $(".el-dialog__title").html("编辑");
      let _this = this;
438 439 440 441 442 443
      //成功之后清除数据
      // for (let key in this.editform) {
      //   _this.editform[key]=null;
      // }
      // _this.editform= Object.assign({}, row);
      _this.FormVisible1 = true;
qzhxx's avatar
qzhxx committed
444
      this.getAssetTypeInfo(row.id);
445 446
    },
    // 获取视频分类详情
qzhxx's avatar
qzhxx committed
447
    getAssetTypeInfo(id) {
448 449 450
      let vm = this;
      vm.$https(
        {
qzhxx's avatar
qzhxx committed
451
          url: "videoContentCat/get/" + id,
452 453
          method: "get",
          authType: this.backToken
qzhxx's avatar
qzhxx committed
454
        }
455 456 457
        // param
      )
        .then(res => {
qzhxx's avatar
qzhxx committed
458
          let data = res.data.data;
459
          // this.classForm = data
qzhxx's avatar
qzhxx committed
460 461 462
          this.classForm.id = data.id;
          this.classForm.name = data.name;
          this.classForm.remarks = data.remarks;
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
        })
        .catch(function(err) {
          console.log(err);
        });
    },
    openDetails() {
      let _this = this;
      _this.FormVisible = true;
    },
    // 删除
    handleDelete(row) {
      let _this = this;
      this.$confirm("此操作将永久删除, 是否继续?", "提示", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning"
      })
        .then(() => {
qzhxx's avatar
qzhxx committed
481 482 483
          _this
            .$https({
              method: "delete",
qzhxx's avatar
qzhxx committed
484
              url: "videoContentCat/delete/" + row.id,
qzhxx's avatar
qzhxx committed
485 486 487 488
              authType: this.backToken
            })
            .then(
              res => {
qzhxx's avatar
qzhxx committed
489
                // this.$message({ type: "success", message: "删除成功!" });
qzhxx's avatar
qzhxx committed
490 491 492 493 494 495
                // this.msgInfo = {
                //   type: "wait",
                //   des: `申请已提交,待审核…`,
                // };

              if(res.data.resultCode === "200"){
qzhxx's avatar
qzhxx committed
496
                this.$message({ type: "success", message: "删除成功!" });
qzhxx's avatar
qzhxx committed
497
                _this.Search();
qzhxx's avatar
qzhxx committed
498 499 500
              }else{
                this.$message({ type: "error", message: res.data.message });
              }
qzhxx's avatar
qzhxx committed
501 502 503 504 505 506 507 508
              },
              error => {
                this.$message({
                  type: "fail",
                  message: "删除失败!" + error.response.data
                });
              }
            );
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
        })
        .catch(() => {});
    },
    // // 保存编辑信息
    // submitForm() {
    //   let _this = this;
    //   _this.$refs.editform.validate(valid => {
    //     if (valid) {
    //       let searchObj = {};
    //       for (let key in _this.editform) {
    //         if (this.editform[key]) {
    //           searchObj[key] = _this.editform[key];
    //         }
    //       }
    //       let str = _this.editform.menuName;
    //       let index = str.lastIndexOf("-");
    //       str = str.substring(index + 1, str.length);
    //       searchObj.menuName = str;
    //       _this
    //         .$https(
    //           {
    //             url: "menu/edit",
    //             method: "put",
    //             authType: this.backToken
    //           },
    //           _this.$qs.stringify(searchObj)
    //         )
    //         .then(
    //           res => {
    //             if (res.data.status == 200 || res.data.status == 201) {
    //               _this.$message({
    //                 type: "success",
    //                 message: res.data.message
    //               });
    //               _this.onSearch();
    //               _this.FormVisible = false;
    //               _this.$refs["editform"].resetFields();
    //             } else {
    //               _this.$message({
    //                 type: "error",
    //                 message: res.data.message
    //               });
    //             }
    //           },
    //           error => {
    //             _this.$message({
    //               type: "error",
    //               message: error
    //             });
    //           }
    //         );
    //     }
    //   });
    // },

    // 批量操作
    handleSelectionChange(selection) {
      let _this = this;
      _this.selection = selection;
    },
    getMultipleSelect() {
      let _this = this;
      let arr = [];
      let str = "";
      if (_this.selection) {
        _this.selection.forEach(function(e) {
          arr.push(e.id);
        });
        str = arr.join(",");
      } else {
        str = "";
      }
      return str;
    },
    // 批量删除
    multipleDelete() {
      let _this = this;
      let str = _this.getMultipleSelect();
      if (str) {
        this.$confirm("此操作将删除选中菜单, 是否继续?", "提示", {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning"
        }).then(() => {
          _this
            .$https({
              url: "menu/batchDel?menuIds=" + str,
              method: "DELETE",
              authType: this.backToken
            })
            .then(
              res => {
                if (res.data.status == 201 || res.data.status == 200) {
                  this.$message({
                    type: "success",
                    message: "删除成功!"
                  });
                }
                //重新查询数据
                _this.onSearch();
              },
              error => {}
            );
        });
      } else {
        this.$message({
          type: "info",
          message: "请至少选择一个选项!"
        });
      }
qzhxx's avatar
qzhxx committed
619
    }
620 621
  }
};
qzhxx's avatar
qzhxx committed
622 623
</script>

624 625 626 627
<style lang="less">
// @import "../../../../style/common";
// @import "../../style/list";
@import "../../../../style/dialog.less";
qzhxx's avatar
qzhxx committed
628 629
@import "../../../../style/table.less";
@import "../../../../style/pagination.less";
630
</style>