You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
698 B
30 lines
698 B
<script type="text/jsx">
|
|
import PanelGroup from './component/PanelGroup'
|
|
import DailyProfitStat from "./component/DailyProfitStat"
|
|
import DailyFinishOrderStat from "./component/DailyFinishOrderStat"
|
|
import TotalProfitGoods from "./component/TotalProfitGoods"
|
|
|
|
export default {
|
|
name: 'index',
|
|
|
|
functional: true,
|
|
|
|
render() {
|
|
return (
|
|
<div>
|
|
<PanelGroup/>
|
|
|
|
<el-card>
|
|
<DailyProfitStat/>
|
|
</el-card>
|
|
|
|
<el-card style="margin: 32px 0">
|
|
<DailyFinishOrderStat/>
|
|
</el-card>
|
|
|
|
<TotalProfitGoods/>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
</script>
|
|
|