| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567 |
- <template>
- <view class="container">
- <view class="flex align-center" style="background: #fff">
- <view class="content padding-left bg-white" style="color: #333; font-size: 28upx; font-weight: bold" v-if="city">
- <text @click="goCity()">
- {{ city }}
- <text class="cuIcon-right"></text>
- </text>
- </view>
- <view class="padding-tb-sm padding-lr-xs margin-right-xs flex-sub">
- <view class="search-bar-form">
- <view class="search-bar-box">
- <icon class="icon-search-in-box" type="search" size="16"></icon>
- <input
- confirm-type="search"
- class="search-bar-input"
- placeholder="输入地址查询"
- placeholder-class="phcolor"
- :value="inputVal"
- :focus="inputShowed"
- @input="inputTyping"
- />
- <view class="icon-clear" v-if="inputVal" @tap="clearInput">
- <!-- #ifdef APP-PLUS || MP -->
- <icon type="clear" :size="15"></icon>
- <!-- #endif -->
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="tui-list search-result" v-if="inputShowed">
- <view class="padding margin-lr radius flex justify-between align-center" v-for="(item, index) in searchResult" :key="index" @click="update(item)">
- <view>
- <view class="text-lg text-bold text-black">{{ item.addressDetail }}</view>
- <view class="text-df text-gray margin-top-xs">{{ item.province }}{{ item.city }}{{ item.district }}</view>
- </view>
- </view>
- </view>
- <view v-else>
- <view class="tui-list city-list" v-if="list && list.length > 0">
- <view class="flex justify-between">
- <view class="title text-lg text-bold padding-sm padding-top-sm">我的地址</view>
- <view style="display: flex; align-items: center; font-size: 26rpx" class="padding-sm padding-top-sm" @tap="goAddressList">
- <view>地址管理</view>
- <image src="../../static/images/index/right2.png" style="width: 12rpx; height: 20rpx; margin-left: 6rpx"></image>
- </view>
- </view>
- <view
- class="padding margin-lr radius flex justify-between align-center"
- v-for="(item, index) in list"
- :key="index"
- v-if="index == 0"
- @click="update(item)"
- style="border: 2rpx solid #fcd202"
- >
- <view>
- <view class="text-lg text-bold text-black">{{ item.addressDetail }}</view>
- <view class="text-df text-gray margin-top-xs">{{ item.province }}{{ item.city }}{{ item.district }}</view>
- </view>
- <u-icon name="checkbox-mark" color="#FCD202" size="42"></u-icon>
- </view>
- <view class="padding margin-lr radius flex justify-between align-center" v-for="(item, index) in list" :key="index" v-if="index > 0" @click="update(item)">
- <view>
- <view class="text-lg text-bold text-black">{{ item.addressDetail }}</view>
- <view class="text-df text-gray margin-top-xs">{{ item.province }}{{ item.city }}{{ item.district }}</view>
- </view>
- </view>
- </view>
- </view>
- <!-- 添加收货地址 -->
- <view class="btn">
- <view class="address_push" @click="addAddress">添加收货地址</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- region: [],
- inputVal: '', // 搜索框输入的内容
- inputShowed: false, // 输入框是否显示
- list: [],
- searchResult: [], // 搜索城市的结果
- localCampus: '',
- campusDetails: '',
- txt: '选择城市',
- province: '', //省
- city: '', //市
- district: '', //区
- page: 1,
- limit: 10,
- totalCount: 0,
- longitude: '',
- latitude: ''
- }
- },
- onLoad: function (options) {
- console.log(options)
- if (uni.getStorageSync('city')) {
- this.city = uni.getStorageSync('city')
- this.longitude = uni.getStorageSync('lng')
- this.latitude = uni.getStorageSync('lat')
- } else {
- this.getlocation()
- }
- },
- onShow() {
- if (uni.getStorageSync('userId')) {
- this.initCampusList()
- }
- },
- methods: {
- goAddressList() {
- uni.navigateTo({
- url: '/my/address/index'
- })
- },
- update(e) {
- // console.log(e)
- let data = {
- addressId: e.addressId,
- addressDefault: 1,
- userName: e.userName,
- userPhone: e.userPhone,
- insideAddressId: e.insideAddressId,
- province: e.province,
- city: e.city,
- district: e.district,
- addressDetail: e.addressDetail,
- lng: e.lng,
- lat: e.lat
- }
- // console.log(data)
- this.$Request.postJson('/app/address/updateAddress', data).then((res) => {
- // console.log(res)
- if (res.code == 0) {
- uni.removeStorageSync('city')
- uni.removeStorageSync('lng')
- uni.removeStorageSync('lat')
- setTimeout(function () {
- uni.navigateBack()
- }, 10)
- }
- })
- },
- goCity() {
- let that = this
- uni.chooseLocation({
- success: function (res) {
- console.log(res, '选择')
- that.longitude = res.longitude
- that.latitude = res.latitude
- that.city = res.name
- uni.setStorageSync('lng', that.longitude)
- uni.setStorageSync('lat', that.latitude)
- uni.setStorageSync('city', res.name)
- setTimeout(function () {
- uni.navigateBack()
- }, 10)
- }
- })
- },
- getlocation() {
- let that = this
- // that.list=[]
- uni.getLocation({
- type: 'gcj02',
- success: function (res) {
- console.log('当前位置的经度:' + res.longitude)
- console.log('当前位置的纬度:' + res.latitude)
- that.longitude = res.longitude
- that.latitude = res.latitude
- let data = {
- lat: res.latitude,
- lng: res.longitude
- }
- that.$Request.get('/app/address/selectCity', data).then((res) => {
- if (res.code == 0) {
- that.city = res.data.city
- }
- })
- // that.initCampusList();
- }
- })
- },
- //获取社区列表
- initCampusList() {
- let that = this
- let data = {
- page: that.page,
- limit: that.limit
- }
- that.$Request.getT('/app/address/selectAddressList', data).then((res) => {
- console.log(res)
- if (res.code === 0) {
- if (that.page == 1) {
- that.list = res.data.list
- } else {
- that.list = [...that.list, ...res.data.list]
- }
- }
- })
- },
- showInput() {
- this.inputShowed = true
- },
- clearInput() {
- this.inputVal = ''
- this.inputShowed = false
- this.searchResult = []
- uni.hideKeyboard() //强行隐藏键盘
- },
- inputTyping(e) {
- this.inputVal = e.detail.value
- if (e.detail.value.length === 0) {
- this.searchResult = []
- this.inputShowed = false
- } else {
- this.inputShowed = true
- }
- this.searchCity()
- },
- // 搜索城市
- searchCity() {
- let data = {
- impotr: this.inputVal,
- page: 1,
- limit: 1000
- }
- this.$Request.get('/app/address/searchAddress', data).then((res) => {
- if (res.code == 0) {
- this.searchResult = res.data.list
- }
- })
- },
- // 添加地址
- addAddress() {
- let userId = this.$queue.getData('userId')
- if (!userId) {
- uni.navigateTo({
- url: '/pages/public/login'
- })
- return
- }
- uni.navigateTo({
- url: '/my/address/add?page=2'
- })
- }
- },
- onReachBottom: function () {
- this.page = this.page + 1
- this.initCampusList()
- },
- onPullDownRefresh: function () {
- this.page = 1
- this.initCampusList()
- }
- }
- </script>
- <style lang="scss">
- page {
- height: 100%;
- background: #ffffff;
- }
- .page {
- height: 100%;
- overflow: hidden;
- }
- .search-bar {
- display: flex;
- align-items: center;
- position: relative;
- padding: 27rpx 30rpx 35rpx;
- background-color: #fff;
- }
- .search-bar-form {
- flex: 1;
- position: relative;
- border-radius: 32rpx;
- background: #f2f5f7;
- }
- .search-bar-box {
- display: flex;
- align-items: center;
- position: relative;
- padding-left: 20rpx;
- padding-right: 20rpx;
- height: 64rpx;
- z-index: 1;
- }
- .search-bar-input {
- line-height: normal;
- width: 100%;
- padding-left: 20rpx;
- font-size: 30rpx;
- color: #333;
- }
- .phcolor {
- font-size: 30rpx;
- }
- .icon-clear {
- height: 38rpx;
- }
- .icon-clear .tui-icon-class {
- display: block;
- }
- .search-bar-label {
- height: 64rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 2;
- border-radius: 32rpx;
- color: #ccc;
- background: #f2f5f7;
- }
- .icon-search {
- position: relative;
- height: 26rpx;
- margin-right: 20rpx;
- font-size: inherit;
- }
- .search-bar-text {
- font-size: 30rpx;
- line-height: 32rpx;
- }
- .cancel-btn {
- padding-left: 30rpx;
- }
- .search-result::before {
- display: none;
- }
- .search-result::after {
- display: none;
- }
- .tui-list-cell {
- // padding: 30upx;
- // display: flex;
- // flex-direction: row;
- // justify-content: space-between;
- // align-items: center;
- // width: 100%;
- }
- .tui-list-cell-hover {
- // background-color: #eee !important;
- }
- .tui-list-cell-navigate {
- // width: 100%;
- // position: relative;
- // padding: 30rpx 0 30rpx 30rpx;
- font-size: 30rpx;
- color: #333;
- font-weight: 800;
- }
- .tui-list-cell-navigate::after {
- content: '';
- position: absolute;
- border-bottom: 1rpx solid #eaeef1;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- bottom: 0;
- right: 0;
- left: 30rpx;
- }
- .current-city {
- padding: 0 30rpx 30rpx;
- background: #fff;
- }
- .tui-icon-class {
- margin-right: 10rpx;
- }
- .current-city .title {
- font-size: 28rpx;
- line-height: 24rpx;
- color: #333333;
- }
- .box {
- background: #f5f5f5;
- border-radius: 10upx;
- width: 686upx;
- // height: 134upx;
- }
- .city-name {
- display: flex;
- align-items: center;
- // margin-top: 17rpx;
- font-size: 30rpx;
- font-weight: bold;
- line-height: 30rpx;
- color: #333;
- }
- .hot-city .title {
- height: 48rpx !important;
- padding-left: 30rpx;
- font-size: 24rpx !important;
- line-height: 48rpx !important;
- color: #999;
- background: #f2f5f7 !important;
- }
- .city-names {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- align-content: space-between;
- padding: 12rpx 90rpx 26rpx 30rpx;
- background: #fff;
- }
- .city-name-item {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 140rpx;
- height: 56rpx;
- margin-top: 16rpx;
- /* border: solid 1rpx #ccc; */
- border-radius: 28rpx;
- font-size: 28rpx;
- color: #333;
- position: relative;
- }
- .city-name-item::before {
- content: '';
- position: absolute;
- width: 200%;
- height: 200%;
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- -webkit-transform: scale(0.5, 0.5);
- transform: scale(0.5, 0.5);
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- left: 0;
- top: 0;
- border-radius: 56rpx;
- border: 1px solid #ccc;
- }
- .tap-city {
- color: #fff;
- background: #5677fc;
- /* border: solid 1rpx #5677fc; */
- }
- .tui-list {
- background-color: #fff;
- position: relative;
- width: 100%;
- display: flex;
- flex-direction: column;
- padding-bottom: env(safe-area-inset-bottom);
- }
- .tui-list-cell-divider {
- height: 48rpx;
- padding-left: 30rpx;
- font-size: 24rpx;
- color: #999;
- background: #f2f5f7;
- padding: 0 30rpx;
- display: flex;
- align-items: center;
- }
- .tui-indexed-list-bar {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- z-index: 9999;
- position: absolute;
- top: 132rpx;
- right: 0;
- padding-right: 10rpx;
- width: 44rpx;
- }
- .tui-indexed-list-text {
- font-size: 22rpx;
- white-space: nowrap;
- }
- .tui-indexed-list-bar.active {
- background-color: rgb(200, 200, 200);
- }
- .tui-indexed-list-alert {
- position: absolute;
- z-index: 20;
- width: 160rpx;
- height: 160rpx;
- left: 50%;
- top: 50%;
- margin-left: -80rpx;
- margin-top: -80rpx;
- border-radius: 80rpx;
- text-align: center;
- line-height: 160rpx;
- font-size: 70rpx;
- color: #fff;
- background-color: rgba(0, 0, 0, 0.5);
- }
- /* 添加收货地址 */
- .btn {
- position: fixed;
- bottom: 0rpx;
- width: 100%;
- height: 100rpx;
- line-height: 100rpx;
- background-color: white;
- padding-top: 10rpx;
- }
- .address_push {
- width: 90%;
- height: 80rpx;
- margin: 0 auto;
- background: #fcd202;
- border-radius: 20rpx;
- color: white;
- text-align: center;
- line-height: 80rpx;
- font-size: 35rpx;
- }
- </style>
|