From da6074f083adc46c0b0b4075515ddb037684183b Mon Sep 17 00:00:00 2001 From: Zhufu <1176354795@qq.com> Date: Wed, 10 Jul 2024 15:58:29 +0800 Subject: [PATCH 01/14] =?UTF-8?q?=E3=80=90=E5=9B=BE=E6=96=91=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E3=80=91=E5=A4=96=E5=B1=82UI=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../changearea/AuditProgress/index.vue | 157 +++++++++++++++--- 1 file changed, 137 insertions(+), 20 deletions(-) diff --git a/src/views/demo/tiankongdi/changearea/AuditProgress/index.vue b/src/views/demo/tiankongdi/changearea/AuditProgress/index.vue index 45f69953..8878f63d 100644 --- a/src/views/demo/tiankongdi/changearea/AuditProgress/index.vue +++ b/src/views/demo/tiankongdi/changearea/AuditProgress/index.vue @@ -41,12 +41,49 @@ @click="emits('showInfo', true, item)" v-if="dataList.length > 0" > -
+
{{ item.areaname }}
+
+
进度
+
+ {{item.verificatedtask}}/{{item.totaltask}} +
+
+
+
超期
+
+ {{item.overduetask}} +
+
+
+
待审核
+
+ {{item.verifytask}} +
+
-
- {{ item.count }} +
+
+
合法
+
{{item.legalcase}}
+
+
+
其他
+
{{item.ilegalcase}}
+
+
+
非粮化
+
{{item.nonfoodcase}}
+
+
+
复耕
+
{{item.rehabilitationcase}}
+
+
+
补手续
+
{{item.makeupcase}}
+
@@ -58,10 +95,10 @@ @@ -73,23 +110,27 @@ .screen-row { display: flex; .screen-item { - flex: 1; + font-family: Alibaba PuHuiTi; + font-weight: 500; + font-size: 17px; + color: #000000; + width: 50%; display: flex; .screen-item-label { - width: 55px; + width: 56px; padding-left: 10px; display: flex; align-items: center; - font-size: 15px; } } } } .data-list { - height: calc(100% - 52px); - background: @component-background; - margin-top: 10px; + height: calc(100% - 62px); // background: darkgoldenrod; + // background: @component-background; + margin-top: 10px; + padding: 0px 10px; .data-title { height: 40px; background: #bab9b7; @@ -102,17 +143,58 @@ } .show-data-list-content { .data-item { + cursor: pointer; width: 100%; + background: #fff; + border-radius: 11px; + padding: 10px; + margin-bottom: 10px; + .name-div { + display: flex; display: flex; height: 50px; - align-items: center; - padding: 10px; - justify-content: space-between; - border-bottom: 1px solid #ececec; - cursor: pointer; - .name-div { + display: flex; + height: 50px; + align-items: center; + padding: 10px 0px; + border-bottom: 1px solid #E5E5E5; + } + .info-data-div{ display: flex; align-items: center; + justify-content: space-between; + margin-top: 10px; + .info-data-item{ + display: flex; + align-items: center; + flex: 1; + justify-content: center; + border-right: 1px solid #EDEDED; + .info-data-label{ + font-family: Alibaba PuHuiTi; + font-weight: 400; + font-size: 16px; + color: #959494; + display: flex; + justify-content: end; + flex: 1; + padding-right: 5px; + } + .info-data-data{ + font-family: HarmonyOS Sans; + font-weight: 500; + font-size: 16px; + color: #000000; + line-height: 30px; + flex: 1; + display: flex; + justify-content: start; + padding-left: 5px; + } + } + .info-data-item:nth-last-child(1){ + border-right: 0px; + } } .data-div { font-weight: 500; @@ -126,17 +208,52 @@ margin-right: 7px; } .item-label { + width: 100px; font-size: 16px; font-weight: 600; margin-left: 5px; } + .progress-div{ + display:flex; + font-weight: 500; + font-size: 16px; + line-height: 30px; + margin-right: 17px; + .progress-label{ + font-family: Alibaba PuHuiTi; + color: #FFFFFF; + width: 50px; + height: 27px; + border-radius: 13px 0px 0px 13px; + display: flex; + align-items: center; + justify-content: center; + } + .progress-data{ + background: #EFEFEF; + height: 27px; + display: flex; + align-items: center; + justify-content: center; + border-radius: 0px 0px 11px 0px; + } + .progress-color{ + background: #086DEC; + } + .extended-color{ + background: #D03542 + } + .reviewed-color{ + background: #EC7908 + } + } } .data-item:hover { background-color: rgba(8, 109, 236, 0.08); } - .data-item:nth-child(2n) { - background: #ececec; - } + // .data-item:nth-child(2n) { + // background: #ececec; + // } } } .no-data { From 9440ff063897947911e86d7b7c97db39c27214eb Mon Sep 17 00:00:00 2001 From: Zhufu <1176354795@qq.com> Date: Wed, 10 Jul 2024 16:03:17 +0800 Subject: [PATCH 02/14] =?UTF-8?q?=E3=80=90=E6=8E=A5=E6=94=B6=E5=8A=9E?= =?UTF-8?q?=E7=90=86=E3=80=91=E6=B5=81=E7=A8=8B=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/demo/tiankongdi/curbspotcity/MapList/index.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/views/demo/tiankongdi/curbspotcity/MapList/index.vue b/src/views/demo/tiankongdi/curbspotcity/MapList/index.vue index 3c3f569e..902f594e 100644 --- a/src/views/demo/tiankongdi/curbspotcity/MapList/index.vue +++ b/src/views/demo/tiankongdi/curbspotcity/MapList/index.vue @@ -305,6 +305,7 @@ import { message } from "ant-design-vue"; import ShowInfoModal from './ShowInfoModal/index.vue' import { flowStore } from '@/store/modules/flow'; import { getDetail } from '@/api/sys/WFSchemeInfo'; +import { Audit } from '@/views/demo/workflow/task/process/page'; const userStore = useUserStore() const flowWfDataStore = flowStore(); const emits = defineEmits([ @@ -479,6 +480,12 @@ const nextData = async () => { From 25aebab8d7079f48119014e789192bd2fc02a6e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=A6=8D?= <1455167345@qq.com> Date: Wed, 10 Jul 2024 16:19:13 +0800 Subject: [PATCH 04/14] =?UTF-8?q?=E6=B6=88=E6=81=AF=E6=9C=AA=E8=AF=BB?= =?UTF-8?q?=E4=B8=94=E6=98=AF=E4=BB=BB=E5=8A=A1=E6=B6=88=E6=81=AF=E7=9A=84?= =?UTF-8?q?=E8=B7=B3=E4=BB=BB=E5=8A=A1=E8=AF=A6=E6=83=85=EF=BC=8C=E5=B7=B2?= =?UTF-8?q?=E8=AF=BB=E5=92=8C=E4=B8=8D=E6=98=AF=E4=BB=BB=E5=8A=A1=E6=B6=88?= =?UTF-8?q?=E6=81=AF=E7=9A=84=E8=B7=B3=E6=B6=88=E6=81=AF=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/demo/message.ts | 7 +++ .../header/components/notify/index.vue | 55 +++++++++++-------- .../header/components/notify/message.vue | 40 -------------- src/views/demo/message/msg/DetailModal.vue | 45 +++++++++++++++ src/views/demo/message/msg/index.vue | 47 ++++++++++++++-- .../illegaltreatment/illegaltreatment.data.ts | 8 +-- .../patchsummary/patchsummary.data.ts | 14 ++--- 7 files changed, 137 insertions(+), 79 deletions(-) delete mode 100644 src/layouts/default/header/components/notify/message.vue create mode 100644 src/views/demo/message/msg/DetailModal.vue diff --git a/src/api/demo/message.ts b/src/api/demo/message.ts index 623131ca..a31dc31d 100644 --- a/src/api/demo/message.ts +++ b/src/api/demo/message.ts @@ -7,6 +7,7 @@ enum Api { DeleteEntitys = '/api/ImMsg/DeleteEntitys', ReadMsg = '/api/ImMsg/ReadMsg', GetLastList = '/api/ImMsg/GetLastList', + GetInfoByContentId = '/api/ImMsg/GetInfoByContentId', } export function loadSysImMsgList(params) { @@ -37,3 +38,9 @@ export function getLastList(params) { url: Api.GetLastList + '?userId=' + params.userId, }); } + +export function getInfoByContentId(params) { + return defHttp.get({ + url: Api.GetInfoByContentId + '?contentid=' + params.id, + }); +} diff --git a/src/layouts/default/header/components/notify/index.vue b/src/layouts/default/header/components/notify/index.vue index a92703b7..b0a8f97b 100644 --- a/src/layouts/default/header/components/notify/index.vue +++ b/src/layouts/default/header/components/notify/index.vue @@ -30,7 +30,7 @@ - +
diff --git a/src/views/demo/caseoffence/index.vue b/src/views/demo/caseoffence/index.vue index 6e9310f2..ba80df51 100644 --- a/src/views/demo/caseoffence/index.vue +++ b/src/views/demo/caseoffence/index.vue @@ -340,27 +340,4 @@ text-align: center; cursor: pointer; } - - /* 整个滚动条的样式 */ - ::-webkit-scrollbar { - width: 12px; - height: 12px; - } - - /* 滚动条轨道 */ - ::-webkit-scrollbar-track { - background: #f1f1f1; - border-radius: 10px; - } - - /* 滚动条滑块 */ - ::-webkit-scrollbar-thumb { - background: #888; - border-radius: 10px; - } - - /* 当鼠标悬停在滚动条滑块上时的样式 */ - ::-webkit-scrollbar-thumb:hover { - background: #555; - } diff --git a/src/views/subject/index.vue b/src/views/subject/index.vue index 18b99988..7ede0d48 100644 --- a/src/views/subject/index.vue +++ b/src/views/subject/index.vue @@ -102,7 +102,7 @@ } }); list.value = res; - cardRotationLoop(); + // cardRotationLoop(); } // 旋转动画 async function cardRotationLoop() { @@ -143,7 +143,7 @@ // 跳转 async function getHome(item) { if (!item.linkOrApi) { - message.error('跳转链接为空!'); + message.warn('暂未开放!'); return; } if (item.isExternal) { From 547d1906e9c44a7f252598df674ace2fecc50612 Mon Sep 17 00:00:00 2001 From: Zhufu <1176354795@qq.com> Date: Wed, 10 Jul 2024 16:42:55 +0800 Subject: [PATCH 08/14] =?UTF-8?q?=E3=80=90=E8=AF=A6=E6=83=85=E3=80=91?= =?UTF-8?q?=E6=98=BE=E7=A4=BAlabel=E5=92=8C=E9=99=84=E4=BB=B6=E4=B8=8B?= =?UTF-8?q?=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../MapList/ShowInfoModal/index.vue | 37 ++++++++++++++++--- .../demo/tiankongdi/curbspotcity/util.ts | 4 ++ 2 files changed, 35 insertions(+), 6 deletions(-) diff --git a/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue b/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue index d831a0c0..97ecce2f 100644 --- a/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue +++ b/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue @@ -37,7 +37,7 @@ {{ remark }} {{ createtime }} -