曹睿
6 天以前 a9c3543f4b4fa5a092a8dea688aedc2b2adbd576
feat: 【来票台账】显示附件
已修改2个文件
19 ■■■■■ 文件已修改
src/views/procurementManagement/invoiceEntry/components/Modal.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/procurementManagement/procurementInvoiceLedger/index.vue 18 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/procurementManagement/invoiceEntry/components/Modal.vue
@@ -390,6 +390,7 @@
        salesContractNoId: form.salesContractNoId,
        supplierName: form.supplierName,
        tempFileIds: form.tempFileIds,
        type: 4,
      });
      modalLoading.value = false;
      if (code == 200) {
src/views/procurementManagement/procurementInvoiceLedger/index.vue
@@ -58,6 +58,13 @@
        @selection-change="handleSelectionChange"
        @pagination="onCurrentChange"
      >
        <template #commonFilesRef="{ row }">
          <div v-for="item in row.commonFiles">
            <el-tag type="primary" class="tagBox">
              {{ item.name }}
            </el-tag>
          </div>
        </template>
      </PIMTable>
    </div>
  </div>
@@ -158,6 +165,14 @@
      prop: "invoiceAmount",
      align: "center",
    },
    {
      label: "附件",
      align: "center",
      prop: "commonFiles",
      dataType: "slot",
      slot: "commonFilesRef",
      width: 200,
    },
    // {
    //   fixed: "right",
    //   width: 120,
@@ -223,4 +238,7 @@
.table_list {
  margin-top: unset;
}
.tagBox {
  margin-top: 4px;
}
</style>