diff --git a/src/api/base/lcglSpApi.ts b/src/api/base/lcglSpApi.ts
index 459ac83..39ee007 100644
--- a/src/api/base/lcglSpApi.ts
+++ b/src/api/base/lcglSpApi.ts
@@ -8,3 +8,14 @@ import { get } from "@/utils/request";
export const getByYwIdAndYwTypeApi = (ywId: string, ywType: string) => {
return get("/api/lcglSp/getByYwIdAndYwType", { ywId, ywType });
};
+
+/**
+ * 查询审批流程
+ * @param params 查询参数
+ */
+export function getLcglApi(params: {
+ ywId?: string;
+ ywType?: string;
+}) {
+ return get('/api/lcglSp/getLcgl', params);
+}
\ No newline at end of file
diff --git a/src/components/LcglSp/index.vue b/src/components/LcglSp/index.vue
new file mode 100644
index 0000000..0d4ad20
--- /dev/null
+++ b/src/components/LcglSp/index.vue
@@ -0,0 +1,550 @@
+
+
+
+
+ 申请人
+
+
+
+ {{ sqr.userName }}
+ {{ sqr.deptName }}
+
+ {{ getSqrStatusText(sqr.approveStatus) }}
+
+
+
+
+
+ 申请意见:
+ {{ sqr.approveRemark }}
+
+
+ 申请时间:
+ {{ formatTime(sqr.approveTime) }}
+
+
+
+
+
+
+
+ 审批人
+
+
+
+ {{ spr.userName }}
+ {{ spr.deptName }}
+
+ {{ getSprStatusText(spr.approveStatus) }}
+
+
+
+
+
+ 审批意见:
+ {{ spr.approveRemark }}
+
+
+ 审批时间:
+ {{ formatTime(spr.approveTime) }}
+
+
+
+
+
+
+
+ 抄送人
+
+
+
+ {{ csr.userName }}
+ {{ csr.deptName }}
+
+ {{ getSprStatusText(csr.approveStatus) }}
+
+
+
+
+
+
+
+ {{ csrExpanded ? '收起' : `更多(${csrList.length - 2})` }}
+
+ ▼
+
+
+
+
+ 操作记录
+
+
+
+
+ {{ log.operationContent }}
+
+
+
+
+
+
+
+
+
+ {{ logExpanded ? '收起' : `更多(${logList.length - 2})` }}
+
+ ▼
+
+
+
+
+
+
+
+
+
+ 变更前:
+ {{ currentLog.beforeChange }}
+
+
+ 变更后:
+ {{ currentLog.afterChange }}
+
+
+ 备注:
+ {{ currentLog.remark }}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages/base/qj/components/xsQjEdit.vue b/src/pages/base/qj/components/xsQjEdit.vue
index 51d73ce..ddd42fe 100644
--- a/src/pages/base/qj/components/xsQjEdit.vue
+++ b/src/pages/base/qj/components/xsQjEdit.vue
@@ -22,7 +22,7 @@
text="取消"
class="ml-15 mr-7"
:plain="true"
- @click="navigateBack"
+ @click="goHome"
/>
diff --git a/src/pages/base/qj/detail.vue b/src/pages/base/qj/detail.vue
index 715bebd..b25531d 100644
--- a/src/pages/base/qj/detail.vue
+++ b/src/pages/base/qj/detail.vue
@@ -36,7 +36,7 @@
-
+
@@ -57,7 +57,7 @@
import { navigateBack } from "@/utils/uniapp";
import { useDataStore } from "@/store/modules/data";
import { getXsQjDetailApi } from "@/api/base/xsQjApi";
-import LcglSpList from "@/components/LcglSpList/index.vue";
+import LcglSp from "@/components/LcglSp/index.vue";
const { getData } = useDataStore();