|
|
|
|
@ -189,7 +189,8 @@
|
|
|
|
|
<template #btns>
|
|
|
|
|
<el-table-column label="操作" width="220" fixed="right">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<Button
|
|
|
|
|
|
|
|
|
|
<!--<Button
|
|
|
|
|
class="slot-btns-item"
|
|
|
|
|
size="small"
|
|
|
|
|
type="primary"
|
|
|
|
|
@ -201,8 +202,10 @@
|
|
|
|
|
"
|
|
|
|
|
>
|
|
|
|
|
付款登记
|
|
|
|
|
</Button>
|
|
|
|
|
<template v-if="!scope.row.status === 2">
|
|
|
|
|
</Button>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<template >
|
|
|
|
|
<Poptip
|
|
|
|
|
:transfer="true"
|
|
|
|
|
confirm
|
|
|
|
|
@ -215,7 +218,7 @@
|
|
|
|
|
</i-button>
|
|
|
|
|
</Poptip>
|
|
|
|
|
</template>
|
|
|
|
|
<Button
|
|
|
|
|
<!-- <Button
|
|
|
|
|
style="margin-left: 4px"
|
|
|
|
|
size="small"
|
|
|
|
|
type="primary"
|
|
|
|
|
@ -225,7 +228,7 @@
|
|
|
|
|
"
|
|
|
|
|
>
|
|
|
|
|
查看
|
|
|
|
|
</Button>
|
|
|
|
|
</Button> -->
|
|
|
|
|
<template v-if="scope.row.status != 2">
|
|
|
|
|
<Button
|
|
|
|
|
style="margin-left: 4px"
|
|
|
|
|
@ -336,11 +339,11 @@ export default {
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "from",
|
|
|
|
|
label: "资金来源",
|
|
|
|
|
width: 160,
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// prop: "from",
|
|
|
|
|
// label: "资金来源",
|
|
|
|
|
// width: 160,
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
prop: "money",
|
|
|
|
|
label:
|
|
|
|
|
@ -355,7 +358,7 @@ export default {
|
|
|
|
|
.replace(/(\d)(?=(\d{3})+\.)/g, "$1,");
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
/* {
|
|
|
|
|
prop: "apply_money_total",
|
|
|
|
|
label:
|
|
|
|
|
this.$route.path.split("_")[1] == 2
|
|
|
|
|
@ -379,17 +382,34 @@ export default {
|
|
|
|
|
.toFixed(2)
|
|
|
|
|
.replace(/(\d)(?=(\d{3})+\.)/g, "$1,");
|
|
|
|
|
},
|
|
|
|
|
}, */
|
|
|
|
|
{
|
|
|
|
|
label: "预算计划",
|
|
|
|
|
width: 330,
|
|
|
|
|
align: "left",
|
|
|
|
|
customFn: (row) => {
|
|
|
|
|
{
|
|
|
|
|
return row.plans.map((item) => {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
{" "}
|
|
|
|
|
[{item.year}] {item.pid_info ? item.pid_info.name : ''} - {item.name}{" "}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "department.name",
|
|
|
|
|
label: "业务科室",
|
|
|
|
|
width: 140,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
/* {
|
|
|
|
|
prop: "",
|
|
|
|
|
label: "状态",
|
|
|
|
|
width: 140,
|
|
|
|
|
},
|
|
|
|
|
}, */
|
|
|
|
|
{
|
|
|
|
|
prop: "admin.name",
|
|
|
|
|
label: "经办人",
|
|
|
|
|
|