ZaiZai 1 жил өмнө
parent
commit
a0ee4e403d

+ 19 - 0
src/views/alter/admin/components/plan/addModal.vue

@@ -115,6 +115,14 @@
                             </el-table>
                         </div>
                     </hc-card-item>
+                    <hc-card-item class="mt-3" title="附件列表">
+                        <hc-table :column="tableColumn2" :datas="tableData2">
+                            <template #action="{ row }">
+                                <el-link type="primary">选择文件</el-link>
+                                <el-link type="danger">清除</el-link>
+                            </template>
+                        </hc-table>
+                    </hc-card-item>
                 </el-scrollbar>
             </div>
         </div>
@@ -237,4 +245,15 @@ const isChangeQuoteShow = ref(false)
 const quoteClick = () => {
     isChangeQuoteShow.value = true
 }
+
+//附件列表
+const tableColumn2 = ref([
+    { key: 'key1', name: '文件名称', width: 200 },
+    { key: 'key2', name: '必须上传', width: 100 },
+    { key: 'key3', name: '附件列表' },
+    { key: 'action', name: '操作', width: 120 },
+])
+const tableData2 = ref([
+    { key1: '工程设计变更申请单', key2: '是', key3: '文件名称' },
+])
 </script>