agentDetail.vue 637 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view>
  3. <u-image :src="src" mode="widthFix"></u-image>
  4. <view class="footer-fixed padding" style="background-color: #5034c5;">
  5. <button class="cu-btn round theme-color text-bold" style="width: 100%;height: 100upx;font-size: 36upx;background-color: #f9b12b;" @click="nav">加入代理</button>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. src: 'https://upload-file-data.obs.cn-south-1.myhuaweicloud.com/ef5fac0b92ee4836811475903aab0144-代理说明详情.jpg'
  14. }
  15. },
  16. methods: {
  17. nav() {
  18. uni.redirectTo({
  19. url: "agent"
  20. })
  21. }
  22. }
  23. }
  24. </script>
  25. <style>
  26. </style>