|
@@ -256,7 +256,7 @@ const status = ref([
|
|
|
value: 99,
|
|
|
},
|
|
|
]);
|
|
|
-const refundStatus = ref([
|
|
|
+const refundStatusNew = ref([
|
|
|
{
|
|
|
label: "未到款",
|
|
|
value: 0,
|
|
@@ -291,8 +291,8 @@ const selectConfig = computed(() => {
|
|
|
},
|
|
|
{
|
|
|
label: "到款状态",
|
|
|
- prop: "refundStatus",
|
|
|
- data: refundStatus.value,
|
|
|
+ prop: "refundStatusNew",
|
|
|
+ data: refundStatusNew.value,
|
|
|
},
|
|
|
// {
|
|
|
// label: "归属公司",
|
|
@@ -418,6 +418,23 @@ const config = computed(() => {
|
|
|
},
|
|
|
{
|
|
|
attrs: {
|
|
|
+ label: "到款状态",
|
|
|
+ prop: "refundStatusNew",
|
|
|
+ width: 140,
|
|
|
+ },
|
|
|
+ render(type) {
|
|
|
+ let text = "";
|
|
|
+ if (refundStatusNew.value && refundStatusNew.value.length > 0) {
|
|
|
+ let data = refundStatusNew.value.filter((item) => item.value == type);
|
|
|
+ if (data && data.length > 0) {
|
|
|
+ text = data[0].label;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return text;
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
label: "操作",
|
|
|
width: "120",
|
|
|
align: "center",
|