新增分享配置

This commit is contained in:
gyq
2026-01-28 15:02:24 +08:00
parent 000f715bd8
commit ca182dc325
14 changed files with 1141 additions and 11 deletions

View File

@@ -183,7 +183,6 @@ import editModalConfig from "./indexconfig/edit";
import searchConfig from "./indexconfig/search";
import MyDialog from "@/components/mycomponents/myDialog.vue";
import Statistics from "./indexconfig/statistics.vue";
import { min } from "lodash";
const {
searchRef,
@@ -242,13 +241,17 @@ if (isSyncStatus()) {
contentConfig.cols[contentConfig.cols.length - 1].operat[2].hidden = false;
}
onMounted(() => {
onMounted(async () => {
console.log(route.query);
if (route.query.id) {
contentRef.value?.fetchPageData({ id: route.query.id });
}
// 获取耗材列表
gethaocaiList();
const res = await UserAPI.getPage()
form.warnLine = res.warnLine || ''
// console.log('contentRef.value===', res);
});
function newHandleQueryClick(e: IObject | undefined) {