|
@@ -16,9 +16,9 @@
|
|
|
]"
|
|
|
@moreSearch="moreSearch"
|
|
|
@get-list="getList">
|
|
|
- <template #fileSlot="{ item }">
|
|
|
- <div style="cursor: pointer; color: #409eff" @click="handleClickFile(item)">
|
|
|
- {{ item.fileName }}
|
|
|
+ <template #total="{ item }">
|
|
|
+ <div style="width: 100%">
|
|
|
+ <a style="color: #409eff; cursor: pointer" @click="pushProcessApproval(item)">{{ item.currency }}{{ item.total }}</a>
|
|
|
</div>
|
|
|
</template>
|
|
|
</byTable>
|
|
@@ -423,7 +423,7 @@ const config = computed(() => {
|
|
|
{
|
|
|
attrs: {
|
|
|
label: "请款金额",
|
|
|
- prop: "total",
|
|
|
+ slot: "total",
|
|
|
width: 120,
|
|
|
},
|
|
|
},
|
|
@@ -828,6 +828,18 @@ const submitSearch = () => {
|
|
|
sourceList.value.pagination.pageNum = 1;
|
|
|
getList();
|
|
|
};
|
|
|
+const pushProcessApproval = (row) => {
|
|
|
+ proxy.$router.push({
|
|
|
+ path: "/platform_manage/process/processApproval",
|
|
|
+ query: {
|
|
|
+ flowKey: "account_request_funds_flow",
|
|
|
+ id: row.flowInfoId,
|
|
|
+ processType: 20,
|
|
|
+ random: proxy.random(),
|
|
|
+ },
|
|
|
+ });
|
|
|
+ return;
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|