diff --git a/src/views/eam/item/countadjustPlan/index.vue b/src/views/eam/item/countadjustPlan/index.vue
index af435b3..958680f 100644
--- a/src/views/eam/item/countadjustPlan/index.vue
+++ b/src/views/eam/item/countadjustPlan/index.vue
@@ -32,6 +32,14 @@
{{ row.code }}
+
+
+ {{getStrDictOptions(DICT_TYPE.CLASSIFICATION)?.find(cur=>cur.value==item)?.label}}
+
+
+
+ {{getStrDictOptions(DICT_TYPE.TRUE_FALSE)?.find(cur=>cur.value==item)?.label}}
+
@@ -65,6 +73,7 @@ import * as defaultButtons from '@/utils/disposition/defaultButtons'
import TableHead from '@/components/TableHead/src/TableHead.vue'
import ImportForm from '@/components/ImportForm/src/ImportForm.vue'
import Detail from '@/components/Detail/src/Detail.vue'
+import { DICT_TYPE, getStrDictOptions } from '@/utils/dict'
defineOptions({ name: 'CountadjustPlan' })
@@ -156,7 +165,7 @@ const openForm = (type: string, row?: any) => {
}
// form表单提交
-const formsSuccess = async (formType,data) => {
+const formsSuccess = async (formType, data) => {
var isHave =CountadjustPlan.allSchemas.formSchema.some(function (item) {
return item.field === 'activeTime' || item.field === 'expireTime';
});