|
@@ -5,6 +5,7 @@
|
|
|
:table-attributes="tableAttributes"
|
|
|
:table-events="tableEvents"
|
|
|
:options-evens-group="optionsEvensGroup"
|
|
|
+ :exportList="exportList"
|
|
|
:moreParameters="moreParameters"
|
|
|
>
|
|
|
</template-page>
|
|
@@ -14,7 +15,7 @@
|
|
|
import TemplatePage from '@/components/template/template-page-1.vue'
|
|
|
import import_mixin from '@/components/template/import_mixin.js'
|
|
|
import operation_mixin from '@/components/template/operation_mixin.js'
|
|
|
-import { goodsPlanAccList } from '@/api/purchaseSchedule.js'
|
|
|
+import { goodsPlanAccList, goodsPlanAccListExport } from '@/api/purchaseSchedule.js'
|
|
|
export default {
|
|
|
components: { TemplatePage },
|
|
|
mixins: [import_mixin, operation_mixin],
|
|
@@ -45,7 +46,8 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
// 列表请求函数
|
|
|
- getList: goodsPlanAccList
|
|
|
+ getList: goodsPlanAccList,
|
|
|
+ exportList: goodsPlanAccListExport
|
|
|
}
|
|
|
}
|
|
|
</script>
|