From c9e43052a3263c648d4b7938a140a544e6140f4b Mon Sep 17 00:00:00 2001 From: dengbf Date: Thu, 31 Jul 2025 14:26:25 +0800 Subject: [PATCH] =?UTF-8?q?-=20[=E5=85=B3=E8=81=94]=20#[1476864680361984]?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=E7=AD=96=E7=95=A5=E8=AF=A6=E6=83=85=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E8=B0=83=E6=95=B4=20http://192.168.0.96:8090/demo/rdm?= =?UTF-8?q?.html#/story-detail/939050947543040/939050947543042/14768646803?= =?UTF-8?q?61984?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/TsAvatar/TsAvatar.vue | 3 +- .../notifytactics/notifytactics-edit.vue | 177 +++++++----------- .../tacticsedit/active-detail.vue | 31 ++- .../tacticsedit/condition-modal.vue | 6 + 4 files changed, 83 insertions(+), 134 deletions(-) diff --git a/src/resources/components/TsAvatar/TsAvatar.vue b/src/resources/components/TsAvatar/TsAvatar.vue index 6790e991..41e7431f 100644 --- a/src/resources/components/TsAvatar/TsAvatar.vue +++ b/src/resources/components/TsAvatar/TsAvatar.vue @@ -64,12 +64,11 @@ export default { }, computed: { avatarSrc() { - if (this.avatar === null) return null; if (this.avatar && this.avatar.indexOf('api') > -1) return this.avatar.indexOf(BASEURLPREFIX + '/') != 0 ? BASEURLPREFIX + '/' + this.avatar : this.avatar; if (this.initType === 'role') return require('@/resources/assets/images/avatar/role.png'); if (this.initType === 'team') return require('@/resources/assets/images/avatar/team.png'); if (this.initType === 'user' && !this.namePinyin) return require('@/resources/assets/images/avatar/user.png'); - if (this.initType && !this.namePinyin) return require('@/resources/assets/images/avatar/process.png'); + if (this.initType && !['role', 'team', 'user'].includes(this.initType)) return require('@/resources/assets/images/avatar/process.png'); else return null; }, diff --git a/src/views/pages/framework/notifytactics/notifytactics-edit.vue b/src/views/pages/framework/notifytactics/notifytactics-edit.vue index 077170a5..d6be6bbc 100644 --- a/src/views/pages/framework/notifytactics/notifytactics-edit.vue +++ b/src/views/pages/framework/notifytactics/notifytactics-edit.vue @@ -18,7 +18,12 @@ -
+
- {{ $t('page.actions') }} - {{ row.notifyList.length }} + {{ $t('page.actions') }} +
{{ $t('page.actions') }} @@ -81,17 +86,16 @@
-
-
+
+
diff --git a/src/views/pages/framework/notifytactics/tacticsedit/condition-modal.vue b/src/views/pages/framework/notifytactics/tacticsedit/condition-modal.vue index dc5448cc..bc64e923 100644 --- a/src/views/pages/framework/notifytactics/tacticsedit/condition-modal.vue +++ b/src/views/pages/framework/notifytactics/tacticsedit/condition-modal.vue @@ -89,6 +89,7 @@ border="none" size="small" :transfer="true" + class="transparentSelect" >
@@ -731,4 +732,9 @@ export default { } } } +.transparentSelect { + .ivu-input { + background-color: transparent !important; + } +} -- Gitee