From 4a212a4dbb41a5b0133dc6ff9340307ac7a8c845 Mon Sep 17 00:00:00 2001
From: yuzongping <835949940@qq.com>
Date: Thu, 12 Jun 2025 08:37:25 +0800
Subject: [PATCH] =?UTF-8?q?=E5=80=BA=E5=8A=A1=E5=88=86=E6=9E=90?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/property/comps/buttom/2/data.js | 41 ++++++++++++++++++++
src/views/property/comps/buttom/2/index.html | 8 ++++
src/views/property/comps/buttom/2/index.js | 18 +++++++++
src/views/property/comps/buttom/2/index.scss | 13 +++++++
src/views/property/comps/buttom/2/index.vue | 4 ++
src/views/property/data.js | 1 +
src/views/property/index.js | 5 ++-
7 files changed, 89 insertions(+), 1 deletion(-)
create mode 100644 src/views/property/comps/buttom/2/data.js
create mode 100644 src/views/property/comps/buttom/2/index.html
create mode 100644 src/views/property/comps/buttom/2/index.js
create mode 100644 src/views/property/comps/buttom/2/index.scss
create mode 100644 src/views/property/comps/buttom/2/index.vue
diff --git a/src/views/property/comps/buttom/2/data.js b/src/views/property/comps/buttom/2/data.js
new file mode 100644
index 0000000..3e39237
--- /dev/null
+++ b/src/views/property/comps/buttom/2/data.js
@@ -0,0 +1,41 @@
+export default [
+ [
+ {
+ show: true,
+ name: '短期借款(万)',
+ value: '716'
+ },
+ {
+ show: true,
+ name: '应付款(万)',
+ value: '103'
+ },
+ {
+ show: true,
+ name: '应付工资(万)',
+ value: '716'
+ }
+ ],
+ [
+ {
+ show: true,
+ name: '应付劳务费(万)',
+ value: '301'
+ },
+ {
+ show: true,
+ name: '长期借款及应付款(万)',
+ value: '103'
+ },
+ {
+ show: true,
+ name: '一事一议资金(万)',
+ value: '716'
+ },
+ {
+ show: true,
+ name: '专项应付款(万)',
+ value: '716'
+ }
+ ]
+]
\ No newline at end of file
diff --git a/src/views/property/comps/buttom/2/index.html b/src/views/property/comps/buttom/2/index.html
new file mode 100644
index 0000000..5fb34bd
--- /dev/null
+++ b/src/views/property/comps/buttom/2/index.html
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/src/views/property/comps/buttom/2/index.js b/src/views/property/comps/buttom/2/index.js
new file mode 100644
index 0000000..7b2a5a9
--- /dev/null
+++ b/src/views/property/comps/buttom/2/index.js
@@ -0,0 +1,18 @@
+import BlockValue from '@/components/value/index.vue';
+import data from './data.js';
+export default {
+ components: {
+ BlockValue
+ },
+ data () {
+ return {
+ data
+ };
+ },
+ created () {
+ },
+ mounted () {
+ },
+ methods: {
+ }
+};
diff --git a/src/views/property/comps/buttom/2/index.scss b/src/views/property/comps/buttom/2/index.scss
new file mode 100644
index 0000000..ead0cc3
--- /dev/null
+++ b/src/views/property/comps/buttom/2/index.scss
@@ -0,0 +1,13 @@
+.buttom2 {
+ width: 860px;
+
+ .line {
+ width: 100%;
+ display: flex;
+ justify-content: center;
+
+ .item {
+ margin: 0px 20px;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/views/property/comps/buttom/2/index.vue b/src/views/property/comps/buttom/2/index.vue
new file mode 100644
index 0000000..5ac9224
--- /dev/null
+++ b/src/views/property/comps/buttom/2/index.vue
@@ -0,0 +1,4 @@
+
+
+
diff --git a/src/views/property/data.js b/src/views/property/data.js
index cb42c5a..8f8885d 100644
--- a/src/views/property/data.js
+++ b/src/views/property/data.js
@@ -26,6 +26,7 @@ export const comps = {
'Right32'
],
'buttom': [
+ 'Bottom2'
]
},
'3': {
diff --git a/src/views/property/index.js b/src/views/property/index.js
index 49a41c9..0527dfd 100644
--- a/src/views/property/index.js
+++ b/src/views/property/index.js
@@ -7,6 +7,7 @@ import Left31 from './comps/left/bottom/1/index.vue';
import Right11 from './comps/right/top/1/index.vue';
import Right21 from './comps/right/middle/1/index.vue';
import Right31 from './comps/right/bottom/1/index.vue';
+import Bottom1 from './comps/buttom/1/index.vue';
import Left12 from './comps/left/top/2/index.vue';
import Left22 from './comps/left/middle/2/index.vue';
@@ -14,7 +15,8 @@ import Left32 from './comps/left/bottom/2/index.vue';
import Right12 from './comps/right/top/2/index.vue';
import Right22 from './comps/right/middle/2/index.vue';
import Right32 from './comps/right/bottom/2/index.vue';
-import Bottom1 from './comps/buttom/1/index.vue';
+import Bottom2 from './comps/buttom/2/index.vue';
+
import Left13 from './comps/left/top/3/index.vue';
import Left23 from './comps/left/middle/3/index.vue';
@@ -65,6 +67,7 @@ export default {
Right13,
Right23,
Right33,
+ Bottom2,
Left14,
Left24,
Left34,