diff --git a/pages/smart-order/index.vue b/pages/smart-order/index.vue index 976636a..4bc85e2 100644 --- a/pages/smart-order/index.vue +++ b/pages/smart-order/index.vue @@ -56,7 +56,7 @@ export default { }, option: { size: 10, - auto: false, + auto: true, emptyText: '暂无数据~', background: '#F7F8FA' }, @@ -67,6 +67,10 @@ export default { if (options.id) { this.condition.id = options.id this.getInfo(this.condition.id) + } + }, + mounted() { + if (this.condition.id) { this.downCallback() } },