mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-07-26 08:45:08 +08:00
1. 重命名 DataGrid 为 MessageTable,增加可读性
2. 调整素材管理,读取 API 接口
This commit is contained in:
@ -21,7 +21,10 @@ export const createEditorConfig = (
|
||||
allowedFileTypes: ['image/*'],
|
||||
|
||||
// 自定义上传参数,例如传递验证的 token 等。参数会被添加到 formData 中,一起上传到服务端。
|
||||
meta: { accountId: accountId },
|
||||
meta: {
|
||||
accountId: accountId,
|
||||
type: 'image'
|
||||
},
|
||||
// 将 meta 拼接到 url 参数中,默认 false
|
||||
metaWithUrl: true,
|
||||
|
||||
@ -64,7 +67,7 @@ export const createEditorConfig = (
|
||||
},
|
||||
// 自定义插入图片
|
||||
customInsert(res: any, insertFn: InsertFnType) {
|
||||
insertFn(res.data, 'image', res.data)
|
||||
insertFn(res.data.url, 'image', res.data.url)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -265,8 +265,7 @@ import * as MpDraftApi from '@/api/mp/draft'
|
||||
import * as MpFreePublishApi from '@/api/mp/freePublish'
|
||||
import type { UploadFiles, UploadProps, UploadRawFile } from 'element-plus'
|
||||
import { createEditorConfig } from './editor-config'
|
||||
// 可以用改本地数据模拟,避免API调用超限
|
||||
import drafts from './mock'
|
||||
// import drafts from './mock' // 可以用改本地数据模拟,避免API调用超限
|
||||
import { IEditorConfig } from '@wangeditor/editor'
|
||||
|
||||
const message = useMessage() // 消息
|
||||
@ -342,7 +341,7 @@ const editorConfig = ref<Partial<IEditorConfig>>({})
|
||||
const getList = async () => {
|
||||
loading.value = true
|
||||
try {
|
||||
// const drafts = await MpDraftApi.getDraftPage(queryParams)
|
||||
const drafts = await MpDraftApi.getDraftPage(queryParams)
|
||||
drafts.list.forEach((item) => {
|
||||
const newsItem = item.content.newsItem
|
||||
// 将 thumbUrl 转成 picUrl,保证 wx-news 组件可以预览封面
|
||||
|
Reference in New Issue
Block a user