Przeglądaj źródła

标段设置页施工日志用户设置

ellisran 3 miesięcy temu
rodzic
commit
75213bdd48
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      app/public/js/setting_manage.js

+ 3 - 3
app/public/js/setting_manage.js

@@ -238,7 +238,7 @@ $(document).ready(() => {
             }
         };
         const _self = $(this);
-        postData('/construction/' + cur_tenderid + '/audit/save', prop, function (data) {
+        postData('/sp/' + spid + '/construction/' + cur_tenderid + '/audit/save', prop, function (data) {
         });
     });
 
@@ -269,7 +269,7 @@ $(document).ready(() => {
         }
         const id = parseInt($('#remove_user_id').val());
         if (type === 'construction') {
-            postData('/construction/' + cur_tenderid + '/audit/save', { type: 'del-audit', id }, function (data) {
+            postData('/sp/' + spid + '/construction/' + cur_tenderid + '/audit/save', { type: 'del-audit', id }, function (data) {
                 $('#'+ type + '-users').find('tr[data-id="'+ id +'"]').remove();
                 $('#remove-user').modal('hide');
             });
@@ -454,7 +454,7 @@ $(document).ready(() => {
                     id: id,
                     type: 'add-audit',
                 };
-                postData('/construction/' + cur_tenderid + '/audit/save', prop, function (datas) {
+                postData('/sp/' + spid + '/construction/' + cur_tenderid + '/audit/save', prop, function (datas) {
                     setConstructionHtml(datas);
                 });
             }