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';
html {
overflow: auto;
}
body {
// 打开滚动条固定显示
overflow-y: scroll;
......@@ -7,6 +11,9 @@ body {
&.colorWeak {
filter: invert(80%);
}
&.userLayout {
overflow: auto;
}
}
.layout.ant-layout {
......
......@@ -20,6 +20,7 @@
<div class="title">退货商品</div>
<s-table
style="margin-bottom: 24px"
row-key="id"
:columns="goodsColumns"
:data="loadGoodsData">
......@@ -28,6 +29,7 @@
<div class="title">退货进度</div>
<s-table
style="margin-bottom: 24px"
row-key="key"
:columns="scheduleColumns"
: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