Explorar el Código

fix: 存储配置select bug

lvkun996 hace 3 años
padre
commit
14af1d3161
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
 }