作者 王晓刚
1 个管道 的构建 通过 耗费 1 秒

余额支付

... ... @@ -14,32 +14,32 @@
<div class="col-md-9">
<table class="table table-bordered">
<tr>
<th width="100">消息标题<span class="form-required">*</span></th>
<th width="100">消息标题</th>
<td>
<input type="text" class="form-control" name="title" value="{$data.title}" placeholder="请输入消息标题" readonly/>
</td>
<input type="hidden" name="id" value="{$data.id}"/>
</tr>
<tr>
<th width="100">接收人<span class="form-required">*</span></th>
<th width="100">接收人</th>
<td>
<input type="text" class="form-control" name="name" value="{$data.name}" placeholder="请输入接收人" readonly/>
<input type="text" class="form-control" name="name" value="{$data.name?$data.name:$data.user_nickname}" placeholder="请输入接收人" readonly/>
</td>
</tr>
<tr>
<th width="100">手机号<span class="form-required">*</span></th>
<th width="100">手机号</th>
<td>
<input type="text" class="form-control" name="mobile" value="{$data.mobile}" placeholder="请输入手机号" readonly/>
</td>
</tr>
<tr>
<th width="100">订单号<span class="form-required">*</span></th>
<th width="100">订单号</th>
<td>
<input type="text" class="form-control" name="num" value="{$data.num}" placeholder="请输入订单号" readonly/>
</td>
</tr>
<tr>
<th width="100">消息内容<span class="form-required">*</span></th>
<th width="100">消息内容</th>
<td>
<textarea type="text" class="form-control" name="content" placeholder="请输入消息内容" readonly>{$data.content}</textarea>
</td>
... ...