修复前端页面报错 找不到模块问题

This commit is contained in:
疯狂的狮子li
2020-04-25 20:09:39 +08:00
parent 405ad4280c
commit 4bee0d652a
24 changed files with 57 additions and 351 deletions

View File

@ -80,7 +80,11 @@
<el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column label="序号" align="center" prop="tableId" width="60px" />
<el-table-column label="序号" type="index" width="50" align="center">
<template slot-scope="scope">
<span>{{(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1}}</span>
</template>
</el-table-column>
<el-table-column
label="表名称"
align="center"
@ -284,4 +288,4 @@ export default {
}
}
};
</script>
</script>