From 43f1e688e12a1cea9f00e9cb8c3be09298a18d24 Mon Sep 17 00:00:00 2001 From: liuye Date: Fri, 8 Apr 2022 14:17:34 +0800 Subject: [PATCH] bug --- .../AppPublicArrearage/components/Add.vue | 95 +++++++------------ .../AppPublicArrearage/components/List.vue | 15 +-- 2 files changed, 43 insertions(+), 67 deletions(-) diff --git a/project/xiushan/apps/AppPublicArrearage/components/Add.vue b/project/xiushan/apps/AppPublicArrearage/components/Add.vue index c88ad9b5..31f3b3d1 100644 --- a/project/xiushan/apps/AppPublicArrearage/components/Add.vue +++ b/project/xiushan/apps/AppPublicArrearage/components/Add.vue @@ -11,66 +11,37 @@ 保存 @@ -255,5 +226,9 @@ export default { .el-form { padding-bottom: 80px; } + ::v-deep .el-form-item { + width: 50%; + float: left; + } } \ No newline at end of file diff --git a/project/xiushan/apps/AppPublicArrearage/components/List.vue b/project/xiushan/apps/AppPublicArrearage/components/List.vue index 2a0668b1..712a8a9f 100644 --- a/project/xiushan/apps/AppPublicArrearage/components/List.vue +++ b/project/xiushan/apps/AppPublicArrearage/components/List.vue @@ -51,13 +51,14 @@ export default { computed: { colConfigs() { return [ - { prop: "executionCode", label: '执行案号', align: "center", width: "200px", }, - { prop: "executionTime", label: '执行时间', align: "center", width: "200px", }, - { prop: "enterpriseName", label: '失信被执行主体', align: "center", width: "200px", }, - { prop: "unifiedCode", label: '统一信用代码', align: "center", width: "200px", }, - { prop: "dishonestFact", label: '失信事实', align: "center", width: "200px", }, - { prop: "createTime", label: '更新时间', align: "center", width: "200px", }, - { prop: "createUserName", label: '操作人', align: "center", width: "200px", }, + { prop: "executionCode", label: '欠费主体', align: "center", width: "200px", }, + { prop: "executionTime", label: '统一信用代码', align: "center", width: "120px", }, + { prop: "enterpriseName", label: '欠费类型名称', align: "center", width: "120px", }, + { prop: "unifiedCode", label: '欠费金额(万元)', align: "center", width: "100px", }, + { prop: "dishonestFact", label: '失信严重程度', align: "center", width: "120px", }, + { prop: "createTime", label: '认定日期', align: "center", width: "100px", }, + { prop: "createTime", label: '更新时间', align: "center", width: "100px", }, + { prop: "createUserName", label: '操作人', align: "center", width: "100px", }, { slot: "options" ,}, ] }