examine.vue 482 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view>
  3. <view>
  4. <uni-list-item title="分销修改" @click="retail()" />
  5. </view>
  6. <view>
  7. <uni-list-item title="收款信息修改" @click="collection()" />
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. methods: {
  14. collection() {
  15. uni.navigateTo({
  16. url: './modify/joinpayMchCheckList',
  17. });
  18. },
  19. retail() {
  20. uni.navigateTo({
  21. url: './modify/proportionCheckList',
  22. });
  23. },
  24. }
  25. }
  26. </script>
  27. <style>
  28. </style>