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