From 22f6e8ca288dc70e152ac54bbeb127dc6b348a78 Mon Sep 17 00:00:00 2001 From: liuye Date: Thu, 15 Aug 2024 17:54:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E5=8A=A9=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/project/baiduAI/AppRecord/AppRecord.vue | 13 ++++++++++++- src/project/weiyang/AppWorkOrder/Detail.vue | 15 +++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/src/project/baiduAI/AppRecord/AppRecord.vue b/src/project/baiduAI/AppRecord/AppRecord.vue index 1d5aa32..d7b4676 100644 --- a/src/project/baiduAI/AppRecord/AppRecord.vue +++ b/src/project/baiduAI/AppRecord/AppRecord.vue @@ -12,7 +12,7 @@

{{item.content}}

-

{{item.createTime}}

+

{{item.aiConfigName}}{{item.createTime}}

查看对话

@@ -183,6 +183,17 @@ page { .time-text { color: #999; padding-top: 34px; + .config-name { + display: inline-block; + padding: 4px 20px; + line-height: 36px; + font-family: PingFangSC-Regular; + font-size: 24px; + color: #7E8895; + border-radius: 22px; + margin-right: 20px; + background-color: #E4EAF1; + } } .item-view { p { diff --git a/src/project/weiyang/AppWorkOrder/Detail.vue b/src/project/weiyang/AppWorkOrder/Detail.vue index cf920f4..2c9bc05 100644 --- a/src/project/weiyang/AppWorkOrder/Detail.vue +++ b/src/project/weiyang/AppWorkOrder/Detail.vue @@ -13,6 +13,7 @@
{{ data.name }}的上报
{{ data.createTime }}
+ 编辑
@@ -265,6 +266,9 @@ export default { } return name.substr(0, 2) }, + toEdit() { + uni.navigateTo({url: `./Add?id=${this.id}&eventSource=${this.data.eventSource}`}) + }, }, } @@ -327,6 +331,17 @@ uni-page-body { font-size: 28px; color: #999999; } + + .edit-btn { + position: absolute; + color: #197df0; + top: 32px; + right: 32px; + width: 150px; + height: 44px; + line-height: 44px; + text-align: right; + } } }