Merge pull request 'zdg_dev' (#87) from zdg_dev into main

Reviewed-on: #87
This commit is contained in:
zhengdegang 2024-12-05 09:47:15 +08:00
commit dcabb80757
4 changed files with 10 additions and 8 deletions

View File

@ -60,14 +60,6 @@ window.addEventListener('unload', () => {
const newDiscardedDB = JSON.stringify(discardedDBList)
localStorage.setItem(LOCALSTORAGE_KEY_DISCARDED_DB, newDiscardedDB)
})
/** 接口类型 */
interface Result {
code?: number,
msg?: string,
data?: any
rows?: Array<any>,
total?: number
}
//
const initLoad: Function = () => {
// ppt

View File

@ -4,6 +4,7 @@
* @date 2024-11-26
*/
import { toRaw } from 'vue'
import { Result } from '@/types' // 接口类型
import msgUtils from '@/plugins/modal' // 消息工具
import * as API_entpcoursefile from '@/api/education/entpcoursefile' // 相关api
import * as API_smarttalk from '@/api/file' // 相关api

View File

@ -2,6 +2,7 @@
* @description api store循环引用
* @author zdg
*/
import { Result } from '@/types' // 接口类型
import msgUtils from '@/plugins/modal' // 消息工具
import * as API_entpcoursefile from '@/api/education/entpcoursefile' // 相关api

View File

@ -0,0 +1,8 @@
/** 返回-接口类型 */
export interface Result {
code?: number,
msg?: string,
data?: any
rows?: Array<any>,
total?: number
}