12345678910111213141516171819202122232425262728293031323334353637 |
- <style lang="sass" scoped>
-
- </style>
-
- <template>
- <div>123</div>
- </template>
-
- <script>
- export default {
- data () {
- return {
-
- }
- },
- mounted () {
- this.$ajax('', {
- method: this.$api.order.orderPage.method,
- data: {
- orderState: status,
- base_pageSize: this.orderData[this.status].base_pageSize,
- base_currentPage: this.orderData[this.status].base_currentPage
- }
- })
- .then(res => {
-
- }).catch(msg => {
- this.$toast({
- message: msg.data.message,
- position: 'center',
- duration: 2000
- })
- return false
- })
- }
- }
- </script>
|