|
@@ -103,6 +103,9 @@ try {
|
|
|
},
|
|
|
uPopup: function() {
|
|
|
return __webpack_require__.e(/*! import() | uview-ui/components/u-popup/u-popup */ "uview-ui/components/u-popup/u-popup").then(__webpack_require__.bind(null, /*! @/uview-ui/components/u-popup/u-popup.vue */ 257))
|
|
|
+ },
|
|
|
+ uSelect: function() {
|
|
|
+ return __webpack_require__.e(/*! import() | uview-ui/components/u-select/u-select */ "uview-ui/components/u-select/u-select").then(__webpack_require__.bind(null, /*! @/uview-ui/components/u-select/u-select.vue */ 264))
|
|
|
}
|
|
|
}
|
|
|
} catch (e) {
|
|
@@ -787,6 +790,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
{
|
|
|
components: {
|
|
|
uHeader: uHeader },
|
|
@@ -832,7 +844,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
// 是否是管理员
|
|
|
isAdmin: false,
|
|
|
// 顶部高度
|
|
|
- headerHeight: '' };
|
|
|
+ headerHeight: '',
|
|
|
+ // 当前派单状态
|
|
|
+ orderStatus: "",
|
|
|
+ checkUser: false,
|
|
|
+ from_data: [],
|
|
|
+ to_data: [],
|
|
|
+ all_data: [],
|
|
|
+ checkId: '' };
|
|
|
|
|
|
},
|
|
|
watch: {
|
|
@@ -844,14 +863,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
this.page = 1;
|
|
|
} },
|
|
|
|
|
|
- created: function created() {var _this = this;
|
|
|
+ created: function created() {var _this2 = this;
|
|
|
uni.getSystemInfo({
|
|
|
success: function success(res) {
|
|
|
var menuButton = uni.getMenuButtonBoundingClientRect(); // 胶囊
|
|
|
var navBarPadding = (menuButton.top - res.statusBarHeight) * 2;
|
|
|
var statusBarHeight = res.statusBarHeight;
|
|
|
var navHeight = menuButton.height + navBarPadding;
|
|
|
- _this.headerHeight = navHeight + statusBarHeight;
|
|
|
+ _this2.headerHeight = navHeight + statusBarHeight;
|
|
|
} });
|
|
|
|
|
|
},
|
|
@@ -859,22 +878,102 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
// this.getData()
|
|
|
// 获取订单数量
|
|
|
// this.getDataNum()
|
|
|
-
|
|
|
+ //
|
|
|
},
|
|
|
onShow: function onShow() {
|
|
|
- this.getData();
|
|
|
- this.getDataNum();
|
|
|
var data = getApp().globalData;
|
|
|
this.isAdmin = data.isAdmin;
|
|
|
if (!this.isAdmin) {
|
|
|
this.getInfo();
|
|
|
}
|
|
|
+ this.getData();
|
|
|
+ this.getDataNum();
|
|
|
+ // 获取派单状态
|
|
|
+ this.getOrderStatus();
|
|
|
},
|
|
|
onPullDownRefresh: function onPullDownRefresh() {
|
|
|
this.getDataNum();
|
|
|
this.getData();
|
|
|
},
|
|
|
methods: {
|
|
|
+ // 选择配送员
|
|
|
+ checkUsered: function checkUsered(e) {
|
|
|
+ var _this = this;
|
|
|
+ if (e[0].value !== null && e[1].value !== null) {
|
|
|
+ this.request('/admin_order/give', {
|
|
|
+ id: _this.checkId,
|
|
|
+ get_user_id: e[0].value,
|
|
|
+ send_user_id: e[1].value },
|
|
|
+ 'get').then(function (res) {
|
|
|
+ if (res.code === 1) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '派单成功',
|
|
|
+ icon: "none" });
|
|
|
+
|
|
|
+ _this.getDataNum();
|
|
|
+ _this.getData();
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: '派单失败',
|
|
|
+ icon: "none" });
|
|
|
+
|
|
|
+ _this.getDataNum();
|
|
|
+ _this.getData();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请选择取宠人和送宠人',
|
|
|
+ icon: "none" });
|
|
|
+
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 选择手动派单
|
|
|
+ doMakeOrder: function doMakeOrder(data) {
|
|
|
+ console.log(data.from_city, data.to_city);
|
|
|
+ var _this = this;
|
|
|
+ _this.checkId = data.id;
|
|
|
+ // 获取可以选择的取宠人
|
|
|
+ this.request('/admin_user/senders', {
|
|
|
+ areas: data.from_city },
|
|
|
+ 'get').then(function (res) {
|
|
|
+ if (res.code === 1) {
|
|
|
+ _this.from_data = res.data.data;
|
|
|
+ _this.all_data[0] = res.data.data;
|
|
|
+ _this.$forceUpdate();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ // 获取可以选择的送宠人
|
|
|
+ this.request('/admin_user/senders', {
|
|
|
+ areas: data.to_city },
|
|
|
+ 'get').then(function (res) {
|
|
|
+ if (res.code === 1) {
|
|
|
+ _this.to_data = res.data.data;
|
|
|
+ _this.all_data[1] = res.data.data;
|
|
|
+ _this.$forceUpdate();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ uni.showModal({
|
|
|
+ title: "提示",
|
|
|
+ content: "请选择接送人员进行手动派单",
|
|
|
+ success: function success(e) {
|
|
|
+ if (e.confirm) {
|
|
|
+ _this.checkUser = true;
|
|
|
+ _this.$forceUpdate();
|
|
|
+ }
|
|
|
+ } });
|
|
|
+
|
|
|
+ },
|
|
|
+ // 获取派单状态
|
|
|
+ getOrderStatus: function getOrderStatus() {var _this3 = this;
|
|
|
+ this.request('/admin_config/get_config', '', 'get').then(function (res) {
|
|
|
+ if (res.data.order_way === 'manual') {
|
|
|
+ _this3.orderStatus = "手动派单";
|
|
|
+ } else {
|
|
|
+ _this3.orderStatus = "自动派单";
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
// 运行详情
|
|
|
transport: function transport(id) {
|
|
|
uni.navigateTo({
|
|
@@ -898,7 +997,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
}
|
|
|
},
|
|
|
// 删除订单
|
|
|
- del: function del(id) {var _this2 = this;
|
|
|
+ del: function del(id) {var _this4 = this;
|
|
|
var url = "";
|
|
|
if (this.isAdmin) {
|
|
|
url = "/admin_order/order_delete";
|
|
@@ -909,32 +1008,32 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
id: id },
|
|
|
"GET").then(function (res) {
|
|
|
if (res.code === 1) {
|
|
|
- _this2.getData();
|
|
|
- _this2.getDataNum();
|
|
|
+ _this4.getData();
|
|
|
+ _this4.getDataNum();
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
// 拒绝结算
|
|
|
- refuse: function refuse(id) {var _this3 = this;
|
|
|
+ refuse: function refuse(id) {var _this5 = this;
|
|
|
this.request("/admin_order/deal_settle", {
|
|
|
id: id,
|
|
|
status: 2 },
|
|
|
"GET").then(function (res) {
|
|
|
if (res.code === 1) {
|
|
|
- _this3.getData();
|
|
|
- _this3.getDataNum();
|
|
|
+ _this5.getData();
|
|
|
+ _this5.getDataNum();
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
// 结算
|
|
|
- push: function push(id) {var _this4 = this;
|
|
|
+ push: function push(id) {var _this6 = this;
|
|
|
this.request("/admin_order/deal_settle", {
|
|
|
id: id,
|
|
|
status: 1 },
|
|
|
"GET").then(function (res) {
|
|
|
if (res.code === 1) {
|
|
|
- _this4.getData();
|
|
|
- _this4.getDataNum();
|
|
|
+ _this6.getData();
|
|
|
+ _this6.getDataNum();
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -950,41 +1049,41 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
|
|
|
},
|
|
|
// 获取会员信息
|
|
|
- getInfo: function getInfo() {var _this5 = this;
|
|
|
+ getInfo: function getInfo() {var _this7 = this;
|
|
|
this.request('/user/index', {}, "GET").then(function (res) {
|
|
|
if (res.code === 1) {
|
|
|
if (res.data.need_verification) {
|
|
|
- _this5.show = true;
|
|
|
+ _this7.show = true;
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
// 点击立即接单
|
|
|
- getOrder: function getOrder(id) {var _this6 = this;
|
|
|
+ getOrder: function getOrder(id) {var _this8 = this;
|
|
|
this.request("/sender_order_controller/get", {
|
|
|
id: id },
|
|
|
"POST").then(function (res) {
|
|
|
if (res.code === 1) {
|
|
|
- _this6.getData();
|
|
|
- _this6.getDataNum();
|
|
|
+ _this8.getData();
|
|
|
+ _this8.getDataNum();
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
// 获取订单数量
|
|
|
- getDataNum: function getDataNum() {var _this7 = this;
|
|
|
+ getDataNum: function getDataNum() {var _this9 = this;
|
|
|
this.request("/sender_order_controller/nums", {}, "GET").then(function (res) {
|
|
|
console.log(res);
|
|
|
if (res.code === 1) {
|
|
|
- _this7.list[0].cate_count = res.data[1];
|
|
|
- _this7.list[1].cate_count = res.data[2];
|
|
|
- _this7.list[2].cate_count = res.data[3];
|
|
|
- _this7.list[3].cate_count = res.data[4];
|
|
|
- _this7.list[4].cate_count = res.data[5];
|
|
|
+ _this9.list[0].cate_count = res.data[1];
|
|
|
+ _this9.list[1].cate_count = res.data[2];
|
|
|
+ _this9.list[2].cate_count = res.data[3];
|
|
|
+ _this9.list[3].cate_count = res.data[4];
|
|
|
+ _this9.list[4].cate_count = res.data[5];
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
// 获取订单列表
|
|
|
- getData: function getData() {var _this8 = this;
|
|
|
+ getData: function getData() {var _this10 = this;
|
|
|
this.dataA = [];
|
|
|
this.dataB = [];
|
|
|
this.dataC = [];
|
|
@@ -1003,23 +1102,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
"GET").then(function (res) {
|
|
|
uni.stopPullDownRefresh();
|
|
|
if (res.code === 1) {
|
|
|
- if (_this8.current === 0) {
|
|
|
- _this8.dataA = [].concat(_toConsumableArray(_this8.dataA), _toConsumableArray(res.data.data));
|
|
|
+ if (_this10.current === 0) {
|
|
|
+ _this10.dataA = [].concat(_toConsumableArray(_this10.dataA), _toConsumableArray(res.data.data));
|
|
|
}
|
|
|
- if (_this8.current === 1) {
|
|
|
- _this8.dataB = [].concat(_toConsumableArray(_this8.dataB), _toConsumableArray(res.data.data));
|
|
|
+ if (_this10.current === 1) {
|
|
|
+ _this10.dataB = [].concat(_toConsumableArray(_this10.dataB), _toConsumableArray(res.data.data));
|
|
|
}
|
|
|
- if (_this8.current === 2) {
|
|
|
- _this8.dataC = [].concat(_toConsumableArray(_this8.dataC), _toConsumableArray(res.data.data));
|
|
|
+ if (_this10.current === 2) {
|
|
|
+ _this10.dataC = [].concat(_toConsumableArray(_this10.dataC), _toConsumableArray(res.data.data));
|
|
|
}
|
|
|
- if (_this8.current === 3) {
|
|
|
- _this8.dataD = [].concat(_toConsumableArray(_this8.dataD), _toConsumableArray(res.data.data));
|
|
|
+ if (_this10.current === 3) {
|
|
|
+ _this10.dataD = [].concat(_toConsumableArray(_this10.dataD), _toConsumableArray(res.data.data));
|
|
|
}
|
|
|
- if (_this8.current === 4) {
|
|
|
- _this8.dataE = [].concat(_toConsumableArray(_this8.dataE), _toConsumableArray(res.data.data));
|
|
|
+ if (_this10.current === 4) {
|
|
|
+ _this10.dataE = [].concat(_toConsumableArray(_this10.dataE), _toConsumableArray(res.data.data));
|
|
|
}
|
|
|
- _this8.last_page = res.data.last_page;
|
|
|
- _this8.list[_this8.current].cate_count = res.data.total;
|
|
|
+ _this10.last_page = res.data.last_page;
|
|
|
+ _this10.list[_this10.current].cate_count = res.data.total;
|
|
|
}
|
|
|
});
|
|
|
},
|