当前位置:   article > 正文

重新启程之Vue——点击按钮,弹出弹窗组件_vue 彈窗顯示按鈕

vue 彈窗顯示按鈕

目录

一、点击按钮,弹出弹窗组件

二、用v-for渲染一堆按钮,给每个按钮绑定不同的事件,其中一个按钮,点击则显示弹窗组件


 

一、点击按钮,弹出弹窗组件

按钮:<el-button>

弹窗:<log-dialog>

  1. <el-button
  2. type="primary"
  3. size="small"
  4. @click="LogDialogVisible = true"
  5. plain
  6. >查看日志</el-button>
  7. <log-dialog :id="id" :visible.sync="LogDialogVisible" title="下载日志" />
  8. <!-- @click="LogDialogVisible = true" : 点击,让弹窗可见(visible)-->
  1. <script>
  2. import LogDialog from "./child-comps/DeviceControlLogDialog.vue"; //导入弹窗组件
  3. export default {
  4. name: "xxxxxxx",
  5. data() {
  6. return {
  7. LogDialogVisible: false, //一开始弹窗设为false,则不可见
  8. }
  9. },
  10. components: { LogDialog }, //注册组件
  11. }
  12. </script>

二、用v-for渲染一堆按钮,给每个按钮绑定不同的事件,其中一个按钮,点击则显示弹窗组件

  1. <template #default="{ row }">
  2. <el-button
  3. v-for="button in row.config.button"
  4. :key="button.id"
  5. size="mini"
  6. :type="button.type ? button.type : 'warning'"
  7. class="command-button"
  8. :plain="button.plain != undefined ? button.plain : true"
  9. :loading="button.loading"
  10. :disabled="button.disable"
  11. @click="onSelectFunc(row, button)"
  12. >
  13. {{ button.btnText }}
  14. </el-button>
  15. </template>
  16. <!-- @click="onSelectFunc(row, button)" : 点击,根据按钮的key去执行各自的事件处理函数-->
  17. <log-dialog :id="id" :visible.sync="LogDialogVisible" title="下载日志" />
  1. <script>
  2. import LogDialog from "./child-comps/DeviceControlLogDialog.vue"; //导入弹窗组件
  3. export default {
  4. name: "xxxxxxx",
  5. data() {
  6. return {
  7. //一开始弹窗设为false,则不可见
  8. LogDialogVisible: false,
  9. // 回调函数映射表
  10. funcMap: {
  11. downLoadLog:this.downLoadLog, //"下载日志"
  12. },
  13. }
  14. },
  15. components: { LogDialog }, //注册组件
  16. methods: {
  17. tanchuang (){
  18. this.LogDialogVisible = !this.LogDialogVisible; //=======>重要,写成LogDialogVisible =true是不行的。
  19. // alert("我是弹窗");
  20. },
  21. async downLoadLog(args) {
  22. this.tanchuang();
  23. },
  24. /**
  25. * @this funcMap 函数和关键字的映射表
  26. * @funcKey 按钮点击后执行的方法关键字,根据此关键字进行映射,来获取对应方法
  27. * @row 获取row.command
  28. * @button 对应button的数据,包括配置和args
  29. */
  30. onSelectFunc(row, button) {
  31. // 判断执行函数的key
  32. const funcKey = button.funcKey;
  33. if (!button.args) button.args = {};
  34. button.args.command = row.command;
  35. //新增其他变量
  36. if (row.params_type) {
  37. for (const prop in row) {
  38. if (!row[prop] || prop == "command" || prop == "config" || prop == "params_type") {
  39. continue;
  40. }
  41. button.args[prop] = row[prop];
  42. }
  43. }
  44. if (funcKey || this.funcMap[funcKey]) {
  45. this.buttonLoading(this.funcMap[funcKey], button, row);
  46. return button.funcKey;
  47. }
  48. // 默认执行的函数
  49. this.buttonLoading(this.funcMap["default"], button, row);
  50. return "default";
  51. },
  52. }
  53. }
  54. </script>

有点乱,从代码中截取了一些相关片段。

以此作为记录。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/104939
推荐阅读
相关标签
  

闽ICP备14008679号