• vue之弹出框传值问题


    发现问题:将 dialogStatus 值定义在 data 里,出现第一次进入弹出框页面 dialogStatus 值为空,第二次进入时 dialogStatus 有值。

    在一个vue页面,进入另一个弹出框定义的vue(传入dialogStatus值)时,我遇到第一次进入弹出框页面dialogStatus值为空,第二次进入时值传过去了。

    代码:

    vue页面:

    <el-dialog :title="textMap[dialogStatus]" size="large" :visible.sync="dialogFormVisible">
          <modify @closeStationDialog="closeStationDialog" :dialogStatus="dialogStatus" ref="modify"></modify>
    </el-dialog>
    export default {
       components: {
        'modify': () => import('./components/modify')
      },
      methods: {
          handleAdd(){
              this.dialogStatus = 'create';
              this.dialogFormVisible = true;
              console.log(this.$refs.modify);
              if (this.$refs.modify !== undefined) {
                this.$refs.modify.dialogStatus = this.dialogStatus;
              }
          }
       }
    }

    modify页面(弹出框页面):

    <div style="text-align: center; margin-bottom: 1rem;">
         <el-button @click="cancel('form')">取 消</el-button>
         <el-button v-if="dialogStatus=='create'" type="primary" @click="create('form')">确 定</el-button>
         <el-button v-else type="primary" @click="update('form')">确 定</el-button>
    </div>
    export default {
        data(){
           return{
              dialogStatus: ''
           }
      }
    }

    发现问题:将 dialogStatus 值定义在 data 里,出现第一次进入弹出框页面 dialogStatus 值为空,第二次进入时 dialogStatus 有值。
    解决办法:将 dialogStatus(需要传递的值)定义在 props 里。

    export default {
    props: {
    dialogStatus: {
    default: '1'
    }
    }
    }
  • 相关阅读:
    关于oc中自动引用计数 小结
    xcode6中导航栏 控制view用程序编写
    oc中深拷贝与浅拷贝
    关于c语言 指针课堂随笔
    oc中设置手动引用和自动引用图解
    利用xcode6做出牛的一逼的计算器
    利用xcode6 使用代码写出英格兰国旗
    oc中字典的应用详解
    c和oc排序程序与见解
    关于Xcode6beta2 新学者使用 工程的建立
  • 原文地址:https://www.cnblogs.com/braveLN/p/11273882.html
Copyright © 2020-2023  润新知