修复代充排序问题
This commit is contained in:
@@ -211,7 +211,6 @@
|
||||
if (!regionArray) {
|
||||
return;
|
||||
}
|
||||
|
||||
var $form = $('#editModal .modal-body .form-horizontal');
|
||||
for (let i = 0, len = regionArray.length; i < len; i++) {
|
||||
$('#region' + i).remove();
|
||||
@@ -228,7 +227,7 @@
|
||||
$formGroup.append($label);
|
||||
var $div = $('<div/>');
|
||||
$div.attr('class', 'col-sm-9');
|
||||
$div.html('<input type="text" readonly class="form-control" id="seq"' + type + ' value="' + seq + '"/>');
|
||||
$div.html('<input type="text" readonly class="form-control" id="seq' + type + '" value="' + seq + '"/>');
|
||||
$formGroup.append($div);
|
||||
$form.append($formGroup);
|
||||
}
|
||||
@@ -259,14 +258,12 @@
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (seq != 0) {
|
||||
}
|
||||
var userRegion = {
|
||||
type: region.type,
|
||||
name: region.name,
|
||||
isCheck: isCheck,
|
||||
seq: seq
|
||||
};
|
||||
type: region.type,
|
||||
name: region.name,
|
||||
isCheck: isCheck,
|
||||
seq: seq
|
||||
};
|
||||
userRegionArray.push(userRegion);
|
||||
}
|
||||
var data = {
|
||||
|
Reference in New Issue
Block a user