diff --git a/src/components/block/index.scss b/src/components/block/index.scss index 67e7918..117bd69 100644 --- a/src/components/block/index.scss +++ b/src/components/block/index.scss @@ -6,8 +6,9 @@ display: flex; .icon { + // border: 1px solid red; width: 80px; - height: 100px; + height: 90px; } .right { diff --git a/src/router/index.js b/src/router/index.js index 3d07fd7..202ac64 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -6,7 +6,7 @@ const routes = [ { path: '/', name: 'root', - redirect: '/resources' + redirect: '/property' }, // 资金 { @@ -19,6 +19,12 @@ const routes = [ path: '/resources', name: 'resources', component: () => import('@/views/resources/index.vue') + }, + // 资产 + { + path: '/property', + name: 'property', + component: () => import('@/views/property/index.vue') } ]; diff --git a/src/views/property/comps/buttom/1/data.js b/src/views/property/comps/buttom/1/data.js new file mode 100644 index 0000000..33dd7a4 --- /dev/null +++ b/src/views/property/comps/buttom/1/data.js @@ -0,0 +1,34 @@ +export default [ + [ + { + show: true, + name: '农用地(亩)', + value: '716' + }, + { + show: true, + name: '建设用地(亩)', + value: '716' + }, + { + show: true, + name: '未利用地(亩)', + value: '716' + }, + { + show: true, + name: '农用地(宗)', + value: '716' + }, + { + show: true, + name: '建设用地(宗)', + value: '716' + }, + { + show: true, + name: '未利用地(宗)', + value: '103' + } + ] +] \ No newline at end of file diff --git a/src/views/property/comps/buttom/1/index.html b/src/views/property/comps/buttom/1/index.html new file mode 100644 index 0000000..6d8e753 --- /dev/null +++ b/src/views/property/comps/buttom/1/index.html @@ -0,0 +1,9 @@ +
+ + + + +
+ +
+
\ No newline at end of file diff --git a/src/views/property/comps/buttom/1/index.js b/src/views/property/comps/buttom/1/index.js new file mode 100644 index 0000000..7b2a5a9 --- /dev/null +++ b/src/views/property/comps/buttom/1/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/1/index.scss b/src/views/property/comps/buttom/1/index.scss new file mode 100644 index 0000000..fb1b8a3 --- /dev/null +++ b/src/views/property/comps/buttom/1/index.scss @@ -0,0 +1,16 @@ +.buttom2 { + width: 960px; + + table { + width: 100%; + + tr { + width: 100%; + + td { + + width: 16.6%; + } + } + } +} \ No newline at end of file diff --git a/src/views/property/comps/buttom/1/index.vue b/src/views/property/comps/buttom/1/index.vue new file mode 100644 index 0000000..5ac9224 --- /dev/null +++ b/src/views/property/comps/buttom/1/index.vue @@ -0,0 +1,4 @@ +