lrf 2 년 전
부모
커밋
3a25de9205
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/public/table-template.js

+ 1 - 1
app/public/table-template.js

@@ -15,7 +15,7 @@ module.exports = (data) => {
   let pluginArea = '';
   for (const p of pluginColumns) {
     const { title, type, required = false, remark, index, def, zh, ref, getProp } = p;
-    const params = _.omit(p, ['type']);
+    const params = _.omit(p, ['type', 'index', 'title']);
     const r = columnType.find((cf) => cf.value === type);
     if (!r) continue;
     const { path } = r;