Unverified Commit bebb961e by Sendya

fix: basic profile table row-key bind

parent 413a5952
import { Spin } from 'ant-design-vue'
export default {
name: 'PageLoading',
render () {
return (<div style={{ paddingTop: 100, textAlign: 'center' }}>
<Spin size="large" />
</div>)
}
}
@import './index.less'; @import './index.less';
html {
overflow: auto;
}
body { body {
// 打开滚动条固定显示 // 打开滚动条固定显示
overflow-y: scroll; overflow-y: scroll;
...@@ -7,6 +11,9 @@ body { ...@@ -7,6 +11,9 @@ body {
&.colorWeak { &.colorWeak {
filter: invert(80%); filter: invert(80%);
} }
&.userLayout {
overflow: auto;
}
} }
.layout.ant-layout { .layout.ant-layout {
......
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
<div class="title">退货商品</div> <div class="title">退货商品</div>
<s-table <s-table
style="margin-bottom: 24px" style="margin-bottom: 24px"
row-key="id"
:columns="goodsColumns" :columns="goodsColumns"
:data="loadGoodsData"> :data="loadGoodsData">
...@@ -28,6 +29,7 @@ ...@@ -28,6 +29,7 @@
<div class="title">退货进度</div> <div class="title">退货进度</div>
<s-table <s-table
style="margin-bottom: 24px" style="margin-bottom: 24px"
row-key="key"
:columns="scheduleColumns" :columns="scheduleColumns"
:data="loadScheduleData"> :data="loadScheduleData">
......
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