123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624 |
- <template>
- <view class="address-manage">
- <view class="AddressTop">
- <view class="AddressTop-left">
- <image src="../../static/return/search.png" class="AddressTop-left-search" />
- <input v-model="search_name" type="text" class="AddressTop-left-input" placeholder="输入姓名或手机号" />
- <image v-if="search_name" src="../../static/return/search.png" class="AddressTop-left-clear"
- @click="search_name = '';toSearchAddress()" />
- </view>
- <view class="AddressTop-right" @click="toSearchAddress">查询</view>
- </view>
- <scroll-view v-if="list.length" class="AddressList" scroll-y="true">
- <view v-for="(item, index) in list" :key="index" class="AddressList-item" :class="address_index === index ? 'active' : ''" @click="address_index = index">
- <view class="AddressList-item-title">
- <text class="color spec">{{ item.con_name.slice(0,4) }}</text>
- <text class="color">{{ item.con_mobile }}</text>
- </view>
- <view v-if="item.nickname" class="AddressList-item-desc color">
- 昵称:{{ item.nickname.slice(0, 6) }}/{{ item.phone }}
- </view>
- <view class="AddressList-item-info">
- <view class="info-text color">{{ item | getAddressString }}</view>
- <image src="../../static/Buy_soap_tape/arrow.png" class="info-arrow"></image>
- </view>
- <view class="AddressList-item-set">
- <view class="set-control" @tap.stop="editAddress(index)">编辑</view>
- <view class="set-control" @tap.stop="delAddress(index)">删除</view>
- <view v-if="item.type === 1" class="get-used">常用地址</view>
- </view>
- <view v-if="item.level" class="AddressList-item-level level">{{ item.level | userLevel }}</view>
- </view>
- <view class="bottom"></view>
- </scroll-view>
- <view v-else class="noaddress">还没有地址呢</view>
- <view class="adress_bottom">
- <navigator url="./address" class="add-address big-btn new_address">新增地址</navigator>
- <view @tap="chooseAddress" class="add-address big-btn bg">使用此地址</view>
- </view>
- </view>
- </template>
- <script>
- import {
- _API_AddressGet,
- _API_AddressDel,
- _API_AddressSearch,
- _API_AddressUpdata
- } from '@/api/address.js'
- export default {
- data() {
- return {
- title: '地址管理',
- address_index: -1,
- search_name: ''
- }
- },
- filters: {
- getAddressString(val) {
- return val ? `${val.provice}-${val.city}-${val.area}-${val.address}` : ''
- },
- userLevel(level) {
- if (!level) return ''
- let out = ''
- switch (+level) {
- case 1:
- out = '销售员'
- break;
- case 2:
- out = '经销商'
- break;
- case 3:
- out = '批发商'
- break;
- default:
- out = ''
- }
- return out;
- }
- },
- computed: {
- list() {
- return this.$store.state.list
- }
- },
- onShow() {
- setTimeout(() => {
- uni.showLoading({
- mask: true
- })
- _API_AddressGet().then(res => {
- this.$store.commit('GET_ADDRESS', res.data.list)
- })
- }, 333)
- },
- onLoad(opt) {
- if (opt.choose) { // 表示用户是从商品详情页或确认订单页进来的
- this.title = '选择地址'
- }
- },
- created() { // 监听添加或者删除地址消息提示
- uni.$on('ADDRESS', msg => {
- uni.toast(msg)
- })
- },
- methods: {
- // 搜索地址
- toSearchAddress() {
- this.address_index = -1
- _API_AddressSearch({
- search_name: this.search_name
- }).then(res => {
- if (res.code === 200) {
- let list = res.data.list.map(item => ({
- con_name: item.username,
- con_mobile: item.mobile,
- provice: item.province,
- city: item.city,
- area: item.town,
- address: item.address,
- level: +item.level,
- id: item.id,
- nickname: item.nickname
- }))
- console.log(111, list)
- this.$store.commit('GET_ADDRESS', list)
- }
- })
- },
- editAddress(index) { // 点击编辑地址
- uni.navigateTo({
- url: `./address?index=${String(index)}`
- })
- },
- delAddress(index) { // 点击删除地址
- uni.showModal({
- title: '提示',
- content: '确定要删除这个地址?',
- success: (res) => {
- if (res.confirm) {
- _API_AddressDel({
- id: this.list[index].id
- }).then(res => {
- this.$store.commit('DEL', index)
- })
- }
- }
- })
- },
- chooseAddress() { // 如果是选择地址
- // if (this.title === '选择地址') {
- if (this.address_index > -1) {
- this.$store.commit('CHOOSEADDRESS', this.address_index)
- uni.navigateBack()
- } else {
- uni.showModal({
- content: "你还没有选择地址",
- showCancel: false
- })
- }
- // }
- // return
- }
- }
- }
- </script>
- <style lang="scss">
- .address-manage {
- @include page();
- display: flex;
- justify-content: space-between;
- flex-direction: column;
- .AddressTop {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: #ffffff;
- width: 100%;
- padding: 30rpx;
- box-sizing: border-box;
- &-left {
- flex: 1;
- overflow: hidden;
- margin-right: 30rpx;
- height: 80rpx;
- box-sizing: border-box;
- border: 1px solid #CCCCCC;
- border-radius: 80rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx 30rpx;
- &-search {
- display: block;
- width: 40rpx;
- height: 40rpx;
- }
- &-input {
- flex: 1;
- overflow: hidden;
- font-size: 28rpx;
- color: #333333;
- margin: 0 10rpx;
- }
- &-clear {
- display: block;
- width: 32rpx;
- height: 32rpx;
- }
- }
- &-right {
- width: 132rpx;
- height: 64rpx;
- border-radius: 64rpx;
- background: linear-gradient(92deg, #FE4815 0%, #F30000 100%);
- color: #FFFFFF;
- font-size: 28rpx;
- text-align: center;
- line-height: 64rpx;
- }
- }
- .AddressList {
- width: 100%;
- padding: 30rpx;
- box-sizing: border-box;
- flex: 1;
- overflow: hidden;
- // margin-bottom: 20rpx;
- &-item {
- padding: 30rpx;
- background: #ffffff;
- margin-bottom: 30rpx;
- position: relative;
- border-radius: 24rpx;
- &.active {
- background: linear-gradient(to right, #F97C55, #F44545);
- &-set {
- .set-used {
- background: #ffffff !important;
- }
- }
- .level {
- background: linear-gradient(203deg, #FBDCAC 0%, #FFEFD7 31%, #FFDCA5 55%, #FEEACB 90%, #F9D193 100%) !important;
- color: #F44545 !important;
- }
- .color {
- color: #ffffff !important;
- }
- }
- &-title {
- color: #999999;
- font-size: 28rpx;
- margin-bottom: 20rpx;
- .spec {
- color: #333333;
- font-size: 32rpx;
- margin-right: 20rpx;
- }
- }
- &-desc {
- color: #999999;
- font-size: 28rpx;
- margin-bottom: 30rpx;
- }
- &-info {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-bottom: 30rpx;
- margin-bottom: 30rpx;
- border-bottom: 1px solid #E9E9E9;
- .info-text {
- color: #333333;
- font-size: 28rpx;
- flex: 1;
- overflow: hidden;
- margin-right: 40rpx;
- }
- .info-arrow {
- display: block;
- width: 30rpx;
- height: 30rpx;
- }
- }
- &-set {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- .get-used {
- color: #EA4A41;
- font-size: 24rpx;
- width: 136rpx;
- height: 50rpx;
- border-radius: 8rpx;
- background: #FFF4F3;
- text-align: center;
- line-height: 50rpx;
- margin-left: auto;
- }
- .set-used {
- color: #333;
- font-size: 24rpx;
- width: 136rpx;
- height: 50rpx;
- border-radius: 8rpx;
- background: #F8F8F8;
- text-align: center;
- line-height: 50rpx;
- margin-left: auto;
- }
- .set-control {
- color: #333333;
- font-size: 24rpx;
- width: 112rpx;
- height: 50rpx;
- border-radius: 50rpx;
- background: #F8F8F8;
- text-align: center;
- line-height: 50rpx;
- &:nth-of-type(1) {
- margin-right: 20rpx;
- }
- }
- }
- &-level {
- position: absolute;
- top: 30rpx;
- right: 30rpx;
- transform: translate(30rpx, 14rpx);
- width: 156rpx;
- height: 50rpx;
- border-top-left-radius: 50rpx;
- border-bottom-left-radius: 50rpx;
- background: linear-gradient(92deg, #FE4815 0%, #F30000 100%);
- color: #FFFFFF;
- font-size: 24rpx;
- text-align: center;
- line-height: 50rpx;
- }
- }
- }
- .address_search {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 12rpx 30rpx;
- box-sizing: border-box;
- color: #333333;
- background-color: #FFFFFF;
- margin-bottom: 1px;
- .address_search_main {
- width: calc(100% - 106rpx);
- background-color: #F2F4F5;
- height: 64rpx;
- padding: 0 22px;
- border-radius: 64rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- &::before {
- content: "";
- display: block;
- width: 36rpx;
- height: 36rpx;
- background-image: url(../../static/return/search.png);
- background-size: 100% 100%;
- margin-right: 26rpx;
- }
- .address_search_input {
- flex: 1;
- }
- }
- .address_search_btn {
- font-size: 32rpx;
- width: 80rpx;
- }
- }
- .content {
- .item {
- background: #FFFFFF;
- border-bottom: 20rpx solid #F2F2F2;
- box-sizing: border-box;
- padding: 0 30rpx;
- .fixed_title {
- height: 74rpx;
- line-height: 74rpx;
- color: #333333;
- font-size: 28rpx;
- }
- .item_main {
- padding: 18rpx 0;
- border-bottom: 1px solid #D7D7D7;
- .label {
- width: 120rpx;
- text-align: left;
- }
- .item_main_agent {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 30rpx;
- .item_agent_info {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- color: #333333;
- font-size: 28rpx;
- width: calc(100% - 118rpx);
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .item_agent_level {
- color: #FFFFFF;
- font-size: 24rpx;
- background-color: #F76454;
- border-radius: 4rpx;
- height: 36rpx;
- line-height: 36rpx;
- width: 108rpx;
- text-align: center;
- }
- }
- .item_main_user {
- .item_main_user_left {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .item_main_user_right {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 42rpx;
- border-radius: 42rpx;
- background-color: #F76454;
- color: #FFFFFF;
- padding: 0 15rpx;
- }
- color: #333333;
- font-size: 28rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .item_main_address {
- width: 100%;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- .address_text {
- width: 100%;
- color: #999999;
- font-size: 28rpx;
- line-height: 38rpx;
- }
- }
- }
- .item_set_footer {
- height: 77rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: #333333;
- font-size: 24rpx !important;
- .check {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- &::before {
- content: "";
- display: block;
- width: 36rpx;
- height: 36rpx;
- box-sizing: border-box;
- border: 2rpx solid #F76454;
- text-align: center;
- line-height: 34rpx;
- border-radius: 50%;
- color: #FFFFFF;
- margin-right: 17rpx;
- }
- }
- .checked {
- &::before {
- content: "\2714";
- background-color: #F76454;
- }
- }
- .item_set_footer_right {
- .edit-del {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- height: 100%;
- width: 268rpx;
- color: #999999;
- justify-content: space-between;
- .edit,
- .del {
- flex: 1;
- height: 100%;
- text-align: center;
- &.del {
- text-align: right;
- }
- }
- }
- }
- }
- }
- .bottom {
- height: 88rpx;
- }
- }
- .noaddress {
- @include flex();
- color:#999999;
- padding-top: 200rpx;
- }
- .add-address {
- left: 0;
- bottom: 0;
- margin: 0;
- width: 100%;
- position: fixed;
- border-radius: 0;
- }
- .bottom {
- height: 60rpx;
- }
- .adress_bottom {
- left: 0;
- bottom: 0;
- margin: 0;
- width: 100%;
- position: fixed;
- border-radius: 0;
- height: 88rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .add-address {
- text-align: center;
- flex: 1;
- line-height: 88rpx;
- position: relative;
- background: #FB231F;
- color: #fff;
- }
- .new_address {
- text-align: center;
- border: none;
- background-color: #FFFFFF;
- color: #FB231F;
- }
- }
- .userLevel {
- font-size: 24rpx !important;
- color: #F76454;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- </style>
|