Browse Source

fix: change user selected

DESKTOP-USV654P\pc 3 weeks ago
parent
commit
da53993842
2 changed files with 12 additions and 1 deletions
  1. 1 1
      Makefile
  2. 11 0
      src/views/notice/components/data.config.ts

+ 1 - 1
Makefile

@@ -12,7 +12,7 @@ build:
 
 commit:
 	git add . && \
-	git commit --no-verify -m "fix: change teachingManager textbookPushManager"
+	git commit --no-verify -m "fix: change user selected"
 
 checkPre:
 	git checkout pre

+ 11 - 0
src/views/notice/components/data.config.ts

@@ -326,4 +326,15 @@ export const searchFormSchema2: FormSchema[] = [
     },
     colProps: { span: 12 },
   },
+  {
+    field: 'teachingStatus',
+    label: '任课状况',
+    component: 'ApiSelect',
+    componentProps: {
+      api: getDataOption,
+      params: { code: 'teaching_status' },
+      getPopupContainer: () => document.body,
+    },
+    colProps: { span: 12 },
+  },
 ];