Ver Fonte

fix: 存储配置select bug

lvkun996 há 3 anos atrás
pai
commit
14af1d3161
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/pages/rts/record/index.vue

+ 1 - 1
src/pages/rts/record/index.vue

@@ -213,7 +213,7 @@ const getStreamList = async () => {
 
 const getRecordList = async () => {
   state.recordLoading = true
-  const { data } = await RtsController.listRecord(state.type)
+  const { data } = await RtsController.listRecord(recordState.type)
   state.recordLoading = false
   state.recordDataSource = data
 }