|
|
@@ -2936,6 +2936,13 @@ $(document).ready(function() {
|
|
|
});
|
|
|
});
|
|
|
|
|
|
+ $('#change-pay-sp-group').change(function () {
|
|
|
+ const node = getNode();
|
|
|
+ postData(window.location.pathname + '/check', {postType: 'change-sp', id: node.id, sp_group: $(this).val()}, function (result) {
|
|
|
+ setStartAuditChange(node, result);
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
function setStartAuditChange(node, result) {
|
|
|
if (node.cid) {
|
|
|
contractPays.splice(contractPays.findIndex(item => item.id === node.id), 1, result);
|