123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <template>
- <div
- class=""
- id="dialogSelectAddr">
- <el-dialog :lock-scroll="false"
- title="Choose a delivery address"
- :visible.sync="show"
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- :show-close="true"
- @close="close"
- width="50%">
- <el-table
- height="300"
- :data="computedList"
- @row-click="handleCurrentChange"
- :row-class-name="'row-cursor'"
- style="width: 100%"
- ref="table">
- <el-table-column
- label="checked"
- width="80px">
- <template slot-scope="scope">
- <el-checkbox :value="scope.row.selected"></el-checkbox>
- </template>
- </el-table-column>
- <el-table-column label="address">
- <template slot-scope="scope">
- {{ scope.row.name }} {{ scope.row.address }}, {{
- scope.row.city
- }}, {{ scope.row.post_code }}, {{
- scope.row.country
- }}, Phone number: {{ scope.row.phone }}
- </template>
- </el-table-column>
- </el-table>
- <br />
- <div>
- <el-button
- @click="newAddr"
- size="mini"
- type="text"
- plain
- >Add Shipping Address</el-button
- >
- </div>
- <br />
- <el-button
- size="small"
- type="primary"
- @click="submit"
- >Deliver to this address</el-button
- >
- </el-dialog>
- </div>
- </template>
- <script>
- export default {
- name: 'DialogSelectAddr',
- components: {},
- filters: {},
- props: {
- addressDetail: {
- type: Object,
- default: function () {
- return {}
- },
- },
- visible: {
- type: Boolean,
- default: false,
- },
- addressList: {
- type: Array,
- default: function () {
- return []
- },
- },
- },
- data() {
- return {
- show: false,
- selectedId: -1,
- computedList: [],
- }
- },
- computed: {},
- watch: {
- visible() {
- this.show = this.visible
- if (this.visible) {
- this.generateAddressList()
- }
- },
- addressList() {
- this.generateAddressList()
- },
- },
- mounted() {},
- methods: {
- generateAddressList() {
- this.computedList = this.addressList.map(item => {
- return {
- ...item,
- selected: false,
- }
- })
- },
- submit() {
- if (this.selectedId === -1) {
- this.$message.error('Please check address before click this button')
- return
- }
- this.$emit('select-addr', this.selectedId)
- this.close()
- },
- close() {
- this.selectedId = -1
- this.computedList = []
- this.$emit('close', false)
- },
- newAddr() {
- this.$emit('add-new-addr')
- this.close()
- },
- handleCurrentChange(value, row, p3) {
- this.selectedId = value.id || -1
- this.$refs.table.setCurrentRow(value)
- this.computedList = this.addressList.map(item => {
- return {
- ...item,
- selected: item.id === value.id,
- }
- })
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- #dialogSelectAddr {
- .el-dialog__body {
- padding-top: 0;
- }
- :deep(.row-cursor) {
- cursor: pointer;
- }
- }
- </style>
|