diff --git a/pages/plugins/distribution/extraction-apply/extraction-apply.vue b/pages/plugins/distribution/extraction-apply/extraction-apply.vue
index 8efd0124..ab127739 100644
--- a/pages/plugins/distribution/extraction-apply/extraction-apply.vue
+++ b/pages/plugins/distribution/extraction-apply/extraction-apply.vue
@@ -246,9 +246,6 @@
method: "POST",
data: {},
dataType: "json",
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
success: res => {
if (res.data.code == 0) {
var data = res.data.data;
@@ -277,9 +274,6 @@
pid: self.province_id
},
dataType: "json",
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
success: res => {
if (res.data.code == 0) {
var data = res.data.data;
@@ -310,9 +304,6 @@
pid: self.city_id
},
dataType: "json",
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
success: res => {
if (res.data.code == 0) {
var data = res.data.data;
@@ -333,7 +324,6 @@
// 省份事件
select_province_event(e) {
var index = e.detail.value || 0;
-
if (index >= 0) {
var data = this.province_list[index];
this.setData({
@@ -351,7 +341,6 @@
// 市事件
select_city_event(e) {
var index = e.detail.value || 0;
-
if (index >= 0) {
var data = this.city_list[index];
this.setData({
@@ -367,7 +356,6 @@
// 区/县事件
select_county_event(e) {
var index = e.detail.value || 0;
-
if (index >= 0) {
var data = this.county_list[index];
this.setData({
@@ -404,7 +392,6 @@
lng: result.longitude || null
};
}
-
this.setData({
user_location: data
});
diff --git a/pages/plugins/distribution/extraction-order/extraction-order.css b/pages/plugins/distribution/extraction-order/extraction-order.css
new file mode 100644
index 00000000..45fb356f
--- /dev/null
+++ b/pages/plugins/distribution/extraction-order/extraction-order.css
@@ -0,0 +1,36 @@
+/*
+* 导航
+*/
+.nav {
+ background: #eee;
+ height: 80rpx;
+ line-height: 80rpx;
+}
+.nav .item {
+ width: 33.33%;
+}
+
+/*
+* 列表
+*/
+.scroll-box {
+ height: calc(100vh - 80rpx);
+}
+.data-list .item .operation button {
+ padding: 0 35rpx;
+ display: inline-flex;
+}
+
+/*
+* 搜索
+*/
+.search-drag {
+ width: 35px;
+ height: 35px;
+ line-height: 44px;
+ background: hsla(0, 0%, 0%, 0.01);
+ margin-top: calc(100vh - 260rpx);
+ margin-left: calc(50% - 17px);
+ box-shadow: 0px 3rpx 16rpx rgba(0, 0, 0, 0.2);
+ padding: 5px;
+}
\ No newline at end of file
diff --git a/pages/plugins/distribution/extraction-order/extraction-order.vue b/pages/plugins/distribution/extraction-order/extraction-order.vue
index a47ff748..10db3c25 100644
--- a/pages/plugins/distribution/extraction-order/extraction-order.vue
+++ b/pages/plugins/distribution/extraction-order/extraction-order.vue
@@ -1,500 +1,383 @@
-
-
-
-
-
- {{item.name}}
-
-
-
-
-
-
-
-
-
- {{item.add_time}}
- {{item.status_name}}
-
-
-
- 订单号
- {{item.order_no}}
-
-
- 支付金额
- {{item.pay_price}}
- 元
-
-
-
-
-
-
-
-
-
-
-
-
-
- 加载中...
-
-
-
-
-
- {{msg || '处理错误'}}
-
-
-
-
-
- {{msg || '没有相关数据'}}
-
-
-
-
-
-
-
-
- 我是有底线的
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 取货码
-
-
-
-
-
-
-
-
-
-
-
-
- 搜索条件
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/pages/plugins/distribution/extraction-switch/extraction-switch.css b/pages/plugins/distribution/extraction-switch/extraction-switch.css
new file mode 100644
index 00000000..1dd821a8
--- /dev/null
+++ b/pages/plugins/distribution/extraction-switch/extraction-switch.css
@@ -0,0 +1,22 @@
+.address-logo {
+ width: 140rpx;
+ height: 140rpx !important;
+}
+.address .item-icon {
+ width: 30rpx;
+ height: 35rpx !important;
+}
+.address-alias {
+ padding: 2rpx 10rpx;
+}
+.address .text {
+ line-height: 44rpx;
+ width: calc(100% - 40rpx);
+}
+.operation .button-list button {
+ padding: 0 35rpx;
+ display: inline-flex;
+}
+.operation .button-list button:not(:last-child) {
+ margin-right: 20rpx;
+}
\ No newline at end of file
diff --git a/pages/plugins/distribution/extraction-switch/extraction-switch.vue b/pages/plugins/distribution/extraction-switch/extraction-switch.vue
index 5a980479..efa84874 100644
--- a/pages/plugins/distribution/extraction-switch/extraction-switch.vue
+++ b/pages/plugins/distribution/extraction-switch/extraction-switch.vue
@@ -1,350 +1,297 @@
-
-
-
-
-
-
-
-
-
-
-
- {{item.alias}}
- {{item.name}}
- {{item.tel}}
-
-
-
- {{item.province_name || ''}}{{item.city_name || ''}}{{item.county_name || ''}}{{item.address || ''}}
-
-
-
-
-
- 距离
- {{item.distance_value}}
- {{item.distance_unit}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 加载中...
-
-
-
-
-
- {{msg || '处理错误'}}
-
-
-
-
-
- {{msg || '没有相关数据'}}
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ {{item.alias}}
+ {{item.name}}
+ {{item.tel}}
+
+
+
+
+ {{item.province_name || ''}}{{item.city_name || ''}}{{item.county_name || ''}}{{item.address || ''}}
+
+
+
+
+
+
+ 距离
+ {{item.distance_value}}
+ {{item.distance_unit}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
diff --git a/pages/plugins/distribution/extraction/extraction.css b/pages/plugins/distribution/extraction/extraction.css
index 43271f5a..3c0b63cc 100644
--- a/pages/plugins/distribution/extraction/extraction.css
+++ b/pages/plugins/distribution/extraction/extraction.css
@@ -1,117 +1,7 @@
-/*
-* 公共
-*/
-.operation {
- margin-top: 30rpx;
-}
-.title-msg {
- font-size: 46rpx;
- margin-top: 5%;
-}
-.mini-msg {
- color: #0e90d2;
-}
-.to-submit {
- margin-top: 15rpx;
-}
-.waiting-audit,
-.refuse {
- padding: 10% 10rpx 60rpx 10rpx;
-}
-
-/*
-* 未申请
-*/
-.apply-not {
- padding: 10rpx 10rpx 60rpx 10rpx;
-}
-.apply-not .apply-desc {
- margin: 30rpx 30rpx 0 30rpx;
-}
-.apply-not .to-submit {
- margin-top: 10%;
-}
-
-/*
-* 待审核
-*/
-.waiting-audit .title-msg {
- color: #f37b1d;
-}
-
-/*
-* 已审核
-*/
-.valid .base {
- padding: 20rpx 10rpx;
-}
-.valid .base-title {
- font-weight: 500;
-}
-.valid .alias {
- border: 1px solid #ff6a80;
- color: #ff6a80;
+.alias {
padding: 2rpx 10rpx;
- border-radius: 6rpx;
- margin-right: 10rpx;
-}
-.valid .edit-submit {
- color: #0e90d2;
-}
-.valid .content {
- line-height: 46rpx;
-}
-.valid .content,
-.valid .statistics .item {
- padding: 30rpx 10rpx;
-}
-.valid .extraction-notice {
- padding: 0 20rpx;
-}
-.valid .statistics .item {
- width: calc(50% - 1px);
+}
+.statistics .item {
+ width: 50%;
box-sizing: border-box;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
-}
-.valid .statistics .item .value {
- font-weight: bold;
- font-size: 36rpx;
- margin-top: 10rpx;
-}
-.valid .statistics .item .order-wait-value {
- color: #f00;
-}
-.valid .statistics .item .order-already-value {
- color: #2ba245;
-}
-.valid .relieve {
- padding: 0 10rpx;
-}
-
-/*
-* 拒绝
-*/
-.refuse .title-msg {
- color: #dd514c;
-}
-.refuse .fail-tips {
- padding-left: 10rpx;
- background: #ffffeb;
- margin-top: 10rpx;
-}
-.refuse .mini-msg {
- margin-top: 50rpx;
-}
-
-/*
-* 介绍
-*/
-.apply-desc {
- background: #def2fd;
- border: 1px solid #cfeeff;
- color: #1490d2;
- padding: 10rpx;
- font-size: 26rpx;
- border-radius: 2px;
}
\ No newline at end of file
diff --git a/pages/plugins/distribution/extraction/extraction.vue b/pages/plugins/distribution/extraction/extraction.vue
index 9a9e1cad..84f56726 100644
--- a/pages/plugins/distribution/extraction/extraction.vue
+++ b/pages/plugins/distribution/extraction/extraction.vue
@@ -11,7 +11,7 @@
-
+
@@ -20,75 +20,83 @@
-
- 申请信息正在审核中...
-
- 你可以
-
-
-
-
-
+
+
+ 申请信息正在审核中...
+
+
+
+
+
-
-
- 取货点信息
-
- 编辑信息
-
-
-
- {{extraction.alias}}
- {{extraction.province_name}}{{extraction.city_name}}{{extraction.county_name}}{{extraction.address}}
-
-
-
-
- 取货订单统计
-
- 查看取货订单
-
-
-
-
- 待处理
- {{statistical.order_wait || 0}}
-
-
- 已处理
- {{statistical.order_already || 0}}
-
-
-
-
- 当前状态也解约,可重新编辑数据提交审核。
-
-
-
-
-
-
- 申请信息审核失败
- 原因:{{extraction.fail_reason}}
-
- 你可以重新编辑信息提交
-
-
-
-
+
+
+
+ 取货点信息
+
+ 编辑信息
+
+
+
+
+ {{extraction.alias}}
+ {{extraction.province_name}}{{extraction.city_name}}{{extraction.county_name}}{{extraction.address}}
+
+
+
+
+
+
+ 取货订单统计
+
+ 查看取货订单
+
+
+
+
+
+ 待处理
+ {{statistical.order_wait || 0}}
+
+
+ 已处理
+ {{statistical.order_already || 0}}
+
+
+
+
+
+
+
+ {{item}}
+
+
+
+
+
+ 当前状态也解约,可重新编辑数据提交审核。
+
+
+
+ 申请信息审核失败
+
+ 原因:
+ {{extraction.fail_reason}}
+
+
+
+
+
+
+
+
diff --git a/pages/plugins/distribution/order/order.vue b/pages/plugins/distribution/order/order.vue
index d4e5e5b1..cf50a989 100644
--- a/pages/plugins/distribution/order/order.vue
+++ b/pages/plugins/distribution/order/order.vue
@@ -9,7 +9,7 @@
-
+
diff --git a/pages/plugins/distribution/profit/profit.vue b/pages/plugins/distribution/profit/profit.vue
index 6d3a64fd..0163406a 100644
--- a/pages/plugins/distribution/profit/profit.vue
+++ b/pages/plugins/distribution/profit/profit.vue
@@ -9,7 +9,7 @@
-
+
{{item.add_time_time}}
diff --git a/pages/plugins/distribution/team/team.vue b/pages/plugins/distribution/team/team.vue
index 79450d57..ed7b656f 100644
--- a/pages/plugins/distribution/team/team.vue
+++ b/pages/plugins/distribution/team/team.vue
@@ -1,7 +1,7 @@
-
+