@@ -192,6 +210,7 @@
export default {
data() {
return {
+ fileList: [],
planTotal: 0,
pageIndex: 1,
//付款登记
@@ -234,6 +253,7 @@
plan: [],
actMoney: '',
moneyWay: [], //资金列支渠道
+ files: []
},
paymentRegistrationRules: {
applyMoney: [{
@@ -426,6 +446,13 @@
const res = await detailFundLog({
id
})
+ this.fileList = res.files_detail?.map(i => {
+ return {
+ url: i?.url,
+ name: i?.original_name,
+ response: i
+ }
+ })
this.paymentRegistrationForm.type = res.type
this.paymentRegistrationForm.isLast = res.is_end === 1
this.paymentRegistrationForm.deductionMoney = res.apply_money
diff --git a/src/views/inOut/component/addExpenseAccount.vue b/src/views/inOut/component/addExpenseAccount.vue
index 0f15ffa..4344cce 100644
--- a/src/views/inOut/component/addExpenseAccount.vue
+++ b/src/views/inOut/component/addExpenseAccount.vue
@@ -196,6 +196,7 @@ import {
detailContract as show,
} from "@/api/contract/contract";
import { getBudget } from "@/api/budget/budget";
+import { httpCurl } from "@/api/out"
export default {
props: {
report_types: {
@@ -314,7 +315,7 @@ export default {
report_type: "",
other_type: "",
money: undefined,
- contract_plan_links: [],
+ //contract_plan_links: [],
},
rules: {
report_type: [
diff --git a/src/views/system/workerComponents/department.vue b/src/views/system/workerComponents/department.vue
index d8f5ceb..9a7dfed 100644
--- a/src/views/system/workerComponents/department.vue
+++ b/src/views/system/workerComponents/department.vue
@@ -2,7 +2,7 @@
科室进展情况科室执行情况
@@ -25,7 +25,7 @@ export default {
w: 6,
h: 4,
i: "3",
- name: "科室进展情况",
+ name: "科室执行情况",
},
inject: {
getStatistic: {
@@ -75,7 +75,7 @@ export default {
}
},
{
- title: "进展情况",
+ title: "执行情况",
minWidth: 160,
fixed: "right",
render: (h, { row }) => {
diff --git a/src/views/system/workerComponents/total.vue b/src/views/system/workerComponents/total.vue
index 3030869..0fc14b1 100644
--- a/src/views/system/workerComponents/total.vue
+++ b/src/views/system/workerComponents/total.vue
@@ -1,7 +1,7 @@
- 预算总体进展情况
+ 预算总体执行情况
@@ -22,7 +22,7 @@
{{toper(statistic.progress.money_total_1 || 0,statistic.progress.money_total_2 || 0,statistic.progress.use_money_total || 0)}}%
- 进展率
+ 执行率
diff --git a/src/views/system/workerComponents/type.vue b/src/views/system/workerComponents/type.vue
index f08ac24..af950a3 100644
--- a/src/views/system/workerComponents/type.vue
+++ b/src/views/system/workerComponents/type.vue
@@ -2,7 +2,7 @@