xiaodai2017 2 anos atrás
pai
commit
ea13508009
31 arquivos alterados com 144 adições e 467 exclusões
  1. 6 1
      src/components/PageListModall/pageListModal.vue
  2. 29 13
      src/components/PageSearch/src/hooks/use-page-search.ts
  3. 4 2
      src/utils/export.ts
  4. 1 4
      src/utils/http/index1.ts
  5. 5 1
      src/views/interest/account/index.vue
  6. 2 2
      src/views/interest/group/index.vue
  7. 5 1
      src/views/interest/role/index.vue
  8. 17 12
      src/views/mobile/exchangeOrder/index.vue
  9. 5 1
      src/views/mobile/exchangeStock/index.vue
  10. 0 60
      src/views/mobile/serviceOrder/config/content.config.ts
  11. 0 64
      src/views/mobile/serviceOrder/config/modal.config.ts
  12. 0 31
      src/views/mobile/serviceOrder/config/search.config.ts
  13. 0 53
      src/views/mobile/serviceOrder/index.vue
  14. 0 60
      src/views/mobile/shopOrder/config/content.config.ts
  15. 0 64
      src/views/mobile/shopOrder/config/modal.config.ts
  16. 0 31
      src/views/mobile/shopOrder/config/search.config.ts
  17. 0 53
      src/views/mobile/shopOrder/index.vue
  18. 5 1
      src/views/mobile/shopStock/index.vue
  19. 5 1
      src/views/mobile/user/index.vue
  20. 5 1
      src/views/operate/SetUserVideo/index.vue
  21. 5 1
      src/views/operate/batchCreatUser/index.vue
  22. 5 1
      src/views/operate/batchSetVideo/index.vue
  23. 5 1
      src/views/operate/setComCard/index.vue
  24. 5 1
      src/views/operate/setComGood/index.vue
  25. 5 1
      src/views/operate/setService/index.vue
  26. 5 1
      src/views/operate/setTheme/index.vue
  27. 5 1
      src/views/parameter/card/index.vue
  28. 5 1
      src/views/parameter/company/index.vue
  29. 5 1
      src/views/parameter/good/index.vue
  30. 5 1
      src/views/parameter/video/index.vue
  31. 5 1
      src/views/system/logistics/index.vue

+ 6 - 1
src/components/PageListModall/pageListModal.vue

@@ -4,10 +4,15 @@ import { PageContent } from "/@/components/PageContent";
 import { PageSearch, usePageSearch } from "/@/components/PageSearch";
 import { PageSearch, usePageSearch } from "/@/components/PageSearch";
 import { modalProps } from "./types";
 import { modalProps } from "./types";
 // import type { PageContentInstance } from "/@/components/PageContent";
 // import type { PageContentInstance } from "/@/components/PageContent";
-const { handleResetClick, handleSearchClick } = usePageSearch();
+
 const props = defineProps(modalProps);
 const props = defineProps(modalProps);
 const { modalConfig } = props;
 const { modalConfig } = props;
 const { title, searchConfig, contentConfig } = modalConfig;
 const { title, searchConfig, contentConfig } = modalConfig;
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const pageContentRef = ref<InstanceType<typeof PageContent>>(null);
 const pageContentRef = ref<InstanceType<typeof PageContent>>(null);
 // const emit = defineEmits(["confirmBtnClick"]);
 // const emit = defineEmits(["confirmBtnClick"]);
 
 

+ 29 - 13
src/components/PageSearch/src/hooks/use-page-search.ts

@@ -4,13 +4,20 @@ import { PageContentInstance } from "/@/components/PageContent";
 import { FormConfig } from "/@/components/PageSearch";
 import { FormConfig } from "/@/components/PageSearch";
 import dayjs from "dayjs";
 import dayjs from "dayjs";
 
 
-type Fn = (params?: any) => any
+type Fn = (params?: any) => any;
 
 
-export function usePageSearch(searchCallback?: Fn, resetCallback?: Fn, searchFormConfig?: FormConfig) {
+export function usePageSearch(
+  searchCallback?: Fn,
+  resetCallback?: Fn,
+  searchFormConfig?: FormConfig
+) {
   const pageContentRef = ref<PageContentInstance>(null);
   const pageContentRef = ref<PageContentInstance>(null);
+  let searchParam = {};
 
 
   function handleSearchClick(params: any) {
   function handleSearchClick(params: any) {
-    const { result, deleteProps } = searchCallback ? searchCallback(params) : { result: {}, deleteProps: [] }
+    const { result, deleteProps } = searchCallback
+      ? searchCallback(params)
+      : { result: {}, deleteProps: [] };
 
 
     const mergeParams = {
     const mergeParams = {
       ...params,
       ...params,
@@ -27,34 +34,43 @@ export function usePageSearch(searchCallback?: Fn, resetCallback?: Fn, searchFor
         const { startProp, endProp } = otherOptions;
         const { startProp, endProp } = otherOptions;
 
 
         if (startProp || endProp) {
         if (startProp || endProp) {
-          mergeParams[startProp] = mergeParams[field][0] ? dayjs(mergeParams[field][0]).format('YYYY-MM-DD hh:mm:ss') : "";
-          mergeParams[endProp] = mergeParams[field][1] ? dayjs(mergeParams[field][1]).format('YYYY-MM-DD hh:mm:ss') : "";
-          delete mergeParams[field]
+          mergeParams[startProp] = mergeParams[field][0]
+            ? dayjs(mergeParams[field][0]).format("YYYY-MM-DD hh:mm:ss")
+            : "";
+          mergeParams[endProp] = mergeParams[field][1]
+            ? dayjs(mergeParams[field][1]).format("YYYY-MM-DD hh:mm:ss")
+            : "";
+          delete mergeParams[field];
         }
         }
 
 
         if (type_field) {
         if (type_field) {
           mergeParams[mergeParams[type_field]] = mergeParams[field];
           mergeParams[mergeParams[type_field]] = mergeParams[field];
           delete mergeParams[field];
           delete mergeParams[field];
-          delete mergeParams[type_field]
+          delete mergeParams[type_field];
         }
         }
-      })
+      });
     }
     }
 
 
-    deleteProps.forEach(key => delete mergeParams[key])
-
+    deleteProps.forEach(key => delete mergeParams[key]);
+    searchParam = mergeParams;
     pageContentRef.value?.getPageData(mergeParams);
     pageContentRef.value?.getPageData(mergeParams);
   }
   }
 
 
   function handleResetClick(params: any) {
   function handleResetClick(params: any) {
-    const { result } = searchCallback ? searchCallback(params) : { result: {} }
+    const { result } = searchCallback ? searchCallback(params) : { result: {} };
 
 
     pageContentRef.value?.getPageData(result);
     pageContentRef.value?.getPageData(result);
-    resetCallback && resetCallback()
+    resetCallback && resetCallback();
+    searchParam = {};
+  }
+  function getMergeParams() {
+    return searchParam;
   }
   }
 
 
   return {
   return {
     pageContentRef,
     pageContentRef,
     handleSearchClick,
     handleSearchClick,
-    handleResetClick
+    handleResetClick,
+    getMergeParams
   };
   };
 }
 }

+ 4 - 2
src/utils/export.ts

@@ -67,10 +67,11 @@ async function httpRequsetExport<T>(
   if (!_options.httpType) _options.httpType = "zip";
   if (!_options.httpType) _options.httpType = "zip";
   const { value: httpHeader, fileName } =
   const { value: httpHeader, fileName } =
     httpTypeList.find(item => item.key === _options.httpType) || {};
     httpTypeList.find(item => item.key === _options.httpType) || {};
-
+  console.log(_options);
   const res = await httpExport(_options.url, {
   const res = await httpExport(_options.url, {
     data: _options.params
     data: _options.params
   });
   });
+
   const url = window.URL.createObjectURL(
   const url = window.URL.createObjectURL(
     //todo:blob对象类型
     //todo:blob对象类型
     new Blob([res], {
     new Blob([res], {
@@ -116,6 +117,7 @@ export function exportPageContent<T = any>({
   columns,
   columns,
   data,
   data,
   name: _name,
   name: _name,
+  params,
   httpType
   httpType
 }: Options<T>) {
 }: Options<T>) {
   const name = _name ? _name : "导出数据";
   const name = _name ? _name : "导出数据";
@@ -124,7 +126,7 @@ export function exportPageContent<T = any>({
       frontEndExport({ data, columns, name });
       frontEndExport({ data, columns, name });
       break;
       break;
     case "http":
     case "http":
-      httpRequsetExport({ url, name, httpType });
+      httpRequsetExport({ url, name, params, httpType });
       break;
       break;
   }
   }
 }
 }

+ 1 - 4
src/utils/http/index1.ts

@@ -47,11 +47,7 @@ class PureHttp {
   private httpInterceptorsRequest(): void {
   private httpInterceptorsRequest(): void {
     PureHttp.axiosInstance.interceptors.request.use(
     PureHttp.axiosInstance.interceptors.request.use(
       (config: PureHttpRequestConfig) => {
       (config: PureHttpRequestConfig) => {
-        console.log(config);
         const $config = config;
         const $config = config;
-        // $config.headers = {
-        //   Accept: `aplication/zip`
-        // };
         // 开启进度条动画
         // 开启进度条动画
         NProgress.start();
         NProgress.start();
         // 优先判断post/get等方法是否传入回掉,否则执行初始化设置等回掉
         // 优先判断post/get等方法是否传入回掉,否则执行初始化设置等回掉
@@ -64,6 +60,7 @@ class PureHttp {
           return $config;
           return $config;
         }
         }
         const token = getToken();
         const token = getToken();
+        console.log(config);
         if (token) {
         if (token) {
           config.data["token"] = token;
           config.data["token"] = token;
           return $config;
           return $config;

+ 5 - 1
src/views/interest/account/index.vue

@@ -22,7 +22,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const responseHandle = useResponseHandle();
 const responseHandle = useResponseHandle();
 const passwordModelId = ref("");
 const passwordModelId = ref("");
 const passwordModel = ref(false);
 const passwordModel = ref(false);

+ 2 - 2
src/views/interest/group/index.vue

@@ -18,10 +18,10 @@ const hooks: Hooks = {
 const events: Events = {
 const events: Events = {
   content: {
   content: {
     preview: ({ id }) => push(`${basePath}?id=${id}`),
     preview: ({ id }) => push(`${basePath}?id=${id}`),
-    create: () => push(basePath),
+    create: () => push(basePath)
     // update: () => push(basePath),
     // update: () => push(basePath),
     // delete: () => push(basePath),
     // delete: () => push(basePath),
-    status: () => push(basePath)
+    // status: () => push(basePath)
   }
   }
 };
 };
 </script>
 </script>

+ 5 - 1
src/views/interest/role/index.vue

@@ -10,7 +10,11 @@ import addEdit from "./addEdit.vue";
 const pageContentRef = ref<PageContentInstance | null>(null);
 const pageContentRef = ref<PageContentInstance | null>(null);
 const pageName = "role";
 const pageName = "role";
 
 
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 
 
 const showModel = ref(false);
 const showModel = ref(false);
 const itemId = ref("");
 const itemId = ref("");

+ 17 - 12
src/views/mobile/exchangeOrder/index.vue

@@ -12,15 +12,30 @@ import { exportPageContent } from "/@/utils/export";
 import ExeclUpload from "./cpns/execl-files-upload/index.vue";
 import ExeclUpload from "./cpns/execl-files-upload/index.vue";
 const pageName = "order";
 const pageName = "order";
 
 
-const { handleResetClick, handleSearchClick } = usePageSearch();
 const pageContentRef = ref<PageContentInstance | null>(null);
 const pageContentRef = ref<PageContentInstance | null>(null);
+const { handleResetClick, handleSearchClick, getMergeParams } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
+
 const { pageModalRef, handleConfrim, defaultInfo } = usePageModal({
 const { pageModalRef, handleConfrim, defaultInfo } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
+const pageParams = ref(null);
 const execlUploadRef = ref<InstanceType<typeof ExeclUpload>>(null);
 const execlUploadRef = ref<InstanceType<typeof ExeclUpload>>(null);
 async function handleDetailData(id, type) {
 async function handleDetailData(id, type) {
   // actionModalRef.value.onShow("兑换商品库存", type, id);
   // actionModalRef.value.onShow("兑换商品库存", type, id);
 }
 }
+function getParams() {
+  exportPageContent({
+    type: "http",
+    url: "orderExport",
+    params: getMergeParams(),
+    name: "订单导出"
+  });
+  console.log(pageContentRef);
+}
 </script>
 </script>
 
 
 <template>
 <template>
@@ -32,17 +47,7 @@ async function handleDetailData(id, type) {
   >
   >
     <template #action>
     <template #action>
       <!-- v-if="!isSuperUser" @click="onDownloadTemplate" -->
       <!-- v-if="!isSuperUser" @click="onDownloadTemplate" -->
-      <el-button
-        @click="
-          exportPageContent({
-            type: 'http',
-            url: 'orderExport',
-            params: {},
-            name: '订单导出'
-          })
-        "
-        >导出订单</el-button
-      >
+      <el-button @click="getParams">导出订单</el-button>
       <!-- v-if="!isSuperUser" -->
       <!-- v-if="!isSuperUser" -->
 
 
       <el-button type="primary" @click="() => execlUploadRef.onDisplay()"
       <el-button type="primary" @click="() => execlUploadRef.onDisplay()"

+ 5 - 1
src/views/mobile/exchangeStock/index.vue

@@ -35,7 +35,11 @@ const { pageModalRef, handleCreateData, handleConfrim, defaultInfo } =
   usePageModal({
   usePageModal({
     pageContentRef
     pageContentRef
   });
   });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const { formItems } = projectFormConfig;
 const { formItems } = projectFormConfig;
 const PageListModalReff = ref<InstanceType<typeof PageListModall>>(null);
 const PageListModalReff = ref<InstanceType<typeof PageListModall>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);

+ 0 - 60
src/views/mobile/serviceOrder/config/content.config.ts

@@ -1,60 +0,0 @@
-import { isString } from "@pureadmin/utils";
-import { h } from "vue";
-import { ContentConfig } from "/@/components/PageContent";
-import { httpDelete, httpStatus, httpList } from "/@/api/mobile/serviceOrder";
-import { renderStatus } from "/@/utils/column-helper";
-import { STATUS_OPTIONS } from "/@/config/status";
-import { ElTag } from "element-plus";
-
-const columns = [
-  {
-    type: "selection",
-    width: 55,
-    hide: ({ checkList }) => !checkList.includes("勾选列")
-  },
-  {
-    prop: "id",
-    label: "ID",
-    width: "70px"
-  },
-  {
-    prop: "status",
-    label: "状态",
-    minWidth: "90px",
-    ...renderStatus(STATUS_OPTIONS)
-  },
-  {
-    prop: "video_name",
-    label: "视频名称",
-    minWidth: "250px"
-  },
-  {
-    prop: "remark",
-    label: "视频描述"
-  },
-
-  {
-    prop: "addtime",
-    label: "创建时间",
-    minWidth: "160px"
-  },
-
-  {
-    label: "操作",
-    fixed: "right",
-    width: 120,
-    slot: "operation"
-  }
-];
-const contentConfig: ContentConfig = {
-  title: "账号管理",
-  columns,
-  apis: {
-    httpDelete,
-    httpStatus,
-    httpList
-  },
-  notPreview: false
-};
-
-export default contentConfig;

+ 0 - 64
src/views/mobile/serviceOrder/config/modal.config.ts

@@ -1,64 +0,0 @@
-import { ModalConfig } from "/@/components/PageModal/src/types";
-import { isLicense } from "/@/utils/validate";
-
-const modalConfig: ModalConfig = {
-  title: "视频",
-  colLayout: { span: 24 },
-  itemStyle: {},
-  contact: "invoice_mobile",
-  formItems: [
-    {
-      field: "video_sn",
-      type: "input",
-      label: "视频编号",
-      isHidden: true,
-      labelWidth: "120px",
-      placeholder: "视频编号"
-    },
-
-    {
-      field: "nickname",
-      type: "input",
-      label: "视频名称",
-      labelWidth: "120px",
-      placeholder: "视频名称",
-      rules: [{ required: true, trigger: "change", message: "请输入视频名称" }]
-    },
-    {
-      field: "mobile",
-      type: "input",
-      label: "视频链接",
-      labelWidth: "120px",
-      placeholder: "视频链接",
-      rules: [{ required: true, trigger: "change", message: "请输入视频链接" }]
-    },
-    {
-      field: "remark",
-      type: "input",
-      label: "视频描述",
-      labelWidth: "120px",
-      placeholder: "视频描述",
-      rules: [{ required: true, trigger: "change", message: "请输入视频描述" }]
-    },
-    {
-      field: "video_img",
-      type: "img_upload",
-      label: "视频封面",
-      labelWidth: "120px",
-      placeholder: "视频封面",
-      rules: [
-        { required: true, trigger: "change", message: "请上传视频封面!" }
-      ]
-    },
-    {
-      field: "video_set",
-      type: "input",
-      label: "视频设置",
-      labelWidth: "120px",
-      isHidden: true,
-      placeholder: "视频设置"
-    }
-  ]
-};
-
-export default modalConfig;

+ 0 - 31
src/views/mobile/serviceOrder/config/search.config.ts

@@ -1,31 +0,0 @@
-import { FormConfig } from "/@/components/PageSearch";
-import { STATUS_OPTIONS } from "/@/config/status";
-import { convertOptions } from "/@/utils/column-helper";
-
-const searchFormConfig: FormConfig = {
-  formItems: [
-    {
-      field: "status",
-      type: "select",
-      placeholder: "视频状态",
-      options: convertOptions(STATUS_OPTIONS)
-    },
-    {
-      field: "video_name",
-      type: "input",
-      placeholder: "视频名称"
-    },
-    {
-      field: "video_url",
-      type: "input",
-      placeholder: "视频地址"
-    },
-    {
-      field: "video_sn",
-      type: "input",
-      placeholder: "视频编号"
-    }
-  ]
-};
-
-export default searchFormConfig;

+ 0 - 53
src/views/mobile/serviceOrder/index.vue

@@ -1,53 +0,0 @@
-<script setup lang="ts">
-import { usePageSearch } from "/@/components/PageSearch";
-import searchConfig from "./config/search.config";
-import contentConfig from "./config/content.config";
-import PageAuth from "/@/components/PageAuth";
-import { PageModal, usePageModal } from "/@/components/PageModal";
-import modalConfig from "./config/modal.config";
-import { useRouter } from "vue-router";
-import PageContainer, {
-  type Events,
-  type Hooks
-} from "/@/components/PageContainer";
-
-const pageName = "order";
-const basePath = "/sellOut/projectDetail";
-// , handleResetClick, handleSearchClick
-const { pageContentRef } = usePageSearch();
-const { push } = useRouter();
-const hooks: Hooks = {
-  pageSearchHook: () => usePageSearch(undefined, undefined, searchConfig)
-};
-const {
-  pageModalRef,
-  // handleUpdateData,
-  handleCreateData,
-  handlePreviewData,
-  handleConfrim,
-  defaultInfo
-} = usePageModal({ pageContentRef });
-const events: Events = {
-  content: {
-    preview: row => handlePreviewData(row),
-    create: row => handleCreateData(row)
-  }
-};
-</script>
-
-<template>
-  <PageAuth :pageName="pageName">
-    <PageContainer
-      :hooks="hooks"
-      :events="events"
-      :search-config="searchConfig"
-      :content-config="contentConfig"
-    />
-    <PageModal
-      ref="pageModalRef"
-      :modal-config="modalConfig"
-      :default-info="defaultInfo"
-      @confirm-btn-click="handleConfrim"
-    />
-  </PageAuth>
-</template>

+ 0 - 60
src/views/mobile/shopOrder/config/content.config.ts

@@ -1,60 +0,0 @@
-import { isString } from "@pureadmin/utils";
-import { h } from "vue";
-import { ContentConfig } from "/@/components/PageContent";
-import { httpDelete, httpStatus, httpList } from "/@/api/mobile/shopOrder";
-import { renderStatus } from "/@/utils/column-helper";
-import { STATUS_OPTIONS } from "/@/config/status";
-import { ElTag } from "element-plus";
-
-const columns = [
-  {
-    type: "selection",
-    width: 55,
-    hide: ({ checkList }) => !checkList.includes("勾选列")
-  },
-  {
-    prop: "id",
-    label: "ID",
-    width: "70px"
-  },
-  {
-    prop: "status",
-    label: "状态",
-    minWidth: "90px",
-    ...renderStatus(STATUS_OPTIONS)
-  },
-  {
-    prop: "video_name",
-    label: "视频名称",
-    minWidth: "250px"
-  },
-  {
-    prop: "remark",
-    label: "视频描述"
-  },
-
-  {
-    prop: "addtime",
-    label: "创建时间",
-    minWidth: "160px"
-  },
-
-  {
-    label: "操作",
-    fixed: "right",
-    width: 120,
-    slot: "operation"
-  }
-];
-const contentConfig: ContentConfig = {
-  title: "账号管理",
-  columns,
-  apis: {
-    httpDelete,
-    httpStatus,
-    httpList
-  },
-  notPreview: false
-};
-
-export default contentConfig;

+ 0 - 64
src/views/mobile/shopOrder/config/modal.config.ts

@@ -1,64 +0,0 @@
-import { ModalConfig } from "/@/components/PageModal/src/types";
-import { isLicense } from "/@/utils/validate";
-
-const modalConfig: ModalConfig = {
-  title: "视频",
-  colLayout: { span: 24 },
-  itemStyle: {},
-  contact: "invoice_mobile",
-  formItems: [
-    {
-      field: "video_sn",
-      type: "input",
-      label: "视频编号",
-      isHidden: true,
-      labelWidth: "120px",
-      placeholder: "视频编号"
-    },
-
-    {
-      field: "nickname",
-      type: "input",
-      label: "视频名称",
-      labelWidth: "120px",
-      placeholder: "视频名称",
-      rules: [{ required: true, trigger: "change", message: "请输入视频名称" }]
-    },
-    {
-      field: "mobile",
-      type: "input",
-      label: "视频链接",
-      labelWidth: "120px",
-      placeholder: "视频链接",
-      rules: [{ required: true, trigger: "change", message: "请输入视频链接" }]
-    },
-    {
-      field: "remark",
-      type: "input",
-      label: "视频描述",
-      labelWidth: "120px",
-      placeholder: "视频描述",
-      rules: [{ required: true, trigger: "change", message: "请输入视频描述" }]
-    },
-    {
-      field: "video_img",
-      type: "img_upload",
-      label: "视频封面",
-      labelWidth: "120px",
-      placeholder: "视频封面",
-      rules: [
-        { required: true, trigger: "change", message: "请上传视频封面!" }
-      ]
-    },
-    {
-      field: "video_set",
-      type: "input",
-      label: "视频设置",
-      labelWidth: "120px",
-      isHidden: true,
-      placeholder: "视频设置"
-    }
-  ]
-};
-
-export default modalConfig;

+ 0 - 31
src/views/mobile/shopOrder/config/search.config.ts

@@ -1,31 +0,0 @@
-import { FormConfig } from "/@/components/PageSearch";
-import { STATUS_OPTIONS } from "/@/config/status";
-import { convertOptions } from "/@/utils/column-helper";
-
-const searchFormConfig: FormConfig = {
-  formItems: [
-    {
-      field: "status",
-      type: "select",
-      placeholder: "视频状态",
-      options: convertOptions(STATUS_OPTIONS)
-    },
-    {
-      field: "video_name",
-      type: "input",
-      placeholder: "视频名称"
-    },
-    {
-      field: "video_url",
-      type: "input",
-      placeholder: "视频地址"
-    },
-    {
-      field: "video_sn",
-      type: "input",
-      placeholder: "视频编号"
-    }
-  ]
-};
-
-export default searchFormConfig;

+ 0 - 53
src/views/mobile/shopOrder/index.vue

@@ -1,53 +0,0 @@
-<script setup lang="ts">
-import { usePageSearch } from "/@/components/PageSearch";
-import searchConfig from "./config/search.config";
-import contentConfig from "./config/content.config";
-import PageAuth from "/@/components/PageAuth";
-import { PageModal, usePageModal } from "/@/components/PageModal";
-import modalConfig from "./config/modal.config";
-import { useRouter } from "vue-router";
-import PageContainer, {
-  type Events,
-  type Hooks
-} from "/@/components/PageContainer";
-
-const pageName = "order";
-const basePath = "/sellOut/projectDetail";
-// , handleResetClick, handleSearchClick
-const { pageContentRef } = usePageSearch();
-const { push } = useRouter();
-const hooks: Hooks = {
-  pageSearchHook: () => usePageSearch(undefined, undefined, searchConfig)
-};
-const {
-  pageModalRef,
-  // handleUpdateData,
-  handleCreateData,
-  handlePreviewData,
-  handleConfrim,
-  defaultInfo
-} = usePageModal({ pageContentRef });
-const events: Events = {
-  content: {
-    preview: row => handlePreviewData(row),
-    create: row => handleCreateData(row)
-  }
-};
-</script>
-
-<template>
-  <PageAuth :pageName="pageName">
-    <PageContainer
-      :hooks="hooks"
-      :events="events"
-      :search-config="searchConfig"
-      :content-config="contentConfig"
-    />
-    <PageModal
-      ref="pageModalRef"
-      :modal-config="modalConfig"
-      :default-info="defaultInfo"
-      @confirm-btn-click="handleConfrim"
-    />
-  </PageAuth>
-</template>

+ 5 - 1
src/views/mobile/shopStock/index.vue

@@ -35,7 +35,11 @@ const { pageModalRef, handleCreateData, handleConfrim, defaultInfo } =
   usePageModal({
   usePageModal({
     pageContentRef
     pageContentRef
   });
   });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const { formItems } = projectFormConfig;
 const { formItems } = projectFormConfig;
 const PageListModalReff = ref<InstanceType<typeof PageListModall>>(null);
 const PageListModalReff = ref<InstanceType<typeof PageListModall>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);

+ 5 - 1
src/views/mobile/user/index.vue

@@ -35,7 +35,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const responseHandle = useResponseHandle();
 const responseHandle = useResponseHandle();
 const Video_id = ref("");
 const Video_id = ref("");
 async function handleDetailData(row, type) {
 async function handleDetailData(row, type) {

+ 5 - 1
src/views/operate/SetUserVideo/index.vue

@@ -20,7 +20,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 </script>
 </script>
 
 
 <template>
 <template>

+ 5 - 1
src/views/operate/batchCreatUser/index.vue

@@ -25,7 +25,11 @@ const { pageModalRef, handleCreateData, handleConfrim, defaultInfo } =
   usePageModal({
   usePageModal({
     pageContentRef
     pageContentRef
   });
   });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const { formItems } = projectFormConfig;
 const { formItems } = projectFormConfig;
 
 
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);

+ 5 - 1
src/views/operate/batchSetVideo/index.vue

@@ -33,7 +33,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 function handleCreate() {
 function handleCreate() {
   basicFormRef.value.validate(isValid => {
   basicFormRef.value.validate(isValid => {
     if (!isValid) return;
     if (!isValid) return;

+ 5 - 1
src/views/operate/setComCard/index.vue

@@ -34,7 +34,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const { formItems } = projectFormConfig;
 const { formItems } = projectFormConfig;
 
 
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);

+ 5 - 1
src/views/operate/setComGood/index.vue

@@ -36,7 +36,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const { formItems } = projectFormConfig;
 const { formItems } = projectFormConfig;
 const modelRef = ref<InstanceType<typeof OrderDialog>>(null);
 const modelRef = ref<InstanceType<typeof OrderDialog>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);

+ 5 - 1
src/views/operate/setService/index.vue

@@ -34,7 +34,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const { formItems } = projectFormConfig;
 const { formItems } = projectFormConfig;
 
 
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);

+ 5 - 1
src/views/operate/setTheme/index.vue

@@ -11,7 +11,11 @@ const actionModalRef = ref<InstanceType<typeof addModel>>(null);
 const pageContentRef = ref<PageContentInstance | null>(null);
 const pageContentRef = ref<PageContentInstance | null>(null);
 const pageName = "setTheme";
 const pageName = "setTheme";
 
 
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 // function handleCreate() {
 // function handleCreate() {
 //   basicFormRef.value.validate(isValid => {
 //   basicFormRef.value.validate(isValid => {
 //     if (!isValid) return;
 //     if (!isValid) return;

+ 5 - 1
src/views/parameter/card/index.vue

@@ -20,7 +20,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 </script>
 </script>
 
 
 <template>
 <template>

+ 5 - 1
src/views/parameter/company/index.vue

@@ -20,7 +20,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 </script>
 </script>
 
 
 <template>
 <template>

+ 5 - 1
src/views/parameter/good/index.vue

@@ -38,7 +38,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const { formItems } = projectFormConfig;
 const { formItems } = projectFormConfig;
 // const modelRef = ref<InstanceType<typeof OrderDialog>>(null);
 // const modelRef = ref<InstanceType<typeof OrderDialog>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);
 const basicFormRef = ref<InstanceType<typeof ElForm>>(null);

+ 5 - 1
src/views/parameter/video/index.vue

@@ -22,7 +22,11 @@ const {
 } = usePageModal({
 } = usePageModal({
   pageContentRef
   pageContentRef
 });
 });
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 const responseHandle = useResponseHandle();
 const responseHandle = useResponseHandle();
 async function handleDetailData(row, type) {
 async function handleDetailData(row, type) {
   const { id } = row;
   const { id } = row;

+ 5 - 1
src/views/system/logistics/index.vue

@@ -6,7 +6,11 @@ import { PageSearch, usePageSearch } from "/@/components/PageSearch";
 import searchConfig from "./config/search.config";
 import searchConfig from "./config/search.config";
 import type { PageContentInstance } from "/@/components/PageContent";
 import type { PageContentInstance } from "/@/components/PageContent";
 const pageContentRef = ref<PageContentInstance | null>(null);
 const pageContentRef = ref<PageContentInstance | null>(null);
-const { handleResetClick, handleSearchClick } = usePageSearch();
+const { handleResetClick, handleSearchClick } = usePageSearch(
+  undefined,
+  undefined,
+  searchConfig
+);
 </script>
 </script>
 
 
 <template>
 <template>