From 388229b588bef7c553cf14677115d8689e51de7e 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: Fri, 14 Feb 2025 17:36:42 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=8F=8D=E9=A6=88=E8=A1=A8=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 3 +- sub/task/enforce.vue | 29 +- .../uni-easyinput/uni-easyinput.vue | 1462 +++++++++-------- 3 files changed, 822 insertions(+), 672 deletions(-) diff --git a/pages.json b/pages.json index 81aa4e5..240f5bd 100644 --- a/pages.json +++ b/pages.json @@ -133,7 +133,8 @@ "van-action-sheet": "/wxcomponents/vant/action-sheet/index" }, "componentPlaceholder": { - "u-modal": "view" + "u-modal": "view", + "uni-easyinput": "view" } } } diff --git a/sub/task/enforce.vue b/sub/task/enforce.vue index 4c5c763..4bafc16 100644 --- a/sub/task/enforce.vue +++ b/sub/task/enforce.vue @@ -1,6 +1,6 @@ @@ -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 @@ + + + + + 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 @@