Explorar el Código

params & state list

abpcoder hace 2 días
padre
commit
f47f1a83eb

+ 1 - 1
back-ui/src/views/dz/papers/components/list-full-hand.vue

@@ -29,7 +29,7 @@
     </el-form>
     <Table :data="list" :columns="columns" :actions="actions" @get-list="getList" @action="handleAction"/>
     <el-drawer v-model="drawer" title="班级详情" size="1000px">
-        <class-detail v-if="drawer" :data="drawerObj" exact-mode/>
+        <class-detail v-if="drawer" :data="drawerObj"/>
     </el-drawer>
 </template>
 

+ 1 - 1
back-ui/src/views/dz/papers/components/list-full-intelligent.vue

@@ -29,7 +29,7 @@
     </el-form>
     <Table :data="list" :columns="columns" :actions="actions" @get-list="getList" @action="handleAction"/>
     <el-drawer v-model="drawer" title="班级详情" size="1000px">
-        <class-detail v-if="drawer" :data="drawerObj" exact-mode/>
+        <class-detail v-if="drawer" :data="drawerObj"/>
     </el-drawer>
 </template>
 

+ 1 - 0
back-ui/src/views/dz/papers/hooks/usePaperExactCondition.js

@@ -44,6 +44,7 @@ export const useProvidePaperExactCondition = function (type) {
     }))
     const conditionData = computed(() => ({
         examTypes: toValue(examTypes),
+        batchList: toValue(batchList),
         universities: toValue(universities),
         majorGroups: toValue(majorGroups),
         majors: toValue(majors),

+ 2 - 0
back-ui/src/views/dz/papers/hooks/usePaperFullCondition.js

@@ -29,10 +29,12 @@ export const useProvidePaperFullCondition = function (type) {
 
     const conditionArgs = computed(() => ({
         buildType: toValue(buildType),
+        batchId: toValue(batchId),
         examType: toValue(examType),
         subjectId: toValue(subjectId)
     }))
     const conditionData = computed(() => ({
+        batchList: toValue(batchList),
         examTypes: toValue(examTypes),
         subjectList: toValue(subjectList)
     }))