zoukankan      html  css  js  c++  java
  • 详情

      created() {
        let q = this.$route.query
        if (this.$user.ORG_CODE == 830) {
          this.is830 = true
        }
        //查询操作
        if (q.act == 'query') {
          this.isDisabled = true
          this.btnType = 1
        }
       
        if (q.guid) {
          this.isNameDisabled = true
          this.guid = q.guid
       //加载详情数据
          this.loadPageData(q.guid)
        } else {
        }
      },
     
    //详情 
    loadPageData(guid) {
          Post(api.findOne, {
            funcName: 'ZHRFM_PA_JXHT_CURD',
            input: {
              IV_GUID: guid,
              IV_ACTION: 'DIS', //详情
              IV_ZSTEPID: 'ZDP01' //绩效登记
            }
          }).then(res => {
            console.log('绩效res', res)
            this.infoForm = res.data
          })
        },
  • 相关阅读:
    ADO.Net对Oracle数据库的操作(转)
    代码反思(1)
    继承与多态
    存储过程
    linux学习流程及内容概括
    Linux下终端快捷键
    查找算法
    epoll解读
    TCP/udp编程
    如何学习嵌入式
  • 原文地址:https://www.cnblogs.com/KoBe-bk/p/13792596.html
Copyright © 2011-2022 走看看