Compare commits

...

3 Commits

Author SHA1 Message Date
李永杰 7a1cc797b0 前台模版修改返回值 2024-03-29 09:11:19 +08:00
李永杰 5a24552e9a 前台模版修改返回值 2024-03-29 09:08:33 +08:00
李永杰 ff45a6ce22 前台模版修改返回值 2024-03-28 22:38:44 +08:00
1 changed files with 4 additions and 4 deletions

View File

@ -170,7 +170,7 @@
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
@ -447,9 +447,9 @@ export default {
}
#end
#end
list${BusinessName}(this.queryParams).then(response => {
this.${businessName}List = response.rows;
this.total = response.total;
list${BusinessName}(this.queryParams).then(res => {
this.${businessName}List = res.data.rows;
this.total = res.data.total;
this.loading = false;
});
},