|
@@ -11026,18 +11026,47 @@ function getParent(name, keys) {
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 331:
|
|
|
+/***/ 34:
|
|
|
+/*!*****************************************************************!*\
|
|
|
+ !*** F:/小程序客户端/spark-student/uview-ui/libs/function/$parent.js ***!
|
|
|
+ \*****************************************************************/
|
|
|
+/*! no static exports found */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+"use strict";
|
|
|
+Object.defineProperty(exports, "__esModule", { value: true });exports.default = $parent; // 获取父组件的参数,因为支付宝小程序不支持provide/inject的写法
|
|
|
+// this.$parent在非H5中,可以准确获取到父组件,但是在H5中,需要多次this.$parent.$parent.xxx
|
|
|
+// 这里默认值等于undefined有它的含义,因为最顶层元素(组件)的$parent就是undefined,意味着不传name
|
|
|
+// 值(默认为undefined),就是查找最顶层的$parent
|
|
|
+function $parent() {var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : undefined;
|
|
|
+ var parent = this.$parent;
|
|
|
+ // 通过while历遍,这里主要是为了H5需要多层解析的问题
|
|
|
+ while (parent) {
|
|
|
+ // 父组件
|
|
|
+ if (parent.$options && parent.$options.name !== name) {
|
|
|
+ // 如果组件的name不相等,继续上一级寻找
|
|
|
+ parent = parent.$parent;
|
|
|
+ } else {
|
|
|
+ return parent;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+/***/ }),
|
|
|
+
|
|
|
+/***/ 341:
|
|
|
/*!**********************************************************!*\
|
|
|
!*** ./node_modules/@babel/runtime/regenerator/index.js ***!
|
|
|
\**********************************************************/
|
|
|
/*! no static exports found */
|
|
|
/***/ (function(module, exports, __webpack_require__) {
|
|
|
|
|
|
-module.exports = __webpack_require__(/*! regenerator-runtime */ 332);
|
|
|
+module.exports = __webpack_require__(/*! regenerator-runtime */ 342);
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 332:
|
|
|
+/***/ 342:
|
|
|
/*!************************************************************!*\
|
|
|
!*** ./node_modules/regenerator-runtime/runtime-module.js ***!
|
|
|
\************************************************************/
|
|
@@ -11068,7 +11097,7 @@ var oldRuntime = hadRuntime && g.regeneratorRuntime;
|
|
|
// Force reevalutation of runtime.js.
|
|
|
g.regeneratorRuntime = undefined;
|
|
|
|
|
|
-module.exports = __webpack_require__(/*! ./runtime */ 333);
|
|
|
+module.exports = __webpack_require__(/*! ./runtime */ 343);
|
|
|
|
|
|
if (hadRuntime) {
|
|
|
// Restore the original runtime.
|
|
@@ -11085,7 +11114,7 @@ if (hadRuntime) {
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 333:
|
|
|
+/***/ 343:
|
|
|
/*!*****************************************************!*\
|
|
|
!*** ./node_modules/regenerator-runtime/runtime.js ***!
|
|
|
\*****************************************************/
|
|
@@ -11815,35 +11844,6 @@ if (hadRuntime) {
|
|
|
);
|
|
|
|
|
|
|
|
|
-/***/ }),
|
|
|
-
|
|
|
-/***/ 34:
|
|
|
-/*!*****************************************************************!*\
|
|
|
- !*** F:/小程序客户端/spark-student/uview-ui/libs/function/$parent.js ***!
|
|
|
- \*****************************************************************/
|
|
|
-/*! no static exports found */
|
|
|
-/***/ (function(module, exports, __webpack_require__) {
|
|
|
-
|
|
|
-"use strict";
|
|
|
-Object.defineProperty(exports, "__esModule", { value: true });exports.default = $parent; // 获取父组件的参数,因为支付宝小程序不支持provide/inject的写法
|
|
|
-// this.$parent在非H5中,可以准确获取到父组件,但是在H5中,需要多次this.$parent.$parent.xxx
|
|
|
-// 这里默认值等于undefined有它的含义,因为最顶层元素(组件)的$parent就是undefined,意味着不传name
|
|
|
-// 值(默认为undefined),就是查找最顶层的$parent
|
|
|
-function $parent() {var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : undefined;
|
|
|
- var parent = this.$parent;
|
|
|
- // 通过while历遍,这里主要是为了H5需要多层解析的问题
|
|
|
- while (parent) {
|
|
|
- // 父组件
|
|
|
- if (parent.$options && parent.$options.name !== name) {
|
|
|
- // 如果组件的name不相等,继续上一级寻找
|
|
|
- parent = parent.$parent;
|
|
|
- } else {
|
|
|
- return parent;
|
|
|
- }
|
|
|
- }
|
|
|
- return false;
|
|
|
-}
|
|
|
-
|
|
|
/***/ }),
|
|
|
|
|
|
/***/ 35:
|
|
@@ -11948,7 +11948,31 @@ throttle;exports.default = _default;
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 376:
|
|
|
+/***/ 38:
|
|
|
+/*!**************************************************************!*\
|
|
|
+ !*** F:/小程序客户端/spark-student/uview-ui/libs/config/config.js ***!
|
|
|
+ \**************************************************************/
|
|
|
+/*! no static exports found */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+"use strict";
|
|
|
+Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; // 此版本发布于2020-09-22
|
|
|
+var version = '1.7.3';var _default =
|
|
|
+
|
|
|
+{
|
|
|
+ v: version,
|
|
|
+ version: version,
|
|
|
+ // 主题名称
|
|
|
+ type: [
|
|
|
+ 'primary',
|
|
|
+ 'success',
|
|
|
+ 'info',
|
|
|
+ 'error',
|
|
|
+ 'warning'] };exports.default = _default;
|
|
|
+
|
|
|
+/***/ }),
|
|
|
+
|
|
|
+/***/ 386:
|
|
|
/*!*************************************************************!*\
|
|
|
!*** F:/小程序客户端/spark-student/uview-ui/libs/util/emitter.js ***!
|
|
|
\*************************************************************/
|
|
@@ -12008,30 +12032,6 @@ function _broadcast(componentName, eventName, params) {
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 38:
|
|
|
-/*!**************************************************************!*\
|
|
|
- !*** F:/小程序客户端/spark-student/uview-ui/libs/config/config.js ***!
|
|
|
- \**************************************************************/
|
|
|
-/*! no static exports found */
|
|
|
-/***/ (function(module, exports, __webpack_require__) {
|
|
|
-
|
|
|
-"use strict";
|
|
|
-Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; // 此版本发布于2020-09-22
|
|
|
-var version = '1.7.3';var _default =
|
|
|
-
|
|
|
-{
|
|
|
- v: version,
|
|
|
- version: version,
|
|
|
- // 主题名称
|
|
|
- type: [
|
|
|
- 'primary',
|
|
|
- 'success',
|
|
|
- 'info',
|
|
|
- 'error',
|
|
|
- 'warning'] };exports.default = _default;
|
|
|
-
|
|
|
-/***/ }),
|
|
|
-
|
|
|
/***/ 39:
|
|
|
/*!**************************************************************!*\
|
|
|
!*** F:/小程序客户端/spark-student/uview-ui/libs/config/zIndex.js ***!
|
|
@@ -12526,7 +12526,7 @@ function resolveLocaleChain(locale) {
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 412:
|
|
|
+/***/ 422:
|
|
|
/*!*********************************************************************!*\
|
|
|
!*** F:/小程序客户端/spark-student/uview-ui/libs/util/async-validator.js ***!
|
|
|
\*********************************************************************/
|
|
@@ -13889,11 +13889,11 @@ Schema.warning = warning;
|
|
|
Schema.messages = messages;var _default =
|
|
|
|
|
|
Schema;exports.default = _default;
|
|
|
-/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/node-libs-browser/mock/process.js */ 413)))
|
|
|
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/node-libs-browser/mock/process.js */ 423)))
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 413:
|
|
|
+/***/ 423:
|
|
|
/*!********************************************************!*\
|
|
|
!*** ./node_modules/node-libs-browser/mock/process.js ***!
|
|
|
\********************************************************/
|
|
@@ -13924,7 +13924,7 @@ exports.binding = function (name) {
|
|
|
var path;
|
|
|
exports.cwd = function () { return cwd };
|
|
|
exports.chdir = function (dir) {
|
|
|
- if (!path) path = __webpack_require__(/*! path */ 414);
|
|
|
+ if (!path) path = __webpack_require__(/*! path */ 424);
|
|
|
cwd = path.resolve(dir, cwd);
|
|
|
};
|
|
|
})();
|
|
@@ -13938,7 +13938,7 @@ exports.features = {};
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 414:
|
|
|
+/***/ 424:
|
|
|
/*!***********************************************!*\
|
|
|
!*** ./node_modules/path-browserify/index.js ***!
|
|
|
\***********************************************/
|
|
@@ -14248,11 +14248,11 @@ var substr = 'ab'.substr(-1) === 'b'
|
|
|
}
|
|
|
;
|
|
|
|
|
|
-/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../node-libs-browser/mock/process.js */ 413)))
|
|
|
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../node-libs-browser/mock/process.js */ 423)))
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 429:
|
|
|
+/***/ 439:
|
|
|
/*!**************************************************************!*\
|
|
|
!*** F:/小程序客户端/spark-student/uview-ui/libs/util/province.js ***!
|
|
|
\**************************************************************/
|
|
@@ -14264,7 +14264,7 @@ Object.defineProperty(exports, "__esModule", { value: true });exports.default =
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 430:
|
|
|
+/***/ 440:
|
|
|
/*!**********************************************************!*\
|
|
|
!*** F:/小程序客户端/spark-student/uview-ui/libs/util/city.js ***!
|
|
|
\**********************************************************/
|
|
@@ -14276,7 +14276,7 @@ Object.defineProperty(exports, "__esModule", { value: true });exports.default =
|
|
|
|
|
|
/***/ }),
|
|
|
|
|
|
-/***/ 431:
|
|
|
+/***/ 441:
|
|
|
/*!**********************************************************!*\
|
|
|
!*** F:/小程序客户端/spark-student/uview-ui/libs/util/area.js ***!
|
|
|
\**********************************************************/
|
|
@@ -14434,11 +14434,18 @@ module.exports = {
|
|
|
getCouponList: API_BASE + '/v2/student/myCenter/getCouponList',
|
|
|
// 获取分享有礼二维码
|
|
|
getShareUrl: API_BASE + '/v2/student/myCenter/share',
|
|
|
+ // 获取二维码信息
|
|
|
+ getQrcodeInfo: API_BASE + '/v2/sale/center/bindShareId',
|
|
|
// 获取我的评价列表
|
|
|
getEvaluateList: API_BASE + '/v2/student/myCenter/getClassEvaluateList',
|
|
|
// 获取我的预约体验列表
|
|
|
- getSubscribeList: API_BASE + '/v2/student/myCenter/getSubscribeClassEvaluateList',
|
|
|
-
|
|
|
+ getSubscribeList: API_BASE + '/v2/admin/subscribe/getSubscribeClassEvaluateList',
|
|
|
+ // 查询场馆下 班级列表
|
|
|
+ getClassListByVenueId: API_BASE + '/course/getClassListByVenueId',
|
|
|
+ // 查询教练列表
|
|
|
+ getCoachList: API_BASE + '/common/coach/getCoachList',
|
|
|
+ // 保存预约信息
|
|
|
+ updateAppointment: API_BASE + '/v2/admin/subscribe/updateAppointment',
|
|
|
|
|
|
// 获取可购买会员卡列表
|
|
|
getMemberCardList: API_BASE + '/v2/student/myCenter/getCardTypeList',
|
|
@@ -14450,6 +14457,12 @@ module.exports = {
|
|
|
getParentInfo: API_BASE + '/v2/student/contract/getUserInfo',
|
|
|
// 获取可用优惠券列表
|
|
|
getUsableCouponList: API_BASE + '/v2/student/myCenter/getOwnCouponList',
|
|
|
+ // 获取当前用户绑定的学员
|
|
|
+ getUserStudent: API_BASE + '/v2/admin/student/getUserStudent',
|
|
|
+ // 根据学员获取二维码
|
|
|
+ studentQRcode: API_BASE + '/v2/sale/center/studentQRcode',
|
|
|
+ // 根据学员获取剩余课时
|
|
|
+ getGiveLessons: API_BASE + '/v2/admin/leave/getGiveLessons',
|
|
|
// 获取可购买会员卡学员列表
|
|
|
getAllStudentList: API_BASE + '/v2/student/myCenter/selectAllStudent',
|
|
|
// 获取合同模板
|