RuoYi
2022-05-09 306137bba16268cb990cf936c6e2ace0d75f1db2
修复字典数据显示不全问题(I55MR3)
已修改1个文件
6 ■■■■ 文件已修改
src/views/system/dict/data.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/dict/data.vue
@@ -185,7 +185,7 @@
</template>
<script setup name="Data">
import { listType, getType } from "@/api/system/dict/type";
import { optionselect as getDictOptionselect, getType } from "@/api/system/dict/type";
import { listData, getData, delData, addData, updateData } from "@/api/system/dict/data";
const { proxy } = getCurrentInstance();
@@ -242,8 +242,8 @@
/** 查询字典类型列表 */
function getTypeList() {
  listType().then(response => {
    typeOptions.value = response.rows;
  getDictOptionselect().then(response => {
    typeOptions.value = response.data;
  });
}
/** 查询字典数据列表 */