|
@@ -83,10 +83,10 @@ try {
|
|
|
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))
|
|
|
},
|
|
|
uRadioGroup: function() {
|
|
|
- return Promise.all(/*! import() | uview-ui/components/u-radio-group/u-radio-group */[__webpack_require__.e("common/vendor"), __webpack_require__.e("uview-ui/components/u-radio-group/u-radio-group")]).then(__webpack_require__.bind(null, /*! @/uview-ui/components/u-radio-group/u-radio-group.vue */ 383))
|
|
|
+ return Promise.all(/*! import() | uview-ui/components/u-radio-group/u-radio-group */[__webpack_require__.e("common/vendor"), __webpack_require__.e("uview-ui/components/u-radio-group/u-radio-group")]).then(__webpack_require__.bind(null, /*! @/uview-ui/components/u-radio-group/u-radio-group.vue */ 323))
|
|
|
},
|
|
|
uRadio: function() {
|
|
|
- return __webpack_require__.e(/*! import() | uview-ui/components/u-radio/u-radio */ "uview-ui/components/u-radio/u-radio").then(__webpack_require__.bind(null, /*! @/uview-ui/components/u-radio/u-radio.vue */ 390))
|
|
|
+ return __webpack_require__.e(/*! import() | uview-ui/components/u-radio/u-radio */ "uview-ui/components/u-radio/u-radio").then(__webpack_require__.bind(null, /*! @/uview-ui/components/u-radio/u-radio.vue */ 330))
|
|
|
}
|
|
|
}
|
|
|
} catch (e) {
|
|
@@ -386,18 +386,44 @@ var _auth = __webpack_require__(/*! @/utils/auth */ 16); //
|
|
|
//
|
|
|
//
|
|
|
//
|
|
|
-var _default = { name: "u-header", data: function data() {return { headerHeight: 0, show: false, hasLogin: false, userinfo: {}, type: false, list: [{ name: "自动派单", disabled: false }, { name: "手动接单", disabled: false }], checkIndex: "自动派单" };}, created: function created() {var _this = 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;} });this.GetUser();var data = getApp().globalData;this.type = data.isAdmin;}, methods: { // 切换
|
|
|
- radioGroupChange: function radioGroupChange(e) {console.log(e);}, // 点击退出登录
|
|
|
+var _default = { name: "u-header", data: function data() {return { headerHeight: 0, show: false, hasLogin: false, userinfo: {}, type: false, list: [{ name: "自动派单", disabled: false }, { name: "手动派单", disabled: false }], checkIndex: "自动派单" };}, created: function created() {var _this = 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;} });this.GetUser();var data = getApp().globalData;this.type = data.isAdmin;if (this.type) {this.getAdminConfig();}}, methods: { // 获取当前的配置
|
|
|
+ getAdminConfig: function getAdminConfig(e) {var _this2 = this;this.request('/admin_config/get_config', '', 'get').then(function (res) {if (res.data.order_way === 'manual') {console.log('手动派单');_this2.checkIndex = "手动派单";} else {_this2.checkIndex = "自动派单";}});}, // 切换
|
|
|
+ radioGroupChange: function radioGroupChange(e) {console.log(e);var type = "";if (e === '手动派单') {type = 'manual';} else {type = "auto";}this.request('/admin_config/set_config', { order_way: type }, 'get').then(function (res) {if (res.code === 1) {uni.showToast({ title: '配置成功', icon: 'none' });}});}, // 点击退出登录
|
|
|
loginOut: function loginOut() {getApp.globalData = { isAdmin: false };(0, _auth.removeToken)();uni.reLaunch({ url: "/pages/login/login" });this.show = false;}, // 点击完善信息
|
|
|
GoMine: function GoMine() {uni.navigateTo({ url: '/pages/order/perfect' });this.show = false;}, // 点击我的钱包
|
|
|
GoWithdeawal: function GoWithdeawal() {uni.navigateTo({ url: '/pages/mine/mine' });this.show = false;}, // 点击修改密码
|
|
|
GoPassword: function GoPassword() {uni.navigateTo({ url: "/pages/mine/password" });this.show = false;}, // 代办事项
|
|
|
GoIndex: function GoIndex() {uni.navigateTo({ url: '/pages/index/index' });this.show = false;}, GoDelivery: function GoDelivery() {uni.navigateTo({ url: '/pages/Delivery/Delivery' });this.show = false;}, // 点击营销设置
|
|
|
GoMarket: function GoMarket() {uni.navigateTo({ url: '/pages/Marketing/Marketing' });this.show = false;}, // 点击前往订单页面
|
|
|
- GoOrder: function GoOrder() {uni.navigateTo({ url: '/pages/order/order' });this.show = false;}, //去登陆
|
|
|
- GoLogin: function GoLogin() {var token = (0, _auth.getToken)();if (!token) {this.side();uni.navigateTo({ url: '../login/login' });}this.show = false;}, //获取用户信息
|
|
|
- GetUser: function GetUser() {var _this2 = this;this.request('/user/index', '', 'post').then(function (res) {var token = (0, _auth.getToken)();if (token) {_this2.userinfo = res.data;_this2.hasLogin = true;console.log(_this2.userinfo);}});}, side: function side() {this.show = !this.show;} } };exports.default = _default;
|
|
|
+ GoOrder: function GoOrder() {uni.navigateTo({ url: '/pages/order/order' });this.show = false;
|
|
|
+ },
|
|
|
+ //去登陆
|
|
|
+ GoLogin: function GoLogin() {
|
|
|
+ var token = (0, _auth.getToken)();
|
|
|
+ if (!token) {
|
|
|
+ this.side();
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '../login/login' });
|
|
|
+
|
|
|
+ }
|
|
|
+ this.show = false;
|
|
|
+ },
|
|
|
+ //获取用户信息
|
|
|
+ GetUser: function GetUser() {var _this3 = this;
|
|
|
+ this.request('/user/index', '', 'post').then(function (res) {
|
|
|
+ var token = (0, _auth.getToken)();
|
|
|
+ if (token) {
|
|
|
+ _this3.userinfo = res.data;
|
|
|
+ _this3.hasLogin = true;
|
|
|
+ console.log(_this3.userinfo);
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
+ },
|
|
|
+ side: function side() {
|
|
|
+ this.show = !this.show;
|
|
|
+ } } };exports.default = _default;
|
|
|
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
|
|
|
|
|
|
/***/ }),
|