zoukankan      html  css  js  c++  java
  • 删除

      //删除
        delClick() {
          const _that = this
          let keys = this.selectedRowKeys
          let tabs = []
          keys.map(key => {
            tabs.push({
              GUID: key
            })
          })
          this.$confirm({
            title: '提示',
            content: '是否确认删除选中记录?',
            onOk() {
              Post(api.execute, {
                funcName: 'ZHRFM_PA_DELD_OPERATION',
                input: {
                  IV_STRBTID: 'Z021'//删除code
                },
                tabObj: {
                  IT_TAB: tabs
                }
              }).then(res => {
                _that.$refs.table.refresh(true)
              })
            }
          })
        },
  • 相关阅读:
    元组类型内置方法
    python的两种编程模式
    Python和Python解释器
    异常处理
    文件的三种打开方式
    python解释器的安装
    编程语言的分类
    计算机基础之编程
    linux 安装postgresql
    CentOS7 部署 gitlab
  • 原文地址:https://www.cnblogs.com/KoBe-bk/p/13791067.html
Copyright © 2011-2022 走看看