当前位置:   article > 正文

Vue3利用父子组件实现字典

Vue3利用父子组件实现字典

子组件

<template>
    <div>
        <el-tag :type="tagType" v-if="tagVisible">{{ tagText }}</el-tag>
    </div>
</template>


<script setup>
import { defineProps, onMounted, ref } from 'vue'

const tagVisible = ref(false);
const tagType = ref("info");
const tagText = ref("");

// 定义参数 已经选中的ITEMID
const props = defineProps({
  dictType: {
    type: String, //参数类型
    default: String, //默认值
    required: true, //是否必须传递
  },
  dictValue: {
    type: String, //参数类型
    default: String, //默认值
    required: true, //是否必须传递
  }
})

const lastLogStatusDict = [
  {
    dictValue: 0,
    tagType: "primary",
    tagText: "运行中"
  },
  {
    dictValue: 1,
    tagType: "primary",
    tagText: "运行中"
  },
  {
    dictValue: 2,
    tagType: "danger",
    tagText: "异常"
  }
]

// //周期函数
onMounted(() => {
	//打印父组件传递的值
  // console.log(props.dictType, 'dictType');
  // console.log(props.dictValue, 'dictValue');

  const dictType = props.dictType;
  const dictValue = props.dictValue;
  
  if(dictValue==null){
    return;
  }
  tagVisible.value = true;

  if(dictType == "lastLogStatus"){
      tagType.value = lastLogStatusDict[dictValue].tagType;
      tagText.value = lastLogStatusDict[dictValue].tagText;
  }

})
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67

父组件

<DictTag dictType="lastLogStatus" :dictValue="scope.row.lastLogStatus"/>

import DictTag from '@/components/dict/index.vue'
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/121693
推荐阅读
相关标签
  

闽ICP备14008679号