Procházet zdrojové kódy

整改内容,已下发问题可以重复选择

DongyYuxue před 3 měsíci
rodič
revize
40dec7f2b1

+ 4 - 4
src_product/iam/audit/rectplanproject/audit-selectfind-modal.vue

@@ -4,7 +4,7 @@
     :title="title"
     :destroy-on-close="true"
     :visible="visible"
-    :width="modalWidth"
+    :width="1800"
     @ok="handleOk"
     @cancel="handleCancel"
   >
@@ -49,12 +49,11 @@ const columns = [
     title: '序号',
     dataIndex: 'sortNumber',
     customRender: (text, record, index) => `${index + 1}`,
-    width: '80px',
+    width: '40px',
   },
   {
     title: '问题Id',
     dataIndex: 'id',
-    width: '80px',
     sdHidden: true,
   },
   { dataIndex: 'findTitle', title: '问题名称', width: '40%' },
@@ -64,6 +63,7 @@ const columns = [
     title: '被审计单位',
     scopedSlots: { customRender: 'auditedUnitNames' },
   },
+  { dataIndex: 'issuedUnits', title: '已下发单位' },
 ]
 export default {
   name: 'AuditSelectfindModal',
@@ -83,7 +83,7 @@ export default {
     // 弹出窗宽度
     modalWidth: {
       type: String,
-      default: '1200px',
+      default: '1800px',
     },
     // 弹出窗显示参数
     visible: {