2 Commits f80ee7a15c ... 6291a2c9b2

Autor SHA1 Mensaje Fecha
  ylong 6291a2c9b2 Merge branch 'feature-v2.0' into feature-sell hace 2 semanas
  ylong 8cebcb7f07 refactor(CommonTable): 重构表格数据源逻辑以支持自定义数据源 hace 2 semanas
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/components/CommonPage/CommonTable.vue

+ 1 - 1
src/components/CommonPage/CommonTable.vue

@@ -145,7 +145,7 @@
 
     //导出数据 进导出记录
     function exportRecord(params, method = "POST") {
-        let data = method === "POST" ? { data: params } : {params};
+        let data = method === "POST" ? { data: params } : { params };
         return proxy.$http({
             url: props.pageConfig.exportUrl,
             method,