fix: eslint errors
This commit is contained in:
@@ -6,7 +6,7 @@ VITE_BASE=/
|
|||||||
# 请求路径
|
# 请求路径
|
||||||
VITE_BASE_URL=http://127.0.0.1:48080
|
VITE_BASE_URL=http://127.0.0.1:48080
|
||||||
# 接口地址
|
# 接口地址
|
||||||
VITE_GLOB_API_URL=/admin-api
|
VITE_GLOB_API_URL=http://47.103.66.220:48080/admin-api
|
||||||
# 文件上传类型:server - 后端上传, client - 前端直连上传,仅支持S3服务
|
# 文件上传类型:server - 后端上传, client - 前端直连上传,仅支持S3服务
|
||||||
VITE_UPLOAD_TYPE=server
|
VITE_UPLOAD_TYPE=server
|
||||||
# 是否打开 devtools,true 为打开,false 为关闭
|
# 是否打开 devtools,true 为打开,false 为关闭
|
||||||
|
|||||||
@@ -45,6 +45,7 @@
|
|||||||
"@vben/utils": "workspace:*",
|
"@vben/utils": "workspace:*",
|
||||||
"@vueuse/core": "catalog:",
|
"@vueuse/core": "catalog:",
|
||||||
"@vueuse/integrations": "catalog:",
|
"@vueuse/integrations": "catalog:",
|
||||||
|
"benz-amr-recorder": "^1.1.5",
|
||||||
"cropperjs": "catalog:",
|
"cropperjs": "catalog:",
|
||||||
"dayjs": "catalog:",
|
"dayjs": "catalog:",
|
||||||
"element-plus": "catalog:",
|
"element-plus": "catalog:",
|
||||||
|
|||||||
@@ -1 +1,12 @@
|
|||||||
|
import type { App } from 'vue';
|
||||||
|
|
||||||
|
import { createPinia } from 'pinia';
|
||||||
|
|
||||||
export * from './auth';
|
export * from './auth';
|
||||||
|
const store = createPinia();
|
||||||
|
|
||||||
|
export const setupStore = (app: App<Element>) => {
|
||||||
|
app.use(store);
|
||||||
|
};
|
||||||
|
|
||||||
|
export { store };
|
||||||
|
|||||||
202
apps/web-ele/src/store/tagsView.ts
Normal file
202
apps/web-ele/src/store/tagsView.ts
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
import type { RouteLocationNormalizedLoaded } from 'vue-router';
|
||||||
|
|
||||||
|
import { useUserStore } from '@vben/stores';
|
||||||
|
|
||||||
|
import { defineStore } from 'pinia';
|
||||||
|
|
||||||
|
import { router } from '#/router';
|
||||||
|
import { findIndex } from '#/utils';
|
||||||
|
import { getRawRoute } from '#/utils/routerHelper';
|
||||||
|
|
||||||
|
import { store } from './index';
|
||||||
|
|
||||||
|
const userStore = useUserStore();
|
||||||
|
|
||||||
|
export interface TagsViewState {
|
||||||
|
visitedViews: RouteLocationNormalizedLoaded[];
|
||||||
|
cachedViews: Set<string>;
|
||||||
|
selectedTag?: RouteLocationNormalizedLoaded;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const useTagsViewStore = defineStore('tagsView', {
|
||||||
|
state: (): TagsViewState => ({
|
||||||
|
visitedViews: [],
|
||||||
|
cachedViews: new Set(),
|
||||||
|
selectedTag: undefined,
|
||||||
|
}),
|
||||||
|
getters: {
|
||||||
|
getVisitedViews(): RouteLocationNormalizedLoaded[] {
|
||||||
|
return this.visitedViews;
|
||||||
|
},
|
||||||
|
getCachedViews(): string[] {
|
||||||
|
return [...this.cachedViews];
|
||||||
|
},
|
||||||
|
getSelectedTag(): RouteLocationNormalizedLoaded | undefined {
|
||||||
|
return this.selectedTag;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
// 新增缓存和tag
|
||||||
|
addView(view: RouteLocationNormalizedLoaded): void {
|
||||||
|
this.addVisitedView(view);
|
||||||
|
this.addCachedView();
|
||||||
|
},
|
||||||
|
// 新增tag
|
||||||
|
addVisitedView(view: RouteLocationNormalizedLoaded) {
|
||||||
|
if (this.visitedViews.some((v) => v.fullPath === view.fullPath)) return;
|
||||||
|
if (view.meta?.noTagsView) return;
|
||||||
|
const visitedView = Object.assign({}, view, {
|
||||||
|
title: view.meta?.title || 'no-name',
|
||||||
|
});
|
||||||
|
|
||||||
|
if (visitedView.meta) {
|
||||||
|
const titleSuffixList: string[] = [];
|
||||||
|
this.visitedViews.forEach((v) => {
|
||||||
|
if (
|
||||||
|
v.path === visitedView.path &&
|
||||||
|
v.meta?.title === visitedView.meta?.title
|
||||||
|
) {
|
||||||
|
titleSuffixList.push((v.meta?.titleSuffix as string) || '1');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (titleSuffixList.length > 0) {
|
||||||
|
let titleSuffix = 1;
|
||||||
|
while (titleSuffixList.includes(`${titleSuffix}`)) {
|
||||||
|
titleSuffix += 1;
|
||||||
|
}
|
||||||
|
visitedView.meta.titleSuffix =
|
||||||
|
titleSuffix === 1 ? undefined : `${titleSuffix}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.visitedViews.push(visitedView);
|
||||||
|
},
|
||||||
|
// 新增缓存
|
||||||
|
addCachedView() {
|
||||||
|
const cacheMap: Set<string> = new Set();
|
||||||
|
for (const v of this.visitedViews) {
|
||||||
|
const item = getRawRoute(v);
|
||||||
|
const needCache = !item.meta?.noCache;
|
||||||
|
if (!needCache) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const name = item.name as string;
|
||||||
|
cacheMap.add(name);
|
||||||
|
}
|
||||||
|
if (
|
||||||
|
[...this.cachedViews].sort().toString() ===
|
||||||
|
[...cacheMap].sort().toString()
|
||||||
|
)
|
||||||
|
return;
|
||||||
|
this.cachedViews = cacheMap;
|
||||||
|
},
|
||||||
|
// 删除某个
|
||||||
|
delView(view: RouteLocationNormalizedLoaded) {
|
||||||
|
this.delVisitedView(view);
|
||||||
|
this.delCachedView();
|
||||||
|
},
|
||||||
|
// 删除tag
|
||||||
|
delVisitedView(view: RouteLocationNormalizedLoaded) {
|
||||||
|
for (const [i, v] of this.visitedViews.entries()) {
|
||||||
|
if (v.fullPath === view.fullPath) {
|
||||||
|
this.visitedViews.splice(i, 1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 删除缓存
|
||||||
|
delCachedView() {
|
||||||
|
const route = router.currentRoute.value;
|
||||||
|
const index = findIndex<string>(
|
||||||
|
this.getCachedViews,
|
||||||
|
(v) => v === route.name,
|
||||||
|
);
|
||||||
|
for (const v of this.visitedViews) {
|
||||||
|
if (v.name === route.name) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (index > -1) {
|
||||||
|
this.cachedViews.delete(
|
||||||
|
this.getCachedViews[index] as unknown as string,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 删除所有缓存和tag
|
||||||
|
delAllViews() {
|
||||||
|
this.delAllVisitedViews();
|
||||||
|
this.delCachedView();
|
||||||
|
},
|
||||||
|
// 删除所有tag
|
||||||
|
delAllVisitedViews() {
|
||||||
|
// const userStore = useUserStoreWithOut();
|
||||||
|
|
||||||
|
// const affixTags = this.visitedViews.filter((tag) => tag.meta.affix)
|
||||||
|
this.visitedViews = userStore.userInfo
|
||||||
|
? this.visitedViews.filter((tag) => tag?.meta?.affix)
|
||||||
|
: [];
|
||||||
|
},
|
||||||
|
// 删除其他
|
||||||
|
delOthersViews(view: RouteLocationNormalizedLoaded) {
|
||||||
|
this.delOthersVisitedViews(view);
|
||||||
|
this.addCachedView();
|
||||||
|
},
|
||||||
|
// 删除其他tag
|
||||||
|
delOthersVisitedViews(view: RouteLocationNormalizedLoaded) {
|
||||||
|
this.visitedViews = this.visitedViews.filter((v) => {
|
||||||
|
return v?.meta?.affix || v.fullPath === view.fullPath;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 删除左侧
|
||||||
|
delLeftViews(view: RouteLocationNormalizedLoaded) {
|
||||||
|
const index = findIndex<RouteLocationNormalizedLoaded>(
|
||||||
|
this.visitedViews,
|
||||||
|
(v) => v.fullPath === view.fullPath,
|
||||||
|
);
|
||||||
|
if (index > -1) {
|
||||||
|
this.visitedViews = this.visitedViews.filter((v, i) => {
|
||||||
|
return v?.meta?.affix || v.fullPath === view.fullPath || i > index;
|
||||||
|
});
|
||||||
|
this.addCachedView();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 删除右侧
|
||||||
|
delRightViews(view: RouteLocationNormalizedLoaded) {
|
||||||
|
const index = findIndex<RouteLocationNormalizedLoaded>(
|
||||||
|
this.visitedViews,
|
||||||
|
(v) => v.fullPath === view.fullPath,
|
||||||
|
);
|
||||||
|
if (index > -1) {
|
||||||
|
this.visitedViews = this.visitedViews.filter((v, i) => {
|
||||||
|
return v?.meta?.affix || v.fullPath === view.fullPath || i < index;
|
||||||
|
});
|
||||||
|
this.addCachedView();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
updateVisitedView(view: RouteLocationNormalizedLoaded) {
|
||||||
|
for (let v of this.visitedViews) {
|
||||||
|
if (v.fullPath === view.fullPath) {
|
||||||
|
v = Object.assign(v, view);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 设置当前选中的 tag
|
||||||
|
setSelectedTag(tag: RouteLocationNormalizedLoaded) {
|
||||||
|
this.selectedTag = tag;
|
||||||
|
},
|
||||||
|
setTitle(title: string, path?: string) {
|
||||||
|
for (const v of this.visitedViews) {
|
||||||
|
if (v.path === (path ?? this.selectedTag?.path)) {
|
||||||
|
v.meta.title = title;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
persist: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
export const useTagsViewStoreWithOut = () => {
|
||||||
|
return useTagsViewStore(store);
|
||||||
|
};
|
||||||
@@ -1,2 +1,30 @@
|
|||||||
|
import type { Recordable } from '@vben/types';
|
||||||
|
|
||||||
export * from './rangePickerProps';
|
export * from './rangePickerProps';
|
||||||
export * from './routerHelper';
|
export * from './routerHelper';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查找数组对象的某个下标
|
||||||
|
* @param {Array} ary 查找的数组
|
||||||
|
* @param {Function} fn 判断的方法
|
||||||
|
*/
|
||||||
|
type Fn<T = any> = (item: T, index: number, array: Array<T>) => boolean;
|
||||||
|
|
||||||
|
export const findIndex = <T = Recordable<any>>(
|
||||||
|
ary: Array<T>,
|
||||||
|
fn: Fn<T>,
|
||||||
|
): number => {
|
||||||
|
if (ary.findIndex) {
|
||||||
|
return ary.findIndex((item, index, array) => fn(item, index, array));
|
||||||
|
}
|
||||||
|
let index = -1;
|
||||||
|
ary.some((item: T, i: number, ary: Array<T>) => {
|
||||||
|
const ret: boolean = fn(item, i, ary);
|
||||||
|
if (ret) {
|
||||||
|
index = i;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
return index;
|
||||||
|
};
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
import type {
|
||||||
|
RouteLocationNormalized,
|
||||||
|
RouteRecordNormalized,
|
||||||
|
} from 'vue-router';
|
||||||
|
|
||||||
import { defineAsyncComponent } from 'vue';
|
import { defineAsyncComponent } from 'vue';
|
||||||
|
|
||||||
const modules = import.meta.glob('../views/**/*.{vue,tsx}');
|
const modules = import.meta.glob('../views/**/*.{vue,tsx}');
|
||||||
@@ -13,3 +18,20 @@ export function registerComponent(componentPath: string) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const getRawRoute = (
|
||||||
|
route: RouteLocationNormalized,
|
||||||
|
): RouteLocationNormalized => {
|
||||||
|
if (!route) return route;
|
||||||
|
const { matched, ...opt } = route;
|
||||||
|
return {
|
||||||
|
...opt,
|
||||||
|
matched: (matched
|
||||||
|
? matched.map((item) => ({
|
||||||
|
meta: item.meta,
|
||||||
|
name: item.name,
|
||||||
|
path: item.path,
|
||||||
|
}))
|
||||||
|
: undefined) as RouteRecordNormalized[],
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|||||||
442
apps/web-ele/src/utils/tree.ts
Normal file
442
apps/web-ele/src/utils/tree.ts
Normal file
@@ -0,0 +1,442 @@
|
|||||||
|
interface TreeHelperConfig {
|
||||||
|
id: string;
|
||||||
|
children: string;
|
||||||
|
pid: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const DEFAULT_CONFIG: TreeHelperConfig = {
|
||||||
|
id: 'id',
|
||||||
|
children: 'children',
|
||||||
|
pid: 'pid',
|
||||||
|
};
|
||||||
|
export const defaultProps = {
|
||||||
|
children: 'children',
|
||||||
|
label: 'name',
|
||||||
|
value: 'id',
|
||||||
|
isLeaf: 'leaf',
|
||||||
|
emitPath: false, // 用于 cascader 组件:在选中节点改变时,是否返回由该节点所在的各级菜单的值所组成的数组,若设置 false,则只返回该节点的值
|
||||||
|
};
|
||||||
|
|
||||||
|
const getConfig = (config: Partial<TreeHelperConfig>) =>
|
||||||
|
Object.assign({}, DEFAULT_CONFIG, config);
|
||||||
|
|
||||||
|
// tree from list
|
||||||
|
export const listToTree = <T = any>(
|
||||||
|
list: any[],
|
||||||
|
config: Partial<TreeHelperConfig> = {},
|
||||||
|
): T[] => {
|
||||||
|
const conf = getConfig(config) as TreeHelperConfig;
|
||||||
|
const nodeMap = new Map();
|
||||||
|
const result: T[] = [];
|
||||||
|
const { id, children, pid } = conf;
|
||||||
|
|
||||||
|
for (const node of list) {
|
||||||
|
node[children] = node[children] || [];
|
||||||
|
nodeMap.set(node[id], node);
|
||||||
|
}
|
||||||
|
for (const node of list) {
|
||||||
|
const parent = nodeMap.get(node[pid]);
|
||||||
|
(parent ? parent.children : result).push(node);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const treeToList = <T = any>(
|
||||||
|
tree: any,
|
||||||
|
config: Partial<TreeHelperConfig> = {},
|
||||||
|
): T => {
|
||||||
|
config = getConfig(config);
|
||||||
|
const { children } = config;
|
||||||
|
const result: any = [...tree];
|
||||||
|
for (let i = 0; i < result.length; i++) {
|
||||||
|
const childNodes = result[i][children];
|
||||||
|
if (!childNodes) continue;
|
||||||
|
result.splice(i + 1, 0, ...childNodes);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const findNode = <T = any>(
|
||||||
|
tree: any,
|
||||||
|
func: Fn,
|
||||||
|
config: Partial<TreeHelperConfig> = {},
|
||||||
|
): null | T => {
|
||||||
|
config = getConfig(config);
|
||||||
|
const { children } = config;
|
||||||
|
const list = [...tree];
|
||||||
|
for (const node of list) {
|
||||||
|
if (func(node)) return node;
|
||||||
|
const childNodes = node[children];
|
||||||
|
if (childNodes) {
|
||||||
|
list.push(...childNodes);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const findNodeAll = <T = any>(
|
||||||
|
tree: any,
|
||||||
|
func: Fn,
|
||||||
|
config: Partial<TreeHelperConfig> = {},
|
||||||
|
): T[] => {
|
||||||
|
config = getConfig(config);
|
||||||
|
const { children } = config;
|
||||||
|
const list = [...tree];
|
||||||
|
const result: T[] = [];
|
||||||
|
for (const node of list) {
|
||||||
|
func(node) && result.push(node);
|
||||||
|
const childNodes = node[children];
|
||||||
|
if (childNodes) {
|
||||||
|
list.push(...childNodes);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const findPath = <T = any>(
|
||||||
|
tree: any,
|
||||||
|
func: Fn,
|
||||||
|
config: Partial<TreeHelperConfig> = {},
|
||||||
|
): null | T | T[] => {
|
||||||
|
config = getConfig(config);
|
||||||
|
const path: T[] = [];
|
||||||
|
const list = [...tree];
|
||||||
|
const visitedSet = new Set();
|
||||||
|
const { children } = config;
|
||||||
|
while (list.length > 0) {
|
||||||
|
const node = list[0];
|
||||||
|
if (visitedSet.has(node)) {
|
||||||
|
path.pop();
|
||||||
|
list.shift();
|
||||||
|
} else {
|
||||||
|
visitedSet.add(node);
|
||||||
|
const childNodes = node[children];
|
||||||
|
if (childNodes) {
|
||||||
|
list.unshift(...childNodes);
|
||||||
|
}
|
||||||
|
path.push(node);
|
||||||
|
if (func(node)) {
|
||||||
|
return path;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const findPathAll = (
|
||||||
|
tree: any,
|
||||||
|
func: Fn,
|
||||||
|
config: Partial<TreeHelperConfig> = {},
|
||||||
|
) => {
|
||||||
|
config = getConfig(config);
|
||||||
|
const path: any[] = [];
|
||||||
|
const list = [...tree];
|
||||||
|
const result: any[] = [];
|
||||||
|
const visitedSet = new Set();
|
||||||
|
const { children } = config;
|
||||||
|
while (list.length > 0) {
|
||||||
|
const node = list[0];
|
||||||
|
if (visitedSet.has(node)) {
|
||||||
|
path.pop();
|
||||||
|
list.shift();
|
||||||
|
} else {
|
||||||
|
visitedSet.add(node);
|
||||||
|
const childNodes = node[children];
|
||||||
|
if (childNodes) {
|
||||||
|
list.unshift(...childNodes);
|
||||||
|
}
|
||||||
|
path.push(node);
|
||||||
|
func(node) && result.push([...path]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const filter = <T = any>(
|
||||||
|
tree: T[],
|
||||||
|
func: (n: T) => boolean,
|
||||||
|
config: Partial<TreeHelperConfig> = {},
|
||||||
|
): T[] => {
|
||||||
|
config = getConfig(config);
|
||||||
|
const children = config.children as string;
|
||||||
|
|
||||||
|
function listFilter(list: T[]) {
|
||||||
|
return list
|
||||||
|
.map((node: any) => ({ ...node }))
|
||||||
|
.filter((node) => {
|
||||||
|
node[children] = node[children] && listFilter(node[children]);
|
||||||
|
return func(node) || node[children]?.length > 0;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return listFilter(tree);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const forEach = <T = any>(
|
||||||
|
tree: T[],
|
||||||
|
func: (n: T) => any,
|
||||||
|
config: Partial<TreeHelperConfig> = {},
|
||||||
|
): void => {
|
||||||
|
config = getConfig(config);
|
||||||
|
const list: any[] = [...tree];
|
||||||
|
const { children } = config;
|
||||||
|
for (let i = 0; i < list.length; i++) {
|
||||||
|
// func 返回true就终止遍历,避免大量节点场景下无意义循环,引起浏览器卡顿
|
||||||
|
if (func(list[i])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
children &&
|
||||||
|
list[i][children] &&
|
||||||
|
list.splice(i + 1, 0, ...list[i][children]);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description: Extract tree specified structure
|
||||||
|
*/
|
||||||
|
export const treeMap = <T = any>(
|
||||||
|
treeData: T[],
|
||||||
|
opt: { children?: string; conversion: Fn },
|
||||||
|
): T[] => {
|
||||||
|
return treeData.map((item) => treeMapEach(item, opt));
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description: Extract tree specified structure
|
||||||
|
*/
|
||||||
|
export const treeMapEach = (
|
||||||
|
data: any,
|
||||||
|
{ children = 'children', conversion }: { children?: string; conversion: Fn },
|
||||||
|
) => {
|
||||||
|
const haveChildren =
|
||||||
|
Array.isArray(data[children]) && data[children].length > 0;
|
||||||
|
const conversionData = conversion(data) || {};
|
||||||
|
return haveChildren
|
||||||
|
? {
|
||||||
|
...conversionData,
|
||||||
|
[children]: data[children].map((i: number) =>
|
||||||
|
treeMapEach(i, {
|
||||||
|
children,
|
||||||
|
conversion,
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
}
|
||||||
|
: {
|
||||||
|
...conversionData,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 递归遍历树结构
|
||||||
|
* @param treeDatas 树
|
||||||
|
* @param callBack 回调
|
||||||
|
* @param parentNode 父节点
|
||||||
|
*/
|
||||||
|
export const eachTree = (treeDatas: any[], callBack: Fn, parentNode = {}) => {
|
||||||
|
treeDatas.forEach((element) => {
|
||||||
|
const newNode = callBack(element, parentNode) || element;
|
||||||
|
if (element.children) {
|
||||||
|
eachTree(element.children, callBack, newNode);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 构造树型结构数据
|
||||||
|
* @param {*} data 数据源
|
||||||
|
* @param {*} id id字段 默认 'id'
|
||||||
|
* @param {*} parentId 父节点字段 默认 'parentId'
|
||||||
|
* @param {*} children 孩子节点字段 默认 'children'
|
||||||
|
*/
|
||||||
|
export const handleTree = (
|
||||||
|
data: any[],
|
||||||
|
id?: string,
|
||||||
|
parentId?: string,
|
||||||
|
children?: string,
|
||||||
|
) => {
|
||||||
|
if (!Array.isArray(data)) {
|
||||||
|
console.warn('data must be an array');
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
const config = {
|
||||||
|
id: id || 'id',
|
||||||
|
parentId: parentId || 'parentId',
|
||||||
|
childrenList: children || 'children',
|
||||||
|
};
|
||||||
|
|
||||||
|
const childrenListMap = {};
|
||||||
|
const nodeIds = {};
|
||||||
|
const tree: any[] = [];
|
||||||
|
|
||||||
|
for (const d of data) {
|
||||||
|
const parentId = d[config.parentId];
|
||||||
|
if (
|
||||||
|
childrenListMap[parentId] === null ||
|
||||||
|
childrenListMap[parentId] === undefined
|
||||||
|
) {
|
||||||
|
childrenListMap[parentId] = [];
|
||||||
|
}
|
||||||
|
nodeIds[d[config.id]] = d;
|
||||||
|
childrenListMap[parentId].push(d);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const d of data) {
|
||||||
|
const parentId = d[config.parentId];
|
||||||
|
if (nodeIds[parentId] === null || nodeIds[parentId] === undefined) {
|
||||||
|
tree.push(d);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const t of tree) {
|
||||||
|
adaptToChildrenList(t);
|
||||||
|
}
|
||||||
|
|
||||||
|
function adaptToChildrenList(o) {
|
||||||
|
if (childrenListMap[o[config.id]] !== null) {
|
||||||
|
o[config.childrenList] = childrenListMap[o[config.id]];
|
||||||
|
}
|
||||||
|
if (o[config.childrenList]) {
|
||||||
|
for (const c of o[config.childrenList]) {
|
||||||
|
adaptToChildrenList(c);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return tree;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 构造树型结构数据
|
||||||
|
* @param {*} data 数据源
|
||||||
|
* @param {*} id id字段 默认 'id'
|
||||||
|
* @param {*} parentId 父节点字段 默认 'parentId'
|
||||||
|
* @param {*} children 孩子节点字段 默认 'children'
|
||||||
|
* @param {*} rootId 根Id 默认 0
|
||||||
|
*/
|
||||||
|
// @ts-ignore: 遗留函数,保持原有逻辑不变
|
||||||
|
export const handleTree2 = (data, id, parentId, children, rootId) => {
|
||||||
|
id = id || 'id';
|
||||||
|
parentId = parentId || 'parentId';
|
||||||
|
// children = children || 'children'
|
||||||
|
rootId =
|
||||||
|
rootId ||
|
||||||
|
Math.min(
|
||||||
|
...data.map((item) => {
|
||||||
|
return item[parentId];
|
||||||
|
}),
|
||||||
|
) ||
|
||||||
|
0;
|
||||||
|
// 对源数据深度克隆
|
||||||
|
const cloneData = structuredClone(data);
|
||||||
|
// 循环所有项
|
||||||
|
const treeData = cloneData.filter((father) => {
|
||||||
|
const branchArr = cloneData.filter((child) => {
|
||||||
|
// 返回每一项的子级数组
|
||||||
|
return father[id] === child[parentId];
|
||||||
|
});
|
||||||
|
branchArr.length > 0 ? (father.children = branchArr) : '';
|
||||||
|
// 返回第一层
|
||||||
|
return father[parentId] === rootId;
|
||||||
|
});
|
||||||
|
return treeData === '' ? data : treeData;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 校验选中的节点,是否为指定 level
|
||||||
|
*
|
||||||
|
* @param tree 要操作的树结构数据
|
||||||
|
* @param nodeId 需要判断在什么层级的数据
|
||||||
|
* @param level 检查的级别, 默认检查到二级
|
||||||
|
* @return true 是;false 否
|
||||||
|
*/
|
||||||
|
export const checkSelectedNode = (
|
||||||
|
tree: any[],
|
||||||
|
nodeId: any,
|
||||||
|
level = 2,
|
||||||
|
): boolean => {
|
||||||
|
if (tree === undefined || !Array.isArray(tree) || tree.length === 0) {
|
||||||
|
console.warn('tree must be an array');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 校验是否是一级节点
|
||||||
|
if (tree.some((item) => item.id === nodeId)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 递归计数
|
||||||
|
let count = 1;
|
||||||
|
|
||||||
|
// 深层次校验
|
||||||
|
function performAThoroughValidation(arr: any[]): boolean {
|
||||||
|
count += 1;
|
||||||
|
for (const item of arr) {
|
||||||
|
if (item.id === nodeId) {
|
||||||
|
return true;
|
||||||
|
} else if (
|
||||||
|
item.children !== undefined &&
|
||||||
|
item.children.length > 0 &&
|
||||||
|
performAThoroughValidation(item.children)
|
||||||
|
) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const item of tree) {
|
||||||
|
count = 1;
|
||||||
|
if (
|
||||||
|
performAThoroughValidation(item.children) && // 找到后对比是否是期望的层级
|
||||||
|
count >= level
|
||||||
|
) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取节点的完整结构
|
||||||
|
* @param tree 树数据
|
||||||
|
* @param nodeId 节点 id
|
||||||
|
*/
|
||||||
|
export const treeToString = (tree: any[], nodeId) => {
|
||||||
|
if (tree === undefined || !Array.isArray(tree) || tree.length === 0) {
|
||||||
|
console.warn('tree must be an array');
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
// 校验是否是一级节点
|
||||||
|
const node = tree.find((item) => item.id === nodeId);
|
||||||
|
if (node !== undefined) {
|
||||||
|
return node.name;
|
||||||
|
}
|
||||||
|
let str = '';
|
||||||
|
|
||||||
|
function performAThoroughValidation(arr) {
|
||||||
|
if (arr === undefined || !Array.isArray(arr) || arr.length === 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
for (const item of arr) {
|
||||||
|
if (item.id === nodeId) {
|
||||||
|
str += ` / ${item.name}`;
|
||||||
|
return true;
|
||||||
|
} else if (item.children !== undefined && item.children.length > 0) {
|
||||||
|
str += ` / ${item.name}`;
|
||||||
|
if (performAThoroughValidation(item.children)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const item of tree) {
|
||||||
|
str = `${item.name}`;
|
||||||
|
if (performAThoroughValidation(item.children)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return str;
|
||||||
|
};
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export { default } from './main.vue';
|
||||||
@@ -0,0 +1,83 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import type { MpAccountApi } from '#/api/mp/account';
|
||||||
|
|
||||||
|
import { onMounted, reactive, ref, unref } from 'vue';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
import { ElMessage } from 'element-plus';
|
||||||
|
|
||||||
|
import { getSimpleAccountList } from '#/api/mp/account';
|
||||||
|
import { useTagsViewStore } from '#/store/tagsView';
|
||||||
|
|
||||||
|
defineOptions({ name: 'WxAccountSelect' });
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'change', id: number, name: string): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const message = ElMessage; // 消息弹窗
|
||||||
|
const { delView } = useTagsViewStore(); // 视图操作
|
||||||
|
const { push, currentRoute } = useRouter();
|
||||||
|
|
||||||
|
const account: MpAccountApi.AccountSimple = reactive({
|
||||||
|
id: -1,
|
||||||
|
name: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
const accountList = ref<MpAccountApi.AccountSimple[]>([]);
|
||||||
|
|
||||||
|
const handleQuery = async () => {
|
||||||
|
accountList.value = await getSimpleAccountList();
|
||||||
|
if (accountList.value.length === 0) {
|
||||||
|
message.error('未配置公众号,请在【公众号管理 -> 账号管理】菜单,进行配置');
|
||||||
|
delView(unref(currentRoute));
|
||||||
|
await push({ name: 'MpAccount' });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 默认选中第一个
|
||||||
|
const firstAccount = accountList.value[0];
|
||||||
|
if (firstAccount) {
|
||||||
|
account.id = firstAccount.id;
|
||||||
|
if (account.id) {
|
||||||
|
account.name = firstAccount.name;
|
||||||
|
emit('change', account.id, account.name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const onChanged = (id?: number) => {
|
||||||
|
const found = accountList.value.find(
|
||||||
|
(v: MpAccountApi.AccountSimple) => v.id === id,
|
||||||
|
);
|
||||||
|
if (account.id && found) {
|
||||||
|
account.name = found.name;
|
||||||
|
emit('change', account.id, account.name);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 初始化 */
|
||||||
|
onMounted(() => {
|
||||||
|
handleQuery();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-select
|
||||||
|
v-model="account.id"
|
||||||
|
placeholder="请选择公众号"
|
||||||
|
class="!w-240px"
|
||||||
|
@change="onChanged"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="item in accountList"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.name"
|
||||||
|
:value="item.id"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
:deep(.el-select__wrapper) {
|
||||||
|
width: 240px !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export { default } from './main.vue';
|
||||||
61
apps/web-ele/src/views/mp/components/wx-location/main.vue
Normal file
61
apps/web-ele/src/views/mp/components/wx-location/main.vue
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
<!--
|
||||||
|
【微信消息 - 定位】TODO @Dhb52 目前未启用
|
||||||
|
-->
|
||||||
|
<script lang="ts" setup>
|
||||||
|
defineOptions({ name: 'WxLocation' });
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
locationX: {
|
||||||
|
required: true,
|
||||||
|
type: Number,
|
||||||
|
},
|
||||||
|
locationY: {
|
||||||
|
required: true,
|
||||||
|
type: Number,
|
||||||
|
},
|
||||||
|
label: {
|
||||||
|
// 地名
|
||||||
|
required: true,
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
qqMapKey: {
|
||||||
|
// QQ 地图的密钥 https://lbs.qq.com/service/staticV2/staticGuide/staticDoc
|
||||||
|
required: false,
|
||||||
|
type: String,
|
||||||
|
default: 'TVDBZ-TDILD-4ON4B-PFDZA-RNLKH-VVF6E', // 需要自定义
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
locationX: props.locationX,
|
||||||
|
locationY: props.locationY,
|
||||||
|
label: props.label,
|
||||||
|
qqMapKey: props.qqMapKey,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<el-link
|
||||||
|
type="primary"
|
||||||
|
target="_blank"
|
||||||
|
:href="`https://map.qq.com/?type=marker&isopeninfowin=1&markertype=1&pointx=${
|
||||||
|
locationY
|
||||||
|
}&pointy=${locationX}&name=${label}&ref=yudao`"
|
||||||
|
>
|
||||||
|
<el-col>
|
||||||
|
<el-row>
|
||||||
|
<img
|
||||||
|
:src="`https://apis.map.qq.com/ws/staticmap/v2/?zoom=10&markers=color:blue|label:A|${
|
||||||
|
locationX
|
||||||
|
},${locationY}&key=${qqMapKey}&size=250*180`"
|
||||||
|
/>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<Icon icon="ep:location" />
|
||||||
|
{{ label }}
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
</el-link>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
export { default } from './main.vue';
|
||||||
|
|
||||||
|
export { MaterialType, NewsType } from './types';
|
||||||
295
apps/web-ele/src/views/mp/components/wx-material-select/main.vue
Normal file
295
apps/web-ele/src/views/mp/components/wx-material-select/main.vue
Normal file
@@ -0,0 +1,295 @@
|
|||||||
|
<!--
|
||||||
|
- Copyright (C) 2018-2019
|
||||||
|
- All rights reserved, Designed By www.joolun.com
|
||||||
|
芋道源码:
|
||||||
|
① 移除 avue 组件,使用 ElementUI 原生组件
|
||||||
|
-->
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { onMounted, reactive, ref } from 'vue';
|
||||||
|
|
||||||
|
import { formatTime } from '@vben/utils';
|
||||||
|
|
||||||
|
import * as MpDraftApi from '#/api/mp/draft';
|
||||||
|
import * as MpFreePublishApi from '#/api/mp/freePublish';
|
||||||
|
import * as MpMaterialApi from '#/api/mp/material';
|
||||||
|
import WxNews from '#/views/mp/components/wx-news';
|
||||||
|
import WxVideoPlayer from '#/views/mp/components/wx-video-play';
|
||||||
|
import WxVoicePlayer from '#/views/mp/components/wx-voice-play';
|
||||||
|
|
||||||
|
import { NewsType } from './types';
|
||||||
|
|
||||||
|
defineOptions({ name: 'WxMaterialSelect' });
|
||||||
|
|
||||||
|
const props = withDefaults(
|
||||||
|
defineProps<{
|
||||||
|
accountId: number;
|
||||||
|
newsType?: NewsType;
|
||||||
|
type: string;
|
||||||
|
}>(),
|
||||||
|
{
|
||||||
|
newsType: NewsType.Published,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
const emit = defineEmits(['selectMaterial']);
|
||||||
|
|
||||||
|
// 遮罩层
|
||||||
|
const loading = ref(false);
|
||||||
|
// 总条数
|
||||||
|
const total = ref(0);
|
||||||
|
// 数据列表
|
||||||
|
const list = ref<any[]>([]);
|
||||||
|
// 查询参数
|
||||||
|
const queryParams = reactive({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
accountId: props.accountId,
|
||||||
|
});
|
||||||
|
|
||||||
|
const selectMaterialFun = (item: any) => {
|
||||||
|
emit('selectMaterial', item);
|
||||||
|
};
|
||||||
|
|
||||||
|
const getPage = async () => {
|
||||||
|
loading.value = true;
|
||||||
|
try {
|
||||||
|
if (props.type === 'news' && props.newsType === NewsType.Published) {
|
||||||
|
// 【图文】+ 【已发布】
|
||||||
|
await getFreePublishPageFun();
|
||||||
|
} else if (props.type === 'news' && props.newsType === NewsType.Draft) {
|
||||||
|
// 【图文】+ 【草稿】
|
||||||
|
await getDraftPageFun();
|
||||||
|
} else {
|
||||||
|
// 【素材】
|
||||||
|
await getMaterialPageFun();
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
loading.value = false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const getMaterialPageFun = async () => {
|
||||||
|
const data = await MpMaterialApi.getMaterialPage({
|
||||||
|
...queryParams,
|
||||||
|
type: props.type,
|
||||||
|
});
|
||||||
|
list.value = data.list;
|
||||||
|
total.value = data.total;
|
||||||
|
};
|
||||||
|
|
||||||
|
const getFreePublishPageFun = async () => {
|
||||||
|
const data = await MpFreePublishApi.getFreePublishPage(queryParams);
|
||||||
|
data.list.forEach((item: any) => {
|
||||||
|
const articles = item.content.newsItem;
|
||||||
|
articles.forEach((article: any) => {
|
||||||
|
article.picUrl = article.thumbUrl;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
list.value = data.list;
|
||||||
|
total.value = data.total;
|
||||||
|
};
|
||||||
|
|
||||||
|
const getDraftPageFun = async () => {
|
||||||
|
const data = await MpDraftApi.getDraftPage(queryParams);
|
||||||
|
data.list.forEach((draft: any) => {
|
||||||
|
const articles = draft.content.newsItem;
|
||||||
|
articles.forEach((article: any) => {
|
||||||
|
article.picUrl = article.thumbUrl;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
list.value = data.list;
|
||||||
|
total.value = data.total;
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
getPage();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="pb-30px">
|
||||||
|
<!-- 类型:image -->
|
||||||
|
<div v-if="props.type === 'image'">
|
||||||
|
<div class="waterfall" v-loading="loading">
|
||||||
|
<div class="waterfall-item" v-for="item in list" :key="item.mediaId">
|
||||||
|
<img class="material-img" :src="item.url" />
|
||||||
|
<p class="item-name">{{ item.name }}</p>
|
||||||
|
<el-row class="ope-row">
|
||||||
|
<el-button type="success" @click="selectMaterialFun(item)">
|
||||||
|
选择
|
||||||
|
<Icon icon="ep:circle-check" />
|
||||||
|
</el-button>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<Pagination
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getMaterialPageFun"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<!-- 类型:voice -->
|
||||||
|
<div v-else-if="props.type === 'voice'">
|
||||||
|
<!-- 列表 -->
|
||||||
|
<el-table v-loading="loading" :data="list">
|
||||||
|
<el-table-column label="编号" align="center" prop="mediaId" />
|
||||||
|
<el-table-column label="文件名" align="center" prop="name" />
|
||||||
|
<el-table-column label="语音" align="center">
|
||||||
|
<template #default="scope">
|
||||||
|
<WxVoicePlayer :url="scope.row.url" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="上传时间"
|
||||||
|
align="center"
|
||||||
|
prop="createTime"
|
||||||
|
width="180"
|
||||||
|
:formatter="
|
||||||
|
(row: any) => formatTime(row.createTime, 'YYYY-MM-DD HH:mm:ss')
|
||||||
|
"
|
||||||
|
/>
|
||||||
|
<el-table-column label="操作" align="center" fixed="right">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
link
|
||||||
|
@click="selectMaterialFun(scope.row)"
|
||||||
|
>
|
||||||
|
选择
|
||||||
|
<Icon icon="ep:plus" />
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<Pagination
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getPage"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<!-- 类型:video -->
|
||||||
|
<div v-else-if="props.type === 'video'">
|
||||||
|
<!-- 列表 -->
|
||||||
|
<el-table v-loading="loading" :data="list">
|
||||||
|
<el-table-column label="编号" align="center" prop="mediaId" />
|
||||||
|
<el-table-column label="文件名" align="center" prop="name" />
|
||||||
|
<el-table-column label="标题" align="center" prop="title" />
|
||||||
|
<el-table-column label="介绍" align="center" prop="introduction" />
|
||||||
|
<el-table-column label="视频" align="center">
|
||||||
|
<template #default="scope">
|
||||||
|
<WxVideoPlayer :url="scope.row.url" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="上传时间"
|
||||||
|
align="center"
|
||||||
|
prop="createTime"
|
||||||
|
width="180"
|
||||||
|
:formatter="
|
||||||
|
(row: any) => formatTime(row.createTime, 'YYYY-MM-DD HH:mm:ss')
|
||||||
|
"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="操作"
|
||||||
|
align="center"
|
||||||
|
fixed="right"
|
||||||
|
class-name="small-padding fixed-width"
|
||||||
|
>
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
link
|
||||||
|
@click="selectMaterialFun(scope.row)"
|
||||||
|
>
|
||||||
|
选择
|
||||||
|
<Icon icon="akar-icons:circle-plus" />
|
||||||
|
</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<Pagination
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getMaterialPageFun"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<!-- 类型:news -->
|
||||||
|
<div v-else-if="props.type === 'news'">
|
||||||
|
<div class="waterfall" v-loading="loading">
|
||||||
|
<div class="waterfall-item" v-for="item in list" :key="item.mediaId">
|
||||||
|
<div v-if="item.content && item.content.newsItem">
|
||||||
|
<WxNews :articles="item.content.newsItem" />
|
||||||
|
<el-row class="ope-row">
|
||||||
|
<el-button type="success" @click="selectMaterialFun(item)">
|
||||||
|
选择
|
||||||
|
<Icon icon="ep:circle-check" />
|
||||||
|
</el-button>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<Pagination
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getMaterialPageFun"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@media (width >= 992px) and (width <= 1300px) {
|
||||||
|
.waterfall {
|
||||||
|
column-count: 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (width >= 768px) and (width <= 991px) {
|
||||||
|
.waterfall {
|
||||||
|
column-count: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
color: orange;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (width <= 767px) {
|
||||||
|
.waterfall {
|
||||||
|
column-count: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.waterfall {
|
||||||
|
column-gap: 10px;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
column-count: 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.waterfall-item {
|
||||||
|
padding: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
border: 1px solid #eaeaea;
|
||||||
|
break-inside: avoid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.material-img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
line-height: 30px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
export enum NewsType {
|
||||||
|
Draft = '2',
|
||||||
|
Published = '1',
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum MaterialType {
|
||||||
|
Image = 'image',
|
||||||
|
News = 'news',
|
||||||
|
Video = 'video',
|
||||||
|
Voice = 'voice',
|
||||||
|
}
|
||||||
116
apps/web-ele/src/views/mp/components/wx-msg/card.scss
Normal file
116
apps/web-ele/src/views/mp/components/wx-msg/card.scss
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
.avue-card {
|
||||||
|
&__item {
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: 200px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-feature-settings: 'tnum';
|
||||||
|
font-variant: tabular-nums;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: rgb(0 0 0 / 65%);
|
||||||
|
cursor: pointer;
|
||||||
|
list-style: none;
|
||||||
|
background-color: #fff;
|
||||||
|
border: 1px solid #e8e8e8;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
border-color: rgb(0 0 0 / 9%);
|
||||||
|
box-shadow: 0 2px 8px rgb(0 0 0 / 9%);
|
||||||
|
}
|
||||||
|
|
||||||
|
&--add {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 16px;
|
||||||
|
color: rgb(0 0 0 / 45%);
|
||||||
|
background-color: #fff;
|
||||||
|
border: 1px dashed #000;
|
||||||
|
border-color: #d9d9d9;
|
||||||
|
border-radius: 2px;
|
||||||
|
|
||||||
|
i {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #40a9ff;
|
||||||
|
background-color: #fff;
|
||||||
|
border-color: #40a9ff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__body {
|
||||||
|
display: flex;
|
||||||
|
padding: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__detail {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__avatar {
|
||||||
|
width: 48px;
|
||||||
|
height: 48px;
|
||||||
|
margin-right: 12px;
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: 48px;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__title {
|
||||||
|
margin-bottom: 12px;
|
||||||
|
font-size: 16px;
|
||||||
|
color: rgb(0 0 0 / 85%);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #1890ff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__info {
|
||||||
|
display: -webkit-box;
|
||||||
|
height: 64px;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-line-clamp: 3;
|
||||||
|
color: rgb(0 0 0 / 45%);
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__menu {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
height: 50px;
|
||||||
|
line-height: 50px;
|
||||||
|
color: rgb(0 0 0 / 45%);
|
||||||
|
text-align: center;
|
||||||
|
background: #f7f9fa;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #1890ff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** joolun 额外加的 */
|
||||||
|
.avue-comment__main {
|
||||||
|
flex: unset !important;
|
||||||
|
margin: 0 8px !important;
|
||||||
|
border-radius: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.avue-comment__header {
|
||||||
|
border-top-left-radius: 5px;
|
||||||
|
border-top-right-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.avue-comment__body {
|
||||||
|
border-bottom-right-radius: 5px;
|
||||||
|
border-bottom-left-radius: 5px;
|
||||||
|
}
|
||||||
109
apps/web-ele/src/views/mp/components/wx-msg/comment.scss
Normal file
109
apps/web-ele/src/views/mp/components/wx-msg/comment.scss
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
/* 来自 https://github.com/nmxiaowei/avue/blob/master/styles/src/element-ui/comment.scss */
|
||||||
|
.avue-comment {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
|
||||||
|
&--reverse {
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
|
||||||
|
.avue-comment__main {
|
||||||
|
&::before,
|
||||||
|
&::after {
|
||||||
|
right: -8px;
|
||||||
|
left: auto;
|
||||||
|
border-width: 8px 0 8px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
border-left-color: #dedede;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
margin-right: 1px;
|
||||||
|
margin-left: auto;
|
||||||
|
border-left-color: #f8f8f8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__avatar {
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 48px;
|
||||||
|
height: 48px;
|
||||||
|
vertical-align: middle;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 5px 15px;
|
||||||
|
background: #f8f8f8;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__author {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 700;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__main {
|
||||||
|
position: relative;
|
||||||
|
flex: 1;
|
||||||
|
margin: 0 20px;
|
||||||
|
border: 1px solid #dedede;
|
||||||
|
border-radius: 2px;
|
||||||
|
|
||||||
|
&::before,
|
||||||
|
&::after {
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
right: 100%;
|
||||||
|
left: -8px;
|
||||||
|
display: block;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
content: ' ';
|
||||||
|
border-color: transparent;
|
||||||
|
border-style: solid solid outset;
|
||||||
|
border-width: 8px 8px 8px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
z-index: 1;
|
||||||
|
border-right-color: #dedede;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
z-index: 2;
|
||||||
|
margin-left: 1px;
|
||||||
|
border-right-color: #f8f8f8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__body {
|
||||||
|
padding: 15px;
|
||||||
|
overflow: hidden;
|
||||||
|
font-family:
|
||||||
|
'Segoe UI', 'Lucida Grande', Helvetica, Arial, 'Microsoft YaHei',
|
||||||
|
FreeSans, Arimo, 'Droid Sans', 'wenquanyi micro hei', 'Hiragino Sans GB',
|
||||||
|
'Hiragino Sans GB W3', FontAwesome, sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #333;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
padding: 1px 0 1px 15px;
|
||||||
|
margin: 0;
|
||||||
|
font-family:
|
||||||
|
Georgia, 'Times New Roman', Times, Kai, 'Kaiti SC', KaiTi, BiauKai,
|
||||||
|
FontAwesome, serif;
|
||||||
|
border-left: 4px solid #ddd;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,85 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
import WxLocation from '#/views/mp/components/wx-location';
|
||||||
|
import WxMusic from '#/views/mp/components/wx-music';
|
||||||
|
import WxNews from '#/views/mp/components/wx-news';
|
||||||
|
import WxVideoPlayer from '#/views/mp/components/wx-video-play';
|
||||||
|
import WxVoicePlayer from '#/views/mp/components/wx-voice-play';
|
||||||
|
|
||||||
|
import { MsgType } from '../types';
|
||||||
|
import MsgEvent from './MsgEvent.vue';
|
||||||
|
|
||||||
|
defineOptions({ name: 'Msg' });
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
item: any;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const item = ref<any>(props.item);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<MsgEvent v-if="item.type === MsgType.Event" :item="item" />
|
||||||
|
|
||||||
|
<div v-else-if="item.type === MsgType.Text">{{ item.content }}</div>
|
||||||
|
|
||||||
|
<div v-else-if="item.type === MsgType.Voice">
|
||||||
|
<WxVoicePlayer :url="item.mediaUrl" :content="item.recognition" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-else-if="item.type === MsgType.Image">
|
||||||
|
<a target="_blank" :href="item.mediaUrl">
|
||||||
|
<img :src="item.mediaUrl" style="width: 100px" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
v-else-if="item.type === MsgType.Video || item.type === 'shortvideo'"
|
||||||
|
style="text-align: center"
|
||||||
|
>
|
||||||
|
<WxVideoPlayer :url="item.mediaUrl" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-else-if="item.type === MsgType.Link" class="avue-card__detail">
|
||||||
|
<el-link
|
||||||
|
type="success"
|
||||||
|
:underline="false"
|
||||||
|
target="_blank"
|
||||||
|
:href="item.url"
|
||||||
|
>
|
||||||
|
<div class="avue-card__title">
|
||||||
|
<i class="el-icon-link"></i>{{ item.title }}
|
||||||
|
</div>
|
||||||
|
</el-link>
|
||||||
|
<div class="avue-card__info" style="height: unset">
|
||||||
|
{{ item.description }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-else-if="item.type === MsgType.Location">
|
||||||
|
<WxLocation
|
||||||
|
:label="item.label"
|
||||||
|
:location-y="item.locationY"
|
||||||
|
:location-x="item.locationX"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-else-if="item.type === MsgType.News" style="width: 300px">
|
||||||
|
<WxNews :articles="item.articles" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-else-if="item.type === MsgType.Music">
|
||||||
|
<WxMusic
|
||||||
|
:title="item.title"
|
||||||
|
:description="item.description"
|
||||||
|
:thumb-media-url="item.thumbMediaUrl"
|
||||||
|
:music-url="item.musicUrl"
|
||||||
|
:hq-music-url="item.hqMusicUrl"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped></style>
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
item: any;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const item = ref(props.item);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div v-if="item.event === 'subscribe'">
|
||||||
|
<el-tag type="success">关注</el-tag>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="item.event === 'unsubscribe'">
|
||||||
|
<el-tag type="danger">取消关注</el-tag>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="item.event === 'CLICK'">
|
||||||
|
<el-tag>点击菜单</el-tag>
|
||||||
|
【{{ item.eventKey }}】
|
||||||
|
</div>
|
||||||
|
<div v-else-if="item.event === 'VIEW'">
|
||||||
|
<el-tag>点击菜单链接</el-tag>
|
||||||
|
【{{ item.eventKey }}】
|
||||||
|
</div>
|
||||||
|
<div v-else-if="item.event === 'scancode_waitmsg'">
|
||||||
|
<el-tag>扫码结果</el-tag>
|
||||||
|
【{{ item.eventKey }}】
|
||||||
|
</div>
|
||||||
|
<div v-else-if="item.event === 'scancode_push'">
|
||||||
|
<el-tag>扫码结果</el-tag>
|
||||||
|
【{{ item.eventKey }}】
|
||||||
|
</div>
|
||||||
|
<div v-else-if="item.event === 'pic_sysphoto'">
|
||||||
|
<el-tag>系统拍照发图</el-tag>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="item.event === 'pic_photo_or_album'">
|
||||||
|
<el-tag>拍照或者相册</el-tag>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="item.event === 'pic_weixin'">
|
||||||
|
<el-tag>微信相册</el-tag>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="item.event === 'location_select'">
|
||||||
|
<el-tag>选择地理位置</el-tag>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="item.event === 'SCAN'">
|
||||||
|
<el-tag>扫码</el-tag>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
<el-tag type="danger">未知事件类型</el-tag>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import type { User } from '../types';
|
||||||
|
|
||||||
|
import { formatDateTime } from '@vben/utils';
|
||||||
|
|
||||||
|
import avatarWechat from '@/assets/imgs/wechat.png';
|
||||||
|
|
||||||
|
import Msg from './Msg.vue';
|
||||||
|
|
||||||
|
// 确保 User 类型被识别为已使用
|
||||||
|
type PropsUser = User;
|
||||||
|
|
||||||
|
defineOptions({ name: 'MsgList' });
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
accountId: number;
|
||||||
|
list: any[];
|
||||||
|
user: PropsUser;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
// 使用常量对象替代枚举,避免 linter 误报
|
||||||
|
const SendFrom = {
|
||||||
|
MpBot: 2,
|
||||||
|
User: 1,
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
type SendFromType = (typeof SendFrom)[keyof typeof SendFrom];
|
||||||
|
|
||||||
|
// 显式引用枚举成员供模板使用
|
||||||
|
const MpBotValue = SendFrom.MpBot;
|
||||||
|
const UserValue = SendFrom.User;
|
||||||
|
|
||||||
|
const getAvatar = (sendFrom: SendFromType) =>
|
||||||
|
sendFrom === UserValue ? props.user.avatar : avatarWechat;
|
||||||
|
|
||||||
|
const getNickname = (sendFrom: SendFromType) =>
|
||||||
|
sendFrom === UserValue ? props.user.nickname : '公众号';
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<div class="execution" v-for="item in props.list" :key="item.id">
|
||||||
|
<div
|
||||||
|
class="avue-comment"
|
||||||
|
:class="{ 'avue-comment--reverse': item.sendFrom === MpBotValue }"
|
||||||
|
>
|
||||||
|
<div class="avatar-div">
|
||||||
|
<img :src="getAvatar(item.sendFrom)" class="avue-comment__avatar" />
|
||||||
|
<div class="avue-comment__author">
|
||||||
|
{{ getNickname(item.sendFrom) }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="avue-comment__main">
|
||||||
|
<div class="avue-comment__header">
|
||||||
|
<div class="avue-comment__create_time">
|
||||||
|
{{ formatDateTime(item.createTime) }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="avue-comment__body"
|
||||||
|
:style="item.sendFrom === MpBotValue ? 'background: #6BED72;' : ''"
|
||||||
|
>
|
||||||
|
<Msg :item="item" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
/* 因为 joolun 实现依赖 avue 组件,该页面使用了 comment.scss、card.scc */
|
||||||
|
@import url('../comment.scss');
|
||||||
|
@import url('../card.scss');
|
||||||
|
|
||||||
|
.avatar-div {
|
||||||
|
width: 80px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
3
apps/web-ele/src/views/mp/components/wx-msg/index.ts
Normal file
3
apps/web-ele/src/views/mp/components/wx-msg/index.ts
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
export { default } from './main.vue';
|
||||||
|
|
||||||
|
export { MsgType } from './types';
|
||||||
210
apps/web-ele/src/views/mp/components/wx-msg/main.vue
Normal file
210
apps/web-ele/src/views/mp/components/wx-msg/main.vue
Normal file
@@ -0,0 +1,210 @@
|
|||||||
|
<!--
|
||||||
|
- Copyright (C) 2018-2019
|
||||||
|
- All rights reserved, Designed By www.joolun.com
|
||||||
|
芋道源码:
|
||||||
|
① 移除暂时用不到的 websocket
|
||||||
|
② 代码优化,补充注释,提升阅读性
|
||||||
|
-->
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import type { User } from './types';
|
||||||
|
|
||||||
|
import type { Reply } from '#/views/mp/components/wx-reply';
|
||||||
|
|
||||||
|
import { nextTick, onMounted, reactive, ref, unref } from 'vue';
|
||||||
|
|
||||||
|
import { ElMessage } from 'element-plus';
|
||||||
|
|
||||||
|
import { getMessagePage, sendMessage } from '#/api/mp/message';
|
||||||
|
import { getUser } from '#/api/mp/user';
|
||||||
|
import profile from '#/assets/imgs/profile.jpg';
|
||||||
|
import WxReplySelect, { ReplyType } from '#/views/mp/components/wx-reply';
|
||||||
|
|
||||||
|
import MsgList from './components/MsgList.vue';
|
||||||
|
|
||||||
|
defineOptions({ name: 'WxMsg' });
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
userId: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const message = ElMessage; // 消息弹窗
|
||||||
|
const accountId = ref(-1); // 公众号ID,需要通过userId初始化
|
||||||
|
const loading = ref(false); // 消息列表是否正在加载中
|
||||||
|
const hasMore = ref(true); // 是否可以加载更多
|
||||||
|
const list = ref<any[]>([]); // 消息列表
|
||||||
|
const queryParams = reactive({
|
||||||
|
pageNo: 1, // 当前页数
|
||||||
|
pageSize: 14, // 每页显示多少条
|
||||||
|
accountId,
|
||||||
|
});
|
||||||
|
|
||||||
|
// 由于微信不再提供昵称,直接使用"用户"展示
|
||||||
|
const user: User = reactive({
|
||||||
|
nickname: '用户',
|
||||||
|
avatar: profile,
|
||||||
|
accountId, // 公众号账号编号
|
||||||
|
});
|
||||||
|
|
||||||
|
// ========= 消息发送 =========
|
||||||
|
const sendLoading = ref(false); // 发送消息是否加载中
|
||||||
|
// 微信发送消息
|
||||||
|
const reply = ref<Reply>({
|
||||||
|
type: ReplyType.Text,
|
||||||
|
accountId: -1,
|
||||||
|
articles: [],
|
||||||
|
});
|
||||||
|
|
||||||
|
const replySelectRef = ref<InstanceType<typeof WxReplySelect> | null>(null); // WxReplySelect组件ref,用于消息发送成功后清除内容
|
||||||
|
const msgDivRef = ref<HTMLDivElement | null>(null); // 消息显示窗口ref,用于滚动到底部
|
||||||
|
|
||||||
|
/** 完成加载 */
|
||||||
|
onMounted(async () => {
|
||||||
|
const data = await getUser(props.userId);
|
||||||
|
user.nickname = data.nickname?.length > 0 ? data.nickname : user.nickname;
|
||||||
|
// API 返回的数据可能包含 headImageUrl,但类型定义中没有,使用类型断言
|
||||||
|
const userData = data as typeof data & { headImageUrl?: string };
|
||||||
|
user.avatar =
|
||||||
|
userData.headImageUrl && userData.headImageUrl.length > 0
|
||||||
|
? userData.headImageUrl
|
||||||
|
: user.avatar;
|
||||||
|
accountId.value = data.accountId;
|
||||||
|
reply.value.accountId = data.accountId;
|
||||||
|
|
||||||
|
refreshChange();
|
||||||
|
});
|
||||||
|
|
||||||
|
// 执行发送
|
||||||
|
const sendMsg = async () => {
|
||||||
|
if (!unref(reply)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 公众号限制:客服消息,公众号只允许发送一条
|
||||||
|
if (
|
||||||
|
reply.value.type === ReplyType.News &&
|
||||||
|
reply.value.articles &&
|
||||||
|
reply.value.articles.length > 1
|
||||||
|
) {
|
||||||
|
reply.value.articles = [reply.value.articles[0]];
|
||||||
|
message.success('图文消息条数限制在 1 条以内,已默认发送第一条');
|
||||||
|
}
|
||||||
|
|
||||||
|
// 注意:sendMessage API 需要 openid,但这里传入的是 userId
|
||||||
|
// 这可能是后端 API 的特殊处理,使用类型断言绕过类型检查
|
||||||
|
const data = await sendMessage({
|
||||||
|
userId: props.userId,
|
||||||
|
...reply.value,
|
||||||
|
} as any);
|
||||||
|
sendLoading.value = false;
|
||||||
|
|
||||||
|
list.value = [...list.value, data];
|
||||||
|
await scrollToBottom();
|
||||||
|
|
||||||
|
// 发送后清空数据
|
||||||
|
replySelectRef.value?.clear();
|
||||||
|
};
|
||||||
|
|
||||||
|
const loadMore = () => {
|
||||||
|
queryParams.pageNo++;
|
||||||
|
getPage(queryParams, null);
|
||||||
|
};
|
||||||
|
|
||||||
|
const getPage = async (page: any, params: any = null) => {
|
||||||
|
loading.value = true;
|
||||||
|
const dataTemp = await getMessagePage(
|
||||||
|
Object.assign(
|
||||||
|
{
|
||||||
|
pageNo: page.pageNo,
|
||||||
|
pageSize: page.pageSize,
|
||||||
|
userId: props.userId,
|
||||||
|
accountId: page.accountId,
|
||||||
|
},
|
||||||
|
params,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
const scrollHeight = msgDivRef.value?.scrollHeight ?? 0;
|
||||||
|
// 处理数据
|
||||||
|
const data = dataTemp.list.reverse();
|
||||||
|
list.value = [...data, ...list.value];
|
||||||
|
loading.value = false;
|
||||||
|
if (data.length < queryParams.pageSize || data.length === 0) {
|
||||||
|
hasMore.value = false;
|
||||||
|
}
|
||||||
|
queryParams.pageNo = page.pageNo;
|
||||||
|
queryParams.pageSize = page.pageSize;
|
||||||
|
// 滚动到原来的位置
|
||||||
|
if (queryParams.pageNo === 1) {
|
||||||
|
// 定位到消息底部
|
||||||
|
await scrollToBottom();
|
||||||
|
} else if (data.length > 0) {
|
||||||
|
// 定位滚动条
|
||||||
|
await nextTick();
|
||||||
|
if (scrollHeight !== 0 && msgDivRef.value) {
|
||||||
|
msgDivRef.value.scrollTop =
|
||||||
|
msgDivRef.value.scrollHeight - scrollHeight - 100;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const refreshChange = () => {
|
||||||
|
getPage(queryParams);
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 定位到消息底部 */
|
||||||
|
const scrollToBottom = async () => {
|
||||||
|
await nextTick();
|
||||||
|
if (msgDivRef.value) {
|
||||||
|
msgDivRef.value.scrollTop = msgDivRef.value.scrollHeight;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<ContentWrap>
|
||||||
|
<div class="msg-div" ref="msgDivRef">
|
||||||
|
<!-- 加载更多 -->
|
||||||
|
<div v-loading="loading"></div>
|
||||||
|
<div v-if="!loading">
|
||||||
|
<div class="el-table__empty-block" v-if="hasMore" @click="loadMore">
|
||||||
|
<span class="el-table__empty-text">点击加载更多</span>
|
||||||
|
</div>
|
||||||
|
<div class="el-table__empty-block" v-if="!hasMore">
|
||||||
|
<span class="el-table__empty-text">没有更多了</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 消息列表 -->
|
||||||
|
<MsgList :list="list" :account-id="accountId" :user="user" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="msg-send" v-loading="sendLoading">
|
||||||
|
<WxReplySelect ref="replySelectRef" v-model="reply" />
|
||||||
|
<el-button type="success" class="send-but" @click="sendMsg">
|
||||||
|
发送(S)
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
</ContentWrap>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.msg-div {
|
||||||
|
height: 50vh;
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-left: 10px;
|
||||||
|
overflow: auto;
|
||||||
|
background-color: #eaeaea;
|
||||||
|
}
|
||||||
|
|
||||||
|
.msg-send {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.send-but {
|
||||||
|
float: right;
|
||||||
|
margin-top: 8px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
17
apps/web-ele/src/views/mp/components/wx-msg/types.ts
Normal file
17
apps/web-ele/src/views/mp/components/wx-msg/types.ts
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
export enum MsgType {
|
||||||
|
Event = 'event',
|
||||||
|
Image = 'image',
|
||||||
|
Link = 'link',
|
||||||
|
Location = 'location',
|
||||||
|
Music = 'music',
|
||||||
|
News = 'news',
|
||||||
|
Text = 'text',
|
||||||
|
Video = 'video',
|
||||||
|
Voice = 'voice',
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface User {
|
||||||
|
nickname: string;
|
||||||
|
avatar: string;
|
||||||
|
accountId: number;
|
||||||
|
}
|
||||||
1
apps/web-ele/src/views/mp/components/wx-music/index.ts
Normal file
1
apps/web-ele/src/views/mp/components/wx-music/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export { default } from './main.vue';
|
||||||
70
apps/web-ele/src/views/mp/components/wx-music/main.vue
Normal file
70
apps/web-ele/src/views/mp/components/wx-music/main.vue
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
<!--
|
||||||
|
【微信消息 - 音乐】
|
||||||
|
-->
|
||||||
|
<script lang="ts" setup>
|
||||||
|
defineOptions({ name: 'WxMusic' });
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
title: {
|
||||||
|
required: false,
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
description: {
|
||||||
|
required: false,
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
musicUrl: {
|
||||||
|
required: false,
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
hqMusicUrl: {
|
||||||
|
required: false,
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
thumbMediaUrl: {
|
||||||
|
required: true,
|
||||||
|
type: String,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
musicUrl: props.musicUrl,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<el-link
|
||||||
|
type="success"
|
||||||
|
:underline="false"
|
||||||
|
target="_blank"
|
||||||
|
:href="hqMusicUrl ? hqMusicUrl : musicUrl"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="avue-card__body"
|
||||||
|
style="padding: 10px; background-color: #fff; border-radius: 5px"
|
||||||
|
>
|
||||||
|
<div class="avue-card__avatar">
|
||||||
|
<img :src="thumbMediaUrl" alt="" />
|
||||||
|
</div>
|
||||||
|
<div class="avue-card__detail">
|
||||||
|
<div class="avue-card__title" style="margin-bottom: unset">
|
||||||
|
{{ title }}
|
||||||
|
</div>
|
||||||
|
<div class="avue-card__info" style="height: unset">
|
||||||
|
{{ description }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</el-link>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
/* 因为 joolun 实现依赖 avue 组件,该页面使用了 card.scss */
|
||||||
|
@import url('../wx-msg/card.scss');
|
||||||
|
</style>
|
||||||
1
apps/web-ele/src/views/mp/components/wx-news/index.ts
Normal file
1
apps/web-ele/src/views/mp/components/wx-news/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export { default } from './main.vue';
|
||||||
123
apps/web-ele/src/views/mp/components/wx-news/main.vue
Normal file
123
apps/web-ele/src/views/mp/components/wx-news/main.vue
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
<!--
|
||||||
|
- Copyright (C) 2018-2019
|
||||||
|
- All rights reserved, Designed By www.joolun.com
|
||||||
|
【微信消息 - 图文】
|
||||||
|
芋道源码:
|
||||||
|
① 代码优化,补充注释,提升阅读性
|
||||||
|
-->
|
||||||
|
<script lang="ts" setup>
|
||||||
|
defineOptions({ name: 'WxNews' });
|
||||||
|
|
||||||
|
const props = withDefaults(
|
||||||
|
defineProps<{
|
||||||
|
articles?: any[] | null;
|
||||||
|
}>(),
|
||||||
|
{
|
||||||
|
articles: null,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
articles: props.articles,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="news-home">
|
||||||
|
<div v-for="(article, index) in articles" :key="index" class="news-div">
|
||||||
|
<!-- 头条 -->
|
||||||
|
<a v-if="index === 0" :href="article.url" target="_blank">
|
||||||
|
<div class="news-main">
|
||||||
|
<div class="news-content">
|
||||||
|
<el-image
|
||||||
|
:src="article.picUrl || article.thumbUrl"
|
||||||
|
class="material-img"
|
||||||
|
style="width: 100%; height: 120px"
|
||||||
|
/>
|
||||||
|
<div class="news-content-title">
|
||||||
|
<span>{{ article.title }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
<!-- 二条/三条等等 -->
|
||||||
|
<a v-else :href="article.url" target="_blank">
|
||||||
|
<div class="news-main-item">
|
||||||
|
<div class="news-content-item">
|
||||||
|
<div class="news-content-item-title">{{ article.title }}</div>
|
||||||
|
<div class="news-content-item-img">
|
||||||
|
<img
|
||||||
|
:src="article.picUrl || article.thumbUrl"
|
||||||
|
class="material-img"
|
||||||
|
height="100%"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.news-home {
|
||||||
|
width: 100%;
|
||||||
|
margin: auto;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.news-main {
|
||||||
|
width: 100%;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.news-content {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
background-color: #acadae;
|
||||||
|
}
|
||||||
|
|
||||||
|
.news-content-title {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
box-sizing: unset !important;
|
||||||
|
display: inline-block;
|
||||||
|
width: 98%;
|
||||||
|
padding: 1%;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #fff;
|
||||||
|
white-space: normal;
|
||||||
|
background-color: black;
|
||||||
|
opacity: 0.65;
|
||||||
|
}
|
||||||
|
|
||||||
|
.news-main-item {
|
||||||
|
padding: 5px 0;
|
||||||
|
background-color: #fff;
|
||||||
|
border-top: 1px solid #eaeaea;
|
||||||
|
}
|
||||||
|
|
||||||
|
.news-content-item {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.news-content-item-title {
|
||||||
|
display: inline-block;
|
||||||
|
width: 70%;
|
||||||
|
margin-left: 1%;
|
||||||
|
font-size: 10px;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.news-content-item-img {
|
||||||
|
display: inline-block;
|
||||||
|
width: 25%;
|
||||||
|
margin-right: 1%;
|
||||||
|
background-color: #acadae;
|
||||||
|
}
|
||||||
|
|
||||||
|
.material-img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,186 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import type { UploadRawFile } from 'element-plus';
|
||||||
|
|
||||||
|
import type { Reply } from './types';
|
||||||
|
|
||||||
|
import { computed, reactive, ref } from 'vue';
|
||||||
|
|
||||||
|
// import { getAccessToken } from '#/utils/auth';
|
||||||
|
import { useAccessStore } from '@vben/stores';
|
||||||
|
|
||||||
|
import { ElMessage } from 'element-plus';
|
||||||
|
|
||||||
|
// import WxMaterialSelect from '#/views/mp/components/wx-material-select';
|
||||||
|
import { UploadType, useBeforeUpload } from '#/views/mp/hooks/useUpload';
|
||||||
|
|
||||||
|
// 设置上传的请求头部
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
modelValue: Reply;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'update:modelValue', v: Reply): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const message = ElMessage;
|
||||||
|
|
||||||
|
const UPLOAD_URL = `${import.meta.env.VITE_BASE_URL}/admin-api/mp/material/upload-temporary`;
|
||||||
|
const HEADERS = { Authorization: `Bearer ${useAccessStore().accessToken}` };
|
||||||
|
const reply = computed<Reply>({
|
||||||
|
get: () => props.modelValue,
|
||||||
|
set: (val) => emit('update:modelValue', val),
|
||||||
|
});
|
||||||
|
|
||||||
|
const showDialog = ref(false);
|
||||||
|
const fileList = ref([]);
|
||||||
|
const uploadData = reactive({
|
||||||
|
accountId: reply.value.accountId,
|
||||||
|
type: 'image',
|
||||||
|
title: '',
|
||||||
|
introduction: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
const beforeImageUpload = (rawFile: UploadRawFile) =>
|
||||||
|
useBeforeUpload(UploadType.Image, 2)(rawFile);
|
||||||
|
|
||||||
|
const onUploadSuccess = (res: any) => {
|
||||||
|
if (res.code !== 0) {
|
||||||
|
message.error(`上传出错:${res.msg}`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 清空上传时的各种数据
|
||||||
|
fileList.value = [];
|
||||||
|
uploadData.title = '';
|
||||||
|
uploadData.introduction = '';
|
||||||
|
|
||||||
|
// 上传好的文件,本质是个素材,所以可以进行选中
|
||||||
|
selectMaterial(res.data);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onDelete = () => {
|
||||||
|
reply.value.mediaId = null;
|
||||||
|
reply.value.url = null;
|
||||||
|
reply.value.name = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectMaterial = (item: any) => {
|
||||||
|
showDialog.value = false;
|
||||||
|
|
||||||
|
// reply.value.type = 'image'
|
||||||
|
reply.value.mediaId = item.mediaId;
|
||||||
|
reply.value.url = item.url;
|
||||||
|
reply.value.name = item.name;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<!-- 情况一:已经选择好素材、或者上传好图片 -->
|
||||||
|
<div class="select-item" v-if="reply.url">
|
||||||
|
<img class="material-img" :src="reply.url" />
|
||||||
|
<p class="item-name" v-if="reply.name">{{ reply.name }}</p>
|
||||||
|
<el-row class="ope-row" justify="center">
|
||||||
|
<el-button type="danger" circle @click="onDelete">
|
||||||
|
<Icon icon="ep:delete" />
|
||||||
|
</el-button>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
<!-- 情况二:未做完上述操作 -->
|
||||||
|
<el-row v-else style="text-align: center" align="middle">
|
||||||
|
<!-- 选择素材 -->
|
||||||
|
<el-col :span="12" class="col-select">
|
||||||
|
<el-button type="success" @click="showDialog = true">
|
||||||
|
素材库选择 <Icon icon="ep:circle-check" />
|
||||||
|
</el-button>
|
||||||
|
<el-dialog
|
||||||
|
title="选择图片"
|
||||||
|
v-model="showDialog"
|
||||||
|
width="90%"
|
||||||
|
append-to-body
|
||||||
|
destroy-on-close
|
||||||
|
>
|
||||||
|
<WxMaterialSelect
|
||||||
|
type="image"
|
||||||
|
:account-id="reply.accountId"
|
||||||
|
@select-material="selectMaterial"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
|
</el-col>
|
||||||
|
<!-- 文件上传 -->
|
||||||
|
<el-col :span="12" class="col-add">
|
||||||
|
<el-upload
|
||||||
|
:action="UPLOAD_URL"
|
||||||
|
:headers="HEADERS"
|
||||||
|
multiple
|
||||||
|
:limit="1"
|
||||||
|
:file-list="fileList"
|
||||||
|
:data="uploadData"
|
||||||
|
:before-upload="beforeImageUpload"
|
||||||
|
:on-success="onUploadSuccess"
|
||||||
|
>
|
||||||
|
<el-button type="primary">上传图片</el-button>
|
||||||
|
<template #tip>
|
||||||
|
<span>
|
||||||
|
<div class="el-upload__tip">
|
||||||
|
支持 bmp/png/jpeg/jpg/gif 格式,大小不超过 2M
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</el-upload>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.select-item {
|
||||||
|
width: 280px;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 0 auto 10px;
|
||||||
|
border: 1px solid #eaeaea;
|
||||||
|
|
||||||
|
.material-img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-name {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
font-size: 12px;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
.item-infos {
|
||||||
|
width: 30%;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ope-row {
|
||||||
|
padding-top: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.col-select {
|
||||||
|
width: 49.5%;
|
||||||
|
height: 160px;
|
||||||
|
padding: 50px 0;
|
||||||
|
border: 1px solid rgb(234 234 234);
|
||||||
|
}
|
||||||
|
|
||||||
|
.col-add {
|
||||||
|
float: right;
|
||||||
|
width: 49.5%;
|
||||||
|
height: 160px;
|
||||||
|
padding: 50px 0;
|
||||||
|
border: 1px solid rgb(234 234 234);
|
||||||
|
|
||||||
|
.el-upload__tip {
|
||||||
|
line-height: 18px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,137 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import type { UploadRawFile } from 'element-plus';
|
||||||
|
|
||||||
|
import type { Reply } from './types';
|
||||||
|
|
||||||
|
import { computed, reactive, ref } from 'vue';
|
||||||
|
|
||||||
|
import { useAccessStore } from '@vben/stores';
|
||||||
|
|
||||||
|
import { ElMessage } from 'element-plus';
|
||||||
|
|
||||||
|
// import { getAccessToken } from '@/utils/auth'
|
||||||
|
import WxMaterialSelect from '#/views/mp/components/wx-material-select';
|
||||||
|
import { UploadType, useBeforeUpload } from '#/views/mp/hooks/useUpload';
|
||||||
|
|
||||||
|
// 设置上传的请求头部
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
modelValue: Reply;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'update:modelValue', v: Reply): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const message = ElMessage;
|
||||||
|
|
||||||
|
const UPLOAD_URL = `${import.meta.env.VITE_BASE_URL}/admin-api/mp/material/upload-temporary`;
|
||||||
|
const HEADERS = { Authorization: `Bearer ${useAccessStore().accessToken}` };
|
||||||
|
const reply = computed<Reply>({
|
||||||
|
get: () => props.modelValue,
|
||||||
|
set: (val) => emit('update:modelValue', val),
|
||||||
|
});
|
||||||
|
|
||||||
|
const showDialog = ref(false);
|
||||||
|
const fileList = ref([]);
|
||||||
|
const uploadData = reactive({
|
||||||
|
accountId: reply.value.accountId,
|
||||||
|
type: 'thumb', // 音乐类型为thumb
|
||||||
|
title: '',
|
||||||
|
introduction: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
const beforeImageUpload = (rawFile: UploadRawFile) =>
|
||||||
|
useBeforeUpload(UploadType.Image, 2)(rawFile);
|
||||||
|
|
||||||
|
const onUploadSuccess = (res: any) => {
|
||||||
|
if (res.code !== 0) {
|
||||||
|
message.error(`上传出错:${res.msg}`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 清空上传时的各种数据
|
||||||
|
fileList.value = [];
|
||||||
|
uploadData.title = '';
|
||||||
|
uploadData.introduction = '';
|
||||||
|
|
||||||
|
// 上传好的文件,本质是个素材,所以可以进行选中
|
||||||
|
selectMaterial(res.data);
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectMaterial = (item: any) => {
|
||||||
|
showDialog.value = false;
|
||||||
|
|
||||||
|
reply.value.thumbMediaId = item.mediaId;
|
||||||
|
reply.value.thumbMediaUrl = item.url;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<el-row align="middle" justify="center">
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-row align="middle" justify="center" class="thumb-div">
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-row align="middle" justify="center">
|
||||||
|
<img
|
||||||
|
style="width: 100px"
|
||||||
|
v-if="reply.thumbMediaUrl"
|
||||||
|
:src="reply.thumbMediaUrl"
|
||||||
|
/>
|
||||||
|
<icon v-else icon="ep:plus" />
|
||||||
|
</el-row>
|
||||||
|
<el-row align="middle" justify="center" style="margin-top: 2%">
|
||||||
|
<div class="thumb-but">
|
||||||
|
<el-upload
|
||||||
|
:action="UPLOAD_URL"
|
||||||
|
:headers="HEADERS"
|
||||||
|
multiple
|
||||||
|
:limit="1"
|
||||||
|
:file-list="fileList"
|
||||||
|
:data="uploadData"
|
||||||
|
:before-upload="beforeImageUpload"
|
||||||
|
:on-success="onUploadSuccess"
|
||||||
|
>
|
||||||
|
<template #trigger>
|
||||||
|
<el-button type="primary" link>本地上传</el-button>
|
||||||
|
</template>
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
link
|
||||||
|
@click="showDialog = true"
|
||||||
|
style="margin-left: 5px"
|
||||||
|
>
|
||||||
|
素材库选择
|
||||||
|
</el-button>
|
||||||
|
</el-upload>
|
||||||
|
</div>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-dialog
|
||||||
|
title="选择图片"
|
||||||
|
v-model="showDialog"
|
||||||
|
width="80%"
|
||||||
|
append-to-body
|
||||||
|
destroy-on-close
|
||||||
|
>
|
||||||
|
<WxMaterialSelect
|
||||||
|
type="image"
|
||||||
|
:account-id="reply.accountId"
|
||||||
|
@select-material="selectMaterial"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="18">
|
||||||
|
<el-input v-model="reply.title" placeholder="请输入标题" />
|
||||||
|
<div style="margin: 20px 0"></div>
|
||||||
|
<el-input v-model="reply.description" placeholder="请输入描述" />
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<div style="margin: 20px 0"></div>
|
||||||
|
<el-input v-model="reply.musicUrl" placeholder="请输入音乐链接" />
|
||||||
|
<div style="margin: 20px 0"></div>
|
||||||
|
<el-input v-model="reply.hqMusicUrl" placeholder="请输入高质量音乐链接" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import type { NewsType, Reply } from './types';
|
||||||
|
|
||||||
|
import { computed, ref } from 'vue';
|
||||||
|
|
||||||
|
import WxMaterialSelect from '#/views/mp/components/wx-material-select';
|
||||||
|
import WxNews from '#/views/mp/components/wx-news';
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
modelValue: Reply;
|
||||||
|
newsType: NewsType;
|
||||||
|
}>();
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'update:modelValue', v: Reply): void;
|
||||||
|
}>();
|
||||||
|
const reply = computed<Reply>({
|
||||||
|
get: () => props.modelValue,
|
||||||
|
set: (val) => emit('update:modelValue', val),
|
||||||
|
});
|
||||||
|
|
||||||
|
const showDialog = ref(false);
|
||||||
|
|
||||||
|
const selectMaterial = (item: any) => {
|
||||||
|
showDialog.value = false;
|
||||||
|
reply.value.articles = item.content.newsItem;
|
||||||
|
};
|
||||||
|
|
||||||
|
const onDelete = () => {
|
||||||
|
reply.value.articles = [];
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<el-row>
|
||||||
|
<div
|
||||||
|
class="select-item"
|
||||||
|
v-if="reply.articles && reply.articles.length > 0"
|
||||||
|
>
|
||||||
|
<WxNews :articles="reply.articles" />
|
||||||
|
<el-col class="ope-row">
|
||||||
|
<el-button type="danger" circle @click="onDelete">
|
||||||
|
<Icon icon="ep:delete" />
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
</div>
|
||||||
|
<!-- 选择素材 -->
|
||||||
|
<el-col :span="24" v-if="!reply.content">
|
||||||
|
<el-row style="text-align: center" align="middle">
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-button type="success" @click="showDialog = true">
|
||||||
|
{{
|
||||||
|
newsType === NewsType.Published
|
||||||
|
? '选择已发布图文'
|
||||||
|
: '选择草稿箱图文'
|
||||||
|
}}
|
||||||
|
<Icon icon="ep:circle-check" />
|
||||||
|
</el-button>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
<el-dialog
|
||||||
|
title="选择图文"
|
||||||
|
v-model="showDialog"
|
||||||
|
width="90%"
|
||||||
|
append-to-body
|
||||||
|
destroy-on-close
|
||||||
|
>
|
||||||
|
<WxMaterialSelect
|
||||||
|
type="news"
|
||||||
|
:account-id="reply.accountId"
|
||||||
|
:news-type="newsType"
|
||||||
|
@select-material="selectMaterial"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.select-item {
|
||||||
|
width: 280px;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 0 auto 10px;
|
||||||
|
border: 1px solid #eaeaea;
|
||||||
|
|
||||||
|
.ope-row {
|
||||||
|
padding-top: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import { computed } from 'vue';
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
modelValue?: null | string;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'update:modelValue', v: null | string): void;
|
||||||
|
(e: 'input', v: null | string): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const content = computed({
|
||||||
|
get: () => props.modelValue,
|
||||||
|
set: (val: null | string) => {
|
||||||
|
emit('update:modelValue', val);
|
||||||
|
emit('input', val);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-input
|
||||||
|
type="textarea"
|
||||||
|
:rows="5"
|
||||||
|
placeholder="请输入内容"
|
||||||
|
v-model="content"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1,148 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import type { UploadRawFile } from 'element-plus';
|
||||||
|
|
||||||
|
import type { Reply } from './types';
|
||||||
|
|
||||||
|
import { computed, reactive, ref } from 'vue';
|
||||||
|
|
||||||
|
import { useAccessStore } from '@vben/stores';
|
||||||
|
|
||||||
|
import { ElMessage } from 'element-plus';
|
||||||
|
|
||||||
|
import WxMaterialSelect from '#/views/mp/components/wx-material-select';
|
||||||
|
import WxVideoPlayer from '#/views/mp/components/wx-video-play';
|
||||||
|
import { UploadType, useBeforeUpload } from '#/views/mp/hooks/useUpload';
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
modelValue: Reply;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'update:modelValue', v: Reply): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const message = ElMessage;
|
||||||
|
|
||||||
|
const UPLOAD_URL = `${import.meta.env.VITE_BASE_URL}/admin-api/mp/material/upload-temporary`;
|
||||||
|
const HEADERS = { Authorization: `Bearer ${useAccessStore().accessToken}` };
|
||||||
|
|
||||||
|
const reply = computed<Reply>({
|
||||||
|
get: () => props.modelValue,
|
||||||
|
set: (val: Reply) => emit('update:modelValue', val),
|
||||||
|
});
|
||||||
|
|
||||||
|
const showDialog = ref(false);
|
||||||
|
const fileList = ref([]);
|
||||||
|
const uploadData = reactive({
|
||||||
|
accountId: reply.value.accountId,
|
||||||
|
type: 'video',
|
||||||
|
title: '',
|
||||||
|
introduction: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
const beforeVideoUpload = (rawFile: UploadRawFile) =>
|
||||||
|
useBeforeUpload(UploadType.Video, 10)(rawFile);
|
||||||
|
|
||||||
|
const onUploadSuccess = (res: any) => {
|
||||||
|
if (res.code !== 0) {
|
||||||
|
message.error(`上传出错:${res.msg}`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 清空上传时的各种数据
|
||||||
|
fileList.value = [];
|
||||||
|
uploadData.title = '';
|
||||||
|
uploadData.introduction = '';
|
||||||
|
|
||||||
|
selectMaterial(res.data);
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 选择素材后设置 */
|
||||||
|
const selectMaterial = (item: any) => {
|
||||||
|
showDialog.value = false;
|
||||||
|
|
||||||
|
reply.value.mediaId = item.mediaId;
|
||||||
|
reply.value.url = item.url;
|
||||||
|
reply.value.name = item.name;
|
||||||
|
|
||||||
|
// title、introduction:从 item 到 tempObjItem,因为素材里有 title、introduction
|
||||||
|
if (item.title) {
|
||||||
|
reply.value.title = item.title || '';
|
||||||
|
}
|
||||||
|
if (item.introduction) {
|
||||||
|
reply.value.description = item.introduction || '';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<el-row>
|
||||||
|
<el-input
|
||||||
|
v-model="reply.title"
|
||||||
|
class="input-margin-bottom"
|
||||||
|
placeholder="请输入标题"
|
||||||
|
/>
|
||||||
|
<el-input
|
||||||
|
class="input-margin-bottom"
|
||||||
|
v-model="reply.description"
|
||||||
|
placeholder="请输入描述"
|
||||||
|
/>
|
||||||
|
<el-row class="ope-row" justify="center">
|
||||||
|
<WxVideoPlayer v-if="reply.url" :url="reply.url" />
|
||||||
|
</el-row>
|
||||||
|
<el-col>
|
||||||
|
<el-row style="text-align: center" align="middle">
|
||||||
|
<!-- 选择素材 -->
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-button type="success" @click="showDialog = true">
|
||||||
|
素材库选择 <Icon icon="ep:circle-check" />
|
||||||
|
</el-button>
|
||||||
|
<el-dialog
|
||||||
|
title="选择视频"
|
||||||
|
v-model="showDialog"
|
||||||
|
width="90%"
|
||||||
|
append-to-body
|
||||||
|
destroy-on-close
|
||||||
|
>
|
||||||
|
<WxMaterialSelect
|
||||||
|
type="video"
|
||||||
|
:account-id="reply.accountId"
|
||||||
|
@select-material="selectMaterial"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
|
</el-col>
|
||||||
|
<!-- 文件上传 -->
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-upload
|
||||||
|
:action="UPLOAD_URL"
|
||||||
|
:headers="HEADERS"
|
||||||
|
multiple
|
||||||
|
:limit="1"
|
||||||
|
:file-list="fileList"
|
||||||
|
:data="uploadData"
|
||||||
|
:before-upload="beforeVideoUpload"
|
||||||
|
:on-success="onUploadSuccess"
|
||||||
|
>
|
||||||
|
<el-button type="primary">
|
||||||
|
新建视频 <Icon icon="ep:upload" />
|
||||||
|
</el-button>
|
||||||
|
</el-upload>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.input-margin-bottom {
|
||||||
|
margin-bottom: 2%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ope-row {
|
||||||
|
width: 100%;
|
||||||
|
padding-top: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,174 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import type { UploadRawFile } from 'element-plus';
|
||||||
|
|
||||||
|
import type { Reply } from './types';
|
||||||
|
|
||||||
|
import { computed, reactive, ref } from 'vue';
|
||||||
|
|
||||||
|
import { useAccessStore } from '@vben/stores';
|
||||||
|
|
||||||
|
import { ElMessage } from 'element-plus';
|
||||||
|
|
||||||
|
import WxMaterialSelect from '#/views/mp/components/wx-material-select';
|
||||||
|
import WxVoicePlayer from '#/views/mp/components/wx-voice-play';
|
||||||
|
import { UploadType, useBeforeUpload } from '#/views/mp/hooks/useUpload';
|
||||||
|
|
||||||
|
// 设置上传的请求头部
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
modelValue: Reply;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'update:modelValue', v: Reply): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const message = ElMessage;
|
||||||
|
|
||||||
|
const UPLOAD_URL = `${import.meta.env.VITE_BASE_URL}/admin-api/mp/material/upload-temporary`;
|
||||||
|
const HEADERS = { Authorization: `Bearer ${useAccessStore().accessToken}` };
|
||||||
|
const reply = computed<Reply>({
|
||||||
|
get: () => props.modelValue,
|
||||||
|
set: (val: Reply) => emit('update:modelValue', val),
|
||||||
|
});
|
||||||
|
|
||||||
|
const showDialog = ref(false);
|
||||||
|
const fileList = ref([]);
|
||||||
|
const uploadData = reactive({
|
||||||
|
accountId: reply.value.accountId,
|
||||||
|
type: 'voice',
|
||||||
|
title: '',
|
||||||
|
introduction: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
const beforeVoiceUpload = (rawFile: UploadRawFile) =>
|
||||||
|
useBeforeUpload(UploadType.Voice, 10)(rawFile);
|
||||||
|
|
||||||
|
const onUploadSuccess = (res: any) => {
|
||||||
|
if (res.code !== 0) {
|
||||||
|
message.error(`上传出错:${res.msg}`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 清空上传时的各种数据
|
||||||
|
fileList.value = [];
|
||||||
|
uploadData.title = '';
|
||||||
|
uploadData.introduction = '';
|
||||||
|
|
||||||
|
// 上传好的文件,本质是个素材,所以可以进行选中
|
||||||
|
selectMaterial(res.data);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onDelete = () => {
|
||||||
|
reply.value.mediaId = null;
|
||||||
|
reply.value.url = null;
|
||||||
|
reply.value.name = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectMaterial = (item: Reply) => {
|
||||||
|
showDialog.value = false;
|
||||||
|
|
||||||
|
// reply.value.type = ReplyType.Voice
|
||||||
|
reply.value.mediaId = item.mediaId;
|
||||||
|
reply.value.url = item.url;
|
||||||
|
reply.value.name = item.name;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div class="select-item2" v-if="reply.url">
|
||||||
|
<p class="item-name">{{ reply.name }}</p>
|
||||||
|
<el-row class="ope-row" justify="center">
|
||||||
|
<WxVoicePlayer :url="reply.url" />
|
||||||
|
</el-row>
|
||||||
|
<el-row class="ope-row" justify="center">
|
||||||
|
<el-button type="danger" circle @click="onDelete">
|
||||||
|
<Icon icon="ep:delete" />
|
||||||
|
</el-button>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
<el-row v-else style="text-align: center">
|
||||||
|
<!-- 选择素材 -->
|
||||||
|
<el-col :span="12" class="col-select">
|
||||||
|
<el-button type="success" @click="showDialog = true">
|
||||||
|
素材库选择<Icon icon="ep:circle-check" />
|
||||||
|
</el-button>
|
||||||
|
<el-dialog
|
||||||
|
title="选择语音"
|
||||||
|
v-model="showDialog"
|
||||||
|
width="90%"
|
||||||
|
append-to-body
|
||||||
|
destroy-on-close
|
||||||
|
>
|
||||||
|
<WxMaterialSelect
|
||||||
|
type="voice"
|
||||||
|
:account-id="reply.accountId"
|
||||||
|
@select-material="selectMaterial"
|
||||||
|
/>
|
||||||
|
</el-dialog>
|
||||||
|
</el-col>
|
||||||
|
<!-- 文件上传 -->
|
||||||
|
<el-col :span="12" class="col-add">
|
||||||
|
<el-upload
|
||||||
|
:action="UPLOAD_URL"
|
||||||
|
:headers="HEADERS"
|
||||||
|
multiple
|
||||||
|
:limit="1"
|
||||||
|
:file-list="fileList"
|
||||||
|
:data="uploadData"
|
||||||
|
:before-upload="beforeVoiceUpload"
|
||||||
|
:on-success="onUploadSuccess"
|
||||||
|
>
|
||||||
|
<el-button type="primary">点击上传</el-button>
|
||||||
|
<template #tip>
|
||||||
|
<div class="el-upload__tip">
|
||||||
|
格式支持 mp3/wma/wav/amr,文件大小不超过 2M,播放长度不超过 60s
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-upload>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.select-item2 {
|
||||||
|
padding: 10px;
|
||||||
|
margin: 0 auto 10px;
|
||||||
|
border: 1px solid #eaeaea;
|
||||||
|
|
||||||
|
.item-name {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
font-size: 12px;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
.ope-row {
|
||||||
|
width: 100%;
|
||||||
|
padding-top: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.col-select {
|
||||||
|
width: 49.5%;
|
||||||
|
height: 160px;
|
||||||
|
padding: 50px 0;
|
||||||
|
border: 1px solid rgb(234 234 234);
|
||||||
|
}
|
||||||
|
|
||||||
|
.col-add {
|
||||||
|
float: right;
|
||||||
|
width: 49.5%;
|
||||||
|
height: 160px;
|
||||||
|
padding: 50px 0;
|
||||||
|
border: 1px solid rgb(234 234 234);
|
||||||
|
|
||||||
|
.el-upload__tip {
|
||||||
|
line-height: 18px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
import type { Ref } from 'vue';
|
||||||
|
|
||||||
|
import { unref } from 'vue';
|
||||||
|
|
||||||
|
enum ReplyType {
|
||||||
|
Image = 'image',
|
||||||
|
Music = 'music',
|
||||||
|
News = 'news',
|
||||||
|
Text = 'text',
|
||||||
|
Video = 'video',
|
||||||
|
Voice = 'voice',
|
||||||
|
}
|
||||||
|
|
||||||
|
interface _Reply {
|
||||||
|
accountId: number;
|
||||||
|
type: ReplyType;
|
||||||
|
name?: null | string;
|
||||||
|
content?: null | string;
|
||||||
|
mediaId?: null | string;
|
||||||
|
url?: null | string;
|
||||||
|
title?: null | string;
|
||||||
|
description?: null | string;
|
||||||
|
thumbMediaId?: null | string;
|
||||||
|
thumbMediaUrl?: null | string;
|
||||||
|
musicUrl?: null | string;
|
||||||
|
hqMusicUrl?: null | string;
|
||||||
|
introduction?: null | string;
|
||||||
|
articles?: any[];
|
||||||
|
}
|
||||||
|
|
||||||
|
type Reply = _Reply; // Partial<_Reply>
|
||||||
|
|
||||||
|
enum NewsType {
|
||||||
|
Draft = '2',
|
||||||
|
Published = '1',
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 利用旧的reply[accountId, type]初始化新的Reply */
|
||||||
|
const createEmptyReply = (old: Ref<Reply> | Reply): Reply => {
|
||||||
|
return {
|
||||||
|
accountId: unref(old).accountId,
|
||||||
|
type: unref(old).type,
|
||||||
|
name: null,
|
||||||
|
content: null,
|
||||||
|
mediaId: null,
|
||||||
|
url: null,
|
||||||
|
title: null,
|
||||||
|
description: null,
|
||||||
|
thumbMediaId: null,
|
||||||
|
thumbMediaUrl: null,
|
||||||
|
musicUrl: null,
|
||||||
|
hqMusicUrl: null,
|
||||||
|
introduction: null,
|
||||||
|
articles: [],
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
export { createEmptyReply, NewsType, type Reply, ReplyType };
|
||||||
8
apps/web-ele/src/views/mp/components/wx-reply/index.ts
Normal file
8
apps/web-ele/src/views/mp/components/wx-reply/index.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
export {
|
||||||
|
createEmptyReply,
|
||||||
|
NewsType,
|
||||||
|
type Reply,
|
||||||
|
ReplyType,
|
||||||
|
} from './components/types';
|
||||||
|
|
||||||
|
export { default } from './main.vue';
|
||||||
215
apps/web-ele/src/views/mp/components/wx-reply/main.vue
Normal file
215
apps/web-ele/src/views/mp/components/wx-reply/main.vue
Normal file
@@ -0,0 +1,215 @@
|
|||||||
|
<!--
|
||||||
|
- Copyright (C) 2018-2019
|
||||||
|
- All rights reserved, Designed By www.joolun.com
|
||||||
|
芋道源码:
|
||||||
|
① 移除多余的 rep 为前缀的变量,让 message 消息更简单
|
||||||
|
② 代码优化,补充注释,提升阅读性
|
||||||
|
③ 优化消息的临时缓存策略,发送消息时,只清理被发送消息的 tab,不会强制切回到 text 输入
|
||||||
|
④ 支持发送【视频】消息时,支持新建视频
|
||||||
|
-->
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import type { Reply } from './components/types';
|
||||||
|
|
||||||
|
import { computed, ref, unref, watch } from 'vue';
|
||||||
|
|
||||||
|
import TabImage from './components/TabImage.vue';
|
||||||
|
import TabMusic from './components/TabMusic.vue';
|
||||||
|
import TabNews from './components/TabNews.vue';
|
||||||
|
import TabText from './components/TabText.vue';
|
||||||
|
import TabVideo from './components/TabVideo.vue';
|
||||||
|
import TabVoice from './components/TabVoice.vue';
|
||||||
|
import { createEmptyReply, NewsType, ReplyType } from './components/types';
|
||||||
|
|
||||||
|
defineOptions({ name: 'WxReplySelect' });
|
||||||
|
|
||||||
|
const props = withDefaults(
|
||||||
|
defineProps<{
|
||||||
|
modelValue: Reply;
|
||||||
|
newsType?: NewsType;
|
||||||
|
}>(),
|
||||||
|
{
|
||||||
|
newsType: () => NewsType.Published,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'update:modelValue', v: Reply): void;
|
||||||
|
}>();
|
||||||
|
const reply = computed<Reply>({
|
||||||
|
get: () => props.modelValue,
|
||||||
|
set: (val) => emit('update:modelValue', val),
|
||||||
|
});
|
||||||
|
// 作为多个标签保存各自Reply的缓存
|
||||||
|
const tabCache = new Map<ReplyType, Reply>();
|
||||||
|
// 采用独立的ref来保存当前tab,避免在watch标签变化,对reply进行赋值会产生了循环调用
|
||||||
|
const currentTab = ref<ReplyType>(props.modelValue.type || ReplyType.Text);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
currentTab,
|
||||||
|
(newTab, oldTab) => {
|
||||||
|
// 第一次进入:oldTab 为 undefined
|
||||||
|
// 判断 newTab 是因为 Reply 为 Partial
|
||||||
|
if (oldTab === undefined || newTab === undefined) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
tabCache.set(oldTab, unref(reply));
|
||||||
|
|
||||||
|
// 从缓存里面取出新tab内容,有则覆盖Reply,没有则创建空Reply
|
||||||
|
const temp = tabCache.get(newTab);
|
||||||
|
if (temp) {
|
||||||
|
reply.value = temp;
|
||||||
|
} else {
|
||||||
|
const newData = createEmptyReply(reply);
|
||||||
|
newData.type = newTab;
|
||||||
|
reply.value = newData;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
immediate: true,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
/** 清除除了`type`, `accountId`的字段 */
|
||||||
|
const clear = () => {
|
||||||
|
reply.value = createEmptyReply(reply);
|
||||||
|
};
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
clear,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-tabs type="border-card" v-model="currentTab">
|
||||||
|
<!-- 类型 1:文本 -->
|
||||||
|
<el-tab-pane :name="ReplyType.Text">
|
||||||
|
<template #label>
|
||||||
|
<el-row align="middle"><Icon icon="ep:document" /> 文本</el-row>
|
||||||
|
</template>
|
||||||
|
<TabText v-model="reply.content" />
|
||||||
|
</el-tab-pane>
|
||||||
|
|
||||||
|
<!-- 类型 2:图片 -->
|
||||||
|
<el-tab-pane :name="ReplyType.Image">
|
||||||
|
<template #label>
|
||||||
|
<el-row align="middle">
|
||||||
|
<Icon icon="ep:picture" class="mr-5px" /> 图片
|
||||||
|
</el-row>
|
||||||
|
</template>
|
||||||
|
<TabImage v-model="reply" />
|
||||||
|
</el-tab-pane>
|
||||||
|
|
||||||
|
<!-- 类型 3:语音 -->
|
||||||
|
<el-tab-pane :name="ReplyType.Voice">
|
||||||
|
<template #label>
|
||||||
|
<el-row align="middle"><Icon icon="ep:phone" /> 语音</el-row>
|
||||||
|
</template>
|
||||||
|
<TabVoice v-model="reply" />
|
||||||
|
</el-tab-pane>
|
||||||
|
|
||||||
|
<!-- 类型 4:视频 -->
|
||||||
|
<el-tab-pane :name="ReplyType.Video">
|
||||||
|
<template #label>
|
||||||
|
<el-row align="middle"><Icon icon="ep:share" /> 视频</el-row>
|
||||||
|
</template>
|
||||||
|
<TabVideo v-model="reply" />
|
||||||
|
</el-tab-pane>
|
||||||
|
|
||||||
|
<!-- 类型 5:图文 -->
|
||||||
|
<el-tab-pane :name="ReplyType.News">
|
||||||
|
<template #label>
|
||||||
|
<el-row align="middle"><Icon icon="ep:reading" /> 图文</el-row>
|
||||||
|
</template>
|
||||||
|
<TabNews v-model="reply" :news-type="newsType" />
|
||||||
|
</el-tab-pane>
|
||||||
|
|
||||||
|
<!-- 类型 6:音乐 -->
|
||||||
|
<el-tab-pane :name="ReplyType.Music">
|
||||||
|
<template #label>
|
||||||
|
<el-row align="middle"><Icon icon="ep:service" />音乐</el-row>
|
||||||
|
</template>
|
||||||
|
<TabMusic v-model="reply" />
|
||||||
|
</el-tab-pane>
|
||||||
|
</el-tabs>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.select-item {
|
||||||
|
width: 280px;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 0 auto 10px;
|
||||||
|
border: 1px solid #eaeaea;
|
||||||
|
}
|
||||||
|
|
||||||
|
.select-item2 {
|
||||||
|
padding: 10px;
|
||||||
|
margin: 0 auto 10px;
|
||||||
|
border: 1px solid #eaeaea;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ope-row {
|
||||||
|
padding-top: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-margin-bottom {
|
||||||
|
margin-bottom: 2%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-name {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
font-size: 12px;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-form-item__content {
|
||||||
|
line-height: unset !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.col-select {
|
||||||
|
width: 49.5%;
|
||||||
|
height: 160px;
|
||||||
|
padding: 50px 0;
|
||||||
|
border: 1px solid rgb(234 234 234);
|
||||||
|
}
|
||||||
|
|
||||||
|
.col-select2 {
|
||||||
|
height: 160px;
|
||||||
|
padding: 50px 0;
|
||||||
|
border: 1px solid rgb(234 234 234);
|
||||||
|
}
|
||||||
|
|
||||||
|
.col-add {
|
||||||
|
float: right;
|
||||||
|
width: 49.5%;
|
||||||
|
height: 160px;
|
||||||
|
padding: 50px 0;
|
||||||
|
border: 1px solid rgb(234 234 234);
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatar-uploader-icon {
|
||||||
|
width: 100px !important;
|
||||||
|
height: 100px !important;
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 100px !important;
|
||||||
|
color: #8c939d;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #d9d9d9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.material-img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumb-div {
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-infos {
|
||||||
|
width: 30%;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export { default } from './main.vue';
|
||||||
76
apps/web-ele/src/views/mp/components/wx-video-play/main.vue
Normal file
76
apps/web-ele/src/views/mp/components/wx-video-play/main.vue
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
<!--
|
||||||
|
- Copyright (C) 2018-2019
|
||||||
|
- All rights reserved, Designed By www.joolun.com
|
||||||
|
【微信消息 - 视频】
|
||||||
|
芋道源码:
|
||||||
|
① bug 修复:
|
||||||
|
1)joolun 的做法:使用 mediaId 从微信公众号,下载对应的 mp4 素材,从而播放内容;
|
||||||
|
存在的问题:mediaId 有效期是 3 天,超过时间后无法播放
|
||||||
|
2)重构后的做法:后端接收到微信公众号的视频消息后,将视频消息的 media_id 的文件内容保存到文件服务器中,这样前端可以直接使用 URL 播放。
|
||||||
|
② 体验优化:弹窗关闭后,自动暂停视频的播放
|
||||||
|
|
||||||
|
-->
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
// import { VideoPlayer } from '@videojs-player/vue';
|
||||||
|
|
||||||
|
// import 'video.js/dist/video-js.css';
|
||||||
|
|
||||||
|
defineOptions({ name: 'WxVideoPlayer' });
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
url: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const dialogVideo = ref(false);
|
||||||
|
|
||||||
|
// const handleEvent = (log) => {
|
||||||
|
// console.log('Basic player event', log)
|
||||||
|
// }
|
||||||
|
|
||||||
|
const playVideo = () => {
|
||||||
|
dialogVideo.value = true;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div @click="playVideo()">
|
||||||
|
<!-- 提示 -->
|
||||||
|
<div>
|
||||||
|
<Icon icon="ep:video-play" :size="32" class="mr-5px" />
|
||||||
|
<p class="text-sm">点击播放视频</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 弹窗播放 -->
|
||||||
|
<el-dialog v-model="dialogVideo" title="视频播放" append-to-body>
|
||||||
|
<VideoPlayer
|
||||||
|
v-if="dialogVideo"
|
||||||
|
class="video-player vjs-big-play-centered"
|
||||||
|
:src="props.url"
|
||||||
|
poster=""
|
||||||
|
crossorigin="anonymous"
|
||||||
|
controls
|
||||||
|
playsinline
|
||||||
|
:volume="0.6"
|
||||||
|
:width="800"
|
||||||
|
:playback-rates="[0.7, 1.0, 1.5, 2.0]"
|
||||||
|
/>
|
||||||
|
<!-- 事件,暫時沒用
|
||||||
|
@mounted="handleMounted"-->
|
||||||
|
<!-- @ready="handleEvent($event)"-->
|
||||||
|
<!-- @play="handleEvent($event)"-->
|
||||||
|
<!-- @pause="handleEvent($event)"-->
|
||||||
|
<!-- @ended="handleEvent($event)"-->
|
||||||
|
<!-- @loadeddata="handleEvent($event)"-->
|
||||||
|
<!-- @waiting="handleEvent($event)"-->
|
||||||
|
<!-- @playing="handleEvent($event)"-->
|
||||||
|
<!-- @canplay="handleEvent($event)"-->
|
||||||
|
<!-- @canplaythrough="handleEvent($event)"-->
|
||||||
|
<!-- @timeupdate="handleEvent(player?.currentTime())"-->
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export { default } from './main.vue';
|
||||||
108
apps/web-ele/src/views/mp/components/wx-voice-play/main.vue
Normal file
108
apps/web-ele/src/views/mp/components/wx-voice-play/main.vue
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
<!--
|
||||||
|
- Copyright (C) 2018-2019
|
||||||
|
- All rights reserved, Designed By www.joolun.com
|
||||||
|
【微信消息 - 语音】
|
||||||
|
芋道源码:
|
||||||
|
① bug 修复:
|
||||||
|
1)joolun 的做法:使用 mediaId 从微信公众号,下载对应的 mp4 素材,从而播放内容;
|
||||||
|
存在的问题:mediaId 有效期是 3 天,超过时间后无法播放
|
||||||
|
2)重构后的做法:后端接收到微信公众号的视频消息后,将视频消息的 media_id 的文件内容保存到文件服务器中,这样前端可以直接使用 URL 播放。
|
||||||
|
② 代码优化:将 props 中的 reply 调成为 data 中对应的属性,并补充相关注释
|
||||||
|
-->
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
// 因为微信语音是 amr 格式,所以需要用到 amr 解码器:https://www.npmjs.com/package/benz-amr-recorder
|
||||||
|
import BenzAMRRecorder from 'benz-amr-recorder';
|
||||||
|
|
||||||
|
defineOptions({ name: 'WxVoicePlayer' });
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
url: {
|
||||||
|
type: String, // 语音地址,例如说:https://www.iocoder.cn/xxx.amr
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
content: {
|
||||||
|
type: String, // 语音文本
|
||||||
|
required: false,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const amr = ref();
|
||||||
|
const playing = ref(false);
|
||||||
|
const duration = ref();
|
||||||
|
|
||||||
|
/** 处理点击,播放或暂停 */
|
||||||
|
const playVoice = () => {
|
||||||
|
// 情况一:未初始化,则创建 BenzAMRRecorder
|
||||||
|
if (amr.value === undefined) {
|
||||||
|
amrInit();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 情况二:已经初始化,则根据情况播放或暂时
|
||||||
|
if (amr.value.isPlaying()) {
|
||||||
|
amrStop();
|
||||||
|
} else {
|
||||||
|
amrPlay();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 音频初始化 */
|
||||||
|
const amrInit = () => {
|
||||||
|
amr.value = new BenzAMRRecorder();
|
||||||
|
// 设置播放
|
||||||
|
amr.value.initWithUrl(props.url).then(() => {
|
||||||
|
amrPlay();
|
||||||
|
duration.value = amr.value.getDuration();
|
||||||
|
});
|
||||||
|
// 监听暂停
|
||||||
|
amr.value.onEnded(() => {
|
||||||
|
playing.value = false;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 音频播放 */
|
||||||
|
const amrPlay = () => {
|
||||||
|
playing.value = true;
|
||||||
|
amr.value.play();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 音频暂停 */
|
||||||
|
const amrStop = () => {
|
||||||
|
playing.value = false;
|
||||||
|
amr.value.stop();
|
||||||
|
};
|
||||||
|
// TODO 芋艿:下面样式有点问题
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="wx-voice-div" @click="playVoice">
|
||||||
|
<el-icon>
|
||||||
|
<Icon v-if="playing !== true" icon="ep:video-play" :size="32" />
|
||||||
|
<Icon v-else icon="ep:video-pause" :size="32" />
|
||||||
|
<span class="amr-duration" v-if="duration">{{ duration }} 秒</span>
|
||||||
|
</el-icon>
|
||||||
|
<div v-if="content">
|
||||||
|
<el-tag type="success" size="small">语音识别</el-tag>
|
||||||
|
{{ content }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.wx-voice-div {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 120px;
|
||||||
|
height: 50px;
|
||||||
|
padding: 5px;
|
||||||
|
background-color: #eaeaea;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.amr-duration {
|
||||||
|
margin-left: 5px;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
67
apps/web-ele/src/views/mp/hooks/useUpload.ts
Normal file
67
apps/web-ele/src/views/mp/hooks/useUpload.ts
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
import type { UploadRawFile } from 'element-plus';
|
||||||
|
|
||||||
|
import { ElMessage } from 'element-plus';
|
||||||
|
|
||||||
|
const message = ElMessage; // 消息
|
||||||
|
|
||||||
|
enum UploadType {
|
||||||
|
Image = 'image',
|
||||||
|
Video = 'video',
|
||||||
|
Voice = 'voice',
|
||||||
|
}
|
||||||
|
|
||||||
|
const useBeforeUpload = (type: UploadType, maxSizeMB: number) => {
|
||||||
|
const fn = (rawFile: UploadRawFile): boolean => {
|
||||||
|
let allowTypes: string[] = [];
|
||||||
|
let name = '';
|
||||||
|
|
||||||
|
switch (type) {
|
||||||
|
case UploadType.Image: {
|
||||||
|
allowTypes = [
|
||||||
|
'image/jpeg',
|
||||||
|
'image/png',
|
||||||
|
'image/gif',
|
||||||
|
'image/bmp',
|
||||||
|
'image/jpg',
|
||||||
|
];
|
||||||
|
maxSizeMB = 2;
|
||||||
|
name = '图片';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case UploadType.Video: {
|
||||||
|
allowTypes = ['video/mp4'];
|
||||||
|
maxSizeMB = 10;
|
||||||
|
name = '视频';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case UploadType.Voice: {
|
||||||
|
allowTypes = [
|
||||||
|
'audio/mp3',
|
||||||
|
'audio/mpeg',
|
||||||
|
'audio/wma',
|
||||||
|
'audio/wav',
|
||||||
|
'audio/amr',
|
||||||
|
];
|
||||||
|
maxSizeMB = 2;
|
||||||
|
name = '语音';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 格式不正确
|
||||||
|
if (!allowTypes.includes(rawFile.type)) {
|
||||||
|
message.error(`上传${name}格式不对!`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// 大小不正确
|
||||||
|
if (rawFile.size / 1024 / 1024 > maxSizeMB) {
|
||||||
|
message.error(`上传${name}大小不能超过${maxSizeMB}M!`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
return fn;
|
||||||
|
};
|
||||||
|
|
||||||
|
export { UploadType, useBeforeUpload };
|
||||||
BIN
apps/web-ele/src/views/mp/menu/assets/iphone_backImg.png
Normal file
BIN
apps/web-ele/src/views/mp/menu/assets/iphone_backImg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
BIN
apps/web-ele/src/views/mp/menu/assets/menu_foot.png
Normal file
BIN
apps/web-ele/src/views/mp/menu/assets/menu_foot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
BIN
apps/web-ele/src/views/mp/menu/assets/menu_head.png
Normal file
BIN
apps/web-ele/src/views/mp/menu/assets/menu_head.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
42
apps/web-ele/src/views/mp/menu/components/menuOptions.ts
Normal file
42
apps/web-ele/src/views/mp/menu/components/menuOptions.ts
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
export default [
|
||||||
|
{
|
||||||
|
value: 'view',
|
||||||
|
label: '跳转网页',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'miniprogram',
|
||||||
|
label: '跳转小程序',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'click',
|
||||||
|
label: '点击回复',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'article_view_limited',
|
||||||
|
label: '跳转图文消息',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'scancode_push',
|
||||||
|
label: '扫码直接返回结果',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'scancode_waitmsg',
|
||||||
|
label: '扫码回复',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'pic_sysphoto',
|
||||||
|
label: '系统拍照发图',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'pic_photo_or_album',
|
||||||
|
label: '拍照或者相册',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'pic_weixin',
|
||||||
|
label: '微信相册',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: 'location_select',
|
||||||
|
label: '选择地理位置',
|
||||||
|
},
|
||||||
|
];
|
||||||
73
apps/web-ele/src/views/mp/menu/components/types.ts
Normal file
73
apps/web-ele/src/views/mp/menu/components/types.ts
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
export interface Replay {
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
picUrl: string;
|
||||||
|
url: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type MenuType =
|
||||||
|
| ''
|
||||||
|
| 'article_view_limited'
|
||||||
|
| 'click'
|
||||||
|
| 'location_select'
|
||||||
|
| 'pic_photo_or_album'
|
||||||
|
| 'pic_sysphoto'
|
||||||
|
| 'pic_weixin'
|
||||||
|
| 'scancode_push'
|
||||||
|
| 'scancode_waitmsg'
|
||||||
|
| 'view';
|
||||||
|
|
||||||
|
interface _RawMenu {
|
||||||
|
// db
|
||||||
|
id: number;
|
||||||
|
parentId: number;
|
||||||
|
accountId: number;
|
||||||
|
appId: string;
|
||||||
|
createTime: number;
|
||||||
|
|
||||||
|
// mp-native
|
||||||
|
name: string;
|
||||||
|
menuKey: string;
|
||||||
|
type: MenuType;
|
||||||
|
url: string;
|
||||||
|
miniProgramAppId: string;
|
||||||
|
miniProgramPagePath: string;
|
||||||
|
articleId: string;
|
||||||
|
replyMessageType: string;
|
||||||
|
replyContent: string;
|
||||||
|
replyMediaId: string;
|
||||||
|
replyMediaUrl: string;
|
||||||
|
replyThumbMediaId: string;
|
||||||
|
replyThumbMediaUrl: string;
|
||||||
|
replyTitle: string;
|
||||||
|
replyDescription: string;
|
||||||
|
replyArticles: Replay;
|
||||||
|
replyMusicUrl: string;
|
||||||
|
replyHqMusicUrl: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type RawMenu = Partial<_RawMenu>;
|
||||||
|
|
||||||
|
interface _Reply {
|
||||||
|
type: string;
|
||||||
|
accountId: number;
|
||||||
|
content: string;
|
||||||
|
mediaId: string;
|
||||||
|
url: string;
|
||||||
|
thumbMediaId: string;
|
||||||
|
thumbMediaUrl: string;
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
articles: null | Replay[];
|
||||||
|
musicUrl: string;
|
||||||
|
hqMusicUrl: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type Reply = Partial<_Reply>;
|
||||||
|
|
||||||
|
interface _Menu extends RawMenu {
|
||||||
|
children: _Menu[];
|
||||||
|
reply: Reply;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type Menu = Partial<_Menu>;
|
||||||
9
apps/web-ele/src/views/mp/menu/data.ts
Normal file
9
apps/web-ele/src/views/mp/menu/data.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/** 菜单未选中标识 */
|
||||||
|
export const MENU_NOT_SELECTED = '__MENU_NOT_SELECTED__';
|
||||||
|
|
||||||
|
/** 菜单级别枚举 */
|
||||||
|
export enum Level {
|
||||||
|
Child = '2',
|
||||||
|
Parent = '1',
|
||||||
|
Undefined = '0',
|
||||||
|
}
|
||||||
411
apps/web-ele/src/views/mp/menu/index.vue
Normal file
411
apps/web-ele/src/views/mp/menu/index.vue
Normal file
@@ -0,0 +1,411 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import type { Menu, RawMenu } from './components/types';
|
||||||
|
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
import { confirm, ContentWrap, DocAlert, Page } from '@vben/common-ui';
|
||||||
|
|
||||||
|
import {
|
||||||
|
ElButton,
|
||||||
|
ElForm,
|
||||||
|
ElFormItem,
|
||||||
|
ElLoading,
|
||||||
|
ElMessage,
|
||||||
|
} from 'element-plus';
|
||||||
|
|
||||||
|
import * as MpMenuApi from '#/api/mp/menu';
|
||||||
|
import * as UtilsTree from '#/utils/tree';
|
||||||
|
import WxAccountSelect from '#/views/mp/components/wx-account-select/main.vue';
|
||||||
|
import { Level, MENU_NOT_SELECTED } from '#/views/mp/menu/data';
|
||||||
|
import MenuEditor from '#/views/mp/menu/modules/menu-editor.vue';
|
||||||
|
import MenuPreviewer from '#/views/mp/menu/modules/menu-previewer.vue';
|
||||||
|
|
||||||
|
defineOptions({ name: 'MpMenu' });
|
||||||
|
|
||||||
|
// ======================== 列表查询 ========================
|
||||||
|
const loading = ref(false); // 遮罩层
|
||||||
|
const accountId = ref(-1);
|
||||||
|
const accountName = ref<string>('');
|
||||||
|
const menuList = ref<Menu[]>([]);
|
||||||
|
|
||||||
|
// ======================== 菜单操作 ========================
|
||||||
|
// 当前选中菜单编码:
|
||||||
|
// * 一级('x')
|
||||||
|
// * 二级('x-y')
|
||||||
|
// * 未选中(MENU_NOT_SELECTED)
|
||||||
|
const activeIndex = ref<string>(MENU_NOT_SELECTED);
|
||||||
|
// 二级菜单显示标志: 归属的一级菜单index
|
||||||
|
// * 未初始化:-1
|
||||||
|
// * 初始化:x
|
||||||
|
const parentIndex = ref(-1);
|
||||||
|
|
||||||
|
// ======================== 菜单编辑 ========================
|
||||||
|
const showRightPanel = ref(false); // 右边配置显示默认详情还是配置详情
|
||||||
|
const isParent = ref<boolean>(true); // 是否一级菜单,控制MenuEditor中name字段长度
|
||||||
|
const activeMenu = ref<Menu>({}); // 选中菜单,MenuEditor的modelValue
|
||||||
|
|
||||||
|
// 一些临时值放在这里进行判断,如果放在 activeMenu,由于引用关系,menu 也会多了多余的参数
|
||||||
|
const tempSelfObj = ref<{
|
||||||
|
grand: Level;
|
||||||
|
x: number;
|
||||||
|
y: number;
|
||||||
|
}>({
|
||||||
|
grand: Level.Undefined,
|
||||||
|
x: 0,
|
||||||
|
y: 0,
|
||||||
|
});
|
||||||
|
const dialogNewsVisible = ref(false); // 跳转图文时的素材选择弹窗
|
||||||
|
|
||||||
|
/** 侦听公众号变化 */
|
||||||
|
const onAccountChanged = (id: number, name: string) => {
|
||||||
|
accountId.value = id;
|
||||||
|
accountName.value = name;
|
||||||
|
getList();
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 查询并转换菜单 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true;
|
||||||
|
try {
|
||||||
|
const data = await MpMenuApi.getMenuList(accountId.value);
|
||||||
|
const menuData = menuListToFrontend(data);
|
||||||
|
menuList.value = UtilsTree.handleTree(menuData, 'id');
|
||||||
|
} finally {
|
||||||
|
loading.value = false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
resetForm();
|
||||||
|
getList();
|
||||||
|
};
|
||||||
|
|
||||||
|
// 将后端返回的 menuList,转换成前端的 menuList
|
||||||
|
const menuListToFrontend = (list: any[]) => {
|
||||||
|
if (!list) return [];
|
||||||
|
|
||||||
|
const result: RawMenu[] = [];
|
||||||
|
list.forEach((item: RawMenu) => {
|
||||||
|
const menu: any = {
|
||||||
|
...item,
|
||||||
|
};
|
||||||
|
menu.reply = {
|
||||||
|
type: item.replyMessageType,
|
||||||
|
accountId: item.accountId,
|
||||||
|
content: item.replyContent,
|
||||||
|
mediaId: item.replyMediaId,
|
||||||
|
url: item.replyMediaUrl,
|
||||||
|
title: item.replyTitle,
|
||||||
|
description: item.replyDescription,
|
||||||
|
thumbMediaId: item.replyThumbMediaId,
|
||||||
|
thumbMediaUrl: item.replyThumbMediaUrl,
|
||||||
|
articles: item.replyArticles,
|
||||||
|
musicUrl: item.replyMusicUrl,
|
||||||
|
hqMusicUrl: item.replyHqMusicUrl,
|
||||||
|
};
|
||||||
|
result.push(menu as RawMenu);
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
// 重置表单,清空表单数据
|
||||||
|
const resetForm = () => {
|
||||||
|
// 菜单操作
|
||||||
|
activeIndex.value = MENU_NOT_SELECTED;
|
||||||
|
parentIndex.value = -1;
|
||||||
|
|
||||||
|
// 菜单编辑
|
||||||
|
showRightPanel.value = false;
|
||||||
|
activeMenu.value = {};
|
||||||
|
tempSelfObj.value = { grand: Level.Undefined, x: 0, y: 0 };
|
||||||
|
dialogNewsVisible.value = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
// ======================== 菜单操作 ========================
|
||||||
|
// 一级菜单点击事件
|
||||||
|
const menuClicked = (parent: Menu, x: number) => {
|
||||||
|
// 右侧的表单相关
|
||||||
|
showRightPanel.value = true; // 右边菜单
|
||||||
|
activeMenu.value = parent; // 这个如果放在顶部,flag 会没有。因为重新赋值了。
|
||||||
|
tempSelfObj.value.grand = Level.Parent; // 表示一级菜单
|
||||||
|
tempSelfObj.value.x = x; // 表示一级菜单索引
|
||||||
|
isParent.value = true;
|
||||||
|
|
||||||
|
// 左侧的选中
|
||||||
|
activeIndex.value = `${x}`; // 菜单选中样式
|
||||||
|
parentIndex.value = x; // 二级菜单显示标志
|
||||||
|
};
|
||||||
|
|
||||||
|
// 二级菜单点击事件
|
||||||
|
const subMenuClicked = (child: Menu, x: number, y: number) => {
|
||||||
|
// 右侧的表单相关
|
||||||
|
showRightPanel.value = true; // 右边菜单
|
||||||
|
activeMenu.value = child; // 将点击的数据放到临时变量,对象有引用作用
|
||||||
|
tempSelfObj.value.grand = Level.Child; // 表示二级菜单
|
||||||
|
tempSelfObj.value.x = x; // 表示一级菜单索引
|
||||||
|
tempSelfObj.value.y = y; // 表示二级菜单索引
|
||||||
|
isParent.value = false;
|
||||||
|
|
||||||
|
// 左侧的选中
|
||||||
|
activeIndex.value = `${x}-${y}`;
|
||||||
|
};
|
||||||
|
|
||||||
|
// 删除当前菜单
|
||||||
|
const onDeleteMenu = async () => {
|
||||||
|
try {
|
||||||
|
await confirm('确定要删除吗?');
|
||||||
|
if (tempSelfObj.value.grand === Level.Parent) {
|
||||||
|
// 一级菜单的删除方法
|
||||||
|
menuList.value.splice(tempSelfObj.value.x, 1);
|
||||||
|
} else if (tempSelfObj.value.grand === Level.Child) {
|
||||||
|
// 二级菜单的删除方法
|
||||||
|
menuList.value[tempSelfObj.value.x]?.children?.splice(
|
||||||
|
tempSelfObj.value.y,
|
||||||
|
1,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
// 提示
|
||||||
|
ElMessage.success('删除成功');
|
||||||
|
|
||||||
|
// 处理菜单的选中
|
||||||
|
activeMenu.value = {};
|
||||||
|
showRightPanel.value = false;
|
||||||
|
activeIndex.value = MENU_NOT_SELECTED;
|
||||||
|
} catch {
|
||||||
|
//
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// ======================== 菜单编辑 ========================
|
||||||
|
const onSave = async () => {
|
||||||
|
try {
|
||||||
|
await confirm('确定要保存吗?');
|
||||||
|
const loadingInstance = ElLoading.service({
|
||||||
|
text: '保存中...',
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
await MpMenuApi.saveMenu(accountId.value, menuListToBackend());
|
||||||
|
getList();
|
||||||
|
ElMessage.success('发布成功');
|
||||||
|
} finally {
|
||||||
|
loadingInstance.close();
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
//
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const onClear = async () => {
|
||||||
|
try {
|
||||||
|
await confirm('确定要删除吗?');
|
||||||
|
const loadingInstance = ElLoading.service({
|
||||||
|
text: '删除中...',
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
await MpMenuApi.deleteMenu(accountId.value);
|
||||||
|
handleQuery();
|
||||||
|
ElMessage.success('清空成功');
|
||||||
|
} finally {
|
||||||
|
loadingInstance.close();
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
//
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// 将前端的 menuList,转换成后端接收的 menuList
|
||||||
|
const menuListToBackend = () => {
|
||||||
|
const result: any[] = [];
|
||||||
|
menuList.value.forEach((item) => {
|
||||||
|
const menu = menuToBackend(item);
|
||||||
|
result.push(menu);
|
||||||
|
|
||||||
|
// 处理子菜单
|
||||||
|
if (!item.children || item.children.length <= 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
menu.children = [];
|
||||||
|
item.children.forEach((subItem) => {
|
||||||
|
menu.children.push(menuToBackend(subItem));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
// 将前端的 menu,转换成后端接收的 menu
|
||||||
|
// TODO: @芋艿,需要根据后台API删除不需要的字段
|
||||||
|
const menuToBackend = (menu: any) => {
|
||||||
|
const result = {
|
||||||
|
...menu,
|
||||||
|
children: undefined, // 不处理子节点
|
||||||
|
reply: undefined, // 稍后复制
|
||||||
|
};
|
||||||
|
result.replyMessageType = menu.reply.type;
|
||||||
|
result.replyContent = menu.reply.content;
|
||||||
|
result.replyMediaId = menu.reply.mediaId;
|
||||||
|
result.replyMediaUrl = menu.reply.url;
|
||||||
|
result.replyTitle = menu.reply.title;
|
||||||
|
result.replyDescription = menu.reply.description;
|
||||||
|
result.replyThumbMediaId = menu.reply.thumbMediaId;
|
||||||
|
result.replyThumbMediaUrl = menu.reply.thumbMediaUrl;
|
||||||
|
result.replyArticles = menu.reply.articles;
|
||||||
|
result.replyMusicUrl = menu.reply.musicUrl;
|
||||||
|
result.replyHqMusicUrl = menu.reply.hqMusicUrl;
|
||||||
|
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Page auto-content-height>
|
||||||
|
<template #doc>
|
||||||
|
<DocAlert title="公众号菜单" url="https://doc.iocoder.cn/mp/menu/" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<!-- 搜索工作栏 -->
|
||||||
|
<!-- <ContentWrap> -->
|
||||||
|
<ElForm :inline="true" label-width="68px" class="-mb-15px w-240px">
|
||||||
|
<ElFormItem label="公众号" prop="accountId" class="w-240px">
|
||||||
|
<WxAccountSelect @change="onAccountChanged" />
|
||||||
|
</ElFormItem>
|
||||||
|
</ElForm>
|
||||||
|
<!-- </ContentWrap> -->
|
||||||
|
|
||||||
|
<ContentWrap>
|
||||||
|
<div class="clearfix public-account-management" v-loading="loading">
|
||||||
|
<!--左边配置菜单-->
|
||||||
|
<div class="left">
|
||||||
|
<div class="weixin-hd">
|
||||||
|
<div class="weixin-title">{{ accountName }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="clearfix weixin-menu">
|
||||||
|
<MenuPreviewer
|
||||||
|
v-model="menuList"
|
||||||
|
:account-id="accountId"
|
||||||
|
:active-index="activeIndex"
|
||||||
|
:parent-index="parentIndex"
|
||||||
|
@menu-clicked="(parent, x) => menuClicked(parent, x)"
|
||||||
|
@submenu-clicked="(child, x, y) => subMenuClicked(child, x, y)"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="save-div">
|
||||||
|
<ElButton
|
||||||
|
class="save-btn"
|
||||||
|
type="success"
|
||||||
|
@click="onSave"
|
||||||
|
v-hasPermi="['mp:menu:save']"
|
||||||
|
>
|
||||||
|
保存并发布菜单
|
||||||
|
</ElButton>
|
||||||
|
<ElButton
|
||||||
|
class="save-btn"
|
||||||
|
type="danger"
|
||||||
|
@click="onClear"
|
||||||
|
v-hasPermi="['mp:menu:delete']"
|
||||||
|
>
|
||||||
|
清空菜单
|
||||||
|
</ElButton>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边配置-->
|
||||||
|
<div class="right" v-if="showRightPanel">
|
||||||
|
<MenuEditor
|
||||||
|
:account-id="accountId"
|
||||||
|
:is-parent="isParent"
|
||||||
|
v-model="activeMenu"
|
||||||
|
@delete="onDeleteMenu"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<!-- 一进页面就显示的默认页面,当点击左边按钮的时候,就不显示了-->
|
||||||
|
<div v-else class="right">
|
||||||
|
<p>请选择菜单配置</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ContentWrap>
|
||||||
|
</Page>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
/* 公共颜色变量 */
|
||||||
|
.clearfix {
|
||||||
|
*zoom: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clearfix::after {
|
||||||
|
clear: both;
|
||||||
|
display: table;
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
|
div {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.weixin-hd {
|
||||||
|
position: relative;
|
||||||
|
bottom: 426px;
|
||||||
|
left: 0;
|
||||||
|
width: 300px;
|
||||||
|
height: 64px;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
background: transparent url('./assets/menu_head.png') no-repeat 0 0;
|
||||||
|
background-position: 0 0;
|
||||||
|
background-size: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.weixin-title {
|
||||||
|
position: absolute;
|
||||||
|
top: 33px;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.weixin-menu {
|
||||||
|
padding-left: 43px;
|
||||||
|
font-size: 12px;
|
||||||
|
background: transparent url('./assets/menu_foot.png') no-repeat 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.public-account-management {
|
||||||
|
width: 1200px;
|
||||||
|
// min-width: 1200px;
|
||||||
|
margin: 0 auto;
|
||||||
|
|
||||||
|
.left {
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
width: 350px;
|
||||||
|
height: 715px;
|
||||||
|
padding: 518px 25px 88px;
|
||||||
|
background: url('./assets/iphone_backImg.png') no-repeat;
|
||||||
|
background-size: 100% auto;
|
||||||
|
|
||||||
|
.save-div {
|
||||||
|
margin-top: 15px;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.save-btn {
|
||||||
|
bottom: 20px;
|
||||||
|
left: 100px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 右边菜单内容 */
|
||||||
|
.right {
|
||||||
|
float: left;
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 63%;
|
||||||
|
padding: 20px;
|
||||||
|
margin-left: 20px;
|
||||||
|
background-color: #e8e7e7;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
278
apps/web-ele/src/views/mp/menu/modules/menu-editor.vue
Normal file
278
apps/web-ele/src/views/mp/menu/modules/menu-editor.vue
Normal file
@@ -0,0 +1,278 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import { computed, nextTick, ref, watch } from 'vue';
|
||||||
|
|
||||||
|
import { IconifyIcon } from '@vben/icons';
|
||||||
|
|
||||||
|
import {
|
||||||
|
ElButton,
|
||||||
|
ElCol,
|
||||||
|
ElDialog,
|
||||||
|
ElInput,
|
||||||
|
ElMessage,
|
||||||
|
ElOption,
|
||||||
|
ElRow,
|
||||||
|
ElSelect,
|
||||||
|
} from 'element-plus';
|
||||||
|
|
||||||
|
import WxMaterialSelect from '#/views/mp/components/wx-material-select';
|
||||||
|
import WxNews from '#/views/mp/components/wx-news';
|
||||||
|
import WxReplySelect from '#/views/mp/components/wx-reply';
|
||||||
|
|
||||||
|
import menuOptions from '../components/menuOptions';
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
accountId: number;
|
||||||
|
isParent: boolean;
|
||||||
|
modelValue: any;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'delete', v: void): void;
|
||||||
|
(e: 'update:modelValue', v: any): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const menu = computed({
|
||||||
|
get() {
|
||||||
|
return props.modelValue;
|
||||||
|
},
|
||||||
|
set(val) {
|
||||||
|
emit('update:modelValue', val);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const showNewsDialog = ref(false);
|
||||||
|
const hackResetWxReplySelect = ref(false);
|
||||||
|
const isLeave = computed<boolean>(() => !(menu.value.children?.length > 0));
|
||||||
|
|
||||||
|
watch(menu, () => {
|
||||||
|
hackResetWxReplySelect.value = false; // 销毁组件
|
||||||
|
nextTick(() => {
|
||||||
|
hackResetWxReplySelect.value = true; // 重建组件
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// ======================== 菜单编辑(素材选择) ========================
|
||||||
|
const selectMaterial = (item: any) => {
|
||||||
|
const articleId = item.articleId;
|
||||||
|
const articles = item.content.newsItem;
|
||||||
|
// 提示,针对多图文
|
||||||
|
if (articles.length > 1) {
|
||||||
|
ElMessage.warning('您选择的是多图文,将默认跳转第一篇');
|
||||||
|
}
|
||||||
|
showNewsDialog.value = false;
|
||||||
|
|
||||||
|
// 设置菜单的回复
|
||||||
|
menu.value.articleId = articleId;
|
||||||
|
menu.value.replyArticles = [];
|
||||||
|
articles.forEach((article: any) => {
|
||||||
|
menu.value.replyArticles.push({
|
||||||
|
title: article.title,
|
||||||
|
description: article.digest,
|
||||||
|
picUrl: article.picUrl,
|
||||||
|
url: article.url,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const deleteMaterial = () => {
|
||||||
|
delete menu.value.articleId;
|
||||||
|
delete menu.value.replyArticles;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div class="configure-page">
|
||||||
|
<div class="delete-btn">
|
||||||
|
<ElButton type="danger" @click="emit('delete')">
|
||||||
|
<IconifyIcon icon="ep:delete" />
|
||||||
|
删除当前菜单
|
||||||
|
</ElButton>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<span>菜单名称:</span>
|
||||||
|
<ElInput
|
||||||
|
class="input-width"
|
||||||
|
v-model="menu.name"
|
||||||
|
placeholder="请输入菜单名称"
|
||||||
|
:maxlength="isParent ? 4 : 7"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div v-if="isLeave">
|
||||||
|
<div class="menu-content">
|
||||||
|
<span>菜单标识:</span>
|
||||||
|
<ElInput
|
||||||
|
class="input-width"
|
||||||
|
v-model="menu.menuKey"
|
||||||
|
placeholder="请输入菜单 KEY"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="menu-content">
|
||||||
|
<span>菜单内容:</span>
|
||||||
|
<ElSelect
|
||||||
|
v-model="menu.type"
|
||||||
|
clearable
|
||||||
|
placeholder="请选择"
|
||||||
|
class="menu_option"
|
||||||
|
>
|
||||||
|
<ElOption
|
||||||
|
v-for="item in menuOptions"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
:key="item.value"
|
||||||
|
/>
|
||||||
|
</ElSelect>
|
||||||
|
</div>
|
||||||
|
<div class="configur-content" v-if="menu.type === 'view'">
|
||||||
|
<span>跳转链接:</span>
|
||||||
|
<ElInput
|
||||||
|
class="input-width"
|
||||||
|
v-model="menu.url"
|
||||||
|
placeholder="请输入链接"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="configur-content" v-if="menu.type === 'miniprogram'">
|
||||||
|
<div class="applet">
|
||||||
|
<span>小程序的 appid :</span>
|
||||||
|
<ElInput
|
||||||
|
class="input-width"
|
||||||
|
v-model="menu.miniProgramAppId"
|
||||||
|
placeholder="请输入小程序的appid"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="applet">
|
||||||
|
<span>小程序的页面路径:</span>
|
||||||
|
<ElInput
|
||||||
|
class="input-width"
|
||||||
|
v-model="menu.miniProgramPagePath"
|
||||||
|
placeholder="请输入小程序的页面路径,如:pages/index"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="applet">
|
||||||
|
<span>小程序的备用网页:</span>
|
||||||
|
<ElInput
|
||||||
|
class="input-width"
|
||||||
|
v-model="menu.url"
|
||||||
|
placeholder="不支持小程序的老版本客户端将打开本网页"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<p class="blue">
|
||||||
|
tips:需要和公众号进行关联才可以把小程序绑定带微信菜单上哟!
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="configur-content"
|
||||||
|
v-if="menu.type === 'article_view_limited'"
|
||||||
|
>
|
||||||
|
<ElRow>
|
||||||
|
<div class="select-item" v-if="menu && menu.replyArticles">
|
||||||
|
<WxNews :articles="menu.replyArticles" />
|
||||||
|
<ElRow class="ope-row" justify="center" align="middle">
|
||||||
|
<ElButton type="danger" circle @click="deleteMaterial">
|
||||||
|
<IconifyIcon icon="ep:delete" />
|
||||||
|
</ElButton>
|
||||||
|
</ElRow>
|
||||||
|
</div>
|
||||||
|
<div v-else>
|
||||||
|
<ElRow justify="center">
|
||||||
|
<ElCol :span="24" style="text-align: center">
|
||||||
|
<ElButton type="success" @click="showNewsDialog = true">
|
||||||
|
素材库选择
|
||||||
|
<IconifyIcon icon="ep:circle-check" />
|
||||||
|
</ElButton>
|
||||||
|
</ElCol>
|
||||||
|
</ElRow>
|
||||||
|
</div>
|
||||||
|
<ElDialog
|
||||||
|
title="选择图文"
|
||||||
|
v-model="showNewsDialog"
|
||||||
|
width="80%"
|
||||||
|
destroy-on-close
|
||||||
|
>
|
||||||
|
<WxMaterialSelect
|
||||||
|
type="news"
|
||||||
|
:account-id="props.accountId"
|
||||||
|
@select-material="selectMaterial"
|
||||||
|
/>
|
||||||
|
</ElDialog>
|
||||||
|
</ElRow>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="configur-content"
|
||||||
|
v-if="menu.type === 'click' || menu.type === 'scancode_waitmsg'"
|
||||||
|
>
|
||||||
|
<WxReplySelect v-if="hackResetWxReplySelect" v-model="menu.reply" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.el-input {
|
||||||
|
width: 70%;
|
||||||
|
margin-right: 2%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.configure-page {
|
||||||
|
.delete-btn {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-content {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.configur-content {
|
||||||
|
padding: 20px 10px;
|
||||||
|
margin-top: 20px;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 5px;
|
||||||
|
|
||||||
|
.select-item {
|
||||||
|
width: 280px;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 0 auto 10px;
|
||||||
|
border: 1px solid #eaeaea;
|
||||||
|
|
||||||
|
.ope-row {
|
||||||
|
padding-top: 10px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.blue {
|
||||||
|
margin-top: 10px;
|
||||||
|
color: #29b6f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.applet {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
|
||||||
|
span {
|
||||||
|
width: 20%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-width {
|
||||||
|
width: 40%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.material {
|
||||||
|
.input-width {
|
||||||
|
width: 30%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-textarea {
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
250
apps/web-ele/src/views/mp/menu/modules/menu-previewer.vue
Normal file
250
apps/web-ele/src/views/mp/menu/modules/menu-previewer.vue
Normal file
@@ -0,0 +1,250 @@
|
|||||||
|
<script lang="ts" setup>
|
||||||
|
import type { Menu } from '../components/types';
|
||||||
|
|
||||||
|
import { computed } from 'vue';
|
||||||
|
|
||||||
|
import { IconifyIcon } from '@vben/icons';
|
||||||
|
|
||||||
|
import draggable from 'vuedraggable';
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
accountId: number;
|
||||||
|
activeIndex: string;
|
||||||
|
modelValue: Menu[];
|
||||||
|
parentIndex: number;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const emit = defineEmits<{
|
||||||
|
(e: 'update:modelValue', v: Menu[]): void;
|
||||||
|
(e: 'menuClicked', parent: Menu, x: number): void;
|
||||||
|
(e: 'submenuClicked', child: Menu, x: number, y: number): void;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
const menuList = computed<Menu[]>({
|
||||||
|
get: () => props.modelValue,
|
||||||
|
set: (val) => emit('update:modelValue', val),
|
||||||
|
});
|
||||||
|
|
||||||
|
// 添加横向一级菜单
|
||||||
|
const addMenu = () => {
|
||||||
|
const index = menuList.value.length;
|
||||||
|
const menu = {
|
||||||
|
name: '菜单名称',
|
||||||
|
children: [],
|
||||||
|
reply: {
|
||||||
|
// 用于存储回复内容
|
||||||
|
type: 'text',
|
||||||
|
accountId: props.accountId, // 保证组件里,可以使用到对应的公众号
|
||||||
|
},
|
||||||
|
};
|
||||||
|
menuList.value[index] = menu;
|
||||||
|
menuClicked(menu, index - 1);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 添加横向二级菜单;parent 表示要操作的父菜单
|
||||||
|
const addSubMenu = (i: number, parent: any) => {
|
||||||
|
const subMenuKeyLength = parent.children.length; // 获取二级菜单key长度
|
||||||
|
const addButton = {
|
||||||
|
name: '子菜单名称',
|
||||||
|
reply: {
|
||||||
|
// 用于存储回复内容
|
||||||
|
type: 'text',
|
||||||
|
accountId: props.accountId, // 保证组件里,可以使用到对应的公众号
|
||||||
|
},
|
||||||
|
};
|
||||||
|
parent.children[subMenuKeyLength] = addButton;
|
||||||
|
subMenuClicked(parent.children[subMenuKeyLength], i, subMenuKeyLength);
|
||||||
|
};
|
||||||
|
|
||||||
|
const menuClicked = (parent: Menu, x: number) => {
|
||||||
|
emit('menuClicked', parent, x);
|
||||||
|
};
|
||||||
|
|
||||||
|
const subMenuClicked = (child: Menu, x: number, y: number) => {
|
||||||
|
emit('submenuClicked', child, x, y);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理一级菜单展开后被拖动,激活(展开)原来活动的一级菜单
|
||||||
|
*
|
||||||
|
* @param options - 拖动参数对象
|
||||||
|
* @param options.oldIndex - 一级菜单拖动前的位置
|
||||||
|
* @param options.newIndex - 一级菜单拖动后的位置
|
||||||
|
*/
|
||||||
|
const onParentDragEnd = ({
|
||||||
|
oldIndex,
|
||||||
|
newIndex,
|
||||||
|
}: {
|
||||||
|
newIndex: number;
|
||||||
|
oldIndex: number;
|
||||||
|
}) => {
|
||||||
|
// 二级菜单没有展开,直接返回
|
||||||
|
if (props.activeIndex === '__MENU_NOT_SELECTED__') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 使用一个辅助数组来模拟菜单移动,然后找到展开的二级菜单的新下标`newParent`
|
||||||
|
const positions = Array.from({ length: menuList.value.length }).fill(false);
|
||||||
|
positions[props.parentIndex] = true;
|
||||||
|
const [out] = positions.splice(oldIndex, 1); // 移出菜单,保存到变量out
|
||||||
|
positions.splice(newIndex, 0, out ?? false); // 把out变量插入被移出的菜单
|
||||||
|
const newParentIndex = positions.indexOf(true);
|
||||||
|
|
||||||
|
// 找到菜单元素,触发一级菜单点击
|
||||||
|
const parent = menuList.value[newParentIndex];
|
||||||
|
if (parent && newParentIndex !== -1) {
|
||||||
|
emit('menuClicked', parent, newParentIndex);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理二级菜单展开后被拖动,激活被拖动的菜单
|
||||||
|
*
|
||||||
|
* @param options - 拖动参数对象
|
||||||
|
* @param options.newIndex - 二级菜单拖动后的位置
|
||||||
|
*/
|
||||||
|
const onChildDragEnd = ({ newIndex }: { newIndex: number }) => {
|
||||||
|
const x = props.parentIndex;
|
||||||
|
const y = newIndex;
|
||||||
|
const children = menuList.value[x]?.children;
|
||||||
|
if (children && children?.length > 0) {
|
||||||
|
const child = children[y];
|
||||||
|
if (child) {
|
||||||
|
emit('submenuClicked', child, x, y);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<draggable
|
||||||
|
v-model="menuList"
|
||||||
|
item-key="id"
|
||||||
|
ghost-class="draggable-ghost"
|
||||||
|
:animation="400"
|
||||||
|
@end="onParentDragEnd"
|
||||||
|
>
|
||||||
|
<template #item="{ element: parent, index: x }">
|
||||||
|
<div class="menu-bottom">
|
||||||
|
<!-- 一级菜单 -->
|
||||||
|
<div
|
||||||
|
@click="menuClicked(parent, x)"
|
||||||
|
class="menu-item"
|
||||||
|
:class="{ active: props.activeIndex === `${x}` }"
|
||||||
|
>
|
||||||
|
<IconifyIcon icon="ep:fold" color="black" />{{ parent.name }}
|
||||||
|
</div>
|
||||||
|
<!-- 以下为二级菜单-->
|
||||||
|
<div class="submenu" v-if="props.parentIndex === x && parent.children">
|
||||||
|
<draggable
|
||||||
|
v-model="parent.children"
|
||||||
|
item-key="id"
|
||||||
|
ghost-class="draggable-ghost"
|
||||||
|
:animation="400"
|
||||||
|
@end="onChildDragEnd"
|
||||||
|
>
|
||||||
|
<template #item="{ element: child, index: y }">
|
||||||
|
<div class="menu-bottom subtitle">
|
||||||
|
<div
|
||||||
|
class="menu-sub-item"
|
||||||
|
v-if="parent.children"
|
||||||
|
:class="{ active: props.activeIndex === `${x}-${y}` }"
|
||||||
|
@click="subMenuClicked(child, x, y)"
|
||||||
|
>
|
||||||
|
{{ child.name }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</draggable>
|
||||||
|
<!-- 二级菜单加号, 当长度 小于 5 才显示二级菜单的加号 -->
|
||||||
|
<div
|
||||||
|
class="menu-bottom menu-addicon"
|
||||||
|
v-if="!parent.children || parent.children.length < 5"
|
||||||
|
@click="addSubMenu(x, parent)"
|
||||||
|
>
|
||||||
|
<IconifyIcon icon="ep:plus" class="plus" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</draggable>
|
||||||
|
|
||||||
|
<!-- 一级菜单加号 -->
|
||||||
|
<div
|
||||||
|
class="menu-bottom menu-addicon"
|
||||||
|
v-if="menuList.length < 3"
|
||||||
|
@click="addMenu"
|
||||||
|
>
|
||||||
|
<IconifyIcon icon="ep:plus" class="plus" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.menu-bottom {
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: block;
|
||||||
|
width: 85.5px;
|
||||||
|
text-align: center;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: #fff;
|
||||||
|
border: 1px solid #ebedee;
|
||||||
|
|
||||||
|
&.menu-addicon {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 46px;
|
||||||
|
line-height: 46px;
|
||||||
|
|
||||||
|
.plus {
|
||||||
|
color: #2bb673;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-item {
|
||||||
|
// text-align: center;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 44px;
|
||||||
|
line-height: 44px;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
border: 1px solid #2bb673;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-sub-item {
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: 44px;
|
||||||
|
line-height: 44px;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
border: 1px solid #2bb673;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 第二级菜单 */
|
||||||
|
.submenu {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 45px;
|
||||||
|
width: 85.5px;
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
box-sizing: border-box;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.draggable-ghost {
|
||||||
|
background: #f7fafc;
|
||||||
|
border: 1px solid #4299e1;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -54,6 +54,7 @@
|
|||||||
"vue-router": "catalog:"
|
"vue-router": "catalog:"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/json-bigint": "catalog:"
|
"@types/json-bigint": "catalog:",
|
||||||
|
"vite": "catalog:"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
59
pnpm-lock.yaml
generated
59
pnpm-lock.yaml
generated
@@ -669,10 +669,10 @@ importers:
|
|||||||
version: link:scripts/vsh
|
version: link:scripts/vsh
|
||||||
'@vitejs/plugin-vue':
|
'@vitejs/plugin-vue':
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 6.0.1(vite@7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
|
version: 6.0.1(vite@7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
|
||||||
'@vitejs/plugin-vue-jsx':
|
'@vitejs/plugin-vue-jsx':
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 5.1.1(vite@7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
|
version: 5.1.1(vite@7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
|
||||||
'@vue/test-utils':
|
'@vue/test-utils':
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 2.4.6
|
version: 2.4.6
|
||||||
@@ -714,10 +714,10 @@ importers:
|
|||||||
version: 3.6.1(sass@1.93.2)(typescript@5.9.3)(vue-tsc@2.2.10(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3))
|
version: 3.6.1(sass@1.93.2)(typescript@5.9.3)(vue-tsc@2.2.10(typescript@5.9.3))(vue@3.5.22(typescript@5.9.3))
|
||||||
vite:
|
vite:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
version: 7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
||||||
vitest:
|
vitest:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 3.2.4(@types/node@22.18.11)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
version: 3.2.4(@types/node@22.18.11)(happy-dom@17.6.3)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
||||||
vue:
|
vue:
|
||||||
specifier: ^3.5.17
|
specifier: ^3.5.17
|
||||||
version: 3.5.22(typescript@5.9.3)
|
version: 3.5.22(typescript@5.9.3)
|
||||||
@@ -854,6 +854,9 @@ importers:
|
|||||||
vue3-signature:
|
vue3-signature:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 0.2.4(vue@3.5.22(typescript@5.9.3))
|
version: 0.2.4(vue@3.5.22(typescript@5.9.3))
|
||||||
|
vuedraggable:
|
||||||
|
specifier: 'catalog:'
|
||||||
|
version: 4.1.0(vue@3.5.22(typescript@5.9.3))
|
||||||
|
|
||||||
apps/web-ele:
|
apps/web-ele:
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -914,6 +917,9 @@ importers:
|
|||||||
'@vueuse/integrations':
|
'@vueuse/integrations':
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 13.9.0(async-validator@4.2.5)(axios@1.12.2)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.22(typescript@5.9.3))
|
version: 13.9.0(async-validator@4.2.5)(axios@1.12.2)(focus-trap@7.6.5)(nprogress@0.2.0)(qrcode@1.5.4)(sortablejs@1.15.6)(vue@3.5.22(typescript@5.9.3))
|
||||||
|
benz-amr-recorder:
|
||||||
|
specifier: ^1.1.5
|
||||||
|
version: 1.1.5
|
||||||
cropperjs:
|
cropperjs:
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.6.2
|
version: 1.6.2
|
||||||
@@ -2113,6 +2119,9 @@ importers:
|
|||||||
'@types/json-bigint':
|
'@types/json-bigint':
|
||||||
specifier: 'catalog:'
|
specifier: 'catalog:'
|
||||||
version: 1.0.4
|
version: 1.0.4
|
||||||
|
vite:
|
||||||
|
specifier: 'catalog:'
|
||||||
|
version: 7.1.11(@types/node@24.8.1)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
||||||
|
|
||||||
scripts/turbo-run:
|
scripts/turbo-run:
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -5721,6 +5730,12 @@ packages:
|
|||||||
resolution: {integrity: sha512-UYmTpOBwgPScZpS4A+YbapwWuBwasxvO/2IOHArSsAhL/+ZdmATBXTex3t+l2hXwLVYK382ibr/nKoY9GKe86w==}
|
resolution: {integrity: sha512-UYmTpOBwgPScZpS4A+YbapwWuBwasxvO/2IOHArSsAhL/+ZdmATBXTex3t+l2hXwLVYK382ibr/nKoY9GKe86w==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
|
benz-amr-recorder@1.1.5:
|
||||||
|
resolution: {integrity: sha512-NepctcNTsZHK8NxBb5uKO5p8S+xkbm+vD6GLSkCYdJeEsriexvgumLHpDkanX4QJBcLRMVtg16buWMs+gUPB3g==}
|
||||||
|
|
||||||
|
benz-recorderjs@1.0.5:
|
||||||
|
resolution: {integrity: sha512-EwedOQo9KLti7HxDi/eZY51PSRbAXnOdEZmLvJ6ro3QQSoF9Y3AXBt57MIllGvVz5vtFYMeikG+GD7qTm3+p9w==}
|
||||||
|
|
||||||
better-path-resolve@1.0.0:
|
better-path-resolve@1.0.0:
|
||||||
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
|
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
|
||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
@@ -15108,14 +15123,14 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
vite-plugin-pwa: 1.1.0(vite@5.4.21(@types/node@24.8.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0))(workbox-build@7.3.0)(workbox-window@7.3.0)
|
vite-plugin-pwa: 1.1.0(vite@5.4.21(@types/node@24.8.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0))(workbox-build@7.3.0)(workbox-window@7.3.0)
|
||||||
|
|
||||||
'@vitejs/plugin-vue-jsx@5.1.1(vite@7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
|
'@vitejs/plugin-vue-jsx@5.1.1(vite@7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/core': 7.28.4
|
'@babel/core': 7.28.4
|
||||||
'@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
|
'@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
|
||||||
'@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
|
'@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
|
||||||
'@rolldown/pluginutils': 1.0.0-beta.44
|
'@rolldown/pluginutils': 1.0.0-beta.44
|
||||||
'@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.4)
|
'@vue/babel-plugin-jsx': 1.5.0(@babel/core@7.28.4)
|
||||||
vite: 7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
vite: 7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
||||||
vue: 3.5.22(typescript@5.9.3)
|
vue: 3.5.22(typescript@5.9.3)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -15137,10 +15152,10 @@ snapshots:
|
|||||||
vite: 5.4.21(@types/node@24.8.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)
|
vite: 5.4.21(@types/node@24.8.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)
|
||||||
vue: 3.5.22(typescript@5.9.3)
|
vue: 3.5.22(typescript@5.9.3)
|
||||||
|
|
||||||
'@vitejs/plugin-vue@6.0.1(vite@7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
|
'@vitejs/plugin-vue@6.0.1(vite@7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@rolldown/pluginutils': 1.0.0-beta.29
|
'@rolldown/pluginutils': 1.0.0-beta.29
|
||||||
vite: 7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
vite: 7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
||||||
vue: 3.5.22(typescript@5.9.3)
|
vue: 3.5.22(typescript@5.9.3)
|
||||||
|
|
||||||
'@vitejs/plugin-vue@6.0.1(vite@7.1.11(@types/node@24.8.1)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
|
'@vitejs/plugin-vue@6.0.1(vite@7.1.11(@types/node@24.8.1)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
|
||||||
@@ -15157,13 +15172,13 @@ snapshots:
|
|||||||
chai: 5.3.3
|
chai: 5.3.3
|
||||||
tinyrainbow: 2.0.0
|
tinyrainbow: 2.0.0
|
||||||
|
|
||||||
'@vitest/mocker@3.2.4(vite@7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))':
|
'@vitest/mocker@3.2.4(vite@7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vitest/spy': 3.2.4
|
'@vitest/spy': 3.2.4
|
||||||
estree-walker: 3.0.3
|
estree-walker: 3.0.3
|
||||||
magic-string: 0.30.19
|
magic-string: 0.30.19
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
vite: 7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
vite: 7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
||||||
|
|
||||||
'@vitest/pretty-format@3.2.4':
|
'@vitest/pretty-format@3.2.4':
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -15782,6 +15797,12 @@ snapshots:
|
|||||||
|
|
||||||
baseline-browser-mapping@2.8.18: {}
|
baseline-browser-mapping@2.8.18: {}
|
||||||
|
|
||||||
|
benz-amr-recorder@1.1.5:
|
||||||
|
dependencies:
|
||||||
|
benz-recorderjs: 1.0.5
|
||||||
|
|
||||||
|
benz-recorderjs@1.0.5: {}
|
||||||
|
|
||||||
better-path-resolve@1.0.0:
|
better-path-resolve@1.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
is-windows: 1.0.2
|
is-windows: 1.0.2
|
||||||
@@ -21583,13 +21604,13 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
vite: 7.1.11(@types/node@24.8.1)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
vite: 7.1.11(@types/node@24.8.1)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
||||||
|
|
||||||
vite-node@3.2.4(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1):
|
vite-node@3.2.4(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
cac: 6.7.14
|
cac: 6.7.14
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
es-module-lexer: 1.7.0
|
es-module-lexer: 1.7.0
|
||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
vite: 7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
vite: 7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@types/node'
|
- '@types/node'
|
||||||
- jiti
|
- jiti
|
||||||
@@ -21758,7 +21779,7 @@ snapshots:
|
|||||||
sass: 1.93.2
|
sass: 1.93.2
|
||||||
terser: 5.44.0
|
terser: 5.44.0
|
||||||
|
|
||||||
vite@7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1):
|
vite@7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
esbuild: 0.25.3
|
esbuild: 0.25.3
|
||||||
fdir: 6.5.0(picomatch@4.0.3)
|
fdir: 6.5.0(picomatch@4.0.3)
|
||||||
@@ -21769,7 +21790,7 @@ snapshots:
|
|||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@types/node': 22.18.11
|
'@types/node': 22.18.11
|
||||||
fsevents: 2.3.3
|
fsevents: 2.3.3
|
||||||
jiti: 2.6.1
|
jiti: 1.21.7
|
||||||
less: 4.4.2
|
less: 4.4.2
|
||||||
sass: 1.93.2
|
sass: 1.93.2
|
||||||
terser: 5.44.0
|
terser: 5.44.0
|
||||||
@@ -21851,11 +21872,11 @@ snapshots:
|
|||||||
- typescript
|
- typescript
|
||||||
- universal-cookie
|
- universal-cookie
|
||||||
|
|
||||||
vitest@3.2.4(@types/node@22.18.11)(happy-dom@17.6.3)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1):
|
vitest@3.2.4(@types/node@22.18.11)(happy-dom@17.6.3)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/chai': 5.2.2
|
'@types/chai': 5.2.2
|
||||||
'@vitest/expect': 3.2.4
|
'@vitest/expect': 3.2.4
|
||||||
'@vitest/mocker': 3.2.4(vite@7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))
|
'@vitest/mocker': 3.2.4(vite@7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))
|
||||||
'@vitest/pretty-format': 3.2.4
|
'@vitest/pretty-format': 3.2.4
|
||||||
'@vitest/runner': 3.2.4
|
'@vitest/runner': 3.2.4
|
||||||
'@vitest/snapshot': 3.2.4
|
'@vitest/snapshot': 3.2.4
|
||||||
@@ -21873,8 +21894,8 @@ snapshots:
|
|||||||
tinyglobby: 0.2.15
|
tinyglobby: 0.2.15
|
||||||
tinypool: 1.1.1
|
tinypool: 1.1.1
|
||||||
tinyrainbow: 2.0.0
|
tinyrainbow: 2.0.0
|
||||||
vite: 7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
vite: 7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
||||||
vite-node: 3.2.4(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
vite-node: 3.2.4(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1)
|
||||||
why-is-node-running: 2.3.0
|
why-is-node-running: 2.3.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@types/node': 22.18.11
|
'@types/node': 22.18.11
|
||||||
@@ -21897,7 +21918,7 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
'@types/chai': 5.2.2
|
'@types/chai': 5.2.2
|
||||||
'@vitest/expect': 3.2.4
|
'@vitest/expect': 3.2.4
|
||||||
'@vitest/mocker': 3.2.4(vite@7.1.11(@types/node@22.18.11)(jiti@2.6.1)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))
|
'@vitest/mocker': 3.2.4(vite@7.1.11(@types/node@22.18.11)(jiti@1.21.7)(less@4.4.2)(sass@1.93.2)(terser@5.44.0)(yaml@2.8.1))
|
||||||
'@vitest/pretty-format': 3.2.4
|
'@vitest/pretty-format': 3.2.4
|
||||||
'@vitest/runner': 3.2.4
|
'@vitest/runner': 3.2.4
|
||||||
'@vitest/snapshot': 3.2.4
|
'@vitest/snapshot': 3.2.4
|
||||||
|
|||||||
Reference in New Issue
Block a user