From 54c3c9fc4f729da0ce9f593eca0117a1cda5cd50 Mon Sep 17 00:00:00 2001 From: devil_gong Date: Fri, 21 Jun 2019 16:29:02 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E6=B6=88=E6=81=AF=EF=BC=8C?= =?UTF-8?q?=E7=A7=AF=E5=88=86=EF=BC=8C=E9=97=AE=E7=AD=94=E5=B1=95=E7=A4=BA?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=9B=B4=E5=A4=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../index/view/default/answer/index.html | 62 ++++++++++++++++--- .../index/view/default/message/index.html | 38 +++++++++++- .../view/default/userintegral/index.html | 35 ++++++++++- 3 files changed, 122 insertions(+), 13 deletions(-) diff --git a/application/index/view/default/answer/index.html b/application/index/view/default/answer/index.html index 6ac2c5d0c..1407796fe 100755 --- a/application/index/view/default/answer/index.html +++ b/application/index/view/default/answer/index.html @@ -83,14 +83,14 @@ 姓名 - 电话 + 电话 标题 内容 回复 - 是否显示 - 回复时间 - 时间 - 操作 + 回复时间 + 时间 + 更多 + 操作 @@ -98,7 +98,7 @@ {{foreach $data_list as $v}} {{$v.name}} - {{$v.tel}} + {{$v.tel}} {{$v.title}} {{$v.content}} @@ -108,9 +108,53 @@ 未回复 {{/if}} - {{$v.is_show_text}} - {{$v.reply_time}} - {{$v.add_time}} + {{$v.reply_time}} + {{$v.add_time}} + + 查看更多 +
+
+
+

详情内容

+ × +
+
+
+
姓名
+
{{if empty($v['name'])}}未填写{{else /}}{{$v.name}}{{/if}}
+ +
电话
+
{{if empty($v['tel'])}}未填写{{else /}}{{$v.tel}}{{/if}}
+ +
标题
+
{{if empty($v['title'])}}未填写{{else /}}{{$v.title}}{{/if}}
+ +
内容
+
{{$v.content|raw}}
+ +
回复内容
+
+ {{{if $v['is_reply'] eq 1}} + {{$v.reply}} + {{else /}} + 未回复 + {{/if}} +
+ +
回复时间
+
{{if empty($v['reply_time'])}}未回复{{else /}}{{$v.reply_time}}{{/if}}
+ +
创建时间
+
{{$v.add_time}}
+ +
更新时间
+
{{$v.upd_time}}
+
+
+
+
+ diff --git a/application/index/view/default/message/index.html b/application/index/view/default/message/index.html index 1961ffc18..90fdc38ed 100755 --- a/application/index/view/default/message/index.html +++ b/application/index/view/default/message/index.html @@ -98,7 +98,8 @@ 业务 详情 状态 - 时间 + 时间 + 更多 @@ -110,7 +111,40 @@ {{$v.business_type_name}} {{$v.detail}} {{$v.is_read_name}} - {{$v.add_time_time}} + {{$v.add_time_time}} + + 查看更多 +
+
+
+

详情内容

+ × +
+
+
+
标题
+
{{$v.title}}
+ +
类型
+
{{$v.type_name}}
+ +
业务
+
{{$v.business_type_name}}
+ +
详情
+
{{$v.detail}}
+ +
状态
+
{{$v.is_read_name}}
+ +
时间
+
{{$v.add_time_time}}
+
+
+
+
+ {{/foreach}} {{/if}} diff --git a/application/index/view/default/userintegral/index.html b/application/index/view/default/userintegral/index.html index 54ad7cfab..1354d0d67 100755 --- a/application/index/view/default/userintegral/index.html +++ b/application/index/view/default/userintegral/index.html @@ -88,7 +88,8 @@ 描述 原始积分 最新积分 - 时间 + 时间 + 更多 @@ -99,7 +100,37 @@ {{$v.msg}} {{$v.original_integral}} {{$v.new_integral}} - {{$v.add_time_time}} + {{$v.add_time_time}} + + 查看更多 +
+
+
+

详情内容

+ × +
+
+
+
操作类型
+
{{$v.type_name}}
+ +
描述
+
{{$v.msg}}
+ +
原始积分
+
{{$v.original_integral}}
+ +
最新积分
+
{{$v.new_integral}}
+ +
时间
+
{{$v.add_time_time}}
+
+
+
+
+ {{/foreach}} {{/if}} -- GitLab