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 @@ +