cba2ad3b3b
2、调整运单
24 lines
516 B
Vue
24 lines
516 B
Vue
<template>
|
|
<waybill-manage-page
|
|
:api="api"
|
|
:config="config"
|
|
:crud-option="option"
|
|
:detail-id="$route.query.id"
|
|
:menu-width="250"
|
|
standalone-detail-page
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import WaybillManagePage from './components/waybill-manage-page.vue';
|
|
import * as api from '@/api/business/waybill-manage';
|
|
import { config, option } from '@/option/business/waybill-manage';
|
|
|
|
export default {
|
|
components: { WaybillManagePage },
|
|
data() {
|
|
return { api, config, option };
|
|
},
|
|
};
|
|
</script>
|