You've already forked qlg.tsgz.moe
addons
app_download_files
extend
hyhproject
admin
app
common
home
home2
mobile2
wechat2
behavior
common
conf
controller
model
validate
view
default
articles
css
frozenui
goodsconsult
img
js
users
cashconfigs
cashdraws
favorites
history
logmoneys
messages
list.html
messages.js
orders
recharge
security
sellerorders
useraddress
userscores
userset
edit.html
index.html
user.js
base.html
brands.html
carts.html
dialog.html
error_lost.html
error_switch.html
error_sys.html
footer.html
goods_category.html
goods_detail.html
goods_list.html
goods_search.html
header.html
index.html
login.html
self_shop.html
settlement.html
settlement_quick.html
shop_goods_list.html
shop_home.html
shop_index.html
shop_street.html
.htaccess
command.php
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5436787D.wgt
admin.php
app-release.apk
app_download.html
cash.lock
demo.php
get_startup.php
get_version.php
get_version_new.php
index.html
index.php
reg.lock
robots.txt
77 lines
3.0 KiB
HTML
Executable File
77 lines
3.0 KiB
HTML
Executable File
{extend name="default/base" /}
|
|
{block name="title"}我的消息 - {__block__}{/block}
|
|
{block name="css"}
|
|
<link rel="stylesheet" href="__WECHAT__/css/messages.css?v={$v}">
|
|
{/block}
|
|
{block name="header"}
|
|
<div id="info_list">
|
|
<header style="background:#ffffff;" class="ui-header ui-header-positive ui-border-b wst-header">
|
|
<i class="ui-icon-return" onclick="location.href='{:url('wechat/users/index')}'"></i><h1>我的消息</h1>
|
|
</header>
|
|
{/block}
|
|
{block name="footer"}
|
|
<div class="ui-loading-wrap wst-Load" id="Load">
|
|
<i class="ui-loading"></i>
|
|
</div>
|
|
<footer class="ui-footer wst-footer-btns" style="height:45px; border-top: 1px solid #e0e0e0;" id="footer">
|
|
<div class="wst-toTop" id="toTop">
|
|
<i class="wst-toTopimg"><span>顶部</span></i>
|
|
</div>
|
|
|
|
<div class="ui-row-flex ui-whitespace">
|
|
<div class="ui-col ui-col-2 favorite-tc">
|
|
<label class="ui-checkbox" style="margin-left:5px;">
|
|
<input class="sactive" type="checkbox" onclick="javascript:checkAll(this);">
|
|
</label>
|
|
全选
|
|
</div>
|
|
|
|
<div class="ui-col">
|
|
<div class="ui-btn-wrap f-btn">
|
|
<button class="ui-btn ui-btn-danger del-btn" onclick="toDelMsg()">
|
|
删除消息
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</footer>
|
|
{/block}
|
|
{block name="main"}
|
|
<input type="hidden" name="" value="" id="currPage" autocomplete="off">
|
|
<input type="hidden" name="" value="" id="totalPage" autocomplete="off">
|
|
<script type="text/html" id="msgList">
|
|
{{# for(var i=0; i<d.length; i++){ }}
|
|
<li>
|
|
<label class="ui-checkbox msg-chk">
|
|
<input class="active" type="checkbox" msgId="{{d[i].id}}" >
|
|
</label>
|
|
<div class="ui-list-info" onclick="javascript:getMsgDetails({{d[i].id}});">
|
|
<h5 class="ui-nowrap">
|
|
<span class="{{(d[i].msgStatus == 0)?'wst-info_ico':'wst-info_ico1' }} j-icon_{{d[i].id}}"></span>{{d[i].msgContent}}</h5>
|
|
</div>
|
|
</li>
|
|
<div class="wst-Line"></div>
|
|
{{# } }}
|
|
</script>
|
|
<section class="ui-container info-prompt">
|
|
<ul class="ui-list ui-list-text wst-info_content" id="info-list">
|
|
</ul>
|
|
</section>
|
|
</div>
|
|
<div id="info_details" style="display:none;">
|
|
<header style="background:#ffffff;" class="ui-header ui-header-positive ui-border-b wst-header">
|
|
<i class="ui-icon-return" onclick="javascript:returnInfo()"></i><h1>消息详情</h1>
|
|
</header>
|
|
<section class="ui-container">
|
|
<div class="ui-whitespace detail-time"><span class="wst-info_detime"></span></div>
|
|
<div class="ui-whitespace"><span class="wst-info_decontent"></span></div>
|
|
</section>
|
|
</div>
|
|
{/block}
|
|
{block name="include"}
|
|
{include file="default/dialog" /}<!-- 对话框模板 -->
|
|
{/block}
|
|
{block name="js"}
|
|
<script type='text/javascript' src='__ROOT__/hyhproject//wechat/view/default/users/messages/messages.js?v={$v}'></script>
|
|
{/block} |