vue在同一个组件内;

methods中的一个方法调用methods中的另外一个方法

可以在调用的时候  this.handleEdit();

 


  methods: {
      processEdit() { 
                if (this.multipleSelection.length === 0 ) {
                    this.$message( {
                    message: '请选择要修改的记录',
                    type: 'warning'
                    } )
                } else if (this.multipleSelection.length > 1 ) {
                    this.$message( {
                    message: '只能选择1个要修改的记录',
                    type: 'warning'
                    } )
                } else {
                    var row = this.multipleSelection[0];
                    this.handleEdit(0, row.id);
                }
            },
            handleEdit(index, rowId){
                this.$router.push(
                {
                    path:'/Issuemag/' + this.$route.params.id + '/Issue/modify',
                    query:{rowId:rowId}
                })
            }
            
     },
 

 

Logo

前往低代码交流专区

更多推荐