DialogSelectAddr.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <div
  3. class=""
  4. id="dialogSelectAddr">
  5. <el-dialog :lock-scroll="false"
  6. title="Choose a delivery address"
  7. :visible.sync="show"
  8. :close-on-click-modal="false"
  9. :close-on-press-escape="false"
  10. :show-close="true"
  11. @close="close"
  12. width="50%">
  13. <el-table
  14. height="300"
  15. :data="computedList"
  16. @row-click="handleCurrentChange"
  17. :row-class-name="'row-cursor'"
  18. style="width: 100%"
  19. ref="table">
  20. <el-table-column
  21. label="checked"
  22. width="80px">
  23. <template slot-scope="scope">
  24. <el-checkbox :value="scope.row.selected"></el-checkbox>
  25. </template>
  26. </el-table-column>
  27. <el-table-column label="address">
  28. <template slot-scope="scope">
  29. {{ scope.row.name }}&nbsp;{{ scope.row.address }},&nbsp;{{
  30. scope.row.city
  31. }},&nbsp;{{ scope.row.post_code }},&nbsp;{{
  32. scope.row.country
  33. }},&nbsp;Phone number: {{ scope.row.phone }}
  34. </template>
  35. </el-table-column>
  36. </el-table>
  37. <br />
  38. <div>
  39. <el-button
  40. @click="newAddr"
  41. size="mini"
  42. type="text"
  43. plain
  44. >Add Shipping Address</el-button
  45. >
  46. </div>
  47. <br />
  48. <el-button
  49. size="small"
  50. type="primary"
  51. @click="submit"
  52. >Deliver to this address</el-button
  53. >
  54. </el-dialog>
  55. </div>
  56. </template>
  57. <script>
  58. export default {
  59. name: 'DialogSelectAddr',
  60. components: {},
  61. filters: {},
  62. props: {
  63. addressDetail: {
  64. type: Object,
  65. default: function () {
  66. return {}
  67. },
  68. },
  69. visible: {
  70. type: Boolean,
  71. default: false,
  72. },
  73. addressList: {
  74. type: Array,
  75. default: function () {
  76. return []
  77. },
  78. },
  79. },
  80. data() {
  81. return {
  82. show: false,
  83. selectedId: -1,
  84. computedList: [],
  85. }
  86. },
  87. computed: {},
  88. watch: {
  89. visible() {
  90. this.show = this.visible
  91. if (this.visible) {
  92. this.generateAddressList()
  93. }
  94. },
  95. addressList() {
  96. this.generateAddressList()
  97. },
  98. },
  99. mounted() {},
  100. methods: {
  101. generateAddressList() {
  102. this.computedList = this.addressList.map(item => {
  103. return {
  104. ...item,
  105. selected: false,
  106. }
  107. })
  108. },
  109. submit() {
  110. if (this.selectedId === -1) {
  111. this.$message.error('Please check address before click this button')
  112. return
  113. }
  114. this.$emit('select-addr', this.selectedId)
  115. this.close()
  116. },
  117. close() {
  118. this.selectedId = -1
  119. this.computedList = []
  120. this.$emit('close', false)
  121. },
  122. newAddr() {
  123. this.$emit('add-new-addr')
  124. this.close()
  125. },
  126. handleCurrentChange(value, row, p3) {
  127. this.selectedId = value.id || -1
  128. this.$refs.table.setCurrentRow(value)
  129. this.computedList = this.addressList.map(item => {
  130. return {
  131. ...item,
  132. selected: item.id === value.id,
  133. }
  134. })
  135. },
  136. },
  137. }
  138. </script>
  139. <style lang="scss" scoped>
  140. #dialogSelectAddr {
  141. .el-dialog__body {
  142. padding-top: 0;
  143. }
  144. :deep(.row-cursor) {
  145. cursor: pointer;
  146. }
  147. }
  148. </style>