| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <div>
- <el-card
- shadow="hover"
- class="mb-20"
- style="height: 630px; padding: 0; width: 99%"
- >
- <info :project-id="id" :info="detail"></info>
- </el-card>
- </div>
- </template>
- <route>
- {
- name: '到位资金详情',
- meta: { layout: 'empty'}
- }
- </route>
- <script>
- import info from '@/views/funds/component/info.vue'
- export default {
- components: { info },
- data() {
- return {
- id: '',
- detail: null
- }
- },
- created() {
- this.id = this.$route.query.id
- // this.getFundsList()
- },
- methods: {
- // getFundsList() {
- // this.$api.funds.fundsList({ project: this.id }).then(res => {
- // if (res.code === 200) {
- // this.detail = res.data
- // }
- // })
- // }
- }
- }
- </script>
- <style lang="scss" scoped>
- :deep(.el-card) {
- --el-card-padding: 0 !important;
- }
- </style>
|