my-address.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <!-- 收货地址 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="list">
  5. <view class="item" v-for="(item, index) in list" :key="index">
  6. <view class="item-top">
  7. <!-- <image src="../../../static/address-icon.png" class="address-icon" mode=""></image> -->
  8. <view class="circle-box">
  9. </view>
  10. <view class="item-top-sidebar">
  11. <view class="name">
  12. 小鱼
  13. <text class="number">15231263543</text>
  14. <view class="default-tag">默认</view>
  15. </view>
  16. <view class="msg">
  17. 山东省 临沂市 兰山区 柳青街道 昆仑花园22号楼二单元404
  18. </view>
  19. </view>
  20. <button type="default" class="edit-btn">
  21. <image src="../../../static/edit-icon.png" mode="widthFix"></image>
  22. </button>
  23. </view>
  24. <view class="item-bottom">
  25. <view class="radio-row" @click="choseItem(index)">
  26. <image class="circle"
  27. :src="id == item.id ? '../../../static/circle-active.png' : '../../../static/circle.png'" />
  28. <text class="default">设置为默认地址</text>
  29. </view>
  30. <view class="btn-box">
  31. <button type="default">
  32. 删除
  33. </button>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="footer">
  39. <button type="default" @tap="add">
  40. <image src="../../../static/add-icon2.png" mode=""></image>
  41. 添加收货地址
  42. </button>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. data() {
  49. return {
  50. list: [{
  51. id: 0,
  52. },
  53. {
  54. id: 1,
  55. },
  56. ],
  57. id: 0, //单选 初始化第一个高亮
  58. }
  59. },
  60. methods: {
  61. /**
  62. * 单选
  63. */
  64. choseItem: function(index) {
  65. console.log(index)
  66. this.id = index;
  67. },
  68. /**
  69. * 跳转新建收货地址
  70. */
  71. add() {
  72. uni.navigateTo({
  73. url: '../add-address/add-address'
  74. })
  75. },
  76. }
  77. }
  78. </script>
  79. <style scoped lang="scss">
  80. @import "./my-address.css";
  81. </style>