初始上传
This commit is contained in:
234
app/shop/view/message/lists.html
Executable file
234
app/shop/view/message/lists.html
Executable file
@@ -0,0 +1,234 @@
|
||||
<style type="text/css">
|
||||
.layui-field-box {display:flex;flex-wrap:wrap;}
|
||||
/* 一行4个卡片时的排布 */
|
||||
@media screen and (min-width:1670px) {.block-list {width:24%;margin-right:1.3%;margin-bottom:25px;}
|
||||
.block-list:nth-child(4n) {margin-right:0;}
|
||||
}
|
||||
/* 一行3个卡片时的排布 */
|
||||
@media screen and (max-width:1669px) {.block-list {width:32%;margin-right:2%;margin-bottom:25px;}
|
||||
.block-list:nth-child(3n) {margin-right:0;}
|
||||
}
|
||||
.block-list {box-sizing:border-box;border:1px solid #F1F1F1;}
|
||||
.block-list .block-title {height:52px;line-height:52px;font-size:14px;color:#333;background-color:#F7F8FA;padding-left:25px;}
|
||||
.block-list .block-content {padding:20px 25px 0;display:flex;flex-wrap:wrap;}
|
||||
.block-list .block-content a {height:25px;line-height:25px;width:33.3%;margin-bottom:20px;color:#454545;font-size:12px;display:flex;align-items:center;white-space:nowrap;}
|
||||
.block-list .block-content a i {display:inline-block;margin-right:2px;color:#999;font-weight:600;}
|
||||
.block-list .block-title .config {float:right;padding-left:100px;cursor:pointer;}
|
||||
.word-aux {margin-left:200px;display:block;margin-top:5px;color:#999;font-size:14px;line-height:1.6;}
|
||||
.prompt-block {position:absolute;top:18px;right:20px;font-size:12px;cursor:pointer;}
|
||||
.prompt-block .prompt {width:auto;height:auto;line-height:unset;}
|
||||
.prompt-block .prompt-box {top:46px;left:-69px;text-align:center;}
|
||||
.prompt-block .prompt .iconfont {margin-left:-3px;}
|
||||
.block-list .block-title {display:flex;align-items:center;}
|
||||
.prompt-block {position:static;margin-left:10px;}
|
||||
.layui-layout-admin .layui-body .body-content {padding: 0;background: #f8f8f8}
|
||||
.sms-tips,.three-tips {padding:15px;margin:0;border:none;border-bottom:1px solid #f5f5f5;}
|
||||
.sms-tips *,.three-tips * {margin-right:10px;}
|
||||
.three-tips {background:#fff;}
|
||||
.message-tips .tips:last-child {margin-bottom:20px;}
|
||||
.message-tips {margin-bottom:15px}
|
||||
</style>
|
||||
|
||||
<div class="message-tips">
|
||||
{if isset($sms_num) && $sms_num < 500}
|
||||
<div class="tips sms-tips">
|
||||
<i class="iconfont icongantanhao text-color"></i>
|
||||
当前短信条数就剩{$sms_num}条了,赶快去充值吧!
|
||||
<a href="{:href_url('niusms://shop/sms/index', ['buy' => 1])}" class="text-color" target="_blank">立即充值</a>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{empty name="wechat_config"}
|
||||
<div class="tips three-tips">
|
||||
<i class="iconfont icongantanhao text-color"></i>
|
||||
您还未配置公众号,不能通过公众号发送模板消息
|
||||
<a href="{:href_url('wechat://shop/wechat/config')}" class="text-color" target="_blank">立即配置</a>
|
||||
</div>
|
||||
{/empty}
|
||||
|
||||
{empty name="weapp_config"}
|
||||
<div class="tips three-tips">
|
||||
<i class="iconfont icongantanhao text-color"></i>
|
||||
您还未配置微信小程序,无法使用小程序订阅消息
|
||||
<a href="{:href_url('weapp://shop/weapp/config')}" class="text-color" target="_blank">立即配置</a>
|
||||
</div>
|
||||
{/empty}
|
||||
|
||||
{if addon_is_exit('aliapp', request()->siteid()) == 1 }
|
||||
{empty name="weapp_config"}
|
||||
<div class="tips three-tips">
|
||||
<i class="iconfont icongantanhao text-color"></i>
|
||||
您还未配置支付宝小程序,无法使用小程序订阅消息
|
||||
<a href="{:href_url('aliapp://shop/aliapp/config')}" class="text-color" target="_blank">立即配置</a>
|
||||
</div>
|
||||
{/empty}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<!-- 买家消息 -->
|
||||
<div class="layui-card card-common card-brief top content">
|
||||
<div class="layui-card-header">
|
||||
<span class="card-title">买家消息</span>
|
||||
</div>
|
||||
<div class="layui-card-body layui-field-box">
|
||||
{foreach $member_message_list as $member_message_k => $member_message_v}
|
||||
<div class="block-list">
|
||||
<div class="block-title">
|
||||
{$member_message_v.title}
|
||||
<div class="prompt-block" style="left: 130px;top: 20px;">
|
||||
<div class="prompt">
|
||||
<i class="iconfont iconwenhao1 required growth"></i>
|
||||
<div class="growth-box reason-box reason-growth prompt-box" >
|
||||
<div class="prompt-con">
|
||||
<p>{$member_message_v.remark ?? ''}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{if $member_message_v.keywords == 'ORDER_VERIFY_OUT_TIME'}<span class="config text-color" onclick="messageSetting()">配置</span>{/if}
|
||||
</div>
|
||||
<div class="block-content">
|
||||
{if in_array('sms',$member_message_v['support_type'])}
|
||||
<a href="{:href_url('shop/message/editSmsMessage',['keywords' => $member_message_v.keywords])}">
|
||||
<i class="iconfont iconseleted {if $member_message_v.sms_is_open == 1}text-color{/if}"></i>短信
|
||||
</a>
|
||||
{/if}
|
||||
|
||||
{if in_array('wechat',$member_message_v['support_type'])}
|
||||
<a href="{:href_url('wechat://shop/message/edit',['keywords' => $member_message_v.keywords])}">
|
||||
<i class="iconfont iconseleted {if $member_message_v.wechat_is_open == 1}text-color{/if}"></i>微信公众号
|
||||
</a>
|
||||
{/if}
|
||||
|
||||
{if in_array('weapp',$member_message_v['support_type'])}
|
||||
<a href="{:href_url('weapp://shop/message/edit',['keywords' => $member_message_v.keywords])}">
|
||||
<i class="iconfont iconseleted {if $member_message_v.weapp_is_open == 1}text-color{/if}"></i>微信小程序
|
||||
</a>
|
||||
{/if}
|
||||
|
||||
{if $aliapp_is_exit && in_array('aliapp',$member_message_v['support_type'])}
|
||||
<a href="{:href_url('aliapp://shop/message/edit',['keywords' => $member_message_v.keywords])}">
|
||||
<i class="iconfont iconseleted {if $member_message_v.aliapp_is_open == 1}text-color{/if}"></i>支付宝小程序
|
||||
</a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 卖家通知 -->
|
||||
<div class="layui-card card-common card-brief top content">
|
||||
<div class="layui-card-header">
|
||||
<span class="card-title">卖家通知 <a style="margin-left:20px;" class="text-color" href="{:href_url('shop/shopacceptmessage/lists')}">消息接收设置>>></a></span>
|
||||
</div>
|
||||
<div class="layui-card-body layui-field-box">
|
||||
{foreach $shop_message_list as $shop_message_k => $shop_message_v}
|
||||
<div class="block-list">
|
||||
<div class="block-title">
|
||||
{$shop_message_v.title}
|
||||
<div class="prompt-block" style="left: 130px;top: 20px;">
|
||||
<div class="prompt">
|
||||
<i class="iconfont iconwenhao1 required growth"></i>
|
||||
<div class="growth-box reason-box reason-growth prompt-box" style="top: 45px;left: -64px;">
|
||||
<div class="prompt-con">
|
||||
<p>{$shop_message_v.remark}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="block-content">
|
||||
{if in_array('sms',$shop_message_v['support_type'])}
|
||||
<a href="{:href_url('shop/message/editsmsmessage',['keywords' => $shop_message_v.keywords])}">
|
||||
<i class="iconfont iconseleted {if $shop_message_v.sms_is_open == 1}text-color{/if}"></i>短信
|
||||
</a>
|
||||
{/if}
|
||||
{if in_array('wechat',$shop_message_v['support_type'])}
|
||||
<a href="{:href_url('wechat://shop/message/edit',['keywords' => $shop_message_v.keywords])}">
|
||||
<i class="iconfont iconseleted {if $shop_message_v.wechat_is_open == 1}text-color{/if}"></i>微信公众号
|
||||
</a>
|
||||
{/if}
|
||||
|
||||
{if in_array('weapp',$shop_message_v['support_type'])}
|
||||
<a href="{:href_url('weapp://shop/message/edit',['keywords' => $shop_message_v.keywords])}">
|
||||
<i class="iconfont iconseleted {if $shop_message_v.weapp_is_open == 1}text-color{/if}"></i>微信小程序
|
||||
</a>
|
||||
{/if}
|
||||
|
||||
{if $aliapp_is_exit && in_array('aliapp',$shop_message_v['support_type'])}
|
||||
<a href="{:href_url('aliapp://shop/message/edit',['keywords' => $shop_message_v.keywords])}">
|
||||
<i class="iconfont iconseleted {if $shop_message_v.aliapp_is_open == 1}text-color{/if}"></i>支付宝小程序
|
||||
</a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/html" id="settingLayer">
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">过期前提醒:</label>
|
||||
<div class="layui-input-block">
|
||||
<div class="layui-input-inline">
|
||||
<input type="number" name="remind_time" value="{{ d.value }}" autocomplete="off" class="layui-input len-short">
|
||||
</div>
|
||||
<span class="layui-form-mid">小时</span>
|
||||
</div>
|
||||
<div class="word-aux">核销码过期前多少时间发送提醒</div>
|
||||
</div>
|
||||
</script>
|
||||
<script>
|
||||
var form,laytpl;
|
||||
layui.use(['laytpl', 'form'], function() {
|
||||
form = layui.form, laytpl = layui.laytpl;
|
||||
form.render();
|
||||
});
|
||||
function messageSetting() {
|
||||
var config = {:json_encode($verify_config)};
|
||||
var keywords = 'order_verify_time_out';
|
||||
var value = config[keywords] == undefined ? 24 : config[keywords];
|
||||
laytpl($('#settingLayer').html()).render({
|
||||
value: value
|
||||
}, function(string){
|
||||
layer.open({
|
||||
type: 1,
|
||||
title: '配置',
|
||||
content: string,
|
||||
area: ['590px'],
|
||||
btn: ['保存', '取消'],
|
||||
yes: function () {
|
||||
var remind_time = parseInt($('[name="remind_time"]').val());
|
||||
if (isNaN(remind_time)) {
|
||||
layer.msg('提醒时间格式不正确', {icon: 5})
|
||||
return;
|
||||
}
|
||||
if (remind_time < 1) {
|
||||
layer.msg('提醒时间最少不能小于1小时', {icon: 5})
|
||||
return;
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
dataType: 'JSON',
|
||||
type: 'POST',
|
||||
url: ns.url("shop/message/remindTimeSetting"),
|
||||
data: {
|
||||
"hour": remind_time,
|
||||
"keyword": keywords
|
||||
},
|
||||
success: function(res){
|
||||
if (res.code == 0) {
|
||||
layer.msg('设置成功');
|
||||
listenerHash(); // 刷新页面
|
||||
layer.closeAll();
|
||||
} else {
|
||||
layer.msg(res.message);
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
});
|
||||
}
|
||||
</script>
|
||||
62
app/shop/view/message/sms.html
Executable file
62
app/shop/view/message/sms.html
Executable file
@@ -0,0 +1,62 @@
|
||||
<!-- 列表 -->
|
||||
<table id="sms_list" lay-filter="sms_list"></table>
|
||||
|
||||
<!-- 操作 -->
|
||||
<script type="text/html" id="operation">
|
||||
<div class="table-btn">
|
||||
<a class="layui-btn" href="{{ns.href(d.shop_url)}}">配置</a>
|
||||
</div>
|
||||
</script>
|
||||
|
||||
<script type="text/html" id="desc">
|
||||
<div class="over-hide-second" title="{{d.desc}}">{{d.desc}}</div>
|
||||
</script>
|
||||
|
||||
<script type="text/html" id="status">
|
||||
{{# if(d.status == 1){ }}
|
||||
开启
|
||||
{{# }else{ }}
|
||||
关闭
|
||||
{{# } }}
|
||||
</script>
|
||||
|
||||
<script>
|
||||
var table = new Table({
|
||||
elem: '#sms_list',
|
||||
url: ns.url("shop/message/sms"),
|
||||
page: false,
|
||||
parseData: function (data) {
|
||||
return {
|
||||
"code": data.code,
|
||||
"msg": data.message,
|
||||
"data": data.data
|
||||
};
|
||||
},
|
||||
cols: [[
|
||||
{
|
||||
field: 'sms_type_name',
|
||||
title: '短信名称',
|
||||
width: '15%',
|
||||
unresize: 'false'
|
||||
}, {
|
||||
field: 'desc',
|
||||
title: '描述',
|
||||
width: '65%',
|
||||
templet: "#desc",
|
||||
unresize: 'false'
|
||||
}, {
|
||||
field: 'status',
|
||||
title: '状态',
|
||||
width: '10%',
|
||||
templet: "#status",
|
||||
unresize: 'false',
|
||||
align: 'right'
|
||||
}, {
|
||||
title: '操作',
|
||||
toolbar: '#operation',
|
||||
unresize: 'false',
|
||||
align: 'right'
|
||||
}]
|
||||
],
|
||||
});
|
||||
</script>
|
||||
165
app/shop/view/message/smsrecords.html
Executable file
165
app/shop/view/message/smsrecords.html
Executable file
@@ -0,0 +1,165 @@
|
||||
<!-- 搜索框 -->
|
||||
<div class="single-filter-box">
|
||||
<div class="layui-form">
|
||||
<div class="layui-input-inline">
|
||||
<label class="layui-form-label">发送状态:</label>
|
||||
<div class="layui-input-inline">
|
||||
<select name="status">
|
||||
<option value="all">全部</option>
|
||||
<option value="1">待发送</option>
|
||||
<option value="2">发送成功</option>
|
||||
<option value="-1">发送失败</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="layui-input-inline">
|
||||
<input type="text" name="search_text" placeholder="请输入短信标题" autocomplete="off" class="layui-input">
|
||||
<button type="button" class="layui-btn layui-btn-primary" lay-filter="search" lay-submit>
|
||||
<i class="layui-icon"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 列表 -->
|
||||
<table id="sms_list" lay-filter="sms_list"></table>
|
||||
|
||||
<!-- 状态 -->
|
||||
<script type="text/html" id="status">
|
||||
{{# if(d.status == 0){ }}
|
||||
<span>待发送</span>
|
||||
{{# }else if(d.status == 1){ }}
|
||||
<span>发送成功</span>
|
||||
{{# }else{ }}
|
||||
<span>发送失败</span>
|
||||
{{# } }}
|
||||
</script>
|
||||
|
||||
<!-- 操作 -->
|
||||
<script type="text/html" id="operation">
|
||||
<div class="table-btn">
|
||||
<a class="layui-btn" lay-event="detail">详情</a>
|
||||
</div>
|
||||
</script>
|
||||
|
||||
<script>
|
||||
layui.use(['form', 'laytpl'], function() {
|
||||
var table,
|
||||
form = layui.form,
|
||||
laytpl = layui.laytpl;
|
||||
form.render();
|
||||
|
||||
table = new Table({
|
||||
elem: '#sms_list',
|
||||
url: ns.url("shop/message/smsRecords"),
|
||||
cols: [
|
||||
[ {
|
||||
field: 'keywords_name',
|
||||
title: '标题',
|
||||
width: '20%',
|
||||
unresize: 'false'
|
||||
},{
|
||||
field: 'account',
|
||||
title: '接收人账号',
|
||||
width: '20%',
|
||||
unresize: 'false'
|
||||
}, {
|
||||
field: 'create_time',
|
||||
title: '创建时间',
|
||||
width: '20%',
|
||||
unresize: 'false',
|
||||
templet: function (data) {
|
||||
return ns.time_to_date(data.create_time);
|
||||
}
|
||||
},{
|
||||
field: 'send_time',
|
||||
title: '发送时间',
|
||||
width: '20%',
|
||||
unresize: 'false',
|
||||
templet: function (data) {
|
||||
return ns.time_to_date(data.send_time);
|
||||
}
|
||||
}, {
|
||||
title: '发送状态',
|
||||
width: '12%',
|
||||
unresize: 'false',
|
||||
templet: '#status'
|
||||
}, {
|
||||
title: '操作',
|
||||
unresize: 'false',
|
||||
templet: '#operation',
|
||||
align:'right'
|
||||
}]
|
||||
]
|
||||
});
|
||||
|
||||
table.tool(function(obj) {
|
||||
if(obj.event == "detail"){
|
||||
var detailHtml = $("#smsDetail").html();
|
||||
laytpl(detailHtml).render(obj.data, function(html) {
|
||||
layer.open({
|
||||
type: 1,
|
||||
title: '通知详情',
|
||||
area: ['550px'],
|
||||
content: html
|
||||
});
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* 搜索功能
|
||||
*/
|
||||
form.on('submit(search)', function(data) {
|
||||
table.reload({
|
||||
page: {
|
||||
curr: 1
|
||||
},
|
||||
where: data.field
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<script type="text/html" id="smsDetail">
|
||||
<table class="layui-table">
|
||||
<colgroup>
|
||||
<col width="20%">
|
||||
<col width="80%">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>接收账号</td>
|
||||
<td colspan="3">{{d.account}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>通知名称</td>
|
||||
<td colspan="3">{{d.keywords_name}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>创建时间</td>
|
||||
<td colspan="3">{{ns.time_to_date(d.create_time)}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>发送时间</td>
|
||||
<td colspan="3">{{ns.time_to_date(d.send_time)}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>状态</td>
|
||||
<td>{{# if(d.status == 0){ }}发送中
|
||||
{{# }else if(d.status == 1){ }}发送成功
|
||||
{{# }else{ }}发送失败
|
||||
{{# } }}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>通知内容</td>
|
||||
<td colspan="3">{{d.content}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>返回结果</td>
|
||||
<td colspan="3">{{d.result}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</script>
|
||||
Reference in New Issue
Block a user