select.html
3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
77
78
79
80
81
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<php>
function _suggest_url($action, $url)
{
$actionArr = explode('/', $action);
$params = array_keys($url['vars']);
$urlDepr1Params = [];
$urlDepr2Params = [];
if (!empty($params)) {
foreach ($params as $param) {
if(empty($url['vars'][$param]['require'])){
array_push($urlDepr1Params, "[:$param]");
}else{
array_push($urlDepr1Params, ":$param");
}
array_push($urlDepr2Params, htmlspecialchars('<') . $param . htmlspecialchars('>'));
}
}
if ($actionArr[2] == 'index') {
$actionArr[1] = cmf_parse_name($actionArr[1]);
return empty($params) ? $actionArr[1].'$' : ($actionArr[1] . '/' . implode('/', $urlDepr1Params) /*. '或' . $actionArr[1] . '-' . implode('-', $urlDepr2Params)*/);
} else {
$actionArr[2] = cmf_parse_name($actionArr[2]);
return empty($params) ? $actionArr[2].'$' : ($actionArr[2] . '/' . implode('/', $urlDepr1Params) /*. '或' . $actionArr[2] . '-' . implode('-', $urlDepr2Params)*/);
}
}
function _url_vars($url)
{
if (!empty($url['vars'])) {
return implode(',', array_keys($url['vars']));
}
return '';
}
</php>
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
<form method="post" class="js-ajax-form" action="{:url('AdminCategory/listorders')}">
<table class="table table-hover table-bordered table-list">
<thead>
<tr>
<th width="16">
</th>
<th width="50">URL</th>
<th>URL名称</th>
<th>参数</th>
<th>建议优化</th>
</tr>
</thead>
<tbody>
<foreach name="urls" item="vo" key="action">
<php>$suggestUrl=_suggest_url($action,$vo);</php>
<tr class="data-item-tr">
<td>
<input type="radio" name="ids[]" class="js-radio" value="" data-name="{$vo.name}"
data-action="{$action}" data-url="{$suggestUrl}" data-vars="{:_url_vars($vo)}">
</td>
<td>{$action}</td>
<td>{$vo.name}</td>
<td>
<notempty name="vo.vars">
{:_url_vars($vo)}
</notempty>
</td>
<td>
{$suggestUrl}
</td>
</tr>
</foreach>
</tbody>
</table>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
<script>
$('.data-item-tr').click(function (e) {
console.log(e);
var $this = $(this);
if ($(e.target).is('input')) {
return;
}
var $input = $this.find('input');
if ($input.is(':checked')) {
$input.prop('checked', false);
} else {
$input.prop('checked', true);
}
});
function confirm() {
var $url = $('.js-radio:checked');
if ($url.length > 0) {
var selectedUrl = {
action: $url.data('action'),
name: $url.data('name'),
url: $url.data('url'),
vars:$url.data('vars')
};
return selectedUrl;
} else {
return false;
}
}
</script>
</body>
</html>