From b811bfc8f78c3e8f6b44ae3d19c761db415baa29 Mon Sep 17 00:00:00 2001
From: xy <271556543@qq.com>
Date: Tue, 11 Jun 2024 17:32:32 +0800
Subject: [PATCH] =?UTF-8?q?=E5=87=BA=E5=B7=AE=E6=8A=A5=E9=94=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/icons/svg/windows.svg | 1 +
src/icons/svg/yuan.svg | 1 +
src/views/away/component/examineAway.vue | 13 +++--
src/views/away/index.vue | 56 ++++++++++++-------
.../components/examineRegistration.vue | 2 +-
.../components/paymentRegistration.vue | 1 +
.../contract/components/printRegistration.vue | 3 +-
.../contract/paymentRegistrationList.vue | 2 +
.../components/examineRegistration.vue | 3 +-
src/views/install/index.vue | 28 ++++++++--
src/views/system/workerComponents/toDo.vue | 28 ++++++----
src/views/system/workerComponents/total.vue | 26 ++++++++-
12 files changed, 116 insertions(+), 48 deletions(-)
create mode 100644 src/icons/svg/windows.svg
create mode 100644 src/icons/svg/yuan.svg
diff --git a/src/icons/svg/windows.svg b/src/icons/svg/windows.svg
new file mode 100644
index 0000000..4237aef
--- /dev/null
+++ b/src/icons/svg/windows.svg
@@ -0,0 +1 @@
+
diff --git a/src/icons/svg/yuan.svg b/src/icons/svg/yuan.svg
new file mode 100644
index 0000000..100c968
--- /dev/null
+++ b/src/icons/svg/yuan.svg
@@ -0,0 +1 @@
+
diff --git a/src/views/away/component/examineAway.vue b/src/views/away/component/examineAway.vue
index f218355..2d0289c 100644
--- a/src/views/away/component/examineAway.vue
+++ b/src/views/away/component/examineAway.vue
@@ -417,7 +417,7 @@ export default {
const res = await getFundLog({
away_id: this.contract.id,
- fund_type: 2
+ show_type: 2
})
this.payment = res.data;
@@ -440,6 +440,12 @@ export default {
save({
...this.contract,
financial_status: 2
+ }).then(_ => {
+ this.$refs["paymentRegistration"].reset();
+
+ this.$emit('refresh')
+ this.$message.success("操作成功");
+ this.isShowPaymentRegistration = false;
})
//付款申请后同时更新一下合同中审计金额
// editorContract({
@@ -465,11 +471,6 @@ export default {
// message: "操作成功",
// });
// });
- this.$refs["paymentRegistration"].reset();
-
- this.$emit('refresh')
- this.$message.success("操作成功");
- this.isShowPaymentRegistration = false;
});
},
//计划
diff --git a/src/views/away/index.vue b/src/views/away/index.vue
index 2749703..c79cbc8 100644
--- a/src/views/away/index.vue
+++ b/src/views/away/index.vue
@@ -74,29 +74,32 @@
width="220"
>
- deleteAway(row.id)"
- >
+
+
+ deleteAway(row.id)"
+ >
+
+
-
-
+
diff --git a/src/views/system/workerComponents/toDo.vue b/src/views/system/workerComponents/toDo.vue
index 4791df3..49371fc 100644
--- a/src/views/system/workerComponents/toDo.vue
+++ b/src/views/system/workerComponents/toDo.vue
@@ -10,6 +10,7 @@
{
- return h("span", this.$moment(row.created_at).format("YYYY-MM-DD HH:mm:ss"));
+ return h("span",{ style: { color: "#4d8bdc" } }, this.$moment(row.created_at).format("YYYY-MM-DD HH:mm:ss"));
},
},
+ {
+ title: "内容",
+ key: "title",
+ align: "left",
+ ellipsis: true,
+ tooltip: true,
+ minWidth: 200,
+ },
{
title: "查看",
key: "show",
@@ -253,4 +254,7 @@ export default {
width: 100%;
height: calc(100% - 58px);
}
+::v-deep .ivu-table th,::v-deep .ivu-table td {
+ border-bottom-style: dashed;
+}
diff --git a/src/views/system/workerComponents/total.vue b/src/views/system/workerComponents/total.vue
index 0fc14b1..ccee577 100644
--- a/src/views/system/workerComponents/total.vue
+++ b/src/views/system/workerComponents/total.vue
@@ -1,12 +1,15 @@
- 预算总体执行情况
+ 预算总体执行情况
+
+
+
{{moneyFormatter(statistic.progress.money_total_1 || 0)}}
年初预算合计金额
@@ -29,9 +32,13 @@