...
This commit is contained in:
@@ -93,7 +93,7 @@ const save = () => {
|
||||
|
||||
view:nth-of-type(1) {
|
||||
flex: 1;
|
||||
margin: 5rpx 20rpx 0 0;
|
||||
margin: 0 20rpx 0 0;
|
||||
}
|
||||
|
||||
textarea {
|
@@ -1,18 +1,18 @@
|
||||
<template>
|
||||
<view class='content'>
|
||||
<scroll-view :scroll-y='true'>
|
||||
<address-item v-for='(item,index) in addressList' :key='index' :item='item' />
|
||||
<item v-for='(item,index) in addressList' :key='index' :item='item' />
|
||||
</scroll-view>
|
||||
|
||||
<view class='bottom-button-view'>
|
||||
<button class='primary-button' @click.stop='goPath("add-address")'>+新增地址</button>
|
||||
<button class='primary-button' @click.stop='goPath("create")'>+新增地址</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script lang='ts' setup>
|
||||
|
||||
import AddressItem from './components/address-item.vue';
|
||||
import Item from './components/item.vue';
|
||||
import { goPath } from '@/utils';
|
||||
import { getAddressList } from '@/api/user';
|
||||
|
Reference in New Issue
Block a user