소스 검색

fix: 存储配置select bug

lvkun996 3 년 전
부모
커밋
14af1d3161
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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
 }