diff --git a/zdxt-web-client/zdxt-efcode-enforcement-app/src/api/nos/common.js b/zdxt-web-client/zdxt-efcode-enforcement-app/src/api/nos/common.js index 6d79358a..73780a38 100644 --- a/zdxt-web-client/zdxt-efcode-enforcement-app/src/api/nos/common.js +++ b/zdxt-web-client/zdxt-efcode-enforcement-app/src/api/nos/common.js @@ -7,5 +7,7 @@ const baseUrl = "/app-enf"; export const queryListAndQrInfo = (params, success, error) => _post(baseUrl + "/enterpriseInfo/queryListAndQrInfo", params, success, error); // 执法端-分页查询用户 export const queryUsersByPage = (params, success, error) => _get(baseUrl + "/system/queryUsersByPage", params, success, error); +// 查询执法单位下的用户列表 +export const getBureauUnitUsers = (params, success, error) => _get("/enforcementcode/bureauUnit/users", params, success, error); // 查询执依据告列表 export const queryAccordingList = (params, success, error) => _get(baseUrl + "/according/list", params, success, error); diff --git a/zdxt-web-client/zdxt-efcode-enforcement-app/src/components/enforcement/nos/RegisterPopups.vue b/zdxt-web-client/zdxt-efcode-enforcement-app/src/components/enforcement/nos/RegisterPopups.vue index 70bfabb9..5c825c63 100644 --- a/zdxt-web-client/zdxt-efcode-enforcement-app/src/components/enforcement/nos/RegisterPopups.vue +++ b/zdxt-web-client/zdxt-efcode-enforcement-app/src/components/enforcement/nos/RegisterPopups.vue @@ -86,7 +86,9 @@ + + diff --git a/zdxt-web-client/zdxt-efcode-enforcement-app/src/views/enforcement/my/notice/cp_notice_message.vue b/zdxt-web-client/zdxt-efcode-enforcement-app/src/views/enforcement/my/notice/cp_notice_message.vue index 36ada390..575e2ff8 100644 --- a/zdxt-web-client/zdxt-efcode-enforcement-app/src/views/enforcement/my/notice/cp_notice_message.vue +++ b/zdxt-web-client/zdxt-efcode-enforcement-app/src/views/enforcement/my/notice/cp_notice_message.vue @@ -1,65 +1,88 @@ diff --git a/zdxt-web-client/zdxt-efcode-enforcement-app/src/views/enforcement/statistics/statisticsAnalysis.vue b/zdxt-web-client/zdxt-efcode-enforcement-app/src/views/enforcement/statistics/statisticsAnalysis.vue index 252a1b58..03a7c3b8 100644 --- a/zdxt-web-client/zdxt-efcode-enforcement-app/src/views/enforcement/statistics/statisticsAnalysis.vue +++ b/zdxt-web-client/zdxt-efcode-enforcement-app/src/views/enforcement/statistics/statisticsAnalysis.vue @@ -409,12 +409,12 @@ const loadStatistics = () => { const startNumberAnimation = () => { const duration = 1000; const startTime = performance.now(); - // const targetTotal = statistics.value.registrationTotal; // 涉企检查数量 - const targetTotal = 1; // 涉企检查数量 + const targetTotal = statistics.value.registrationTotal; // 涉企检查数量 + // const targetTotal = 1; // 涉企检查数量 const targetNotice = statistics.value.noticeTotal; // 执法检查预告数量 const targetAuth = statistics.value.authTotal; // 委托检查数量 - // const targetEvaluate = statistics.value.evaluateTotal; // 评论数量 - const targetEvaluate = 1; // 评论数量 + const targetEvaluate = statistics.value.evaluateTotal; // 评论数量 + // const targetEvaluate = 1; // 评论数量 const targetComplaint = statistics.value.complaintTotal; // 投诉数量 const animate = (currentTime) => {