瀏覽代碼

fix: 标段概括-拷贝设置,未勾选属性,toast提示

lanjianrong 4 年之前
父節點
當前提交
a1ea5bfe3f
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      app/public/js/tender_copy_setting.js

+ 3 - 0
app/public/js/tender_copy_setting.js

@@ -168,6 +168,9 @@ $(document).ready(function () {
         $('#setting-custom').find('input:checked').each(function() {
             type.push($(this).data('type'))
         })
+        if (!type.length) {
+            return toastr.error('请勾选需要拷贝的属性')
+        }
         const id = $('#copyModalContent').find('input:checked').data('tid');
         if (id) {
             postData(window.location.pathname + '/copy-setting', { id, type }, function() {