Commit 45c4185e authored by 小费同学阿's avatar 小费同学阿 💬

66896 【UI】列表样式、按钮icon、间距、边距、对齐、进度样式问题

parent 625b114f
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
:visible.sync="isShow" :visible.sync="isShow"
:before-close="closeModle" :before-close="closeModle"
width="75rem" width="75rem"
:height="initial"
> >
<el-form ref="queryForm" :inline="true" :model="queryParams" :rules="rules" label-width="6.25rem" size="small"> <el-form ref="queryForm" :inline="true" :model="queryParams" :rules="rules" label-width="6.25rem" size="small">
<div class="basicInformation"> <div class="basicInformation">
...@@ -48,10 +47,10 @@ ...@@ -48,10 +47,10 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
<!-- 列表区--> <!-- 列表区-->
<div :style="{ maxHeight: maxHeight, overflow: 'auto' }">
<el-table <el-table
ref="table" ref="table"
v-loading="loading" v-loading="loading"
height="27.5rem"
style="cursor: pointer;" style="cursor: pointer;"
row-key="petBo.petsId" row-key="petBo.petsId"
:data="petsList" :data="petsList"
...@@ -117,6 +116,7 @@ ...@@ -117,6 +116,7 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</div>
<!--分页--> <!--分页-->
<pagination <pagination
v-show="total>6" v-show="total>6"
...@@ -149,6 +149,8 @@ export default { ...@@ -149,6 +149,8 @@ export default {
}, },
data() { data() {
return { return {
minHeight: '21rem', // 设置最小高度
maxHeight: '21rem', // 设置最小高度
// 会员等级下拉框 // 会员等级下拉框
membershipLeveMap: { membershipLeveMap: {
'1': '一级会员', '1': '一级会员',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment