index.html 7.2 KB
Newer Older
G
gongfuxiang 已提交
1 2 3 4 5 6 7 8 9
{{include file="public/header" /}}

<!-- right content start  -->
<div class="content-right">
	<div class="content">
		<!-- form start -->
		<form class="am-form view-list" action="{{:url('Admin/Answer/Index')}}" method="POST">
			<div class="am-g">
				<input type="text" class="am-radius form-keyword" placeholder="{{:lang('answer_so_keyword_tips')}}" name="keyword" <present name="param['keyword']"> value="{{$param.keyword}}"{{/if}} />
D
devil_gong 已提交
10
				<button type="submit" class="am-btn am-btn-secondary am-btn-sm am-radius form-submit">查询</button>
G
gongfuxiang 已提交
11
				<label class="fs-12 m-l-5 c-p fw-100 more-submit">
D
devil_gong 已提交
12
					更多筛选
G
gongfuxiang 已提交
13 14 15 16 17 18
					<input type="checkbox" name="is_more" value="1" id="is_more" {{if isset($param['is_more']) and $param['is_more'] eq 1)}}checked{{/if}} />
					<i class="am-icon-angle-down"></i>
				</label>

				<div class="more-where {{if !isset($param['is_more']) or $param['is_more'] neq 1)}}none{{/if}}">
					<select name="is_show" class="am-radius c-p m-t-10 m-l-5 param-where">
D
devil_gong 已提交
19
						<option value="-1)}}是否显示</option>
G
gongfuxiang 已提交
20 21 22 23 24
						<foreach name="common_is_show_list" item="v">
							<option value="{{$v.id}}" {{if isset($param['is_show']) and $param['is_show'] eq $v['id']">selected{{/if}}>{{$v.name}}</option>
						{{/foreach}}
					</select>
					<div class="param-date param-where m-l-5)}}
D
devil_gong 已提交
25
						<input type="text" name="time_start" class="Wdate am-radius m-t-10" placeholder="起始时间" onclick="WdatePicker({firstDayOfWeek:1,dateFmt:'yyyy-MM-dd HH:mm:ss'})" {{if isset($param['time_start'])}}value="{{$param.time_start}}"{{/if}}/>
G
gongfuxiang 已提交
26
						<span>~</span>
D
devil_gong 已提交
27
						<input type="text" class="Wdate am-radius m-t-10" placeholder="结束时间" name="time_end" onclick="WdatePicker({firstDayOfWeek:1,dateFmt:'yyyy-MM-dd HH:mm:ss'})" {{if isset($param['time_end'])}}value="{{$param.time_end}}"{{/if}}/>
G
gongfuxiang 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40
					</div>
				</div>
			</div>
        </form>
        <!-- form end -->

		<!-- list start -->
		<table class="am-table am-table-striped am-table-hover am-text-middle m-t-1)}}
			<thead>
				<tr>
					<th class="am-hide-sm-only">{{:lang('answer_user_name')}}</th>
					<th class="am-hide-sm-only">{{:lang('answer_contact_name')}}</th>
					<th style="width: 25%;">{{:lang('answer_content_name')}}</th>
D
devil_gong 已提交
41
					<th>是否显示</th>
G
gongfuxiang 已提交
42
					<th class="am-hide-sm-only">{{:lang('answer_reply_name')}}</th>
D
devil_gong 已提交
43 44 45
					<th class="am-hide-sm-only">创建时间</th>
					<th>更多</th>
					<th>操作</th>
G
gongfuxiang 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
				</tr>
			</thead>
			<tbody>
				{{if !empty($list)}}
					<foreach name="list" item="v">
						<tr id="data-list-{{$v.id}}" {{if $v['is_show'] eq 0)}}class="am-active"{{/if}}>
							<td class="am-hide-sm-only">
								{{if !empty($v['username'])}}
									{{$v.username}}
									{{if !empty($v['nickname'])}}
										({{$v.nickname}})
									{{/if}}
									{{if !empty($v['gender_text'])}}
										({{$v.gender_text}})
									{{/if}}
								{{/if}}
								{{if !empty($v['mobile'])}}
									<br />{{$v.mobile}}
								{{/if}}
							</td>
							<td class="am-hide-sm-only">
								{{$v.name}}<br />
								{{$v.tel}}
							</td>
							<td>{{$v.content}}</td>
							<td>
								<a href="javascript:;" class="am-icon-btn am-icon-check submit-state {{if $v['is_show'] eq 1)}}am-success{{else /}}am-default{{/if}}" data-url="{{:url('Admin/Answer/StatusUpdate')}}" data-id="{{$v.id}}" data-state="{{$v['is_show']}}" data-is-update-status="1)}}</a>
							</td>
							<td class="am-hide-sm-only">{{$v.reply}}</td>
							<td class="am-hide-sm-only">{{$v.add_time}}</td>
							<td>
D
devil_gong 已提交
77
								<span class="am-icon-caret-down c-p" data-am-modal="{target: '#my-popup{{$v.id}}'}"> 查看更多</span>
G
gongfuxiang 已提交
78 79 80
								<div class="am-popup am-radius" id="my-popup{{$v.id}}">
									<div class="am-popup-inner">
										<div class="am-popup-hd">
D
devil_gong 已提交
81
											<h4 class="am-popup-title">详情内容</h4>
G
gongfuxiang 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
											<span data-am-modal-close
											class="am-close">&times;</span>
										</div>
										<div class="am-popup-bd">
											<dl class="dl-content">
												<dt>{{:lang('answer_user_name')}}</dt>
												<dd>
													{{if !empty($v['username'])}}
														{{$v.username}}
														{{if !empty($v['nickname'])}}
															({{$v.nickname}})
														{{/if}}
														{{if !empty($v['gender_text'])}}
															({{$v.gender_text}})
														{{/if}}
													{{/if}}
													{{if !empty($v['mobile'])}}
														<br />{{$v.mobile}}
													{{/if}}
												</dd>

												<dt>{{:lang('answer_contact_name')}}</dt>
												<dd>
													{{$v.name}}<br />{{$v.tel}}
												</dd>

												<dt>{{:lang('answer_content_name')}}</dt>
												<dd>{{$v.content}}</dd>

D
devil_gong 已提交
111 112
												<dt>是否显示</dt>
												<dd>{{if empty($v['is_show_text'])}}<span class="cr-ddd">未填写</span>{{else /}}{{$v.is_show_text}}{{/if}}</dd>
G
gongfuxiang 已提交
113 114

												<dt>{{:lang('answer_reply_name')}}</dt>
D
devil_gong 已提交
115
												<dd>{{if empty($v['reply'])}}<span class="cr-ddd">未填写</span>{{else /}}{{$v.reply}}{{/if}}</dd>
G
gongfuxiang 已提交
116

D
devil_gong 已提交
117
												<dt>创建时间</dt>
G
gongfuxiang 已提交
118 119
												<dd>{{$v.add_time}}</dd>

D
devil_gong 已提交
120
												<dt>更新时间</dt>
G
gongfuxiang 已提交
121 122 123 124 125 126 127 128
												<dd>{{$v.upd_time}}</dd>
											</dl>
										</div>
									</div>
								</div>
							</td>
							<td class="view-operation">
								{{if $v['is_reply'] eq 0)}}
D
devil_gong 已提交
129
									<button class="am-btn am-btn-default am-btn-xs am-radius submit-reply am-icon-gavel" data-am-modal="{target: '#my-popup-reply'}" data-json='{{:json_encode($v)}}'> 回复</button>
G
gongfuxiang 已提交
130
								{{/if}}
D
devil_gong 已提交
131
								<button class="am-btn am-btn-default am-btn-xs am-radius am-icon-trash-o submit-delete" data-url="{{:url('Admin/Answer/Delete')}}" data-id="{{$v.id}}"> 删除</button>
G
gongfuxiang 已提交
132 133 134 135
							</td>
						</tr>
					{{/foreach}}
				{{else /}}
D
devil_gong 已提交
136
					<tr><td colspan="20" class="table-no">没有相关数据</td></tr>
G
gongfuxiang 已提交
137 138 139 140 141 142 143 144 145
				{{/if}}
			</tbody>
		</table>
		<!-- list end -->

		<!-- 处理窗口 -->
		<div class="am-popup am-radius" id="my-popup-reply">
			<div class="am-popup-inner">
				<div class="am-popup-hd">
D
devil_gong 已提交
146
					<h4 class="am-popup-title">回复</h4>
G
gongfuxiang 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
					<span data-am-modal-close class="am-close">&times;</span>
				</div>
				<div class="am-popup-bd">
					<dl class="dl-content">
						<dt>{{:lang('answer_contact_name')}}</dt>
						<dd>
							<span class="reply-name"></span> - <span class="reply-tel"></span>
						</dd>
					</dl>

					<form class="am-form form-validation" action="{{:url('Admin/Answer/Save')}}" method="POST" request-type="ajax-reload" enctype="multipart/form-data">
						<div class="am-form-group">
							<label>{{:lang('answer_reply_name')}}</label>
							<textarea name="reply" rows="5" class="am-radius" placeholder="{{:lang('answer_reply_format')}}" data-validation-message="{{:lang('answer_reply_format')}}" maxlength="230"></textarea>
						</div>

						<div class="am-form-group reply-submit t-c">
							<input type="hidden" name="id" value="" />
D
devil_gong 已提交
165
							<button type="submit" class="am-btn am-btn-success am-radius am-btn-sm" data-am-loading="{loadingText:'处理中...'}" data-status="0">回复</button>
G
gongfuxiang 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
						</div>
					</form>
				</div>
			</div>
		</div>

		<!-- page start -->
		{{if !empty($list)}}
			{{$page_html}}
		{{/if}}
		<!-- page end -->
	</div>
</div>
<!-- right content end  -->
		
<!-- footer start -->
{{include file="public/footer" /}}
<!-- footer end -->