diff --git a/src/api/FollowUpRecords/followrecords.ts b/src/api/FollowUpRecords/followrecords.ts new file mode 100644 index 0000000..05b8a9e --- /dev/null +++ b/src/api/FollowUpRecords/followrecords.ts @@ -0,0 +1,12 @@ +import { http } from '@/utils/http'; + + + +/*通过id查询数据*/ +export function queryByIdApi(id : string) { + return http({ + url: '/cxcGwjktbHmcAPP/cxcGwjktbHmcAPP/queryById', + method: 'GET', + data: { id } + }) +} \ No newline at end of file diff --git a/src/pages-bpm/FollowUpRecords/index.vue b/src/pages-bpm/FollowUpRecords/index.vue new file mode 100644 index 0000000..12fbfb3 --- /dev/null +++ b/src/pages-bpm/FollowUpRecords/index.vue @@ -0,0 +1,70 @@ + + + \ No newline at end of file diff --git a/src/pages.json b/src/pages.json index eaa5d09..d86be2d 100644 --- a/src/pages.json +++ b/src/pages.json @@ -572,6 +572,10 @@ "path": "document/index", "type": "page" }, + { + "path": "FollowUpRecords/index", + "type": "page" + }, { "path": "khss/index", "type": "page" diff --git a/src/types/uni-pages.d.ts b/src/types/uni-pages.d.ts index 195aaa2..d2bdcda 100644 --- a/src/types/uni-pages.d.ts +++ b/src/types/uni-pages.d.ts @@ -66,6 +66,7 @@ interface NavigateToOptions { "/pages-process/taskHandle" | "/pages-bpm/carRental/index" | "/pages-bpm/document/index" | + "/pages-bpm/FollowUpRecords/index" | "/pages-bpm/khss/index" | "/pages-bpm/lawsAndRegulations/index" | "/pages-bpm/leaveApplication/index" |