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
          })
        },
  • 相关阅读:
    Node.js基础学习一之Get请求
    Node.js学习准备篇
    如何在eclipse添加SVN菜单
    Java泛型的好处
    mybatis多数据源配置
    Python map() 函数
    python split()使用方法
    pythom os 模块
    深浅copy
    小数据池
  • 原文地址:https://www.cnblogs.com/KoBe-bk/p/13792596.html
Copyright © 2011-2022 走看看