fix
Showing
1 changed file
with
9 additions
and
5 deletions
| ... | @@ -188,6 +188,7 @@ const tableInfo = ref({ | ... | @@ -188,6 +188,7 @@ const tableInfo = ref({ |
| 188 | 188 | ||
| 189 | const getTableData = () => { | 189 | const getTableData = () => { |
| 190 | tableInfo.value.loading = true; | 190 | tableInfo.value.loading = true; |
| 191 | // flowDetailLoading.value = true; | ||
| 191 | getListingList( | 192 | getListingList( |
| 192 | Object.assign({}, searchItemValue.value, { | 193 | Object.assign({}, searchItemValue.value, { |
| 193 | pageIndex: page.value.curr, | 194 | pageIndex: page.value.curr, |
| ... | @@ -196,6 +197,7 @@ const getTableData = () => { | ... | @@ -196,6 +197,7 @@ const getTableData = () => { |
| 196 | ) | 197 | ) |
| 197 | .then((res: any) => { | 198 | .then((res: any) => { |
| 198 | tableInfo.value.loading = false; | 199 | tableInfo.value.loading = false; |
| 200 | // flowDetailLoading.value = false; | ||
| 199 | tableInfo.value.data = res.data.records || []; | 201 | tableInfo.value.data = res.data.records || []; |
| 200 | tableInfo.value.page.curr = res.data.pageIndex; | 202 | tableInfo.value.page.curr = res.data.pageIndex; |
| 201 | tableInfo.value.page.limit = res.data.pageSize; | 203 | tableInfo.value.page.limit = res.data.pageSize; |
| ... | @@ -203,6 +205,7 @@ const getTableData = () => { | ... | @@ -203,6 +205,7 @@ const getTableData = () => { |
| 203 | }) | 205 | }) |
| 204 | .catch((res) => { | 206 | .catch((res) => { |
| 205 | tableInfo.value.loading = false; | 207 | tableInfo.value.loading = false; |
| 208 | // flowDetailLoading.value = false; | ||
| 206 | }); | 209 | }); |
| 207 | }; | 210 | }; |
| 208 | 211 | ||
| ... | @@ -908,12 +911,13 @@ const formInfo = ref<any>({ | ... | @@ -908,12 +911,13 @@ const formInfo = ref<any>({ |
| 908 | <el-button type="primary" @click="toPatn1('add', 'add1')" v-preReClick>新建</el-button> | 911 | <el-button type="primary" @click="toPatn1('add', 'add1')" v-preReClick>新建</el-button> |
| 909 | </div> --> | 912 | </div> --> |
| 910 | </div> | 913 | </div> |
| 911 | <div class="list-content" v-if="demandListData.length > 0" v-loading="flowDetailLoading"> | 914 | <div v-loading="flowDetailLoading"> |
| 915 | <div class="list-content" v-if="demandListData.length > 0"> | ||
| 912 | <div class="card-content" v-for="item in demandListData" :key="item.guid"> | 916 | <div class="card-content" v-for="item in demandListData" :key="item.guid"> |
| 913 | <div class="header"> | 917 | <div class="header"> |
| 914 | <div class="header-top"> | 918 | <div class="header-top"> |
| 915 | <img class="left-img" :src="(item.picUrl && typeof item.picUrl == 'string') ? item.picUrl : defaultItemLogo" | 919 | <img class="left-img" |
| 916 | alt="" /> | 920 | :src="(item.picUrl && typeof item.picUrl == 'string') ? item.picUrl : defaultItemLogo" alt="" /> |
| 917 | <div class="title">{{ item.exchangeName ?? '--' }}</div> | 921 | <div class="title">{{ item.exchangeName ?? '--' }}</div> |
| 918 | </div> | 922 | </div> |
| 919 | <div class="right-main"> | 923 | <div class="right-main"> |
| ... | @@ -940,7 +944,7 @@ const formInfo = ref<any>({ | ... | @@ -940,7 +944,7 @@ const formInfo = ref<any>({ |
| 940 | <div class="tip-des"> | 944 | <div class="tip-des"> |
| 941 | 在各数交所上架时,会同时在门户、专区和主平台门户进行展示;在门户上架则只会在门户上架,不会在数交所、专区及主平台门户上架。 | 945 | 在各数交所上架时,会同时在门户、专区和主平台门户进行展示;在门户上架则只会在门户上架,不会在数交所、专区及主平台门户上架。 |
| 942 | </div> | 946 | </div> |
| 943 | 947 | </div> | |
| 944 | </div> | 948 | </div> |
| 945 | <div class="table_panel_wrap" :style="{ | 949 | <div class="table_panel_wrap" :style="{ |
| 946 | height: demandListData.length > 0 ? 'calc(100% - 230px)' : 'calc(100% - 54px)' | 950 | height: demandListData.length > 0 ? 'calc(100% - 230px)' : 'calc(100% - 54px)' |
| ... | @@ -987,7 +991,7 @@ const formInfo = ref<any>({ | ... | @@ -987,7 +991,7 @@ const formInfo = ref<any>({ |
| 987 | 991 | ||
| 988 | .list-content { | 992 | .list-content { |
| 989 | display: flex; | 993 | display: flex; |
| 990 | justify-content: flex-start; | 994 | |
| 991 | flex-wrap: wrap; | 995 | flex-wrap: wrap; |
| 992 | padding: 0 8px; | 996 | padding: 0 8px; |
| 993 | 997 | ... | ... |
-
Please register or sign in to post a comment