87 lines
2.1 KiB
HTML
87 lines
2.1 KiB
HTML
{extend name="common/base"/}
|
|
{block name="style"}
|
|
<style>
|
|
.content-article img{max-width:88%!important; height:auto!important; margin:6px 0!important; border-radius:4px;}
|
|
</style>
|
|
{/block}
|
|
<!-- 主体 -->
|
|
{block name="body"}
|
|
<div class="layui-form p-4">
|
|
<h3 class="pb-3">诉求详情</h3>
|
|
<table class="layui-table layui-table-form">
|
|
<tr>
|
|
<td class="layui-td-gray">诉求</td>
|
|
<td colspan="3">{$detail.title}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="layui-td-gray">创建时间</td>
|
|
<td>{$detail.view_time}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="layui-td-gray">诉求内容</td>
|
|
<td colspan="5" class="content-article">
|
|
{$detail.content|raw}
|
|
</td>
|
|
</tr>
|
|
|
|
{if in_array($detail.category_id,[149,157,158,148,147,165]) }
|
|
<tr >
|
|
<td class="layui-td-gray">回复内容:</td>
|
|
<td colspan="6">
|
|
{volist name="$detail.comment" id="vo"}
|
|
{$vo.user_info}的回复:{$vo.content}<br>
|
|
{/volist}
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
|
|
{if $detail.is_solve == 0}
|
|
{if in_array($detail.category_id,[149,157,158,148,147,165]) }
|
|
<tr >
|
|
<td class="layui-td-gray">回复:</td>
|
|
<td colspan="6">
|
|
<textarea class="layui-textarea" name="reply" ></textarea>
|
|
</td>
|
|
</tr>
|
|
{/if}
|
|
|
|
|
|
</table>
|
|
{if in_array($detail.category_id,[149,157,158,148,147,165]) }
|
|
<div class="pt-3">
|
|
<input type="hidden" name="id" value="{$detail.id}"/>
|
|
<input type="hidden" name="admin_id" value="{$admin_id}"/>
|
|
<input type="hidden" name="content" value="{$detail.content}"/>
|
|
<button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="webform">立即回复</button>
|
|
</div>
|
|
{/if}
|
|
|
|
{/if}
|
|
</div>
|
|
{/block}
|
|
<!-- /主体 -->
|
|
|
|
<!-- 脚本 -->
|
|
{block name="script"}
|
|
<script>
|
|
var moduleInit = ['tool', 'tagpicker', 'tinymce'];
|
|
function gouguInit() {
|
|
var form = layui.form, tool = layui.tool, tagpicker = layui.tagpicker,laydate = layui.laydate;
|
|
|
|
//监听提交
|
|
form.on('submit(webform)', function (data) {
|
|
|
|
let callback = function (e) {
|
|
layer.msg(e.msg);
|
|
if (e.code == 0) {
|
|
tool.sideClose(1000);
|
|
}
|
|
}
|
|
tool.post("/admin/api/reply", data.field, callback);
|
|
return false;
|
|
});
|
|
}
|
|
</script>
|
|
{/block}
|
|
<!-- /脚本 --> |