2020-08-27 17:18:57 +08:00

21 lines
567 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="article">
<h2>{{$t('overview')}}</h2>
<p>数据字典管理对象当程序加载时从common/map.js中读取原始数据转换成{value: value, text: text}存入FesMap</p>
<h2>函数</h2>
<ul>
<li>
<p>getNameByValue(name, value)</p>
<p>
从FesMap[name]中找出值是value的那一条数据
</p>
</li>
</ul>
</div>
</template>
<script type="text/ecmascript-6">
export default {
};
</script>