|
@@ -356,6 +356,100 @@ module.exports = _toPrimitive, module.exports.__esModule = true, module.exports[
|
|
|
/***/ }),
|
|
|
|
|
|
/***/ 140:
|
|
|
+/*!*****************************************************************!*\
|
|
|
+ !*** E:/work/Project_newGit/UniappShell/api/system/groupApi.js ***!
|
|
|
+ \*****************************************************************/
|
|
|
+/*! no static exports found */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+"use strict";
|
|
|
+
|
|
|
+
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+exports.createGroup = createGroup;
|
|
|
+exports.deleteGroupById = deleteGroupById;
|
|
|
+exports.getGroupById = getGroupById;
|
|
|
+exports.getGroupByList = getGroupByList;
|
|
|
+exports.getGroupView = getGroupView;
|
|
|
+exports.updateGroup = updateGroup;
|
|
|
+var _request = __webpack_require__(/*! @/libs/request.js */ 43);
|
|
|
+/**
|
|
|
+ * 获取部门列表
|
|
|
+ * @returns
|
|
|
+ */
|
|
|
+function getGroupByList() {
|
|
|
+ return (0, _request.request)({
|
|
|
+ url: '/group',
|
|
|
+ method: 'GET'
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 根据ID获取
|
|
|
+ * @returns
|
|
|
+ * @param groupId
|
|
|
+ */
|
|
|
+function getGroupById(groupId) {
|
|
|
+ return (0, _request.request)({
|
|
|
+ url: "/group/".concat(groupId),
|
|
|
+ method: 'GET'
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 添加部门
|
|
|
+ * @param data
|
|
|
+ * @returns
|
|
|
+ */
|
|
|
+function createGroup(data) {
|
|
|
+ return (0, _request.request)({
|
|
|
+ url: "/group/add",
|
|
|
+ method: 'POST',
|
|
|
+ data: data
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 更新部门
|
|
|
+ * @param data
|
|
|
+ * @returns
|
|
|
+ */
|
|
|
+function updateGroup(data) {
|
|
|
+ return (0, _request.request)({
|
|
|
+ url: "/group/update",
|
|
|
+ method: 'PUT',
|
|
|
+ data: data
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 删除部门
|
|
|
+ * @returns
|
|
|
+ * @param groupId
|
|
|
+ */
|
|
|
+function deleteGroupById(groupId) {
|
|
|
+ return (0, _request.request)({
|
|
|
+ url: "/group/".concat(groupId),
|
|
|
+ method: 'DELETE'
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 获取部门列表
|
|
|
+ * @returns
|
|
|
+ */
|
|
|
+function getGroupView() {
|
|
|
+ return (0, _request.request)({
|
|
|
+ url: '/group/view',
|
|
|
+ method: 'GET'
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/***/ }),
|
|
|
+
|
|
|
+/***/ 141:
|
|
|
/*!******************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/api/system/dangerApi.js ***!
|
|
|
\******************************************************************/
|
|
@@ -439,7 +533,35 @@ function handleDanger(data) {
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 149:
|
|
|
+/***/ 15:
|
|
|
+/*!**********************************************************!*\
|
|
|
+ !*** ./node_modules/@babel/runtime/helpers/construct.js ***!
|
|
|
+ \**********************************************************/
|
|
|
+/*! no static exports found */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ 16);
|
|
|
+var isNativeReflectConstruct = __webpack_require__(/*! ./isNativeReflectConstruct.js */ 17);
|
|
|
+function _construct(Parent, args, Class) {
|
|
|
+ if (isNativeReflectConstruct()) {
|
|
|
+ module.exports = _construct = Reflect.construct.bind(), module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
|
+ } else {
|
|
|
+ module.exports = _construct = function _construct(Parent, args, Class) {
|
|
|
+ var a = [null];
|
|
|
+ a.push.apply(a, args);
|
|
|
+ var Constructor = Function.bind.apply(Parent, a);
|
|
|
+ var instance = new Constructor();
|
|
|
+ if (Class) setPrototypeOf(instance, Class.prototype);
|
|
|
+ return instance;
|
|
|
+ }, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
|
+ }
|
|
|
+ return _construct.apply(null, arguments);
|
|
|
+}
|
|
|
+module.exports = _construct, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
|
+
|
|
|
+/***/ }),
|
|
|
+
|
|
|
+/***/ 150:
|
|
|
/*!*********************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/api/aqpt/checklistPoint.js ***!
|
|
|
\*********************************************************************/
|
|
@@ -531,35 +653,7 @@ function getPoint(checklistId, itemId, recordId, pointId) {
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 15:
|
|
|
-/*!**********************************************************!*\
|
|
|
- !*** ./node_modules/@babel/runtime/helpers/construct.js ***!
|
|
|
- \**********************************************************/
|
|
|
-/*! no static exports found */
|
|
|
-/***/ (function(module, exports, __webpack_require__) {
|
|
|
-
|
|
|
-var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ 16);
|
|
|
-var isNativeReflectConstruct = __webpack_require__(/*! ./isNativeReflectConstruct.js */ 17);
|
|
|
-function _construct(Parent, args, Class) {
|
|
|
- if (isNativeReflectConstruct()) {
|
|
|
- module.exports = _construct = Reflect.construct.bind(), module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
|
- } else {
|
|
|
- module.exports = _construct = function _construct(Parent, args, Class) {
|
|
|
- var a = [null];
|
|
|
- a.push.apply(a, args);
|
|
|
- var Constructor = Function.bind.apply(Parent, a);
|
|
|
- var instance = new Constructor();
|
|
|
- if (Class) setPrototypeOf(instance, Class.prototype);
|
|
|
- return instance;
|
|
|
- }, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
|
- }
|
|
|
- return _construct.apply(null, arguments);
|
|
|
-}
|
|
|
-module.exports = _construct, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
|
-
|
|
|
-/***/ }),
|
|
|
-
|
|
|
-/***/ 150:
|
|
|
+/***/ 151:
|
|
|
/*!***********************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/api/aqpt/task.js ***!
|
|
|
\***********************************************************/
|
|
@@ -698,7 +792,7 @@ module.exports = _isNativeReflectConstruct, module.exports.__esModule = true, mo
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 173:
|
|
|
+/***/ 174:
|
|
|
/*!*****************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/api/aqpt/warningApi.js ***!
|
|
|
\*****************************************************************/
|
|
@@ -2372,7 +2466,7 @@ function initData(vueOptions, context) {
|
|
|
try {
|
|
|
data = data.call(context); // 支持 Vue.prototype 上挂的数据
|
|
|
} catch (e) {
|
|
|
- if (Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"六院联创","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
|
+ if (Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"六院联创","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
|
console.warn('根据 Vue 的 data 函数初始化小程序 data 失败,请尽量确保 data 函数中不访问 vm 对象,否则可能影响首次数据渲染速度。', data);
|
|
|
}
|
|
|
}
|
|
@@ -3280,7 +3374,7 @@ module.exports = _iterableToArray, module.exports.__esModule = true, module.expo
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 203:
|
|
|
+/***/ 204:
|
|
|
/*!**********************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-icons/components/uni-icons/icons.js ***!
|
|
|
\**********************************************************************************************/
|
|
@@ -4869,7 +4963,7 @@ module.exports = _classCallCheck, module.exports.__esModule = true, module.expor
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 237:
|
|
|
+/***/ 238:
|
|
|
/*!*****************************************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpwxs.js ***!
|
|
|
\*****************************************************************************************************************/
|
|
@@ -4947,7 +5041,7 @@ exports.default = _default;
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 238:
|
|
|
+/***/ 239:
|
|
|
/*!********************************************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-swipe-action/components/uni-swipe-action-item/bindingx.js ***!
|
|
|
\********************************************************************************************************************/
|
|
@@ -4967,26 +5061,6 @@ exports.default = _default;
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 239:
|
|
|
-/*!*******************************************************************************************************************!*\
|
|
|
- !*** E:/work/Project_newGit/UniappShell/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpother.js ***!
|
|
|
- \*******************************************************************************************************************/
|
|
|
-/*! no static exports found */
|
|
|
-/***/ (function(module, exports, __webpack_require__) {
|
|
|
-
|
|
|
-"use strict";
|
|
|
-
|
|
|
-
|
|
|
-Object.defineProperty(exports, "__esModule", {
|
|
|
- value: true
|
|
|
-});
|
|
|
-exports.default = void 0;
|
|
|
-var otherMixins = {};
|
|
|
-var _default = otherMixins;
|
|
|
-exports.default = _default;
|
|
|
-
|
|
|
-/***/ }),
|
|
|
-
|
|
|
/***/ 24:
|
|
|
/*!************************************************************!*\
|
|
|
!*** ./node_modules/@babel/runtime/helpers/createClass.js ***!
|
|
@@ -5016,6 +5090,26 @@ module.exports = _createClass, module.exports.__esModule = true, module.exports[
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
+/***/ 240:
|
|
|
+/*!*******************************************************************************************************************!*\
|
|
|
+ !*** E:/work/Project_newGit/UniappShell/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpother.js ***!
|
|
|
+ \*******************************************************************************************************************/
|
|
|
+/*! no static exports found */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+"use strict";
|
|
|
+
|
|
|
+
|
|
|
+Object.defineProperty(exports, "__esModule", {
|
|
|
+ value: true
|
|
|
+});
|
|
|
+exports.default = void 0;
|
|
|
+var otherMixins = {};
|
|
|
+var _default = otherMixins;
|
|
|
+exports.default = _default;
|
|
|
+
|
|
|
+/***/ }),
|
|
|
+
|
|
|
/***/ 25:
|
|
|
/*!******************************************************************************************!*\
|
|
|
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/mp-vue/dist/mp.runtime.esm.js ***!
|
|
@@ -10555,7 +10649,7 @@ function type(obj) {
|
|
|
|
|
|
function flushCallbacks$1(vm) {
|
|
|
if (vm.__next_tick_callbacks && vm.__next_tick_callbacks.length) {
|
|
|
- if (Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"六院联创","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
|
+ if (Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"六院联创","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
|
var mpInstance = vm.$scope;
|
|
|
console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + vm._uid +
|
|
|
']:flushCallbacks[' + vm.__next_tick_callbacks.length + ']');
|
|
@@ -10576,14 +10670,14 @@ function nextTick$1(vm, cb) {
|
|
|
//1.nextTick 之前 已 setData 且 setData 还未回调完成
|
|
|
//2.nextTick 之前存在 render watcher
|
|
|
if (!vm.__next_tick_pending && !hasRenderWatcher(vm)) {
|
|
|
- if(Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"六院联创","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG){
|
|
|
+ if(Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"六院联创","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG){
|
|
|
var mpInstance = vm.$scope;
|
|
|
console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + vm._uid +
|
|
|
']:nextVueTick');
|
|
|
}
|
|
|
return nextTick(cb, vm)
|
|
|
}else{
|
|
|
- if(Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"六院联创","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG){
|
|
|
+ if(Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"六院联创","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG){
|
|
|
var mpInstance$1 = vm.$scope;
|
|
|
console.log('[' + (+new Date) + '][' + (mpInstance$1.is || mpInstance$1.route) + '][' + vm._uid +
|
|
|
']:nextMPTick');
|
|
@@ -10679,7 +10773,7 @@ var patch = function(oldVnode, vnode) {
|
|
|
});
|
|
|
var diffData = this.$shouldDiffData === false ? data : diff(data, mpData);
|
|
|
if (Object.keys(diffData).length) {
|
|
|
- if (Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"六院联创","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
|
+ if (Object({"VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"六院联创","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
|
|
|
console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + this._uid +
|
|
|
']差量更新',
|
|
|
JSON.stringify(diffData));
|
|
@@ -11109,7 +11203,7 @@ internalMixin(Vue);
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 277:
|
|
|
+/***/ 278:
|
|
|
/*!*************************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-forms/components/uni-forms/validate.js ***!
|
|
|
\*************************************************************************************************/
|
|
@@ -11125,9 +11219,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
});
|
|
|
exports.default = void 0;
|
|
|
var _regenerator = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/regenerator */ 44));
|
|
|
-var _inherits2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/inherits */ 278));
|
|
|
-var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ 279));
|
|
|
-var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ 281));
|
|
|
+var _inherits2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/inherits */ 279));
|
|
|
+var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ 280));
|
|
|
+var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ 282));
|
|
|
var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/asyncToGenerator */ 46));
|
|
|
var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ 23));
|
|
|
var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ 24));
|
|
@@ -11801,7 +11895,7 @@ exports.default = _default;
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 278:
|
|
|
+/***/ 279:
|
|
|
/*!*********************************************************!*\
|
|
|
!*** ./node_modules/@babel/runtime/helpers/inherits.js ***!
|
|
|
\*********************************************************/
|
|
@@ -11829,7 +11923,7 @@ module.exports = _inherits, module.exports.__esModule = true, module.exports["de
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 279:
|
|
|
+/***/ 280:
|
|
|
/*!**************************************************************************!*\
|
|
|
!*** ./node_modules/@babel/runtime/helpers/possibleConstructorReturn.js ***!
|
|
|
\**************************************************************************/
|
|
@@ -11837,7 +11931,7 @@ module.exports = _inherits, module.exports.__esModule = true, module.exports["de
|
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
|
|
var _typeof = __webpack_require__(/*! ./typeof.js */ 13)["default"];
|
|
|
-var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ 280);
|
|
|
+var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ 281);
|
|
|
function _possibleConstructorReturn(self, call) {
|
|
|
if (call && (_typeof(call) === "object" || typeof call === "function")) {
|
|
|
return call;
|
|
@@ -11850,7 +11944,7 @@ module.exports = _possibleConstructorReturn, module.exports.__esModule = true, m
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 280:
|
|
|
+/***/ 281:
|
|
|
/*!**********************************************************************!*\
|
|
|
!*** ./node_modules/@babel/runtime/helpers/assertThisInitialized.js ***!
|
|
|
\**********************************************************************/
|
|
@@ -11867,7 +11961,7 @@ module.exports = _assertThisInitialized, module.exports.__esModule = true, modul
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 281:
|
|
|
+/***/ 282:
|
|
|
/*!***************************************************************!*\
|
|
|
!*** ./node_modules/@babel/runtime/helpers/getPrototypeOf.js ***!
|
|
|
\***************************************************************/
|
|
@@ -11884,7 +11978,7 @@ module.exports = _getPrototypeOf, module.exports.__esModule = true, module.expor
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 282:
|
|
|
+/***/ 283:
|
|
|
/*!**********************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-forms/components/uni-forms/utils.js ***!
|
|
|
\**********************************************************************************************/
|
|
@@ -12220,7 +12314,7 @@ exports.isEqual = isEqual;
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 297:
|
|
|
+/***/ 298:
|
|
|
/*!************************************************************************************!*\
|
|
|
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/uni-cloud/dist/index.js ***!
|
|
|
\************************************************************************************/
|
|
@@ -12236,19 +12330,19 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
});
|
|
|
exports.default = void 0;
|
|
|
var _regenerator = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/regenerator */ 44));
|
|
|
-var _assertThisInitialized2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ 280));
|
|
|
+var _assertThisInitialized2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ 281));
|
|
|
var _slicedToArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ 5));
|
|
|
var _typeof2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/typeof */ 13));
|
|
|
var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/toConsumableArray */ 18));
|
|
|
var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/asyncToGenerator */ 46));
|
|
|
var _defineProperty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/defineProperty */ 11));
|
|
|
-var _inherits2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/inherits */ 278));
|
|
|
-var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ 279));
|
|
|
-var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ 281));
|
|
|
-var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/wrapNativeSuper */ 298));
|
|
|
+var _inherits2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/inherits */ 279));
|
|
|
+var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ 280));
|
|
|
+var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ 282));
|
|
|
+var _wrapNativeSuper2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/wrapNativeSuper */ 299));
|
|
|
var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ 23));
|
|
|
var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ 24));
|
|
|
-var _pages = _interopRequireDefault(__webpack_require__(/*! @/pages.json */ 300));
|
|
|
+var _pages = _interopRequireDefault(__webpack_require__(/*! @/pages.json */ 301));
|
|
|
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e34) { throw _e34; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e35) { didErr = true; err = _e35; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
@@ -12701,7 +12795,7 @@ var S = "development" === "development",
|
|
|
x = true;
|
|
|
var O = "";
|
|
|
try {
|
|
|
- O = (__webpack_require__(/*! uni-stat-config */ 301).default || __webpack_require__(/*! uni-stat-config */ 301)).appid;
|
|
|
+ O = (__webpack_require__(/*! uni-stat-config */ 302).default || __webpack_require__(/*! uni-stat-config */ 302)).appid;
|
|
|
} catch (e) {}
|
|
|
var E = {};
|
|
|
function L(e) {
|
|
@@ -20022,16 +20116,16 @@ exports.default = $s;
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 298:
|
|
|
+/***/ 299:
|
|
|
/*!****************************************************************!*\
|
|
|
!*** ./node_modules/@babel/runtime/helpers/wrapNativeSuper.js ***!
|
|
|
\****************************************************************/
|
|
|
/*! no static exports found */
|
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
|
|
-var getPrototypeOf = __webpack_require__(/*! ./getPrototypeOf.js */ 281);
|
|
|
+var getPrototypeOf = __webpack_require__(/*! ./getPrototypeOf.js */ 282);
|
|
|
var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ 16);
|
|
|
-var isNativeFunction = __webpack_require__(/*! ./isNativeFunction.js */ 299);
|
|
|
+var isNativeFunction = __webpack_require__(/*! ./isNativeFunction.js */ 300);
|
|
|
var construct = __webpack_require__(/*! ./construct.js */ 15);
|
|
|
function _wrapNativeSuper(Class) {
|
|
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
@@ -20063,20 +20157,6 @@ module.exports = _wrapNativeSuper, module.exports.__esModule = true, module.expo
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 299:
|
|
|
-/*!*****************************************************************!*\
|
|
|
- !*** ./node_modules/@babel/runtime/helpers/isNativeFunction.js ***!
|
|
|
- \*****************************************************************/
|
|
|
-/*! no static exports found */
|
|
|
-/***/ (function(module, exports) {
|
|
|
-
|
|
|
-function _isNativeFunction(fn) {
|
|
|
- return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
|
-}
|
|
|
-module.exports = _isNativeFunction, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
|
-
|
|
|
-/***/ }),
|
|
|
-
|
|
|
/***/ 3:
|
|
|
/*!***********************************!*\
|
|
|
!*** (webpack)/buildin/global.js ***!
|
|
@@ -20109,6 +20189,20 @@ module.exports = g;
|
|
|
/***/ }),
|
|
|
|
|
|
/***/ 300:
|
|
|
+/*!*****************************************************************!*\
|
|
|
+ !*** ./node_modules/@babel/runtime/helpers/isNativeFunction.js ***!
|
|
|
+ \*****************************************************************/
|
|
|
+/*! no static exports found */
|
|
|
+/***/ (function(module, exports) {
|
|
|
+
|
|
|
+function _isNativeFunction(fn) {
|
|
|
+ return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
|
+}
|
|
|
+module.exports = _isNativeFunction, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
|
+
|
|
|
+/***/ }),
|
|
|
+
|
|
|
+/***/ 301:
|
|
|
/*!**********************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/pages.json?{"type":"origin-pages-json"} ***!
|
|
|
\**********************************************************************************/
|
|
@@ -20263,7 +20357,7 @@ exports.default = _default;
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 301:
|
|
|
+/***/ 302:
|
|
|
/*!*********************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/pages.json?{"type":"stat"} ***!
|
|
|
\*********************************************************************/
|
|
@@ -20284,7 +20378,7 @@ exports.default = _default;
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 309:
|
|
|
+/***/ 310:
|
|
|
/*!***************************************************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-file-picker/components/uni-file-picker/choose-and-upload-file.js ***!
|
|
|
\***************************************************************************************************************************/
|
|
@@ -20498,11 +20592,11 @@ function chooseAndUploadFile() {
|
|
|
}
|
|
|
return uploadFiles(chooseAll(opts), opts);
|
|
|
}
|
|
|
-/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"], __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/wx.js */ 1)["default"], __webpack_require__(/*! ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/uni-cloud/dist/index.js */ 297)["default"]))
|
|
|
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"], __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/wx.js */ 1)["default"], __webpack_require__(/*! ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/uni-cloud/dist/index.js */ 298)["default"]))
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 310:
|
|
|
+/***/ 311:
|
|
|
/*!**********************************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-file-picker/components/uni-file-picker/utils.js ***!
|
|
|
\**********************************************************************************************************/
|
|
@@ -20822,7 +20916,7 @@ uni.addInterceptor({
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 332:
|
|
|
+/***/ 333:
|
|
|
/*!******************************************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-transition/components/uni-transition/createAnimation.js ***!
|
|
|
\******************************************************************************************************************/
|
|
@@ -20956,7 +21050,7 @@ function createAnimation(option, _this) {
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 352:
|
|
|
+/***/ 353:
|
|
|
/*!***********************************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-load-more/components/uni-load-more/i18n/index.js ***!
|
|
|
\***********************************************************************************************************/
|
|
@@ -20971,9 +21065,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
value: true
|
|
|
});
|
|
|
exports.default = void 0;
|
|
|
-var _en = _interopRequireDefault(__webpack_require__(/*! ./en.json */ 353));
|
|
|
-var _zhHans = _interopRequireDefault(__webpack_require__(/*! ./zh-Hans.json */ 354));
|
|
|
-var _zhHant = _interopRequireDefault(__webpack_require__(/*! ./zh-Hant.json */ 355));
|
|
|
+var _en = _interopRequireDefault(__webpack_require__(/*! ./en.json */ 354));
|
|
|
+var _zhHans = _interopRequireDefault(__webpack_require__(/*! ./zh-Hans.json */ 355));
|
|
|
+var _zhHant = _interopRequireDefault(__webpack_require__(/*! ./zh-Hant.json */ 356));
|
|
|
var _default = {
|
|
|
en: _en.default,
|
|
|
'zh-Hans': _zhHans.default,
|
|
@@ -20983,7 +21077,7 @@ exports.default = _default;
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 353:
|
|
|
+/***/ 354:
|
|
|
/*!**********************************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-load-more/components/uni-load-more/i18n/en.json ***!
|
|
|
\**********************************************************************************************************/
|
|
@@ -20994,7 +21088,7 @@ module.exports = JSON.parse("{\"uni-load-more.contentdown\":\"Pull up to show mo
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 354:
|
|
|
+/***/ 355:
|
|
|
/*!***************************************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hans.json ***!
|
|
|
\***************************************************************************************************************/
|
|
@@ -21005,7 +21099,7 @@ module.exports = JSON.parse("{\"uni-load-more.contentdown\":\"上拉显示更多
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 355:
|
|
|
+/***/ 356:
|
|
|
/*!***************************************************************************************************************!*\
|
|
|
!*** E:/work/Project_newGit/UniappShell/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hant.json ***!
|
|
|
\***************************************************************************************************************/
|
|
@@ -22349,6 +22443,7 @@ exports.getUserProfile = getUserProfile;
|
|
|
exports.login = login;
|
|
|
exports.logout = logout;
|
|
|
exports.register = register;
|
|
|
+exports.selectUserByGroupId = selectUserByGroupId;
|
|
|
exports.updatePwd = updatePwd;
|
|
|
exports.updateUserProfile = updateUserProfile;
|
|
|
exports.uploadFile = uploadFile;
|
|
@@ -22418,10 +22513,17 @@ function updatePwd(data) {
|
|
|
});
|
|
|
}
|
|
|
//查询用户的带岗位
|
|
|
-function getUserList() {
|
|
|
+function getUserList(data) {
|
|
|
return (0, _request.request)({
|
|
|
url: '/user/select',
|
|
|
- method: 'get'
|
|
|
+ method: 'get',
|
|
|
+ data: data
|
|
|
+ });
|
|
|
+}
|
|
|
+function selectUserByGroupId(groupId) {
|
|
|
+ return (0, _request.request)({
|
|
|
+ url: "/user/select/".concat(groupId),
|
|
|
+ method: 'GET'
|
|
|
});
|
|
|
}
|
|
|
//企业微信登录
|
|
@@ -22474,6 +22576,13 @@ function _request() {
|
|
|
title: '加载中',
|
|
|
mask: true
|
|
|
});
|
|
|
+ if (!(0, _auth.getToken)() && params.url !== '/login') {
|
|
|
+ uni.clearStorageSync();
|
|
|
+ uni.reLaunch({
|
|
|
+ url: '/pages/login/index'
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
uni.request(_objectSpread(_objectSpread({}, formatRequestBody(params)), {}, {
|
|
|
success: function success(response) {
|
|
|
var data = response.data;
|
|
@@ -22961,8 +23070,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
exports.default = void 0;
|
|
|
var _default = {
|
|
|
base: {
|
|
|
- // dev: 'http://1.15.92.205:7001',
|
|
|
- dev: 'https://api.xazhyc.com',
|
|
|
+ dev: 'http://1.15.92.205:7001',
|
|
|
+ // dev: 'https://api.xazhyc.com',
|
|
|
// dev: 'http://192.168.3.253:7001',
|
|
|
pro: 'https://api.xazhyc.com'
|
|
|
},
|