...
|
...
|
@@ -202,7 +202,7 @@ tabTree.prototype= { |
|
|
$.each(g.selected, function(count, item) {
|
|
|
arr.push(item.sortName);
|
|
|
});
|
|
|
g.dom["cityboxbtn"].html(arr.join(' '));
|
|
|
g.dom["cityboxbtn"].html(arr.join(' > '));
|
|
|
p.datas.length = 0;
|
|
|
$.each(g.selected, function(count, item) {
|
|
|
p.datas.push(item)
|
...
|
...
|
@@ -254,7 +254,7 @@ tabTree.prototype= { |
|
|
$.each(g.selected, function(count, item) {
|
|
|
arr.push(item.sortName);
|
|
|
});
|
|
|
g.dom["cityboxbtn"].html(arr.join('')||'请选择类目');
|
|
|
g.dom["cityboxbtn"].html(arr.join(' > ')||'请选择类目');
|
|
|
|
|
|
if (g.selected.length > 0 && !g.selected[g.selected.length - 1].isdirect) {
|
|
|
if (g.selected.length != p.datas.length) {
|
...
|
...
|
|