mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修改微信菜单小程序支持
This commit is contained in:
parent
6436925093
commit
f22d1a3c40
@ -124,7 +124,7 @@ class Menu extends BasicAdmin {
|
||||
empty($row['content']) && $row['content'] = uniqid();
|
||||
switch ($row['type']) {
|
||||
case 'miniprogram':
|
||||
list($row['appid'], $row['pagepath']) = explode(',', $row['content']);
|
||||
list($row['appid'], $row['pagepath']) = explode(',', $row['content'] . ',');
|
||||
break;
|
||||
case 'view':
|
||||
$row['url'] = preg_match('#^(\w+:)?//#i', $row['content']) ? $row['content'] : url($row['content'], '', true, true);
|
||||
|
@ -239,7 +239,7 @@
|
||||
var html = function () {
|
||||
switch (type) {
|
||||
case 'miniprogram':
|
||||
var tpl = '<div><div>小程序APPID<input style="display:block;margin-bottom:10px" class="form-control input-sm" value="{appid}" name="appid"/></div>Pagepath<textarea style="resize:none;height:180px;" name="pagepath" class="form-control input-sm">{content}</textarea></div>';
|
||||
var tpl = '<div><div>小程序APPID<input style="display:block;margin-bottom:10px" class="form-control input-sm" value="{appid}" name="appid"/></div>Pagepath<textarea style="resize:none;height:165px;" name="pagepath" class="form-control input-sm">{content}</textarea></div>';
|
||||
var _appid = '', _content = '';
|
||||
if (content.indexOf(',') > 0) {
|
||||
_appid = content.split(',')[0];
|
||||
|
Loading…
x
Reference in New Issue
Block a user