edb65eb4 by yuanbo

增加注释

1 parent 521819ae
...@@ -438,6 +438,12 @@ ...@@ -438,6 +438,12 @@
438 } 438 }
439 }, 439 },
440 methods: { 440 methods: {
441 /**
442 * @description: handleClick
443 * @param {*} event
444 * @param {*} tab
445 * @author: renchao
446 */
441 handleClick (event, tab) { 447 handleClick (event, tab) {
442 if (this.activeName != 1) { 448 if (this.activeName != 1) {
443 this.isShow = false 449 this.isShow = false
...@@ -445,17 +451,30 @@ ...@@ -445,17 +451,30 @@
445 this.isShow = true 451 this.isShow = true
446 } 452 }
447 }, 453 },
454 /**
455 * @description: 身份证打卡器
456 * @param {*} row
457 * @author: renchao
458 */
448 handlesYhSelect (row) { 459 handlesYhSelect (row) {
449 this.$emit("updateDetail", _.cloneDeep(row)); 460 this.$emit("updateDetail", _.cloneDeep(row));
450 this.$emit("input", false); 461 this.$emit("input", false);
451 }, 462 },
463 /**
464 * @description: handleSearch
465 * @author: renchao
466 */
452 handleSearch () { }, 467 handleSearch () { },
468 /**
469 * @description: handleCurrentChange
470 * @param {*} val
471 * @author: renchao
472 */
453 handleCurrentChange (val) { 473 handleCurrentChange (val) {
454 console.log(val); 474 console.log(val);
455 }, 475 },
456 /** 476 /**
457 * @description: 身份证打卡器 477 * @description: 身份证打卡器
458 * @param {*} row
459 * @author: renchao 478 * @author: renchao
460 */ 479 */
461 readClick () { 480 readClick () {
......