service.vue 349 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <mobile-frame>
  3. 选择售后
  4. </mobile-frame>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. };
  11. },
  12. onShow: function() {},
  13. onLoad: async function(e) {
  14. const that = this;
  15. that.$set(that, `id`, e.id || '');
  16. that.search();
  17. },
  18. methods: {
  19. search() {},
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. </style>