From 94e812385a32d7fcbd0cf54b4cbaa9f8de4f9432 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?=
=?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com>
Date: Sun, 16 Feb 2025 17:17:26 +0800
Subject: [PATCH] =?UTF-8?q?=E5=8F=8D=E9=A6=88=E8=AF=A6=E6=83=85?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
api/enterprise/index.js | 11 +
api/inspections/index.js | 29 ++-
components/cs-bottom-wrapper/index.vue | 2 +-
components/cs-dict-tag/index.vue | 4 +
pages.json | 11 +-
pages/enterprise.vue | 33 ++-
static/scss/global.scss | 1 +
sub/enterprise/detail.vue | 323 ++++++++++++++++---------
sub/task/detail.vue | 8 +-
sub/task/enforce.vue | 184 +++++++++++++-
sub/task/locate.vue | 34 ++-
sub/task/log.vue | 113 +++++++++
sub/task/record.vue | 100 ++++++--
utils/dict.js | 13 +-
utils/ruoyi.js | 11 +-
15 files changed, 697 insertions(+), 180 deletions(-)
create mode 100644 sub/task/log.vue
diff --git a/api/enterprise/index.js b/api/enterprise/index.js
index d7bb773..66915c6 100644
--- a/api/enterprise/index.js
+++ b/api/enterprise/index.js
@@ -33,4 +33,15 @@ export function getEnterPrise(id) {
url: `/system/enterprise/get?id=${id}`,
method: 'GET',
})
+}
+
+/**
+ * 审核企业
+ * @param {Object} id
+ */
+export function checkEnterprise(id) {
+ return request({
+ url: `/system/enterprise/audit?id=${id}`,
+ method: 'PUT',
+ })
}
\ No newline at end of file
diff --git a/api/inspections/index.js b/api/inspections/index.js
index 5139de7..5648bba 100644
--- a/api/inspections/index.js
+++ b/api/inspections/index.js
@@ -12,15 +12,7 @@ export const InspectionsApi = {
params
})
},
- /**
- * 获取详情
- */
- getDetail: (id) => {
- return request({
- url: `/system/enterprise-inspections/appGet?id=${id}`,
- method: 'GET',
- })
- },
+
/**
* 获取反馈结果
*/
@@ -68,5 +60,24 @@ export const InspectionsApi = {
method: 'PUT',
data
})
+ },
+ /**
+ * 执法反馈
+ */
+ feeback: data => {
+ return request({
+ url: `/system/inspections-log/inspectionsAudit`,
+ method: 'POST',
+ data
+ })
+ },
+ /**
+ * 反馈详情
+ */
+ feedBackDetail: id => {
+ return request({
+ url: `/system/inspections-log/get?id=${id}`,
+ method: 'GET',
+ })
}
}
\ No newline at end of file
diff --git a/components/cs-bottom-wrapper/index.vue b/components/cs-bottom-wrapper/index.vue
index f2a8c39..7461156 100644
--- a/components/cs-bottom-wrapper/index.vue
+++ b/components/cs-bottom-wrapper/index.vue
@@ -21,7 +21,7 @@ export default {
diff --git a/sub/task/detail.vue b/sub/task/detail.vue
index a7cc418..340d664 100644
--- a/sub/task/detail.vue
+++ b/sub/task/detail.vue
@@ -137,7 +137,7 @@
isSelect: isSelect.includes(record.id)
}"
@tap.native.stop="select(record.id)"
- v-if="[3, null].includes(record.inspectionStatus)"
+ v-if="['3', null].includes(record.inspectionStatus)"
>
@@ -684,6 +684,12 @@ export default {
box-shadow: none;
--dropdown-menu-title-font-size: 13px;
--dropdown-menu-title-text-color: #071437;
+ .van-dropdown-menu__item {
+ flex: 0;
+ .van-dropdown-menu__title {
+ width: 80px;
+ }
+ }
}
}
.isTop {
diff --git a/sub/task/enforce.vue b/sub/task/enforce.vue
index 4bafc16..847b05c 100644
--- a/sub/task/enforce.vue
+++ b/sub/task/enforce.vue
@@ -32,38 +32,180 @@
+
+
+
+ *
+ 截止日期
+
+
+
+ {{ $util.formatDate(form.date, 'YYYY年M月D日') }}
+
+
+
+
+
+
-
+
{{ form.state == 2 ? '审批通过' : '整改处理' }}
+
+
+
+
+ {{ form.state == 2 ? '是否通过?' : '是否整改?' }}
+
+ 确认后不可再次修改
+
+
@@ -78,6 +220,7 @@ export default {
border: 1px solid #f9f9f9;
border-radius: 12px;
background-color: #fff;
+ margin-bottom: 12px;
}
.operation {
padding: 12px;
@@ -106,4 +249,29 @@ export default {
::v-deep .uni-easyinput__content-textarea {
min-height: 400rpx;
}
+::v-deep .u-upload__button {
+ border-radius: 8px !important;
+ border: 1px solid #f1f1f4;
+ background-color: #f9f9f9 !important;
+}
+
+::v-deep .u-upload__wrap {
+ .u-upload__wrap__preview {
+ width: 192rpx;
+ height: 192rpx;
+ border-radius: 8px !important;
+ overflow: visible !important;
+ .u-upload__wrap__preview__image {
+ border-radius: 8px !important;
+ }
+ .u-upload__deletable {
+ border-radius: 100% !important;
+ background-color: #f8285a !important;
+ transform: translateX(50%) translateY(-50%);
+ .u-upload__deletable__icon {
+ position: relative;
+ }
+ }
+ }
+}
diff --git a/sub/task/locate.vue b/sub/task/locate.vue
index 01aae23..89cf402 100644
--- a/sub/task/locate.vue
+++ b/sub/task/locate.vue
@@ -211,6 +211,17 @@ export default {
this.timer && clearInterval(this.timer)
return false
},
+ watch: {
+ list: {
+ handler: function (val) {
+ if (val.length >= 2) {
+ this.timer && clearInterval(this.timer)
+ }
+ },
+ immediate: true,
+ deep: true
+ }
+ },
methods: {
async init() {
const miniCode = await getMiniCode({
@@ -331,18 +342,19 @@ export default {
},
echoQueset() {
const timeout = 3 * 60 * 1000
+ // const timeout = 10 * 1000
this.timer && clearInterval(this.timer)
- // this.timer = setInterval(() => {
- // this.getLocateList()
- // this.time += 5000
- // if (this.time > timeout) {
- // console.log('timeout')
- // clearInterval(this.timer)
- // uni.navigateBack({
- // delta: 1
- // })
- // }
- // }, 5 * 1000)
+ this.timer = setInterval(() => {
+ this.getLocateList()
+ this.time += 5000
+ if (this.time > timeout) {
+ console.log('timeout')
+ clearInterval(this.timer)
+ uni.navigateBack({
+ delta: 1
+ })
+ }
+ }, 5 * 1000)
},
goNext() {
InspectionsApi.beginEnforce({
diff --git a/sub/task/log.vue b/sub/task/log.vue
new file mode 100644
index 0000000..0644d0a
--- /dev/null
+++ b/sub/task/log.vue
@@ -0,0 +1,113 @@
+
+
+
+
+
+ *
+ 处理意见
+
+
+ {{ detail.feedBack }}
+
+
+ *
+ 上传证明
+
+
+
+
+
+
+
+
+
+
+ *
+ 截止日期
+
+
+
+ {{ $util.formatDate(detail.correctionTime, 'YYYY年M月D日') }}
+
+
+
+
+
+
+
+
+
+
diff --git a/sub/task/record.vue b/sub/task/record.vue
index a1067db..3c0a555 100644
--- a/sub/task/record.vue
+++ b/sub/task/record.vue
@@ -1,10 +1,13 @@
-
-
+
+
{{ detail.title }}
+
+ {{ $dict.echoDicValue(dictMap.task_priority, detail.priority) }}
+
+
+ {{
+ $dict.echoDicValue(
+ dictMap.enterprises_area,
+ detail.enterprise.region
+ )
+ }}
+
+
+ {{
+ $dict.echoDicValue(
+ dictMap.enterprises_type,
+ detail.enterprise.type
+ )
+ }}
+
- 结果反馈
-
+ 结果反馈
+
- {{
- $dict.echoDicValue(dictMap.Inspections_status, item.status)
- }}
+ {{ $dict.echoDicValue(dictMap.inspections_mark, item.status) }}
{{ $util.formatDate(item.createTime, 'YYYY/M/D h:m') }}
@@ -158,7 +183,10 @@
-
+
执法签到
@@ -169,7 +197,7 @@
任务完成
-
+