12345678910111213141516171819202122232425262728 |
- <template>
- <mobile-frame>
- 选择售后
- </mobile-frame>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- },
- onShow: function() {},
- onLoad: async function(e) {
- const that = this;
- that.$set(that, `id`, e.id || '');
- that.search();
- },
- methods: {
- search() {},
- }
- }
- </script>
- <style lang="scss">
- </style>
|