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; + } } }