295 lines
12 KiB
Vue
295 lines
12 KiB
Vue
<template>
|
|
<view>
|
|
<view class="page">
|
|
<view v-if="data_list.length > 0" class="data-list padding-main">
|
|
<view v-for="(item, index) in data_list" :key="index" class="item bg-white padding-main border-radius-main spacing-mb">
|
|
<view @tap="address_conent_event" :data-index="index" class="oh">
|
|
<view v-if="(item.logo || null) != null" class="fl oh margin-right-lg">
|
|
<image class="dis-block address-logo radius" :src="item.logo" mode="widthFix"></image>
|
|
</view>
|
|
<view class="oh">
|
|
<view class="base oh padding-bottom-main padding-top-xs">
|
|
<text v-if="(item.alias || null) != null" class="address-alias br-main cr-main round margin-right-sm">{{ item.alias }}</text>
|
|
<text>{{ item.name }}</text>
|
|
<text class="fr">{{ item.tel }}</text>
|
|
</view>
|
|
<view class="address oh padding-top-sm">
|
|
<image class="item-icon fl margin-top-xs" :src="common_static_url + 'map-icon.png'" mode="widthFix"></image>
|
|
<view class="text fr"> {{ item.province_name || "" }}{{ item.city_name || "" }}{{ item.county_name || "" }}{{ item.address || "" }} </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view v-if="((item.distance_value || null) != null && (item.distance_unit || null) != null) || ((item.lng || 0) != 0 && (item.lat || 0) != 0)" class="br-t oh padding-top-main margin-top-main">
|
|
<view v-if="(item.distance_value || null) != null && (item.distance_unit || null) != null" class="fl margin-top-lg">
|
|
<text class="cr-grey">距离</text>
|
|
<text class="cr-base">{{ item.distance_value }}</text>
|
|
<text class="cr-grey">{{ item.distance_unit }}</text>
|
|
</view>
|
|
<view class="item-operation fr oh">
|
|
<button v-if="(item.is_default || 0) == 0" class="round bg-white cr-green br-green" type="default" size="mini" @tap="address_switch_event" :data-index="index" hover-class="none">选择</button>
|
|
<button v-if="(item.lng || 0) != 0 && (item.lat || 0) != 0" class="round bg-white cr-base br" type="default" size="mini" @tap="address_map_event" :data-index="index" hover-class="none">查看地图</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view v-else>
|
|
<!-- 提示信息 -->
|
|
<component-no-data :propStatus="data_list_loding_status"></component-no-data>
|
|
</view>
|
|
|
|
<!-- 结尾 -->
|
|
<component-bottom-line :propStatus="data_bottom_line_status"></component-bottom-line>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
const app = getApp();
|
|
import componentNoData from "../../../../components/no-data/no-data";
|
|
import componentBottomLine from "../../../../components/bottom-line/bottom-line";
|
|
|
|
var common_static_url = app.globalData.get_static_url("common");
|
|
export default {
|
|
data() {
|
|
return {
|
|
common_static_url: common_static_url,
|
|
data_list_loding_status: 1,
|
|
data_bottom_line_status: false,
|
|
data_list: [],
|
|
params: null,
|
|
user_location_cache_key: app.globalData.data.cache_userlocation_key,
|
|
user_location: null,
|
|
is_first: 1,
|
|
home_extraction_address_position: 0,
|
|
};
|
|
},
|
|
|
|
components: {},
|
|
props: {},
|
|
|
|
onLoad(params) {
|
|
this.setData({
|
|
params: params,
|
|
home_extraction_address_position: app.globalData.get_config("config.home_extraction_address_position", 0),
|
|
});
|
|
},
|
|
|
|
onReady: function () {
|
|
// 清除位置缓存信息
|
|
uni.removeStorage({
|
|
key: this.user_location_cache_key,
|
|
});
|
|
|
|
// 是否获取位置
|
|
if (this.home_extraction_address_position == 1) {
|
|
uni.navigateTo({
|
|
url: "/pages/common/open-setting-location/open-setting-location",
|
|
});
|
|
}
|
|
},
|
|
|
|
onShow() {
|
|
// 是否需要选择地理位置
|
|
if (this.home_extraction_address_position == 1) {
|
|
// 首次不请求数据
|
|
if (this.is_first == 0) {
|
|
this.user_location_init();
|
|
this.init();
|
|
}
|
|
} else {
|
|
this.init();
|
|
}
|
|
this.setData({
|
|
is_first: 0,
|
|
});
|
|
|
|
// 分享菜单处理
|
|
app.globalData.page_share_handle();
|
|
},
|
|
|
|
// 下拉刷新
|
|
onPullDownRefresh() {
|
|
this.get_data_list();
|
|
},
|
|
|
|
methods: {
|
|
// 初始化
|
|
init() {
|
|
var user = app.globalData.get_user_info(this, "init");
|
|
if (user != false) {
|
|
// 用户未绑定用户则转到登录页面
|
|
if (app.globalData.user_is_need_login(user)) {
|
|
uni.redirectTo({
|
|
url: "/pages/login/login?event_callback=init",
|
|
});
|
|
return false;
|
|
} else {
|
|
// 获取数据
|
|
this.get_data_list();
|
|
}
|
|
} else {
|
|
this.setData({
|
|
data_list_loding_status: 0,
|
|
data_bottom_line_status: false,
|
|
});
|
|
}
|
|
},
|
|
|
|
// 地址信息初始化
|
|
user_location_init() {
|
|
var result = uni.getStorageSync(this.user_location_cache_key) || null;
|
|
var data = null;
|
|
if (result != null) {
|
|
data = {
|
|
name: result.name || null,
|
|
address: result.address || null,
|
|
lat: result.latitude || null,
|
|
lng: result.longitude || null,
|
|
};
|
|
}
|
|
this.setData({
|
|
user_location: data,
|
|
});
|
|
},
|
|
|
|
// 获取数据列表
|
|
get_data_list() {
|
|
// 加载loding
|
|
uni.showLoading({
|
|
title: "加载中...",
|
|
});
|
|
this.setData({
|
|
data_list_loding_status: 1,
|
|
});
|
|
|
|
// 获取数据
|
|
var data = {};
|
|
|
|
// 是否有坐标
|
|
if ((this.user_location || null) != null) {
|
|
data["lng"] = this.user_location.lng;
|
|
data["lat"] = this.user_location.lat;
|
|
}
|
|
|
|
// 请求接口
|
|
uni.request({
|
|
url: app.globalData.get_request_url("switchinfo", "extraction", "distribution"),
|
|
method: "POST",
|
|
data: data,
|
|
dataType: "json",
|
|
success: (res) => {
|
|
uni.hideLoading();
|
|
uni.stopPullDownRefresh();
|
|
if (res.data.code == 0) {
|
|
var data = res.data.data;
|
|
if (data.extraction_address.length > 0) {
|
|
this.setData({
|
|
data_list: data.extraction_address,
|
|
data_list_loding_status: 3,
|
|
data_bottom_line_status: true,
|
|
});
|
|
} else {
|
|
this.setData({
|
|
data_list_loding_status: 0,
|
|
});
|
|
}
|
|
} else {
|
|
this.setData({
|
|
data_list_loding_status: 0,
|
|
});
|
|
if (app.globalData.is_login_check(res.data, this, "get_data_list")) {
|
|
app.globalData.showToast(res.data.msg);
|
|
}
|
|
}
|
|
},
|
|
fail: () => {
|
|
uni.hideLoading();
|
|
uni.stopPullDownRefresh();
|
|
this.setData({
|
|
data_list_loding_status: 2,
|
|
});
|
|
app.globalData.showToast("服务器请求出错");
|
|
},
|
|
});
|
|
},
|
|
|
|
// 地图查看
|
|
address_map_event(e) {
|
|
var index = e.currentTarget.dataset.index || 0;
|
|
var data = this.data_list[index] || null;
|
|
if (data == null) {
|
|
app.globalData.showToast("地址有误");
|
|
return false;
|
|
}
|
|
|
|
// 打开地图
|
|
var name = data.alias || data.name || "";
|
|
var address = (data.province_name || "") + (data.city_name || "") + (data.county_name || "") + (data.address || "");
|
|
app.globalData.open_location(data.lng, data.lat, name, address);
|
|
},
|
|
|
|
// 地址内容事件
|
|
address_conent_event(e) {
|
|
var index = e.currentTarget.dataset.index || 0;
|
|
var is_back = this.params.is_back || 0;
|
|
if (is_back == 1) {
|
|
uni.setStorage({
|
|
key: app.globalData.data.cache_buy_user_address_select_key,
|
|
data: this.data_list[index],
|
|
});
|
|
uni.navigateBack();
|
|
}
|
|
},
|
|
|
|
// 切换选择事件
|
|
address_switch_event(e) {
|
|
var index = e.currentTarget.dataset.index || 0;
|
|
var temp_data = this.data_list;
|
|
if ((temp_data[index] || null) == null) {
|
|
app.globalData.showToast("数据有误");
|
|
return false;
|
|
}
|
|
|
|
// 请求切换
|
|
uni.showLoading({
|
|
title: "处理中...",
|
|
});
|
|
uni.request({
|
|
url: app.globalData.get_request_url("switchsave", "extraction", "distribution"),
|
|
method: "POST",
|
|
data: {
|
|
id: temp_data[index]["id"],
|
|
value: temp_data[index]["id_old"] || 0,
|
|
},
|
|
dataType: "json",
|
|
success: (res) => {
|
|
uni.hideLoading();
|
|
if (res.data.code == 0) {
|
|
app.globalData.showToast(res.data.msg, "success");
|
|
var temp_data = this.data_list;
|
|
for (var i in temp_data) {
|
|
temp_data[i]["is_default"] = i == index ? 1 : 0;
|
|
}
|
|
this.setData({
|
|
data_list: temp_data,
|
|
});
|
|
} else {
|
|
if (app.globalData.is_login_check(res.data)) {
|
|
app.globalData.showToast(res.data.msg);
|
|
} else {
|
|
app.globalData.showToast("提交失败,请重试!");
|
|
}
|
|
}
|
|
},
|
|
fail: () => {
|
|
uni.hideLoading();
|
|
app.globalData.showToast("服务器请求出错");
|
|
},
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<style>
|
|
@import "./extraction-switch.css";
|
|
</style>
|