|
@@ -6,11 +6,9 @@
|
|
:pagination="sourceList.pagination"
|
|
:pagination="sourceList.pagination"
|
|
:config="config"
|
|
:config="config"
|
|
:loading="loading"
|
|
:loading="loading"
|
|
- :selectConfig="selectConfig"
|
|
|
|
highlight-current-row
|
|
highlight-current-row
|
|
:action-list="[]"
|
|
:action-list="[]"
|
|
- @get-list="getList"
|
|
|
|
- >
|
|
|
|
|
|
+ @get-list="getList">
|
|
<template #amount="{ item }">
|
|
<template #amount="{ item }">
|
|
<div>
|
|
<div>
|
|
<span style="padding-right: 4px">{{ item.currency }}</span>
|
|
<span style="padding-right: 4px">{{ item.currency }}</span>
|
|
@@ -37,7 +35,6 @@
|
|
import { computed, ref } from "vue";
|
|
import { computed, ref } from "vue";
|
|
import byTable from "@/components/byTable/index";
|
|
import byTable from "@/components/byTable/index";
|
|
import useUserStore from "@/store/modules/user";
|
|
import useUserStore from "@/store/modules/user";
|
|
-import { ElMessage, ElMessageBox } from "element-plus";
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
const { proxy } = getCurrentInstance();
|
|
const contractType = ref([]);
|
|
const contractType = ref([]);
|
|
@@ -88,28 +85,10 @@ const sourceList = ref({
|
|
keyword: "",
|
|
keyword: "",
|
|
status: "30",
|
|
status: "30",
|
|
sellCorporationId: "",
|
|
sellCorporationId: "",
|
|
|
|
+ refundStatusNew: "0,10",
|
|
},
|
|
},
|
|
});
|
|
});
|
|
const loading = ref(false);
|
|
const loading = ref(false);
|
|
-const selectConfig = computed(() => {
|
|
|
|
- return [
|
|
|
|
- // {
|
|
|
|
- // label: "审批状态",
|
|
|
|
- // prop: "status",
|
|
|
|
- // data: status.value,
|
|
|
|
- // },
|
|
|
|
- {
|
|
|
|
- label: "到款状态",
|
|
|
|
- prop: "refundStatusNew",
|
|
|
|
- data: refundStatus.value,
|
|
|
|
- },
|
|
|
|
- // {
|
|
|
|
- // label: "归属公司",
|
|
|
|
- // prop: "sellCorporationId",
|
|
|
|
- // data: corporationList.value,
|
|
|
|
- // },
|
|
|
|
- ];
|
|
|
|
-});
|
|
|
|
const config = computed(() => {
|
|
const config = computed(() => {
|
|
return [
|
|
return [
|
|
{
|
|
{
|