You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21760 lines
905 KiB

3 years ago
(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["common/vendor"],{
/***/ 1:
3 years ago
/*!************************************************************!*\
!*** ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js ***!
\************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
3 years ago
/* WEBPACK VAR INJECTION */(function(global) {Object.defineProperty(exports, "__esModule", { value: true });exports.createApp = createApp;exports.createComponent = createComponent;exports.createPage = createPage;exports.createPlugin = createPlugin;exports.createSubpackageApp = createSubpackageApp;exports.default = void 0;var _uniI18n = __webpack_require__(/*! @dcloudio/uni-i18n */ 3);
var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 4));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function ownKeys(object, enumerableOnly) {var keys = Object.keys(object);if (Object.getOwnPropertySymbols) {var symbols = Object.getOwnPropertySymbols(object);if (enumerableOnly) symbols = symbols.filter(function (sym) {return Object.getOwnPropertyDescriptor(object, sym).enumerable;});keys.push.apply(keys, symbols);}return keys;}function _objectSpread(target) {for (var i = 1; i < arguments.length; i++) {var source = arguments[i] != null ? arguments[i] : {};if (i % 2) {ownKeys(Object(source), true).forEach(function (key) {_defineProperty(target, key, source[key]);});} else if (Object.getOwnPropertyDescriptors) {Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));} else {ownKeys(Object(source)).forEach(function (key) {Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));});}}return target;}function _slicedToArray(arr, i) {return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();}function _nonIterableRest() {throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}function _iterableToArrayLimit(arr, i) {if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;var _arr = [];var _n = true;var _d = false;var _e = undefined;try {for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {_arr.push(_s.value);if (i && _arr.length === i) break;}} catch (err) {_d = true;_e = err;} finally {try {if (!_n && _i["return"] != null) _i["return"]();} finally {if (_d) throw _e;}}return _arr;}function _arrayWithHoles(arr) {if (Array.isArray(arr)) return arr;}function _defineProperty(obj, key, value) {if (key in obj) {Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });} else {obj[key] = value;}return obj;}function _toConsumableArray(arr) {return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();}function _nonIterableSpread() {throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}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 _iterableToArray(iter) {if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);}function _arrayWithoutHoles(arr) {if (Array.isArray(arr)) return _arrayLikeToArray(arr);}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;}
3 years ago
var realAtob;
var b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
var b64re = /^(?:[A-Za-z\d+/]{4})*?(?:[A-Za-z\d+/]{2}(?:==)?|[A-Za-z\d+/]{3}=?)?$/;
if (typeof atob !== 'function') {
realAtob = function realAtob(str) {
str = String(str).replace(/[\t\n\f\r ]+/g, '');
if (!b64re.test(str)) {throw new Error("Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.");}
// Adding the padding if missing, for semplicity
str += '=='.slice(2 - (str.length & 3));
var bitmap;var result = '';var r1;var r2;var i = 0;
for (; i < str.length;) {
bitmap = b64.indexOf(str.charAt(i++)) << 18 | b64.indexOf(str.charAt(i++)) << 12 |
(r1 = b64.indexOf(str.charAt(i++))) << 6 | (r2 = b64.indexOf(str.charAt(i++)));
result += r1 === 64 ? String.fromCharCode(bitmap >> 16 & 255) :
r2 === 64 ? String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255) :
String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255, bitmap & 255);
}
return result;
};
} else {
// 注意atob只能在全局对象上调用,例如:`const Base64 = {atob};Base64.atob('xxxx')`是错误的用法
realAtob = atob;
}
function b64DecodeUnicode(str) {
return decodeURIComponent(realAtob(str).split('').map(function (c) {
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
}).join(''));
}
function getCurrentUserInfo() {
var token = wx.getStorageSync('uni_id_token') || '';
var tokenArr = token.split('.');
if (!token || tokenArr.length !== 3) {
return {
uid: null,
role: [],
permission: [],
tokenExpired: 0 };
}
var userInfo;
try {
userInfo = JSON.parse(b64DecodeUnicode(tokenArr[1]));
} catch (error) {
throw new Error('获取当前用户信息出错,详细错误信息为:' + error.message);
}
userInfo.tokenExpired = userInfo.exp * 1000;
delete userInfo.exp;
delete userInfo.iat;
return userInfo;
}
function uniIdMixin(Vue) {
Vue.prototype.uniIDHasRole = function (roleId) {var _getCurrentUserInfo =
getCurrentUserInfo(),role = _getCurrentUserInfo.role;
return role.indexOf(roleId) > -1;
};
Vue.prototype.uniIDHasPermission = function (permissionId) {var _getCurrentUserInfo2 =
getCurrentUserInfo(),permission = _getCurrentUserInfo2.permission;
return this.uniIDHasRole('admin') || permission.indexOf(permissionId) > -1;
};
Vue.prototype.uniIDTokenValid = function () {var _getCurrentUserInfo3 =
getCurrentUserInfo(),tokenExpired = _getCurrentUserInfo3.tokenExpired;
return tokenExpired > Date.now();
};
}
var _toString = Object.prototype.toString;
var hasOwnProperty = Object.prototype.hasOwnProperty;
function isFn(fn) {
return typeof fn === 'function';
}
function isStr(str) {
return typeof str === 'string';
}
function isPlainObject(obj) {
return _toString.call(obj) === '[object Object]';
}
function hasOwn(obj, key) {
return hasOwnProperty.call(obj, key);
}
function noop() {}
/**
* Create a cached version of a pure function.
*/
function cached(fn) {
var cache = Object.create(null);
return function cachedFn(str) {
var hit = cache[str];
return hit || (cache[str] = fn(str));
};
}
/**
* Camelize a hyphen-delimited string.
*/
var camelizeRE = /-(\w)/g;
var camelize = cached(function (str) {
return str.replace(camelizeRE, function (_, c) {return c ? c.toUpperCase() : '';});
});
3 years ago
function sortObject(obj) {
var sortObj = {};
if (isPlainObject(obj)) {
Object.keys(obj).sort().forEach(function (key) {
sortObj[key] = obj[key];
});
}
return !Object.keys(sortObj) ? obj : sortObj;
}
3 years ago
var HOOKS = [
'invoke',
'success',
'fail',
'complete',
'returnValue'];
var globalInterceptors = {};
var scopedInterceptors = {};
function mergeHook(parentVal, childVal) {
var res = childVal ?
parentVal ?
parentVal.concat(childVal) :
Array.isArray(childVal) ?
childVal : [childVal] :
parentVal;
return res ?
dedupeHooks(res) :
res;
}
function dedupeHooks(hooks) {
var res = [];
for (var i = 0; i < hooks.length; i++) {
if (res.indexOf(hooks[i]) === -1) {
res.push(hooks[i]);
}
}
return res;
}
function removeHook(hooks, hook) {
var index = hooks.indexOf(hook);
if (index !== -1) {
hooks.splice(index, 1);
}
}
function mergeInterceptorHook(interceptor, option) {
Object.keys(option).forEach(function (hook) {
if (HOOKS.indexOf(hook) !== -1 && isFn(option[hook])) {
interceptor[hook] = mergeHook(interceptor[hook], option[hook]);
}
});
}
function removeInterceptorHook(interceptor, option) {
if (!interceptor || !option) {
return;
}
Object.keys(option).forEach(function (hook) {
if (HOOKS.indexOf(hook) !== -1 && isFn(option[hook])) {
removeHook(interceptor[hook], option[hook]);
}
});
}
function addInterceptor(method, option) {
if (typeof method === 'string' && isPlainObject(option)) {
mergeInterceptorHook(scopedInterceptors[method] || (scopedInterceptors[method] = {}), option);
} else if (isPlainObject(method)) {
mergeInterceptorHook(globalInterceptors, method);
}
}
function removeInterceptor(method, option) {
if (typeof method === 'string') {
if (isPlainObject(option)) {
removeInterceptorHook(scopedInterceptors[method], option);
} else {
delete scopedInterceptors[method];
}
} else if (isPlainObject(method)) {
removeInterceptorHook(globalInterceptors, method);
}
}
function wrapperHook(hook) {
return function (data) {
return hook(data) || data;
};
}
function isPromise(obj) {
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}
function queue(hooks, data) {
var promise = false;
for (var i = 0; i < hooks.length; i++) {
var hook = hooks[i];
if (promise) {
promise = Promise.resolve(wrapperHook(hook));
} else {
var res = hook(data);
if (isPromise(res)) {
promise = Promise.resolve(res);
}
if (res === false) {
return {
then: function then() {} };
}
}
}
return promise || {
then: function then(callback) {
return callback(data);
} };
}
function wrapperOptions(interceptor) {var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
['success', 'fail', 'complete'].forEach(function (name) {
if (Array.isArray(interceptor[name])) {
var oldCallback = options[name];
options[name] = function callbackInterceptor(res) {
queue(interceptor[name], res).then(function (res) {
/* eslint-disable no-mixed-operators */
return isFn(oldCallback) && oldCallback(res) || res;
});
};
}
});
return options;
}
function wrapperReturnValue(method, returnValue) {
var returnValueHooks = [];
if (Array.isArray(globalInterceptors.returnValue)) {
returnValueHooks.push.apply(returnValueHooks, _toConsumableArray(globalInterceptors.returnValue));
}
var interceptor = scopedInterceptors[method];
if (interceptor && Array.isArray(interceptor.returnValue)) {
returnValueHooks.push.apply(returnValueHooks, _toConsumableArray(interceptor.returnValue));
}
returnValueHooks.forEach(function (hook) {
returnValue = hook(returnValue) || returnValue;
});
return returnValue;
}
function getApiInterceptorHooks(method) {
var interceptor = Object.create(null);
Object.keys(globalInterceptors).forEach(function (hook) {
if (hook !== 'returnValue') {
interceptor[hook] = globalInterceptors[hook].slice();
}
});
var scopedInterceptor = scopedInterceptors[method];
if (scopedInterceptor) {
Object.keys(scopedInterceptor).forEach(function (hook) {
if (hook !== 'returnValue') {
interceptor[hook] = (interceptor[hook] || []).concat(scopedInterceptor[hook]);
}
});
}
return interceptor;
}
function invokeApi(method, api, options) {for (var _len = arguments.length, params = new Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {params[_key - 3] = arguments[_key];}
var interceptor = getApiInterceptorHooks(method);
if (interceptor && Object.keys(interceptor).length) {
if (Array.isArray(interceptor.invoke)) {
var res = queue(interceptor.invoke, options);
return res.then(function (options) {
return api.apply(void 0, [wrapperOptions(interceptor, options)].concat(params));
});
} else {
return api.apply(void 0, [wrapperOptions(interceptor, options)].concat(params));
}
}
return api.apply(void 0, [options].concat(params));
}
var promiseInterceptor = {
returnValue: function returnValue(res) {
if (!isPromise(res)) {
return res;
}
return new Promise(function (resolve, reject) {
res.then(function (res) {
if (res[0]) {
reject(res[0]);
} else {
resolve(res[1]);
}
});
});
} };
var SYNC_API_RE =
3 years ago
/^\$|Window$|WindowStyle$|sendHostEvent|sendNativeEvent|restoreGlobal|requireGlobal|getCurrentSubNVue|getMenuButtonBoundingClientRect|^report|interceptors|Interceptor$|getSubNVueById|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64|getLocale|setLocale|invokePushCallback|getWindowInfo|getDeviceInfo|getAppBaseInfo|getSystemSetting|getAppAuthorizeSetting/;
3 years ago
var CONTEXT_API_RE = /^create|Manager$/;
// Context例外情况
var CONTEXT_API_RE_EXC = ['createBLEConnection'];
// 同步例外情况
3 years ago
var ASYNC_API = ['createBLEConnection', 'createPushMessage'];
3 years ago
var CALLBACK_API_RE = /^on|^off/;
function isContextApi(name) {
return CONTEXT_API_RE.test(name) && CONTEXT_API_RE_EXC.indexOf(name) === -1;
}
function isSyncApi(name) {
return SYNC_API_RE.test(name) && ASYNC_API.indexOf(name) === -1;
}
function isCallbackApi(name) {
return CALLBACK_API_RE.test(name) && name !== 'onPush';
}
function handlePromise(promise) {
return promise.then(function (data) {
return [null, data];
}).
catch(function (err) {return [err];});
}
function shouldPromise(name) {
if (
isContextApi(name) ||
isSyncApi(name) ||
isCallbackApi(name))
{
return false;
}
return true;
}
/* eslint-disable no-extend-native */
if (!Promise.prototype.finally) {
Promise.prototype.finally = function (callback) {
var promise = this.constructor;
return this.then(
function (value) {return promise.resolve(callback()).then(function () {return value;});},
function (reason) {return promise.resolve(callback()).then(function () {
throw reason;
});});
};
}
function promisify(name, api) {
if (!shouldPromise(name)) {
return api;
}
return function promiseApi() {var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};for (var _len2 = arguments.length, params = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {params[_key2 - 1] = arguments[_key2];}
if (isFn(options.success) || isFn(options.fail) || isFn(options.complete)) {
return wrapperReturnValue(name, invokeApi.apply(void 0, [name, api, options].concat(params)));
}
return wrapperReturnValue(name, handlePromise(new Promise(function (resolve, reject) {
invokeApi.apply(void 0, [name, api, Object.assign({}, options, {
success: resolve,
fail: reject })].concat(
params));
})));
};
}
var EPS = 1e-4;
var BASE_DEVICE_WIDTH = 750;
var isIOS = false;
var deviceWidth = 0;
var deviceDPR = 0;
function checkDeviceWidth() {var _wx$getSystemInfoSync =
wx.getSystemInfoSync(),platform = _wx$getSystemInfoSync.platform,pixelRatio = _wx$getSystemInfoSync.pixelRatio,windowWidth = _wx$getSystemInfoSync.windowWidth; // uni=>wx runtime 编译目标是 uni 对象,内部不允许直接使用 uni
deviceWidth = windowWidth;
deviceDPR = pixelRatio;
isIOS = platform === 'ios';
}
function upx2px(number, newDeviceWidth) {
if (deviceWidth === 0) {
checkDeviceWidth();
}
number = Number(number);
if (number === 0) {
return 0;
}
var result = number / BASE_DEVICE_WIDTH * (newDeviceWidth || deviceWidth);
if (result < 0) {
result = -result;
}
result = Math.floor(result + EPS);
if (result === 0) {
if (deviceDPR === 1 || !isIOS) {
result = 1;
} else {
result = 0.5;
}
}
return number < 0 ? -result : result;
}
3 years ago
var LOCALE_ZH_HANS = 'zh-Hans';
var LOCALE_ZH_HANT = 'zh-Hant';
var LOCALE_EN = 'en';
var LOCALE_FR = 'fr';
var LOCALE_ES = 'es';
var messages = {};
var locale;
{
locale = normalizeLocale(wx.getSystemInfoSync().language) || LOCALE_EN;
}
function initI18nMessages() {
if (!isEnableLocale()) {
return;
}
var localeKeys = Object.keys(__uniConfig.locales);
if (localeKeys.length) {
localeKeys.forEach(function (locale) {
var curMessages = messages[locale];
var userMessages = __uniConfig.locales[locale];
if (curMessages) {
Object.assign(curMessages, userMessages);
} else {
messages[locale] = userMessages;
}
});
}
}
initI18nMessages();
var i18n = (0, _uniI18n.initVueI18n)(
locale,
{});
var t = i18n.t;
var i18nMixin = i18n.mixin = {
beforeCreate: function beforeCreate() {var _this = this;
var unwatch = i18n.i18n.watchLocale(function () {
_this.$forceUpdate();
});
this.$once('hook:beforeDestroy', function () {
unwatch();
});
},
methods: {
$$t: function $$t(key, values) {
return t(key, values);
} } };
var setLocale = i18n.setLocale;
var getLocale = i18n.getLocale;
function initAppLocale(Vue, appVm, locale) {
var state = Vue.observable({
locale: locale || i18n.getLocale() });
var localeWatchers = [];
appVm.$watchLocale = function (fn) {
localeWatchers.push(fn);
};
Object.defineProperty(appVm, '$locale', {
get: function get() {
return state.locale;
},
set: function set(v) {
state.locale = v;
localeWatchers.forEach(function (watch) {return watch(v);});
} });
}
function isEnableLocale() {
return typeof __uniConfig !== 'undefined' && __uniConfig.locales && !!Object.keys(__uniConfig.locales).length;
}
function include(str, parts) {
return !!parts.find(function (part) {return str.indexOf(part) !== -1;});
}
function startsWith(str, parts) {
return parts.find(function (part) {return str.indexOf(part) === 0;});
}
function normalizeLocale(locale, messages) {
if (!locale) {
return;
}
locale = locale.trim().replace(/_/g, '-');
if (messages && messages[locale]) {
return locale;
}
locale = locale.toLowerCase();
if (locale === 'chinese') {
// 支付宝
return LOCALE_ZH_HANS;
}
if (locale.indexOf('zh') === 0) {
if (locale.indexOf('-hans') > -1) {
return LOCALE_ZH_HANS;
}
if (locale.indexOf('-hant') > -1) {
return LOCALE_ZH_HANT;
}
if (include(locale, ['-tw', '-hk', '-mo', '-cht'])) {
return LOCALE_ZH_HANT;
}
return LOCALE_ZH_HANS;
}
var lang = startsWith(locale, [LOCALE_EN, LOCALE_FR, LOCALE_ES]);
if (lang) {
return lang;
}
}
// export function initI18n() {
// const localeKeys = Object.keys(__uniConfig.locales || {})
// if (localeKeys.length) {
// localeKeys.forEach((locale) =>
// i18n.add(locale, __uniConfig.locales[locale])
// )
// }
// }
function getLocale$1() {
3 years ago
// 优先使用 $locale
var app = getApp({
allowDefault: true });
if (app && app.$vm) {
return app.$vm.$locale;
}
3 years ago
return normalizeLocale(wx.getSystemInfoSync().language) || LOCALE_EN;
3 years ago
}
3 years ago
function setLocale$1(locale) {
3 years ago
var app = getApp();
if (!app) {
return false;
}
var oldLocale = app.$vm.$locale;
if (oldLocale !== locale) {
app.$vm.$locale = locale;
onLocaleChangeCallbacks.forEach(function (fn) {return fn({
locale: locale });});
return true;
}
return false;
}
var onLocaleChangeCallbacks = [];
function onLocaleChange(fn) {
if (onLocaleChangeCallbacks.indexOf(fn) === -1) {
onLocaleChangeCallbacks.push(fn);
}
}
if (typeof global !== 'undefined') {
3 years ago
global.getLocale = getLocale$1;
3 years ago
}
var interceptors = {
promiseInterceptor: promiseInterceptor };
var baseApi = /*#__PURE__*/Object.freeze({
__proto__: null,
upx2px: upx2px,
3 years ago
getLocale: getLocale$1,
setLocale: setLocale$1,
3 years ago
onLocaleChange: onLocaleChange,
addInterceptor: addInterceptor,
removeInterceptor: removeInterceptor,
interceptors: interceptors });
function findExistsPageIndex(url) {
var pages = getCurrentPages();
var len = pages.length;
while (len--) {
var page = pages[len];
if (page.$page && page.$page.fullPath === url) {
return len;
}
}
return -1;
}
var redirectTo = {
name: function name(fromArgs) {
if (fromArgs.exists === 'back' && fromArgs.delta) {
return 'navigateBack';
}
return 'redirectTo';
},
args: function args(fromArgs) {
if (fromArgs.exists === 'back' && fromArgs.url) {
var existsPageIndex = findExistsPageIndex(fromArgs.url);
if (existsPageIndex !== -1) {
var delta = getCurrentPages().length - 1 - existsPageIndex;
if (delta > 0) {
fromArgs.delta = delta;
}
}
}
} };
var previewImage = {
args: function args(fromArgs) {
var currentIndex = parseInt(fromArgs.current);
if (isNaN(currentIndex)) {
return;
}
var urls = fromArgs.urls;
if (!Array.isArray(urls)) {
return;
}
var len = urls.length;
if (!len) {
return;
}
if (currentIndex < 0) {
currentIndex = 0;
} else if (currentIndex >= len) {
currentIndex = len - 1;
}
if (currentIndex > 0) {
fromArgs.current = urls[currentIndex];
fromArgs.urls = urls.filter(
function (item, index) {return index < currentIndex ? item !== urls[currentIndex] : true;});
} else {
fromArgs.current = urls[0];
}
return {
indicator: false,
loop: false };
} };
var UUID_KEY = '__DC_STAT_UUID';
var deviceId;
3 years ago
function useDeviceId(result) {
3 years ago
deviceId = deviceId || wx.getStorageSync(UUID_KEY);
if (!deviceId) {
deviceId = Date.now() + '' + Math.floor(Math.random() * 1e7);
wx.setStorage({
key: UUID_KEY,
data: deviceId });
}
result.deviceId = deviceId;
}
function addSafeAreaInsets(result) {
if (result.safeArea) {
var safeArea = result.safeArea;
result.safeAreaInsets = {
top: safeArea.top,
left: safeArea.left,
right: result.windowWidth - safeArea.right,
3 years ago
bottom: result.screenHeight - safeArea.bottom };
}
}
function populateParameters(result) {var _result$brand =
3 years ago
3 years ago
result.brand,brand = _result$brand === void 0 ? '' : _result$brand,_result$model = result.model,model = _result$model === void 0 ? '' : _result$model,_result$system = result.system,system = _result$system === void 0 ? '' : _result$system,_result$language = result.language,language = _result$language === void 0 ? '' : _result$language,theme = result.theme,version = result.version,platform = result.platform,fontSizeSetting = result.fontSizeSetting,SDKVersion = result.SDKVersion,pixelRatio = result.pixelRatio,deviceOrientation = result.deviceOrientation;
// const isQuickApp = "mp-weixin".indexOf('quickapp-webview') !== -1
// osName osVersion
var osName = '';
var osVersion = '';
{
osName = system.split(' ')[0] || '';
osVersion = system.split(' ')[1] || '';
}
var hostVersion = version;
// deviceType
var deviceType = getGetDeviceType(result, model);
// deviceModel
var deviceBrand = getDeviceBrand(brand);
// hostName
var _hostName = getHostName(result);
// deviceOrientation
var _deviceOrientation = deviceOrientation; // 仅 微信 百度 支持
// devicePixelRatio
var _devicePixelRatio = pixelRatio;
// SDKVersion
var _SDKVersion = SDKVersion;
// hostLanguage
var hostLanguage = language.replace(/_/g, '-');
// wx.getAccountInfoSync
var parameters = {
appId: "__UNI__915967A",
appName: "Jinan_app",
appVersion: "1.0.0",
appVersionCode: "100",
appLanguage: getAppLanguage(hostLanguage),
uniCompileVersion: "3.5.3",
uniRuntimeVersion: "3.5.3",
uniPlatform: undefined || "mp-weixin",
deviceBrand: deviceBrand,
deviceModel: model,
deviceType: deviceType,
devicePixelRatio: _devicePixelRatio,
deviceOrientation: _deviceOrientation,
osName: osName.toLocaleLowerCase(),
osVersion: osVersion,
hostTheme: theme,
hostVersion: hostVersion,
hostLanguage: hostLanguage,
hostName: _hostName,
hostSDKVersion: _SDKVersion,
hostFontSizeSetting: fontSizeSetting,
windowTop: 0,
windowBottom: 0,
// TODO
osLanguage: undefined,
osTheme: undefined,
ua: undefined,
hostPackageName: undefined,
browserName: undefined,
browserVersion: undefined };
Object.assign(result, parameters);
}
function getGetDeviceType(result, model) {
var deviceType = result.deviceType || 'phone';
{
var deviceTypeMaps = {
ipad: 'pad',
windows: 'pc',
mac: 'pc' };
var deviceTypeMapsKeys = Object.keys(deviceTypeMaps);
var _model = model.toLocaleLowerCase();
for (var index = 0; index < deviceTypeMapsKeys.length; index++) {
var _m = deviceTypeMapsKeys[index];
if (_model.indexOf(_m) !== -1) {
deviceType = deviceTypeMaps[_m];
break;
}
}
}
return deviceType;
}
function getDeviceBrand(brand) {
var deviceBrand = brand;
if (deviceBrand) {
deviceBrand = brand.toLocaleLowerCase();
}
return deviceBrand;
}
function getAppLanguage(defaultLanguage) {
return getLocale$1 ?
getLocale$1() :
defaultLanguage;
}
function getHostName(result) {
var _platform = 'WeChat';
var _hostName = result.hostName || _platform; // mp-jd
{
if (result.environment) {
_hostName = result.environment;
} else if (result.host && result.host.env) {
_hostName = result.host.env;
}
3 years ago
}
3 years ago
return _hostName;
3 years ago
}
var getSystemInfo = {
returnValue: function returnValue(result) {
3 years ago
useDeviceId(result);
3 years ago
addSafeAreaInsets(result);
3 years ago
populateParameters(result);
3 years ago
} };
var showActionSheet = {
args: function args(fromArgs) {
if (typeof fromArgs === 'object') {
fromArgs.alertText = fromArgs.title;
}
} };
3 years ago
var getAppBaseInfo = {
returnValue: function returnValue(result) {var _result =
result,version = _result.version,language = _result.language,SDKVersion = _result.SDKVersion,theme = _result.theme;
var _hostName = getHostName(result);
var hostLanguage = language.replace('_', '-');
result = sortObject(Object.assign(result, {
appId: "__UNI__915967A",
appName: "Jinan_app",
appVersion: "1.0.0",
appVersionCode: "100",
appLanguage: getAppLanguage(hostLanguage),
hostVersion: version,
hostLanguage: hostLanguage,
hostName: _hostName,
hostSDKVersion: SDKVersion,
hostTheme: theme }));
} };
var getDeviceInfo = {
returnValue: function returnValue(result) {var _result2 =
result,brand = _result2.brand,model = _result2.model;
var deviceType = getGetDeviceType(result, model);
var deviceBrand = getDeviceBrand(brand);
useDeviceId(result);
result = sortObject(Object.assign(result, {
deviceType: deviceType,
deviceBrand: deviceBrand,
deviceModel: model }));
} };
var getWindowInfo = {
returnValue: function returnValue(result) {
addSafeAreaInsets(result);
result = sortObject(Object.assign(result, {
windowTop: 0,
windowBottom: 0 }));
} };
var getAppAuthorizeSetting = {
returnValue: function returnValue(result) {var
locationReducedAccuracy = result.locationReducedAccuracy;
result.locationAccuracy = 'unsupported';
if (locationReducedAccuracy === true) {
result.locationAccuracy = 'reduced';
} else if (locationReducedAccuracy === false) {
result.locationAccuracy = 'full';
}
} };
3 years ago
// import navigateTo from 'uni-helpers/navigate-to'
var protocols = {
redirectTo: redirectTo,
// navigateTo, // 由于在微信开发者工具的页面参数,会显示__id__参数,因此暂时关闭mp-weixin对于navigateTo的AOP
previewImage: previewImage,
getSystemInfo: getSystemInfo,
getSystemInfoSync: getSystemInfo,
3 years ago
showActionSheet: showActionSheet,
getAppBaseInfo: getAppBaseInfo,
getDeviceInfo: getDeviceInfo,
getWindowInfo: getWindowInfo,
getAppAuthorizeSetting: getAppAuthorizeSetting };
3 years ago
var todos = [
'vibrate',
'preloadPage',
'unPreloadPage',
'loadSubPackage'];
var canIUses = [];
var CALLBACKS = ['success', 'fail', 'cancel', 'complete'];
function processCallback(methodName, method, returnValue) {
return function (res) {
return method(processReturnValue(methodName, res, returnValue));
};
}
function processArgs(methodName, fromArgs) {var argsOption = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};var returnValue = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};var keepFromArgs = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
if (isPlainObject(fromArgs)) {// 一般 api 的参数解析
var toArgs = keepFromArgs === true ? fromArgs : {}; // returnValue 为 false 时,说明是格式化返回值,直接在返回值对象上修改赋值
if (isFn(argsOption)) {
argsOption = argsOption(fromArgs, toArgs) || {};
}
for (var key in fromArgs) {
if (hasOwn(argsOption, key)) {
var keyOption = argsOption[key];
if (isFn(keyOption)) {
keyOption = keyOption(fromArgs[key], fromArgs, toArgs);
}
if (!keyOption) {// 不支持的参数
console.warn("The '".concat(methodName, "' method of platform '\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F' does not support option '").concat(key, "'"));
} else if (isStr(keyOption)) {// 重写参数 key
toArgs[keyOption] = fromArgs[key];
} else if (isPlainObject(keyOption)) {// {name:newName,value:value}可重新指定参数 key:value
toArgs[keyOption.name ? keyOption.name : key] = keyOption.value;
}
} else if (CALLBACKS.indexOf(key) !== -1) {
if (isFn(fromArgs[key])) {
toArgs[key] = processCallback(methodName, fromArgs[key], returnValue);
}
} else {
if (!keepFromArgs) {
toArgs[key] = fromArgs[key];
}
}
}
return toArgs;
} else if (isFn(fromArgs)) {
fromArgs = processCallback(methodName, fromArgs, returnValue);
}
return fromArgs;
}
function processReturnValue(methodName, res, returnValue) {var keepReturnValue = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
if (isFn(protocols.returnValue)) {// 处理通用 returnValue
res = protocols.returnValue(methodName, res);
}
return processArgs(methodName, res, returnValue, {}, keepReturnValue);
}
function wrapper(methodName, method) {
if (hasOwn(protocols, methodName)) {
var protocol = protocols[methodName];
if (!protocol) {// 暂不支持的 api
return function () {
console.error("Platform '\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F' does not support '".concat(methodName, "'."));
};
}
return function (arg1, arg2) {// 目前 api 最多两个参数
var options = protocol;
if (isFn(protocol)) {
options = protocol(arg1);
}
arg1 = processArgs(methodName, arg1, options.args, options.returnValue);
var args = [arg1];
if (typeof arg2 !== 'undefined') {
args.push(arg2);
}
if (isFn(options.name)) {
methodName = options.name(arg1);
} else if (isStr(options.name)) {
methodName = options.name;
}
var returnValue = wx[methodName].apply(wx, args);
if (isSyncApi(methodName)) {// 同步 api
return processReturnValue(methodName, returnValue, options.returnValue, isContextApi(methodName));
}
return returnValue;
};
}
return method;
}
var todoApis = Object.create(null);
var TODOS = [
'onTabBarMidButtonTap',
'subscribePush',
'unsubscribePush',
'onPush',
'offPush',
'share'];
function createTodoApi(name) {
return function todoApi(_ref)
{var fail = _ref.fail,complete = _ref.complete;
var res = {
errMsg: "".concat(name, ":fail method '").concat(name, "' not supported") };
isFn(fail) && fail(res);
isFn(complete) && complete(res);
};
}
TODOS.forEach(function (name) {
todoApis[name] = createTodoApi(name);
});
var providers = {
oauth: ['weixin'],
share: ['weixin'],
payment: ['wxpay'],
push: ['weixin'] };
function getProvider(_ref2)
{var service = _ref2.service,success = _ref2.success,fail = _ref2.fail,complete = _ref2.complete;
var res = false;
if (providers[service]) {
res = {
errMsg: 'getProvider:ok',
service: service,
provider: providers[service] };
isFn(success) && success(res);
} else {
res = {
errMsg: 'getProvider:fail service not found' };
isFn(fail) && fail(res);
}
isFn(complete) && complete(res);
}
var extraApi = /*#__PURE__*/Object.freeze({
__proto__: null,
getProvider: getProvider });
var getEmitter = function () {
var Emitter;
return function getUniEmitter() {
if (!Emitter) {
Emitter = new _vue.default();
}
return Emitter;
};
}();
function apply(ctx, method, args) {
return ctx[method].apply(ctx, args);
}
function $on() {
return apply(getEmitter(), '$on', Array.prototype.slice.call(arguments));
}
function $off() {
return apply(getEmitter(), '$off', Array.prototype.slice.call(arguments));
}
function $once() {
return apply(getEmitter(), '$once', Array.prototype.slice.call(arguments));
}
function $emit() {
return apply(getEmitter(), '$emit', Array.prototype.slice.call(arguments));
}
var eventApi = /*#__PURE__*/Object.freeze({
__proto__: null,
$on: $on,
$off: $off,
$once: $once,
$emit: $emit });
3 years ago
/**
* 框架内 try-catch
*/
/**
* 开发者 try-catch
*/
function tryCatch(fn) {
return function () {
try {
return fn.apply(fn, arguments);
} catch (e) {
// TODO
console.error(e);
}
};
}
function getApiCallbacks(params) {
var apiCallbacks = {};
for (var name in params) {
var param = params[name];
if (isFn(param)) {
apiCallbacks[name] = tryCatch(param);
delete params[name];
}
}
return apiCallbacks;
}
var cid;
var cidErrMsg;
var enabled;
function normalizePushMessage(message) {
try {
return JSON.parse(message);
} catch (e) {}
return message;
}
function invokePushCallback(
args)
{
if (args.type === 'enabled') {
enabled = true;
} else if (args.type === 'clientId') {
cid = args.cid;
cidErrMsg = args.errMsg;
invokeGetPushCidCallbacks(cid, args.errMsg);
} else if (args.type === 'pushMsg') {
var message = {
type: 'receive',
data: normalizePushMessage(args.message) };
for (var i = 0; i < onPushMessageCallbacks.length; i++) {
var callback = onPushMessageCallbacks[i];
callback(message);
// 该消息已被阻止
if (message.stopped) {
break;
}
}
} else if (args.type === 'click') {
onPushMessageCallbacks.forEach(function (callback) {
callback({
type: 'click',
data: normalizePushMessage(args.message) });
});
}
}
var getPushCidCallbacks = [];
function invokeGetPushCidCallbacks(cid, errMsg) {
getPushCidCallbacks.forEach(function (callback) {
callback(cid, errMsg);
});
getPushCidCallbacks.length = 0;
}
function getPushClientId(args) {
if (!isPlainObject(args)) {
args = {};
}var _getApiCallbacks =
getApiCallbacks(args),success = _getApiCallbacks.success,fail = _getApiCallbacks.fail,complete = _getApiCallbacks.complete;
var hasSuccess = isFn(success);
var hasFail = isFn(fail);
var hasComplete = isFn(complete);
Promise.resolve().then(function () {
if (typeof enabled === 'undefined') {
enabled = false;
cid = '';
cidErrMsg = 'unipush is not enabled';
}
getPushCidCallbacks.push(function (cid, errMsg) {
var res;
if (cid) {
res = {
errMsg: 'getPushClientId:ok',
cid: cid };
hasSuccess && success(res);
} else {
res = {
errMsg: 'getPushClientId:fail' + (errMsg ? ' ' + errMsg : '') };
hasFail && fail(res);
}
hasComplete && complete(res);
});
if (typeof cid !== 'undefined') {
invokeGetPushCidCallbacks(cid, cidErrMsg);
}
});
}
var onPushMessageCallbacks = [];
// 不使用 defineOnApi 实现,是因为 defineOnApi 依赖 UniServiceJSBridge ,该对象目前在小程序上未提供,故简单实现
var onPushMessage = function onPushMessage(fn) {
if (onPushMessageCallbacks.indexOf(fn) === -1) {
onPushMessageCallbacks.push(fn);
}
};
var offPushMessage = function offPushMessage(fn) {
if (!fn) {
onPushMessageCallbacks.length = 0;
} else {
var index = onPushMessageCallbacks.indexOf(fn);
if (index > -1) {
onPushMessageCallbacks.splice(index, 1);
}
}
};
3 years ago
var api = /*#__PURE__*/Object.freeze({
3 years ago
__proto__: null,
getPushClientId: getPushClientId,
onPushMessage: onPushMessage,
offPushMessage: offPushMessage,
invokePushCallback: invokePushCallback });
3 years ago
var MPPage = Page;
var MPComponent = Component;
var customizeRE = /:/g;
var customize = cached(function (str) {
return camelize(str.replace(customizeRE, '-'));
});
function initTriggerEvent(mpInstance) {
var oldTriggerEvent = mpInstance.triggerEvent;
var newTriggerEvent = function newTriggerEvent(event) {for (var _len3 = arguments.length, args = new Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) {args[_key3 - 1] = arguments[_key3];}
return oldTriggerEvent.apply(mpInstance, [customize(event)].concat(args));
};
try {
// 京东小程序 triggerEvent 为只读
mpInstance.triggerEvent = newTriggerEvent;
} catch (error) {
mpInstance._triggerEvent = newTriggerEvent;
}
}
function initHook(name, options, isComponent) {
var oldHook = options[name];
if (!oldHook) {
options[name] = function () {
initTriggerEvent(this);
};
} else {
options[name] = function () {
initTriggerEvent(this);for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {args[_key4] = arguments[_key4];}
return oldHook.apply(this, args);
};
}
}
if (!MPPage.__$wrappered) {
MPPage.__$wrappered = true;
Page = function Page() {var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
initHook('onLoad', options);
return MPPage(options);
};
Page.after = MPPage.after;
Component = function Component() {var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
initHook('created', options);
return MPComponent(options);
};
}
var PAGE_EVENT_HOOKS = [
'onPullDownRefresh',
'onReachBottom',
'onAddToFavorites',
'onShareTimeline',
'onShareAppMessage',
'onPageScroll',
'onResize',
'onTabItemTap'];
function initMocks(vm, mocks) {
var mpInstance = vm.$mp[vm.mpType];
mocks.forEach(function (mock) {
if (hasOwn(mpInstance, mock)) {
vm[mock] = mpInstance[mock];
}
});
}
function hasHook(hook, vueOptions) {
if (!vueOptions) {
return true;
}
if (_vue.default.options && Array.isArray(_vue.default.options[hook])) {
return true;
}
vueOptions = vueOptions.default || vueOptions;
if (isFn(vueOptions)) {
if (isFn(vueOptions.extendOptions[hook])) {
return true;
}
if (vueOptions.super &&
vueOptions.super.options &&
Array.isArray(vueOptions.super.options[hook])) {
return true;
}
return false;
}
if (isFn(vueOptions[hook])) {
return true;
}
var mixins = vueOptions.mixins;
if (Array.isArray(mixins)) {
return !!mixins.find(function (mixin) {return hasHook(hook, mixin);});
}
}
function initHooks(mpOptions, hooks, vueOptions) {
hooks.forEach(function (hook) {
if (hasHook(hook, vueOptions)) {
mpOptions[hook] = function (args) {
return this.$vm && this.$vm.__call_hook(hook, args);
};
}
});
}
function initVueComponent(Vue, vueOptions) {
vueOptions = vueOptions.default || vueOptions;
var VueComponent;
if (isFn(vueOptions)) {
VueComponent = vueOptions;
} else {
VueComponent = Vue.extend(vueOptions);
}
vueOptions = VueComponent.options;
return [VueComponent, vueOptions];
}
function initSlots(vm, vueSlots) {
if (Array.isArray(vueSlots) && vueSlots.length) {
var $slots = Object.create(null);
vueSlots.forEach(function (slotName) {
$slots[slotName] = true;
});
vm.$scopedSlots = vm.$slots = $slots;
}
}
function initVueIds(vueIds, mpInstance) {
vueIds = (vueIds || '').split(',');
var len = vueIds.length;
if (len === 1) {
mpInstance._$vueId = vueIds[0];
} else if (len === 2) {
mpInstance._$vueId = vueIds[0];
mpInstance._$vuePid = vueIds[1];
}
}
function initData(vueOptions, context) {
var data = vueOptions.data || {};
var methods = vueOptions.methods || {};
if (typeof data === 'function') {
try {
data = data.call(context); // 支持 Vue.prototype 上挂的数据
} catch (e) {
if (Object({"NODE_ENV":"development","VUE_APP_NAME":"Jinan_app","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
console.warn('根据 Vue 的 data 函数初始化小程序 data 失败,请尽量确保 data 函数中不访问 vm 对象,否则可能影响首次数据渲染速度。', data);
}
}
} else {
try {
// 对 data 格式化
data = JSON.parse(JSON.stringify(data));
} catch (e) {}
}
if (!isPlainObject(data)) {
data = {};
}
Object.keys(methods).forEach(function (methodName) {
if (context.__lifecycle_hooks__.indexOf(methodName) === -1 && !hasOwn(data, methodName)) {
data[methodName] = methods[methodName];
}
});
return data;
}
var PROP_TYPES = [String, Number, Boolean, Object, Array, null];
function createObserver(name) {
return function observer(newVal, oldVal) {
if (this.$vm) {
this.$vm[name] = newVal; // 为了触发其他非 render watcher
}
};
}
function initBehaviors(vueOptions, initBehavior) {
var vueBehaviors = vueOptions.behaviors;
var vueExtends = vueOptions.extends;
var vueMixins = vueOptions.mixins;
var vueProps = vueOptions.props;
if (!vueProps) {
vueOptions.props = vueProps = [];
}
var behaviors = [];
if (Array.isArray(vueBehaviors)) {
vueBehaviors.forEach(function (behavior) {
behaviors.push(behavior.replace('uni://', "wx".concat("://")));
if (behavior === 'uni://form-field') {
if (Array.isArray(vueProps)) {
vueProps.push('name');
vueProps.push('value');
} else {
vueProps.name = {
type: String,
default: '' };
vueProps.value = {
type: [String, Number, Boolean, Array, Object, Date],
default: '' };
}
}
});
}
if (isPlainObject(vueExtends) && vueExtends.props) {
behaviors.push(
initBehavior({
properties: initProperties(vueExtends.props, true) }));
}
if (Array.isArray(vueMixins)) {
vueMixins.forEach(function (vueMixin) {
if (isPlainObject(vueMixin) && vueMixin.props) {
behaviors.push(
initBehavior({
properties: initProperties(vueMixin.props, true) }));
}
});
}
return behaviors;
}
function parsePropType(key, type, defaultValue, file) {
// [String]=>String
if (Array.isArray(type) && type.length === 1) {
return type[0];
}
return type;
}
3 years ago
function initProperties(props) {var isBehavior = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;var file = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';var options = arguments.length > 3 ? arguments[3] : undefined;
3 years ago
var properties = {};
if (!isBehavior) {
properties.vueId = {
type: String,
value: '' };
3 years ago
{
if (options.virtualHost) {
properties.virtualHostStyle = {
type: null,
value: '' };
properties.virtualHostClass = {
type: null,
value: '' };
3 years ago
3 years ago
}
}
3 years ago
// scopedSlotsCompiler auto
properties.scopedSlotsCompiler = {
type: String,
value: '' };
properties.vueSlots = { // 小程序不能直接定义 $slots 的 props,所以通过 vueSlots 转换到 $slots
type: null,
value: [],
observer: function observer(newVal, oldVal) {
var $slots = Object.create(null);
newVal.forEach(function (slotName) {
$slots[slotName] = true;
});
this.setData({
$slots: $slots });
} };
}
if (Array.isArray(props)) {// ['title']
props.forEach(function (key) {
properties[key] = {
type: null,
observer: createObserver(key) };
});
} else if (isPlainObject(props)) {// {title:{type:String,default:''},content:String}
Object.keys(props).forEach(function (key) {
var opts = props[key];
if (isPlainObject(opts)) {// title:{type:String,default:''}
var value = opts.default;
if (isFn(value)) {
value = value();
}
opts.type = parsePropType(key, opts.type);
properties[key] = {
type: PROP_TYPES.indexOf(opts.type) !== -1 ? opts.type : null,
value: value,
observer: createObserver(key) };
} else {// content:String
var type = parsePropType(key, opts);
properties[key] = {
type: PROP_TYPES.indexOf(type) !== -1 ? type : null,
observer: createObserver(key) };
}
});
}
return properties;
}
function wrapper$1(event) {
// TODO 又得兼容 mpvue 的 mp 对象
try {
event.mp = JSON.parse(JSON.stringify(event));
} catch (e) {}
event.stopPropagation = noop;
event.preventDefault = noop;
event.target = event.target || {};
if (!hasOwn(event, 'detail')) {
event.detail = {};
}
if (hasOwn(event, 'markerId')) {
event.detail = typeof event.detail === 'object' ? event.detail : {};
event.detail.markerId = event.markerId;
}
if (isPlainObject(event.detail)) {
event.target = Object.assign({}, event.target, event.detail);
}
return event;
}
function getExtraValue(vm, dataPathsArray) {
var context = vm;
dataPathsArray.forEach(function (dataPathArray) {
var dataPath = dataPathArray[0];
var value = dataPathArray[2];
if (dataPath || typeof value !== 'undefined') {// ['','',index,'disable']
var propPath = dataPathArray[1];
var valuePath = dataPathArray[3];
var vFor;
if (Number.isInteger(dataPath)) {
vFor = dataPath;
} else if (!dataPath) {
vFor = context;
} else if (typeof dataPath === 'string' && dataPath) {
if (dataPath.indexOf('#s#') === 0) {
vFor = dataPath.substr(3);
} else {
vFor = vm.__get_value(dataPath, context);
}
}
if (Number.isInteger(vFor)) {
context = value;
} else if (!propPath) {
context = vFor[value];
} else {
if (Array.isArray(vFor)) {
context = vFor.find(function (vForItem) {
return vm.__get_value(propPath, vForItem) === value;
});
} else if (isPlainObject(vFor)) {
context = Object.keys(vFor).find(function (vForKey) {
return vm.__get_value(propPath, vFor[vForKey]) === value;
});
} else {
console.error('v-for 暂不支持循环数据:', vFor);
}
}
if (valuePath) {
context = vm.__get_value(valuePath, context);
}
}
});
return context;
}
function processEventExtra(vm, extra, event) {
var extraObj = {};
if (Array.isArray(extra) && extra.length) {
/**
*[
* ['data.items', 'data.id', item.data.id],
* ['metas', 'id', meta.id]
*],
*[
* ['data.items', 'data.id', item.data.id],
* ['metas', 'id', meta.id]
*],
*'test'
*/
extra.forEach(function (dataPath, index) {
if (typeof dataPath === 'string') {
if (!dataPath) {// model,prop.sync
extraObj['$' + index] = vm;
} else {
if (dataPath === '$event') {// $event
extraObj['$' + index] = event;
} else if (dataPath === 'arguments') {
if (event.detail && event.detail.__args__) {
extraObj['$' + index] = event.detail.__args__;
} else {
extraObj['$' + index] = [event];
}
} else if (dataPath.indexOf('$event.') === 0) {// $event.target.value
extraObj['$' + index] = vm.__get_value(dataPath.replace('$event.', ''), event);
} else {
extraObj['$' + index] = vm.__get_value(dataPath);
}
}
} else {
extraObj['$' + index] = getExtraValue(vm, dataPath);
}
});
}
return extraObj;
}
function getObjByArray(arr) {
var obj = {};
for (var i = 1; i < arr.length; i++) {
var element = arr[i];
obj[element[0]] = element[1];
}
return obj;
}
function processEventArgs(vm, event) {var args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];var extra = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : [];var isCustom = arguments.length > 4 ? arguments[4] : undefined;var methodName = arguments.length > 5 ? arguments[5] : undefined;
var isCustomMPEvent = false; // wxcomponent 组件,传递原始 event 对象
if (isCustom) {// 自定义事件
isCustomMPEvent = event.currentTarget &&
event.currentTarget.dataset &&
event.currentTarget.dataset.comType === 'wx';
if (!args.length) {// 无参数,直接传入 event 或 detail 数组
if (isCustomMPEvent) {
return [event];
}
return event.detail.__args__ || event.detail;
}
}
var extraObj = processEventExtra(vm, extra, event);
var ret = [];
args.forEach(function (arg) {
if (arg === '$event') {
if (methodName === '__set_model' && !isCustom) {// input v-model value
ret.push(event.target.value);
} else {
if (isCustom && !isCustomMPEvent) {
ret.push(event.detail.__args__[0]);
} else {// wxcomponent 组件或内置组件
ret.push(event);
}
}
} else {
if (Array.isArray(arg) && arg[0] === 'o') {
ret.push(getObjByArray(arg));
} else if (typeof arg === 'string' && hasOwn(extraObj, arg)) {
ret.push(extraObj[arg]);
} else {
ret.push(arg);
}
}
});
return ret;
}
var ONCE = '~';
var CUSTOM = '^';
function isMatchEventType(eventType, optType) {
return eventType === optType ||
optType === 'regionchange' && (
eventType === 'begin' ||
eventType === 'end');
}
function getContextVm(vm) {
var $parent = vm.$parent;
// 父组件是 scoped slots 或者其他自定义组件时继续查找
while ($parent && $parent.$parent && ($parent.$options.generic || $parent.$parent.$options.generic || $parent.$scope._$vuePid)) {
$parent = $parent.$parent;
}
return $parent && $parent.$parent;
}
3 years ago
function handleEvent(event) {var _this2 = this;
3 years ago
event = wrapper$1(event);
// [['tap',[['handle',[1,2,a]],['handle1',[1,2,a]]]]]
var dataset = (event.currentTarget || event.target).dataset;
if (!dataset) {
return console.warn('事件信息不存在');
}
var eventOpts = dataset.eventOpts || dataset['event-opts']; // 支付宝 web-view 组件 dataset 非驼峰
if (!eventOpts) {
return console.warn('事件信息不存在');
}
// [['handle',[1,2,a]],['handle1',[1,2,a]]]
var eventType = event.type;
var ret = [];
eventOpts.forEach(function (eventOpt) {
var type = eventOpt[0];
var eventsArray = eventOpt[1];
var isCustom = type.charAt(0) === CUSTOM;
type = isCustom ? type.slice(1) : type;
var isOnce = type.charAt(0) === ONCE;
type = isOnce ? type.slice(1) : type;
if (eventsArray && isMatchEventType(eventType, type)) {
eventsArray.forEach(function (eventArray) {
var methodName = eventArray[0];
if (methodName) {
3 years ago
var handlerCtx = _this2.$vm;
3 years ago
if (handlerCtx.$options.generic) {// mp-weixin,mp-toutiao 抽象节点模拟 scoped slots
handlerCtx = getContextVm(handlerCtx) || handlerCtx;
}
if (methodName === '$emit') {
handlerCtx.$emit.apply(handlerCtx,
processEventArgs(
3 years ago
_this2.$vm,
3 years ago
event,
eventArray[1],
eventArray[2],
isCustom,
methodName));
return;
}
var handler = handlerCtx[methodName];
if (!isFn(handler)) {
3 years ago
var _type = _this2.$vm.mpType === 'page' ? 'Page' : 'Component';
var path = _this2.route || _this2.is;
throw new Error("".concat(_type, " \"").concat(path, "\" does not have a method \"").concat(methodName, "\""));
3 years ago
}
if (isOnce) {
if (handler.once) {
return;
}
handler.once = true;
}
var params = processEventArgs(
3 years ago
_this2.$vm,
3 years ago
event,
eventArray[1],
eventArray[2],
isCustom,
methodName);
params = Array.isArray(params) ? params : [];
// 参数尾部增加原始事件对象用于复杂表达式内获取额外数据
if (/=\s*\S+\.eventParams\s*\|\|\s*\S+\[['"]event-params['"]\]/.test(handler.toString())) {
// eslint-disable-next-line no-sparse-arrays
params = params.concat([,,,,,,,,,, event]);
}
ret.push(handler.apply(handlerCtx, params));
}
});
}
});
if (
eventType === 'input' &&
ret.length === 1 &&
typeof ret[0] !== 'undefined')
{
return ret[0];
}
}
3 years ago
var eventChannels = {};
3 years ago
3 years ago
var eventChannelStack = [];
3 years ago
3 years ago
function getEventChannel(id) {
if (id) {
var eventChannel = eventChannels[id];
delete eventChannels[id];
return eventChannel;
}
return eventChannelStack.shift();
3 years ago
}
var hooks = [
'onShow',
'onHide',
'onError',
'onPageNotFound',
'onThemeChange',
'onUnhandledRejection'];
function initEventChannel() {
_vue.default.prototype.getOpenerEventChannel = function () {
// 微信小程序使用自身getOpenerEventChannel
{
return this.$scope.getOpenerEventChannel();
}
};
var callHook = _vue.default.prototype.__call_hook;
_vue.default.prototype.__call_hook = function (hook, args) {
if (hook === 'onLoad' && args && args.__id__) {
this.__eventChannel__ = getEventChannel(args.__id__);
delete args.__id__;
}
return callHook.call(this, hook, args);
};
}
function initScopedSlotsParams() {
var center = {};
var parents = {};
_vue.default.prototype.$hasScopedSlotsParams = function (vueId) {
var has = center[vueId];
if (!has) {
parents[vueId] = this;
this.$on('hook:destroyed', function () {
delete parents[vueId];
});
}
return has;
};
_vue.default.prototype.$getScopedSlotsParams = function (vueId, name, key) {
var data = center[vueId];
if (data) {
var object = data[name] || {};
return key ? object[key] : object;
} else {
parents[vueId] = this;
this.$on('hook:destroyed', function () {
delete parents[vueId];
});
}
};
_vue.default.prototype.$setScopedSlotsParams = function (name, value) {
var vueIds = this.$options.propsData.vueId;
if (vueIds) {
var vueId = vueIds.split(',')[0];
var object = center[vueId] = center[vueId] || {};
object[name] = value;
if (parents[vueId]) {
parents[vueId].$forceUpdate();
}
}
};
_vue.default.mixin({
destroyed: function destroyed() {
var propsData = this.$options.propsData;
var vueId = propsData && propsData.vueId;
if (vueId) {
delete center[vueId];
delete parents[vueId];
}
} });
}
function parseBaseApp(vm, _ref3)
{var mocks = _ref3.mocks,initRefs = _ref3.initRefs;
initEventChannel();
{
initScopedSlotsParams();
}
if (vm.$options.store) {
_vue.default.prototype.$store = vm.$options.store;
}
uniIdMixin(_vue.default);
_vue.default.prototype.mpHost = "mp-weixin";
_vue.default.mixin({
beforeCreate: function beforeCreate() {
if (!this.$options.mpType) {
return;
}
this.mpType = this.$options.mpType;
this.$mp = _defineProperty({
data: {} },
this.mpType, this.$options.mpInstance);
this.$scope = this.$options.mpInstance;
delete this.$options.mpType;
delete this.$options.mpInstance;
if (this.mpType === 'page' && typeof getApp === 'function') {// hack vue-i18n
var app = getApp();
if (app.$vm && app.$vm.$i18n) {
this._i18n = app.$vm.$i18n;
}
}
if (this.mpType !== 'app') {
initRefs(this);
initMocks(this, mocks);
}
} });
var appOptions = {
onLaunch: function onLaunch(args) {
if (this.$vm) {// 已经初始化过了,主要是为了百度,百度 onShow 在 onLaunch 之前
return;
}
{
if (wx.canIUse && !wx.canIUse('nextTick')) {// 事实 上2.2.3 即可,简单使用 2.3.0 的 nextTick 判断
console.error('当前微信基础库版本过低,请将 微信开发者工具-详情-项目设置-调试基础库版本 更换为`2.3.0`以上');
}
}
this.$vm = vm;
this.$vm.$mp = {
app: this };
this.$vm.$scope = this;
// vm 上也挂载 globalData
this.$vm.globalData = this.globalData;
this.$vm._isMounted = true;
this.$vm.__call_hook('mounted', args);
this.$vm.__call_hook('onLaunch', args);
} };
// 兼容旧版本 globalData
appOptions.globalData = vm.$options.globalData || {};
// 将 methods 中的方法挂在 getApp() 中
var methods = vm.$options.methods;
if (methods) {
Object.keys(methods).forEach(function (name) {
appOptions[name] = methods[name];
});
}
3 years ago
initAppLocale(_vue.default, vm, normalizeLocale(wx.getSystemInfoSync().language) || LOCALE_EN);
3 years ago
initHooks(appOptions, hooks);
return appOptions;
}
var mocks = ['__route__', '__wxExparserNodeId__', '__wxWebviewId__'];
function findVmByVueId(vm, vuePid) {
var $children = vm.$children;
// 优先查找直属(反向查找:https://github.com/dcloudio/uni-app/issues/1200)
for (var i = $children.length - 1; i >= 0; i--) {
var childVm = $children[i];
if (childVm.$scope._$vueId === vuePid) {
return childVm;
}
}
// 反向递归查找
var parentVm;
for (var _i = $children.length - 1; _i >= 0; _i--) {
parentVm = findVmByVueId($children[_i], vuePid);
if (parentVm) {
return parentVm;
}
}
}
function initBehavior(options) {
return Behavior(options);
}
function isPage() {
return !!this.route;
}
function initRelation(detail) {
this.triggerEvent('__l', detail);
}
function selectAllComponents(mpInstance, selector, $refs) {
var components = mpInstance.selectAllComponents(selector);
components.forEach(function (component) {
var ref = component.dataset.ref;
$refs[ref] = component.$vm || component;
{
if (component.dataset.vueGeneric === 'scoped') {
component.selectAllComponents('.scoped-ref').forEach(function (scopedComponent) {
selectAllComponents(scopedComponent, selector, $refs);
});
}
}
});
}
function initRefs(vm) {
var mpInstance = vm.$scope;
Object.defineProperty(vm, '$refs', {
get: function get() {
var $refs = {};
selectAllComponents(mpInstance, '.vue-ref', $refs);
// TODO 暂不考虑 for 中的 scoped
var forComponents = mpInstance.selectAllComponents('.vue-ref-in-for');
forComponents.forEach(function (component) {
var ref = component.dataset.ref;
if (!$refs[ref]) {
$refs[ref] = [];
}
$refs[ref].push(component.$vm || component);
});
return $refs;
} });
}
function handleLink(event) {var _ref4 =
event.detail || event.value,vuePid = _ref4.vuePid,vueOptions = _ref4.vueOptions; // detail 是微信,value 是百度(dipatch)
var parentVm;
if (vuePid) {
parentVm = findVmByVueId(this.$vm, vuePid);
}
if (!parentVm) {
parentVm = this.$vm;
}
vueOptions.parent = parentVm;
}
function parseApp(vm) {
return parseBaseApp(vm, {
mocks: mocks,
initRefs: initRefs });
}
function createApp(vm) {
App(parseApp(vm));
return vm;
}
var encodeReserveRE = /[!'()*]/g;
var encodeReserveReplacer = function encodeReserveReplacer(c) {return '%' + c.charCodeAt(0).toString(16);};
var commaRE = /%2C/g;
// fixed encodeURIComponent which is more conformant to RFC3986:
// - escapes [!'()*]
// - preserve commas
var encode = function encode(str) {return encodeURIComponent(str).
replace(encodeReserveRE, encodeReserveReplacer).
replace(commaRE, ',');};
function stringifyQuery(obj) {var encodeStr = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : encode;
var res = obj ? Object.keys(obj).map(function (key) {
var val = obj[key];
if (val === undefined) {
return '';
}
if (val === null) {
return encodeStr(key);
}
if (Array.isArray(val)) {
var result = [];
val.forEach(function (val2) {
if (val2 === undefined) {
return;
}
if (val2 === null) {
result.push(encodeStr(key));
} else {
result.push(encodeStr(key) + '=' + encodeStr(val2));
}
});
return result.join('&');
}
return encodeStr(key) + '=' + encodeStr(val);
}).filter(function (x) {return x.length > 0;}).join('&') : null;
return res ? "?".concat(res) : '';
}
function parseBaseComponent(vueComponentOptions)
{var _ref5 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},isPage = _ref5.isPage,initRelation = _ref5.initRelation;var _initVueComponent =
initVueComponent(_vue.default, vueComponentOptions),_initVueComponent2 = _slicedToArray(_initVueComponent, 2),VueComponent = _initVueComponent2[0],vueOptions = _initVueComponent2[1];
var options = _objectSpread({
multipleSlots: true,
addGlobalClass: true },
vueOptions.options || {});
{
// 微信 multipleSlots 部分情况有 bug,导致内容顺序错乱 如 u-list,提供覆盖选项
if (vueOptions['mp-weixin'] && vueOptions['mp-weixin'].options) {
Object.assign(options, vueOptions['mp-weixin'].options);
}
}
var componentOptions = {
options: options,
data: initData(vueOptions, _vue.default.prototype),
behaviors: initBehaviors(vueOptions, initBehavior),
3 years ago
properties: initProperties(vueOptions.props, false, vueOptions.__file, options),
3 years ago
lifetimes: {
attached: function attached() {
var properties = this.properties;
var options = {
mpType: isPage.call(this) ? 'page' : 'component',
mpInstance: this,
propsData: properties };
initVueIds(properties.vueId, this);
// 处理父子关系
initRelation.call(this, {
vuePid: this._$vuePid,
vueOptions: options });
// 初始化 vue 实例
this.$vm = new VueComponent(options);
// 处理$slots,$scopedSlots(暂不支持动态变化$slots)
initSlots(this.$vm, properties.vueSlots);
// 触发首次 setData
this.$vm.$mount();
},
ready: function ready() {
// 当组件 props 默认值为 true,初始化时传入 false 会导致 created,ready 触发, 但 attached 不触发
// https://developers.weixin.qq.com/community/develop/doc/00066ae2844cc0f8eb883e2a557800
if (this.$vm) {
this.$vm._isMounted = true;
this.$vm.__call_hook('mounted');
this.$vm.__call_hook('onReady');
}
},
detached: function detached() {
this.$vm && this.$vm.$destroy();
} },
pageLifetimes: {
show: function show(args) {
this.$vm && this.$vm.__call_hook('onPageShow', args);
},
hide: function hide() {
this.$vm && this.$vm.__call_hook('onPageHide');
},
resize: function resize(size) {
this.$vm && this.$vm.__call_hook('onPageResize', size);
} },
methods: {
__l: handleLink,
__e: handleEvent } };
// externalClasses
if (vueOptions.externalClasses) {
componentOptions.externalClasses = vueOptions.externalClasses;
}
if (Array.isArray(vueOptions.wxsCallMethods)) {
vueOptions.wxsCallMethods.forEach(function (callMethod) {
componentOptions.methods[callMethod] = function (args) {
return this.$vm[callMethod](args);
};
});
}
if (isPage) {
return componentOptions;
}
return [componentOptions, VueComponent];
}
function parseComponent(vueComponentOptions) {
return parseBaseComponent(vueComponentOptions, {
isPage: isPage,
initRelation: initRelation });
}
var hooks$1 = [
'onShow',
'onHide',
'onUnload'];
hooks$1.push.apply(hooks$1, PAGE_EVENT_HOOKS);
function parseBasePage(vuePageOptions, _ref6)
{var isPage = _ref6.isPage,initRelation = _ref6.initRelation;
var pageOptions = parseComponent(vuePageOptions);
initHooks(pageOptions.methods, hooks$1, vuePageOptions);
pageOptions.methods.onLoad = function (query) {
this.options = query;
var copyQuery = Object.assign({}, query);
delete copyQuery.__id__;
this.$page = {
fullPath: '/' + (this.route || this.is) + stringifyQuery(copyQuery) };
this.$vm.$mp.query = query; // 兼容 mpvue
this.$vm.__call_hook('onLoad', query);
};
return pageOptions;
}
function parsePage(vuePageOptions) {
return parseBasePage(vuePageOptions, {
isPage: isPage,
initRelation: initRelation });
}
function createPage(vuePageOptions) {
{
return Component(parsePage(vuePageOptions));
}
}
function createComponent(vueOptions) {
{
return Component(parseComponent(vueOptions));
}
}
function createSubpackageApp(vm) {
var appOptions = parseApp(vm);
var app = getApp({
allowDefault: true });
vm.$scope = app;
var globalData = app.globalData;
if (globalData) {
Object.keys(appOptions.globalData).forEach(function (name) {
if (!hasOwn(globalData, name)) {
globalData[name] = appOptions.globalData[name];
}
});
}
Object.keys(appOptions).forEach(function (name) {
if (!hasOwn(app, name)) {
app[name] = appOptions[name];
}
});
if (isFn(appOptions.onShow) && wx.onAppShow) {
wx.onAppShow(function () {for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {args[_key5] = arguments[_key5];}
vm.__call_hook('onShow', args);
});
}
if (isFn(appOptions.onHide) && wx.onAppHide) {
wx.onAppHide(function () {for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {args[_key6] = arguments[_key6];}
vm.__call_hook('onHide', args);
});
}
if (isFn(appOptions.onLaunch)) {
var args = wx.getLaunchOptionsSync && wx.getLaunchOptionsSync();
vm.__call_hook('onLaunch', args);
}
return vm;
}
function createPlugin(vm) {
var appOptions = parseApp(vm);
if (isFn(appOptions.onShow) && wx.onAppShow) {
wx.onAppShow(function () {for (var _len7 = arguments.length, args = new Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {args[_key7] = arguments[_key7];}
vm.__call_hook('onShow', args);
});
}
if (isFn(appOptions.onHide) && wx.onAppHide) {
wx.onAppHide(function () {for (var _len8 = arguments.length, args = new Array(_len8), _key8 = 0; _key8 < _len8; _key8++) {args[_key8] = arguments[_key8];}
vm.__call_hook('onHide', args);
});
}
if (isFn(appOptions.onLaunch)) {
var args = wx.getLaunchOptionsSync && wx.getLaunchOptionsSync();
vm.__call_hook('onLaunch', args);
}
return vm;
}
todos.forEach(function (todoApi) {
protocols[todoApi] = false;
});
canIUses.forEach(function (canIUseApi) {
var apiName = protocols[canIUseApi] && protocols[canIUseApi].name ? protocols[canIUseApi].name :
canIUseApi;
if (!wx.canIUse(apiName)) {
protocols[canIUseApi] = false;
}
});
var uni = {};
if (typeof Proxy !== 'undefined' && "mp-weixin" !== 'app-plus') {
uni = new Proxy({}, {
get: function get(target, name) {
if (hasOwn(target, name)) {
return target[name];
}
if (baseApi[name]) {
return baseApi[name];
}
if (api[name]) {
return promisify(name, api[name]);
}
{
if (extraApi[name]) {
return promisify(name, extraApi[name]);
}
if (todoApis[name]) {
return promisify(name, todoApis[name]);
}
}
if (eventApi[name]) {
return eventApi[name];
}
if (!hasOwn(wx, name) && !hasOwn(protocols, name)) {
return;
}
return promisify(name, wrapper(name, wx[name]));
},
set: function set(target, name, value) {
target[name] = value;
return true;
} });
} else {
Object.keys(baseApi).forEach(function (name) {
uni[name] = baseApi[name];
});
{
Object.keys(todoApis).forEach(function (name) {
uni[name] = promisify(name, todoApis[name]);
});
Object.keys(extraApi).forEach(function (name) {
uni[name] = promisify(name, todoApis[name]);
});
}
Object.keys(eventApi).forEach(function (name) {
uni[name] = eventApi[name];
});
Object.keys(api).forEach(function (name) {
uni[name] = promisify(name, api[name]);
});
Object.keys(wx).forEach(function (name) {
if (hasOwn(wx, name) || hasOwn(protocols, name)) {
uni[name] = promisify(name, wrapper(name, wx[name]));
}
});
}
wx.createApp = createApp;
wx.createPage = createPage;
wx.createComponent = createComponent;
wx.createSubpackageApp = createSubpackageApp;
wx.createPlugin = createPlugin;
var uni$1 = uni;var _default =
uni$1;exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../webpack/buildin/global.js */ 2)))
/***/ }),
3 years ago
/***/ 109:
/*!************************************************************************************!*\
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/uni-cloud/dist/index.js ***!
\************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
/* WEBPACK VAR INJECTION */(function(global, uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 110));var _uniI18n = __webpack_require__(/*! @dcloudio/uni-i18n */ 3);var _pages = _interopRequireDefault(__webpack_require__(/*! @/pages.json */ 113));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};}function _toConsumableArray(arr) {return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();}function _nonIterableSpread() {throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}function _iterableToArray(iter) {if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);}function _arrayWithoutHoles(arr) {if (Array.isArray(arr)) return _arrayLikeToArray(arr);}function _createForOfIteratorHelper(o, allowArrayLike) {var it;if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {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(_e32) {throw _e32;}, 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 = o[Symbol.iterator]();}, n: function n() {var step = it.next();normalCompletion = step.done;return step;}, e: function e(_e33) {didErr = true;err = _e33;}, 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;}function _defineProperties(target, props) {for (var i = 0; i < props.length; i++) {var descriptor = props[i];descriptor.enumerable = descriptor.enumerable || false;descriptor.configurable = true;if ("value" in descriptor) descriptor.writable = true;Object.defineProperty(target, descriptor.key, descriptor);}}function _createClass(Constructor, protoProps, staticProps) {if (protoProps) _defineProperties(Constructor.prototype, protoProps);if (staticProps) _defineProperties(Constructor, staticProps);return Constructor;}function ownKeys(object, enumerableOnly) {var keys = Object.keys(object);if (Object.getOwnPropertySymbols) {var symbols = Object.getOwnPropertySymbols(object);if (enumerableOnly) symbols = symbols.filter(function (sym) {return Object.getOwnPropertyDescriptor(object, sym).enumerable;});keys.push.apply(keys, symbols);}return keys;}function _objectSpre
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../webpack/buildin/global.js */ 2), __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
3 years ago
/***/ }),
3 years ago
/***/ 11:
/*!**********************************************************************************************************!*\
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js ***!
\**********************************************************************************************************/
3 years ago
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
3 years ago
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return normalizeComponent; });
/* globals __VUE_SSR_CONTEXT__ */
3 years ago
3 years ago
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
// This module is a runtime utility for cleaner component module output and will
// be included in the final webpack user bundle.
3 years ago
3 years ago
function normalizeComponent (
scriptExports,
render,
staticRenderFns,
functionalTemplate,
injectStyles,
scopeId,
moduleIdentifier, /* server only */
shadowMode, /* vue-cli only */
components, // fixed by xxxxxx auto components
renderjs // fixed by xxxxxx renderjs
) {
// Vue.extend constructor export interop
var options = typeof scriptExports === 'function'
? scriptExports.options
: scriptExports
3 years ago
3 years ago
// fixed by xxxxxx auto components
if (components) {
if (!options.components) {
options.components = {}
}
var hasOwn = Object.prototype.hasOwnProperty
for (var name in components) {
if (hasOwn.call(components, name) && !hasOwn.call(options.components, name)) {
options.components[name] = components[name]
}
}
}
// fixed by xxxxxx renderjs
if (renderjs) {
(renderjs.beforeCreate || (renderjs.beforeCreate = [])).unshift(function() {
this[renderjs.__module] = this
});
(options.mixins || (options.mixins = [])).push(renderjs)
}
3 years ago
3 years ago
// render functions
if (render) {
options.render = render
options.staticRenderFns = staticRenderFns
options._compiled = true
}
3 years ago
3 years ago
// functional template
if (functionalTemplate) {
options.functional = true
}
3 years ago
3 years ago
// scopedId
if (scopeId) {
options._scopeId = 'data-v-' + scopeId
}
3 years ago
3 years ago
var hook
if (moduleIdentifier) { // server build
hook = function (context) {
// 2.3 injection
context =
context || // cached call
(this.$vnode && this.$vnode.ssrContext) || // stateful
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
// 2.2 with runInNewContext: true
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
context = __VUE_SSR_CONTEXT__
}
// inject component styles
if (injectStyles) {
injectStyles.call(this, context)
}
// register component module identifier for async chunk inferrence
if (context && context._registeredComponents) {
context._registeredComponents.add(moduleIdentifier)
}
}
// used by ssr in case component is cached and beforeCreate
// never gets called
options._ssrRegister = hook
} else if (injectStyles) {
hook = shadowMode
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
: injectStyles
}
3 years ago
3 years ago
if (hook) {
if (options.functional) {
// for template-only hot-reload because in that case the render fn doesn't
// go through the normalizer
options._injectStyles = hook
// register for functioal component in vue file
var originalRender = options.render
options.render = function renderWithStyleInjection (h, context) {
hook.call(context)
return originalRender(h, context)
}
} else {
// inject component registration as beforeCreate hook
var existing = options.beforeCreate
options.beforeCreate = existing
? [].concat(existing, hook)
: [hook]
}
}
3 years ago
3 years ago
return {
exports: scriptExports,
options: options
}
3 years ago
}
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 110:
/*!**********************************************************!*\
!*** ./node_modules/@babel/runtime/regenerator/index.js ***!
\**********************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
module.exports = __webpack_require__(/*! regenerator-runtime */ 111);
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 111:
/*!************************************************************!*\
!*** ./node_modules/regenerator-runtime/runtime-module.js ***!
\************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
/**
3 years ago
* Copyright (c) 2014-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
3 years ago
*/
3 years ago
// This method of obtaining a reference to the global object needs to be
// kept identical to the way it is obtained in runtime.js
var g = (function() {
return this || (typeof self === "object" && self);
})() || Function("return this")();
3 years ago
3 years ago
// Use `getOwnPropertyNames` because not all browsers support calling
// `hasOwnProperty` on the global `self` object in a worker. See #183.
var hadRuntime = g.regeneratorRuntime &&
Object.getOwnPropertyNames(g).indexOf("regeneratorRuntime") >= 0;
3 years ago
3 years ago
// Save the old regeneratorRuntime in case it needs to be restored later.
var oldRuntime = hadRuntime && g.regeneratorRuntime;
// Force reevalutation of runtime.js.
g.regeneratorRuntime = undefined;
module.exports = __webpack_require__(/*! ./runtime */ 112);
if (hadRuntime) {
// Restore the original runtime.
g.regeneratorRuntime = oldRuntime;
} else {
// Remove the global property added by runtime.js.
try {
delete g.regeneratorRuntime;
} catch(e) {
g.regeneratorRuntime = undefined;
3 years ago
}
}
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 112:
/*!*****************************************************!*\
!*** ./node_modules/regenerator-runtime/runtime.js ***!
\*****************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
3 years ago
/**
3 years ago
* Copyright (c) 2014-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
3 years ago
*/
3 years ago
!(function(global) {
"use strict";
3 years ago
3 years ago
var Op = Object.prototype;
var hasOwn = Op.hasOwnProperty;
var undefined; // More compressible than void 0.
var $Symbol = typeof Symbol === "function" ? Symbol : {};
var iteratorSymbol = $Symbol.iterator || "@@iterator";
var asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator";
var toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
3 years ago
3 years ago
var inModule = typeof module === "object";
var runtime = global.regeneratorRuntime;
if (runtime) {
if (inModule) {
// If regeneratorRuntime is defined globally and we're in a module,
// make the exports object identical to regeneratorRuntime.
module.exports = runtime;
}
// Don't bother evaluating the rest of this file if the runtime was
// already defined globally.
return;
3 years ago
}
3 years ago
// Define the runtime globally (as expected by generated code) as either
// module.exports (if we're in a module) or a new, empty object.
runtime = global.regeneratorRuntime = inModule ? module.exports : {};
3 years ago
3 years ago
function wrap(innerFn, outerFn, self, tryLocsList) {
// If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.
var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;
var generator = Object.create(protoGenerator.prototype);
var context = new Context(tryLocsList || []);
3 years ago
3 years ago
// The ._invoke method unifies the implementations of the .next,
// .throw, and .return methods.
generator._invoke = makeInvokeMethod(innerFn, self, context);
3 years ago
3 years ago
return generator;
3 years ago
}
3 years ago
runtime.wrap = wrap;
3 years ago
3 years ago
// Try/catch helper to minimize deoptimizations. Returns a completion
// record like context.tryEntries[i].completion. This interface could
// have been (and was previously) designed to take a closure to be
// invoked without arguments, but in all the cases we care about we
// already have an existing method we want to call, so there's no need
// to create a new function object. We can even get away with assuming
// the method takes exactly one argument, since that happens to be true
// in every case, so we don't have to touch the arguments object. The
// only additional allocation required is the completion record, which
// has a stable shape and so hopefully should be cheap to allocate.
function tryCatch(fn, obj, arg) {
3 years ago
try {
3 years ago
return { type: "normal", arg: fn.call(obj, arg) };
} catch (err) {
return { type: "throw", arg: err };
3 years ago
}
}
3 years ago
var GenStateSuspendedStart = "suspendedStart";
var GenStateSuspendedYield = "suspendedYield";
var GenStateExecuting = "executing";
var GenStateCompleted = "completed";
3 years ago
3 years ago
// Returning this object from the innerFn has the same effect as
// breaking out of the dispatch switch statement.
var ContinueSentinel = {};
3 years ago
3 years ago
// Dummy constructor functions that we use as the .constructor and
// .constructor.prototype properties for functions that return Generator
// objects. For full spec compliance, you may wish to configure your
// minifier not to mangle the names of these two functions.
function Generator() {}
function GeneratorFunction() {}
function GeneratorFunctionPrototype() {}
3 years ago
3 years ago
// This is a polyfill for %IteratorPrototype% for environments that
// don't natively support it.
var IteratorPrototype = {};
IteratorPrototype[iteratorSymbol] = function () {
return this;
};
3 years ago
3 years ago
var getProto = Object.getPrototypeOf;
var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
if (NativeIteratorPrototype &&
NativeIteratorPrototype !== Op &&
hasOwn.call(NativeIteratorPrototype, iteratorSymbol)) {
// This environment has a native %IteratorPrototype%; use it instead
// of the polyfill.
IteratorPrototype = NativeIteratorPrototype;
}
3 years ago
3 years ago
var Gp = GeneratorFunctionPrototype.prototype =
Generator.prototype = Object.create(IteratorPrototype);
GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;
GeneratorFunctionPrototype.constructor = GeneratorFunction;
GeneratorFunctionPrototype[toStringTagSymbol] =
GeneratorFunction.displayName = "GeneratorFunction";
3 years ago
3 years ago
// Helper for defining the .next, .throw, and .return methods of the
// Iterator interface in terms of a single ._invoke method.
function defineIteratorMethods(prototype) {
["next", "throw", "return"].forEach(function(method) {
prototype[method] = function(arg) {
return this._invoke(method, arg);
};
});
}
3 years ago
3 years ago
runtime.isGeneratorFunction = function(genFun) {
var ctor = typeof genFun === "function" && genFun.constructor;
return ctor
? ctor === GeneratorFunction ||
// For the native GeneratorFunction constructor, the best we can
// do is to check its .name property.
(ctor.displayName || ctor.name) === "GeneratorFunction"
: false;
};
3 years ago
3 years ago
runtime.mark = function(genFun) {
if (Object.setPrototypeOf) {
Object.setPrototypeOf(genFun, GeneratorFunctionPrototype);
} else {
genFun.__proto__ = GeneratorFunctionPrototype;
if (!(toStringTagSymbol in genFun)) {
genFun[toStringTagSymbol] = "GeneratorFunction";
}
}
genFun.prototype = Object.create(Gp);
return genFun;
};
3 years ago
3 years ago
// Within the body of any async function, `await x` is transformed to
// `yield regeneratorRuntime.awrap(x)`, so that the runtime can test
// `hasOwn.call(value, "__await")` to determine if the yielded value is
// meant to be awaited.
runtime.awrap = function(arg) {
return { __await: arg };
};
3 years ago
3 years ago
function AsyncIterator(generator) {
function invoke(method, arg, resolve, reject) {
var record = tryCatch(generator[method], generator, arg);
if (record.type === "throw") {
reject(record.arg);
} else {
var result = record.arg;
var value = result.value;
if (value &&
typeof value === "object" &&
hasOwn.call(value, "__await")) {
return Promise.resolve(value.__await).then(function(value) {
invoke("next", value, resolve, reject);
}, function(err) {
invoke("throw", err, resolve, reject);
});
}
3 years ago
3 years ago
return Promise.resolve(value).then(function(unwrapped) {
// When a yielded Promise is resolved, its final value becomes
// the .value of the Promise<{value,done}> result for the
// current iteration.
result.value = unwrapped;
resolve(result);
}, function(error) {
// If a rejected Promise was yielded, throw the rejection back
// into the async generator function so it can be handled there.
return invoke("throw", error, resolve, reject);
});
}
}
3 years ago
3 years ago
var previousPromise;
3 years ago
3 years ago
function enqueue(method, arg) {
function callInvokeWithMethodAndArg() {
return new Promise(function(resolve, reject) {
invoke(method, arg, resolve, reject);
});
}
3 years ago
3 years ago
return previousPromise =
// If enqueue has been called before, then we want to wait until
// all previous Promises have been resolved before calling invoke,
// so that results are always delivered in the correct order. If
// enqueue has not been called before, then it is important to
// call invoke immediately, without waiting on a callback to fire,
// so that the async generator function has the opportunity to do
// any necessary setup in a predictable way. This predictability
// is why the Promise constructor synchronously invokes its
// executor callback, and why async functions synchronously
// execute code before the first await. Since we implement simple
// async functions in terms of async generators, it is especially
// important to get this right, even though it requires care.
previousPromise ? previousPromise.then(
callInvokeWithMethodAndArg,
// Avoid propagating failures to Promises returned by later
// invocations of the iterator.
callInvokeWithMethodAndArg
) : callInvokeWithMethodAndArg();
}
3 years ago
3 years ago
// Define the unified helper method that is used to implement .next,
// .throw, and .return (see defineIteratorMethods).
this._invoke = enqueue;
}
3 years ago
3 years ago
defineIteratorMethods(AsyncIterator.prototype);
AsyncIterator.prototype[asyncIteratorSymbol] = function () {
return this;
};
runtime.AsyncIterator = AsyncIterator;
3 years ago
3 years ago
// Note that simple async functions are implemented on top of
// AsyncIterator objects; they just return a Promise for the value of
// the final result produced by the iterator.
runtime.async = function(innerFn, outerFn, self, tryLocsList) {
var iter = new AsyncIterator(
wrap(innerFn, outerFn, self, tryLocsList)
);
3 years ago
3 years ago
return runtime.isGeneratorFunction(outerFn)
? iter // If outerFn is a generator, return the full iterator.
: iter.next().then(function(result) {
return result.done ? result.value : iter.next();
});
};
3 years ago
3 years ago
function makeInvokeMethod(innerFn, self, context) {
var state = GenStateSuspendedStart;
3 years ago
3 years ago
return function invoke(method, arg) {
if (state === GenStateExecuting) {
throw new Error("Generator is already running");
}
3 years ago
3 years ago
if (state === GenStateCompleted) {
if (method === "throw") {
throw arg;
}
3 years ago
3 years ago
// Be forgiving, per 25.3.3.3.3 of the spec:
// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume
return doneResult();
}
3 years ago
3 years ago
context.method = method;
context.arg = arg;
3 years ago
3 years ago
while (true) {
var delegate = context.delegate;
if (delegate) {
var delegateResult = maybeInvokeDelegate(delegate, context);
if (delegateResult) {
if (delegateResult === ContinueSentinel) continue;
return delegateResult;
}
}
3 years ago
3 years ago
if (context.method === "next") {
// Setting context._sent for legacy support of Babel's
// function.sent implementation.
context.sent = context._sent = context.arg;
3 years ago
3 years ago
} else if (context.method === "throw") {
if (state === GenStateSuspendedStart) {
state = GenStateCompleted;
throw context.arg;
}
3 years ago
3 years ago
context.dispatchException(context.arg);
3 years ago
3 years ago
} else if (context.method === "return") {
context.abrupt("return", context.arg);
}
3 years ago
3 years ago
state = GenStateExecuting;
3 years ago
3 years ago
var record = tryCatch(innerFn, self, context);
if (record.type === "normal") {
// If an exception is thrown from innerFn, we leave state ===
// GenStateExecuting and loop back for another invocation.
state = context.done
? GenStateCompleted
: GenStateSuspendedYield;
3 years ago
3 years ago
if (record.arg === ContinueSentinel) {
continue;
}
3 years ago
3 years ago
return {
value: record.arg,
done: context.done
};
3 years ago
3 years ago
} else if (record.type === "throw") {
state = GenStateCompleted;
// Dispatch the exception by looping back around to the
// context.dispatchException(context.arg) call above.
context.method = "throw";
context.arg = record.arg;
}
}
};
3 years ago
}
3 years ago
// Call delegate.iterator[context.method](context.arg) and handle the
// result, either by returning a { value, done } result from the
// delegate iterator, or by modifying context.method and context.arg,
// setting context.delegate to null, and returning the ContinueSentinel.
function maybeInvokeDelegate(delegate, context) {
var method = delegate.iterator[context.method];
if (method === undefined) {
// A .throw or .return when the delegate iterator has no .throw
// method always terminates the yield* loop.
context.delegate = null;
3 years ago
3 years ago
if (context.method === "throw") {
if (delegate.iterator.return) {
// If the delegate iterator has a return method, give it a
// chance to clean up.
context.method = "return";
context.arg = undefined;
maybeInvokeDelegate(delegate, context);
3 years ago
3 years ago
if (context.method === "throw") {
// If maybeInvokeDelegate(context) changed context.method from
// "return" to "throw", let that override the TypeError below.
return ContinueSentinel;
}
}
3 years ago
3 years ago
context.method = "throw";
context.arg = new TypeError(
"The iterator does not provide a 'throw' method");
}
3 years ago
3 years ago
return ContinueSentinel;
}
3 years ago
3 years ago
var record = tryCatch(method, delegate.iterator, context.arg);
3 years ago
3 years ago
if (record.type === "throw") {
context.method = "throw";
context.arg = record.arg;
context.delegate = null;
return ContinueSentinel;
3 years ago
}
3 years ago
var info = record.arg;
3 years ago
3 years ago
if (! info) {
context.method = "throw";
context.arg = new TypeError("iterator result is not an object");
context.delegate = null;
return ContinueSentinel;
3 years ago
}
3 years ago
if (info.done) {
// Assign the result of the finished delegate to the temporary
// variable specified by delegate.resultName (see delegateYield).
context[delegate.resultName] = info.value;
3 years ago
3 years ago
// Resume execution at the desired location (see delegateYield).
context.next = delegate.nextLoc;
3 years ago
3 years ago
// If context.method was "throw" but the delegate handled the
// exception, let the outer generator proceed normally. If
// context.method was "next", forget context.arg since it has been
// "consumed" by the delegate iterator. If context.method was
// "return", allow the original .return call to continue in the
// outer generator.
if (context.method !== "return") {
context.method = "next";
context.arg = undefined;
3 years ago
}
3 years ago
3 years ago
} else {
3 years ago
// Re-yield the result returned by the delegate method.
return info;
3 years ago
}
3 years ago
// The delegate iterator is finished, so forget it and continue with
// the outer generator.
context.delegate = null;
return ContinueSentinel;
}
3 years ago
3 years ago
// Define Generator.prototype.{next,throw,return} in terms of the
// unified ._invoke helper method.
defineIteratorMethods(Gp);
3 years ago
3 years ago
Gp[toStringTagSymbol] = "Generator";
3 years ago
3 years ago
// A Generator should always return itself as the iterator object when the
// @@iterator function is called on it. Some browsers' implementations of the
// iterator prototype chain incorrectly implement this, causing the Generator
// object to not be returned from this call. This ensures that doesn't happen.
// See https://github.com/facebook/regenerator/issues/274 for more details.
Gp[iteratorSymbol] = function() {
return this;
};
3 years ago
3 years ago
Gp.toString = function() {
return "[object Generator]";
};
3 years ago
3 years ago
function pushTryEntry(locs) {
var entry = { tryLoc: locs[0] };
3 years ago
3 years ago
if (1 in locs) {
entry.catchLoc = locs[1];
}
3 years ago
3 years ago
if (2 in locs) {
entry.finallyLoc = locs[2];
entry.afterLoc = locs[3];
}
3 years ago
3 years ago
this.tryEntries.push(entry);
}
3 years ago
3 years ago
function resetTryEntry(entry) {
var record = entry.completion || {};
record.type = "normal";
delete record.arg;
entry.completion = record;
}
3 years ago
3 years ago
function Context(tryLocsList) {
// The root entry object (effectively a try statement without a catch
// or a finally block) gives us a place to store values thrown from
// locations where there is no enclosing try statement.
this.tryEntries = [{ tryLoc: "root" }];
tryLocsList.forEach(pushTryEntry, this);
this.reset(true);
}
3 years ago
3 years ago
runtime.keys = function(object) {
var keys = [];
for (var key in object) {
keys.push(key);
}
keys.reverse();
3 years ago
3 years ago
// Rather than returning an object with a next method, we keep
// things simple and return the next function itself.
return function next() {
while (keys.length) {
var key = keys.pop();
if (key in object) {
next.value = key;
next.done = false;
return next;
}
}
3 years ago
3 years ago
// To avoid creating an additional object, we just hang the .value
// and .done properties off the next function object itself. This
// also ensures that the minifier will not anonymize the function.
next.done = true;
return next;
};
};
3 years ago
3 years ago
function values(iterable) {
if (iterable) {
var iteratorMethod = iterable[iteratorSymbol];
if (iteratorMethod) {
return iteratorMethod.call(iterable);
}
3 years ago
3 years ago
if (typeof iterable.next === "function") {
return iterable;
}
3 years ago
3 years ago
if (!isNaN(iterable.length)) {
var i = -1, next = function next() {
while (++i < iterable.length) {
if (hasOwn.call(iterable, i)) {
next.value = iterable[i];
next.done = false;
return next;
}
}
3 years ago
3 years ago
next.value = undefined;
next.done = true;
3 years ago
3 years ago
return next;
};
3 years ago
3 years ago
return next.next = next;
}
}
3 years ago
3 years ago
// Return an iterator with no values.
return { next: doneResult };
}
runtime.values = values;
3 years ago
3 years ago
function doneResult() {
return { value: undefined, done: true };
}
3 years ago
3 years ago
Context.prototype = {
constructor: Context,
3 years ago
3 years ago
reset: function(skipTempReset) {
this.prev = 0;
this.next = 0;
// Resetting context._sent for legacy support of Babel's
// function.sent implementation.
this.sent = this._sent = undefined;
this.done = false;
this.delegate = null;
3 years ago
3 years ago
this.method = "next";
this.arg = undefined;
3 years ago
3 years ago
this.tryEntries.forEach(resetTryEntry);
3 years ago
3 years ago
if (!skipTempReset) {
for (var name in this) {
// Not sure about the optimal order of these conditions:
if (name.charAt(0) === "t" &&
hasOwn.call(this, name) &&
!isNaN(+name.slice(1))) {
this[name] = undefined;
}
}
}
},
3 years ago
3 years ago
stop: function() {
this.done = true;
3 years ago
3 years ago
var rootEntry = this.tryEntries[0];
var rootRecord = rootEntry.completion;
if (rootRecord.type === "throw") {
throw rootRecord.arg;
3 years ago
}
3 years ago
return this.rval;
},
3 years ago
3 years ago
dispatchException: function(exception) {
if (this.done) {
throw exception;
}
3 years ago
3 years ago
var context = this;
function handle(loc, caught) {
record.type = "throw";
record.arg = exception;
context.next = loc;
3 years ago
3 years ago
if (caught) {
// If the dispatched exception was caught by a catch block,
// then let that catch block handle the exception normally.
context.method = "next";
context.arg = undefined;
}
3 years ago
3 years ago
return !! caught;
}
3 years ago
3 years ago
for (var i = this.tryEntries.length - 1; i >= 0; --i) {
var entry = this.tryEntries[i];
var record = entry.completion;
3 years ago
3 years ago
if (entry.tryLoc === "root") {
// Exception thrown outside of any try block that could handle
// it, so set the completion value of the entire function to
// throw the exception.
return handle("end");
}
3 years ago
3 years ago
if (entry.tryLoc <= this.prev) {
var hasCatch = hasOwn.call(entry, "catchLoc");
var hasFinally = hasOwn.call(entry, "finallyLoc");
3 years ago
3 years ago
if (hasCatch && hasFinally) {
if (this.prev < entry.catchLoc) {
return handle(entry.catchLoc, true);
} else if (this.prev < entry.finallyLoc) {
return handle(entry.finallyLoc);
}
3 years ago
3 years ago
} else if (hasCatch) {
if (this.prev < entry.catchLoc) {
return handle(entry.catchLoc, true);
}
} else if (hasFinally) {
if (this.prev < entry.finallyLoc) {
return handle(entry.finallyLoc);
}
} else {
throw new Error("try statement without catch or finally");
3 years ago
}
}
}
},
3 years ago
abrupt: function(type, arg) {
for (var i = this.tryEntries.length - 1; i >= 0; --i) {
var entry = this.tryEntries[i];
if (entry.tryLoc <= this.prev &&
hasOwn.call(entry, "finallyLoc") &&
this.prev < entry.finallyLoc) {
var finallyEntry = entry;
break;
}
3 years ago
}
3 years ago
if (finallyEntry &&
(type === "break" ||
type === "continue") &&
finallyEntry.tryLoc <= arg &&
arg <= finallyEntry.finallyLoc) {
// Ignore the finally entry if control is not jumping to a
// location outside the try/catch block.
finallyEntry = null;
3 years ago
}
3 years ago
var record = finallyEntry ? finallyEntry.completion : {};
record.type = type;
record.arg = arg;
if (finallyEntry) {
this.method = "next";
this.next = finallyEntry.finallyLoc;
return ContinueSentinel;
3 years ago
}
3 years ago
return this.complete(record);
},
3 years ago
3 years ago
complete: function(record, afterLoc) {
if (record.type === "throw") {
throw record.arg;
}
3 years ago
3 years ago
if (record.type === "break" ||
record.type === "continue") {
this.next = record.arg;
} else if (record.type === "return") {
this.rval = this.arg = record.arg;
this.method = "return";
this.next = "end";
} else if (record.type === "normal" && afterLoc) {
this.next = afterLoc;
}
3 years ago
3 years ago
return ContinueSentinel;
},
3 years ago
3 years ago
finish: function(finallyLoc) {
for (var i = this.tryEntries.length - 1; i >= 0; --i) {
var entry = this.tryEntries[i];
if (entry.finallyLoc === finallyLoc) {
this.complete(entry.completion, entry.afterLoc);
resetTryEntry(entry);
return ContinueSentinel;
}
}
},
3 years ago
3 years ago
"catch": function(tryLoc) {
for (var i = this.tryEntries.length - 1; i >= 0; --i) {
var entry = this.tryEntries[i];
if (entry.tryLoc === tryLoc) {
var record = entry.completion;
if (record.type === "throw") {
var thrown = record.arg;
resetTryEntry(entry);
}
return thrown;
}
}
3 years ago
3 years ago
// The context.catch method must only be called with a location
// argument that corresponds to a known catch block.
throw new Error("illegal catch attempt");
},
3 years ago
3 years ago
delegateYield: function(iterable, resultName, nextLoc) {
this.delegate = {
iterator: values(iterable),
resultName: resultName,
nextLoc: nextLoc
};
3 years ago
3 years ago
if (this.method === "next") {
// Deliberately forget the last sent value so that we don't
// accidentally pass it on to the delegate.
this.arg = undefined;
3 years ago
}
3 years ago
return ContinueSentinel;
3 years ago
}
3 years ago
};
})(
// In sloppy mode, unbound `this` refers to the global object, fallback to
// Function constructor if we're in global strict mode. That is sadly a form
// of indirect eval which violates Content Security Policy.
(function() {
return this || (typeof self === "object" && self);
})() || Function("return this")()
);
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 113:
/*!**************************************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/pages.json?{"type":"origin-pages-json"} ***!
\**************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _default = { "pages": [{ "path": "pages/login/login", "style": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#317AFF", "navigationBarTitleText": "消防一体化综合治理平台", "navigationBarTextStyle": "white" } }, { "path": "pages/demo/demo", "style": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#317AFF", "navigationBarTitleText": "消防一体化综合治理平台", "navigationBarTextStyle": "white" } }, { "path": "pages/task/details", "style": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#57B5FF", "navigationBarTitleText": "消防一体化综合治理平台", "navigationBarTextStyle": "white" } }, { "path": "pages/task/taskreceive", "style": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#57B5FF", "navigationBarTitleText": "消防一体化综合治理平台", "navigationBarTextStyle": "white" } }, { "path": "pages/index/index", "style": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#57B5FF", "navigationBarTitleText": "消防一体化综合治理平台", "navigationBarTextStyle": "white" } }, { "path": "pages/user/user", "style": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#317AFF", "navigationBarTitleText": "", "navigationBarTextStyle": "white" } }, { "path": "pages/dadui/jiancha/jiancha", "style": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#57B5FF", "navigationBarTitleText": "消防一体化综合治理平台", "navigationBarTextStyle": "white" } }, { "path": "pages/dadui/jiuyuan/jiuyuan", "style": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#57B5FF", "navigationBarTitleText": "消防一体化综合治理平台", "navigationBarTextStyle": "white" } }, { "path": "pages/task/taskapply", "style": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#57B5FF", "navigationBarTitleText": "消防一体化综合治理平台", "navigationBarTextStyle": "white" } }], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#F8F8F8", "backgroundColor": "#F8F8F8" }, "tabBar": { "color": "#353535", "selectedColor": "#5187FF", "list": [{ "pagePath": "pages/index/index", "iconPath": "static/tab/43251.png", "selectedIconPath": "static/tab/4325.png", "text": "工作任务" }, { "pagePath": "pages/task/taskapply", "iconPath": "static/tab/43281.png", "selectedIconPath": "static/tab/4328.png", "text": "申请" }, { "pagePath": "pages/task/taskreceive", "iconPath": "static/tab/43281.png", "selectedIconPath": "static/tab/4328.png", "text": "领取" }, { "pagePath": "pages/user/user", "iconPath": "static/tab/user.png", "selectedIconPath": "static/tab/user1.png", "text": "我的" }] } };exports.default = _default;
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 114:
/*!*************************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/pages.json?{"type":"stat"} ***!
\*************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _default = { "appid": "__UNI__915967A" };exports.default = _default;
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 115:
/*!*******************************************************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/uni_modules/qiun-data-charts/js_sdk/u-charts/u-charts.js ***!
\*******************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/*
* uCharts (R)
* 高性能跨平台图表库支持H5APP小程序微信/支付宝/百度/头条/QQ/360/快手VueTaro等支持canvas的框架平台
* Copyright (C) 2018-2022 QIUN (R) 秋云 https://www.ucharts.cn All rights reserved.
* Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
* 复制使用请保留本段注释感谢支持开源
*
* uCharts (R) 官方网站
* https://www.uCharts.cn
*
* 开源地址:
* https://gitee.com/uCharts/uCharts
*
* uni-app插件市场地址
* http://ext.dcloud.net.cn/plugin?id=271
*
*/
Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;function _slicedToArray(arr, i) {return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();}function _nonIterableRest() {throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}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;}function _iterableToArrayLimit(arr, i) {if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;var _arr = [];var _n = true;var _d = false;var _e = undefined;try {for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {_arr.push(_s.value);if (i && _arr.length === i) break;}} catch (err) {_d = true;_e = err;} finally {try {if (!_n && _i["return"] != null) _i["return"]();} finally {if (_d) throw _e;}}return _arr;}function _arrayWithHoles(arr) {if (Array.isArray(arr)) return arr;}
var config = {
version: 'v2.4.3-20220505',
yAxisWidth: 15,
xAxisHeight: 22,
xAxisTextPadding: 3,
padding: [10, 10, 10, 10],
pixelRatio: 1,
rotate: false,
fontSize: 13,
fontColor: '#666666',
dataPointShape: ['circle', 'circle', 'circle', 'circle'],
color: ['#1890FF', '#91CB74', '#FAC858', '#EE6666', '#73C0DE', '#3CA272', '#FC8452', '#9A60B4', '#ea7ccc'],
linearColor: ['#0EE2F8', '#2BDCA8', '#FA7D8D', '#EB88E2', '#2AE3A0', '#0EE2F8', '#EB88E2', '#6773E3', '#F78A85'],
pieChartLinePadding: 15,
pieChartTextPadding: 5,
titleFontSize: 20,
subtitleFontSize: 15,
toolTipPadding: 3,
toolTipBackground: '#000000',
toolTipOpacity: 0.7,
toolTipLineHeight: 20,
radarLabelTextMargin: 13 };
var assign = function assign(target) {for (var _len2 = arguments.length, varArgs = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {varArgs[_key2 - 1] = arguments[_key2];}
if (target == null) {
throw new TypeError('[uCharts] Cannot convert undefined or null to object');
3 years ago
}
3 years ago
if (!varArgs || varArgs.length <= 0) {
return target;
}
// 深度合并对象
function deepAssign(obj1, obj2) {
for (var key in obj2) {
obj1[key] = obj1[key] && obj1[key].toString() === "[object Object]" ?
deepAssign(obj1[key], obj2[key]) : obj1[key] = obj2[key];
3 years ago
}
3 years ago
return obj1;
3 years ago
}
3 years ago
varArgs.forEach(function (val) {
target = deepAssign(target, val);
});
return target;
3 years ago
};
3 years ago
var util = {
toFixed: function toFixed(num, limit) {
limit = limit || 2;
if (this.isFloat(num)) {
num = num.toFixed(limit);
}
return num;
},
isFloat: function isFloat(num) {
return num % 1 !== 0;
},
approximatelyEqual: function approximatelyEqual(num1, num2) {
return Math.abs(num1 - num2) < 1e-10;
},
isSameSign: function isSameSign(num1, num2) {
return Math.abs(num1) === num1 && Math.abs(num2) === num2 || Math.abs(num1) !== num1 && Math.abs(num2) !== num2;
},
isSameXCoordinateArea: function isSameXCoordinateArea(p1, p2) {
return this.isSameSign(p1.x, p2.x);
},
isCollision: function isCollision(obj1, obj2) {
obj1.end = {};
obj1.end.x = obj1.start.x + obj1.width;
obj1.end.y = obj1.start.y - obj1.height;
obj2.end = {};
obj2.end.x = obj2.start.x + obj2.width;
obj2.end.y = obj2.start.y - obj2.height;
var flag = obj2.start.x > obj1.end.x || obj2.end.x < obj1.start.x || obj2.end.y > obj1.start.y || obj2.start.y < obj1.end.y;
return !flag;
} };
3 years ago
3 years ago
//兼容H5点击事件
function getH5Offset(e) {
e.mp = {
changedTouches: [] };
e.mp.changedTouches.push({
x: e.offsetX,
y: e.offsetY });
return e;
3 years ago
}
3 years ago
// hex 转 rgba
function hexToRgb(hexValue, opc) {
var rgx = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
var hex = hexValue.replace(rgx, function (m, r, g, b) {
return r + r + g + g + b + b;
});
var rgb = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
var r = parseInt(rgb[1], 16);
var g = parseInt(rgb[2], 16);
var b = parseInt(rgb[3], 16);
return 'rgba(' + r + ',' + g + ',' + b + ',' + opc + ')';
3 years ago
}
3 years ago
function findRange(num, type, limit) {
if (isNaN(num)) {
throw new Error('[uCharts] series数据需为Number格式');
}
limit = limit || 10;
type = type ? type : 'upper';
var multiple = 1;
while (limit < 1) {
limit *= 10;
multiple *= 10;
}
if (type === 'upper') {
num = Math.ceil(num * multiple);
} else {
num = Math.floor(num * multiple);
}
while (num % limit !== 0) {
if (type === 'upper') {
if (num == num + 1) {//修复数据值过大num++无效的bug by 向日葵 @xrk_jy
break;
3 years ago
}
3 years ago
num++;
} else {
num--;
3 years ago
}
}
3 years ago
return num / multiple;
3 years ago
}
3 years ago
function calCandleMA(dayArr, nameArr, colorArr, kdata) {
var seriesTemp = [];
for (var k = 0; k < dayArr.length; k++) {
var seriesItem = {
data: [],
name: nameArr[k],
color: colorArr[k] };
3 years ago
3 years ago
for (var i = 0, len = kdata.length; i < len; i++) {
if (i < dayArr[k]) {
seriesItem.data.push(null);
continue;
}
var sum = 0;
for (var j = 0; j < dayArr[k]; j++) {
sum += kdata[i - j][1];
3 years ago
}
3 years ago
seriesItem.data.push(+(sum / dayArr[k]).toFixed(3));
3 years ago
}
3 years ago
seriesTemp.push(seriesItem);
3 years ago
}
3 years ago
return seriesTemp;
3 years ago
}
3 years ago
function calValidDistance(self, distance, chartData, config, opts) {
var dataChartAreaWidth = opts.width - opts.area[1] - opts.area[3];
var dataChartWidth = chartData.eachSpacing * (opts.chartData.xAxisData.xAxisPoints.length - 1);
if (opts.type == 'mount' && opts.extra && opts.extra.mount && opts.extra.mount.widthRatio && opts.extra.mount.widthRatio > 1) {
if (opts.extra.mount.widthRatio > 2) opts.extra.mount.widthRatio = 2;
dataChartWidth += (opts.extra.mount.widthRatio - 1) * chartData.eachSpacing;
}
var validDistance = distance;
if (distance >= 0) {
validDistance = 0;
self.uevent.trigger('scrollLeft');
self.scrollOption.position = 'left';
opts.xAxis.scrollPosition = 'left';
} else if (Math.abs(distance) >= dataChartWidth - dataChartAreaWidth) {
validDistance = dataChartAreaWidth - dataChartWidth;
self.uevent.trigger('scrollRight');
self.scrollOption.position = 'right';
opts.xAxis.scrollPosition = 'right';
} else {
self.scrollOption.position = distance;
opts.xAxis.scrollPosition = distance;
3 years ago
}
3 years ago
return validDistance;
3 years ago
}
3 years ago
function isInAngleRange(angle, startAngle, endAngle) {
function adjust(angle) {
while (angle < 0) {
angle += 2 * Math.PI;
}
while (angle > 2 * Math.PI) {
angle -= 2 * Math.PI;
}
return angle;
3 years ago
}
3 years ago
angle = adjust(angle);
startAngle = adjust(startAngle);
endAngle = adjust(endAngle);
if (startAngle > endAngle) {
endAngle += 2 * Math.PI;
if (angle < startAngle) {
angle += 2 * Math.PI;
}
3 years ago
}
3 years ago
return angle >= startAngle && angle <= endAngle;
}
3 years ago
3 years ago
function createCurveControlPoints(points, i) {
function isNotMiddlePoint(points, i) {
if (points[i - 1] && points[i + 1]) {
return points[i].y >= Math.max(points[i - 1].y, points[i + 1].y) || points[i].y <= Math.min(points[i - 1].y,
points[i + 1].y);
} else {
return false;
3 years ago
}
3 years ago
}
function isNotMiddlePointX(points, i) {
if (points[i - 1] && points[i + 1]) {
return points[i].x >= Math.max(points[i - 1].x, points[i + 1].x) || points[i].x <= Math.min(points[i - 1].x,
points[i + 1].x);
} else {
return false;
3 years ago
}
}
3 years ago
var a = 0.2;
var b = 0.2;
var pAx = null;
var pAy = null;
var pBx = null;
var pBy = null;
if (i < 1) {
pAx = points[0].x + (points[1].x - points[0].x) * a;
pAy = points[0].y + (points[1].y - points[0].y) * a;
} else {
pAx = points[i].x + (points[i + 1].x - points[i - 1].x) * a;
pAy = points[i].y + (points[i + 1].y - points[i - 1].y) * a;
}
3 years ago
3 years ago
if (i > points.length - 3) {
var last = points.length - 1;
pBx = points[last].x - (points[last].x - points[last - 1].x) * b;
pBy = points[last].y - (points[last].y - points[last - 1].y) * b;
} else {
pBx = points[i + 1].x - (points[i + 2].x - points[i].x) * b;
pBy = points[i + 1].y - (points[i + 2].y - points[i].y) * b;
3 years ago
}
3 years ago
if (isNotMiddlePoint(points, i + 1)) {
pBy = points[i + 1].y;
3 years ago
}
3 years ago
if (isNotMiddlePoint(points, i)) {
pAy = points[i].y;
3 years ago
}
3 years ago
if (isNotMiddlePointX(points, i + 1)) {
pBx = points[i + 1].x;
3 years ago
}
3 years ago
if (isNotMiddlePointX(points, i)) {
pAx = points[i].x;
3 years ago
}
3 years ago
if (pAy >= Math.max(points[i].y, points[i + 1].y) || pAy <= Math.min(points[i].y, points[i + 1].y)) {
pAy = points[i].y;
}
if (pBy >= Math.max(points[i].y, points[i + 1].y) || pBy <= Math.min(points[i].y, points[i + 1].y)) {
pBy = points[i + 1].y;
}
if (pAx >= Math.max(points[i].x, points[i + 1].x) || pAx <= Math.min(points[i].x, points[i + 1].x)) {
pAx = points[i].x;
}
if (pBx >= Math.max(points[i].x, points[i + 1].x) || pBx <= Math.min(points[i].x, points[i + 1].x)) {
pBx = points[i + 1].x;
}
return {
ctrA: {
x: pAx,
y: pAy },
ctrB: {
x: pBx,
y: pBy } };
3 years ago
}
3 years ago
function convertCoordinateOrigin(x, y, center) {
return {
x: center.x + x,
y: center.y - y };
3 years ago
3 years ago
}
3 years ago
3 years ago
function avoidCollision(obj, target) {
if (target) {
// is collision test
while (util.isCollision(obj, target)) {
if (obj.start.x > 0) {
obj.start.y--;
} else if (obj.start.x < 0) {
obj.start.y++;
} else {
if (obj.start.y > 0) {
obj.start.y++;
} else {
obj.start.y--;
}
}
}
3 years ago
}
3 years ago
return obj;
3 years ago
}
3 years ago
function fixPieSeries(series, opts, config) {
var pieSeriesArr = [];
if (series.length > 0 && series[0].data.constructor.toString().indexOf('Array') > -1) {
opts._pieSeries_ = series;
var oldseries = series[0].data;
for (var i = 0; i < oldseries.length; i++) {
oldseries[i].formatter = series[0].formatter;
oldseries[i].data = oldseries[i].value;
pieSeriesArr.push(oldseries[i]);
}
opts.series = pieSeriesArr;
} else {
pieSeriesArr = series;
3 years ago
}
3 years ago
return pieSeriesArr;
3 years ago
}
3 years ago
function fillSeries(series, opts, config) {
var index = 0;
for (var i = 0; i < series.length; i++) {
var item = series[i];
if (!item.color) {
item.color = config.color[index];
index = (index + 1) % config.color.length;
3 years ago
}
3 years ago
if (!item.linearIndex) {
item.linearIndex = i;
}
if (!item.index) {
item.index = 0;
}
if (!item.type) {
item.type = opts.type;
}
if (typeof item.show == "undefined") {
item.show = true;
}
if (!item.type) {
item.type = opts.type;
}
if (!item.pointShape) {
item.pointShape = "circle";
}
if (!item.legendShape) {
switch (item.type) {
case 'line':
item.legendShape = "line";
break;
case 'column':
case 'bar':
item.legendShape = "rect";
break;
case 'area':
case 'mount':
item.legendShape = "triangle";
break;
default:
item.legendShape = "circle";}
3 years ago
}
}
3 years ago
return series;
}
3 years ago
3 years ago
function fillCustomColor(linearType, customColor, series, config) {
var newcolor = customColor || [];
if (linearType == 'custom' && newcolor.length == 0) {
newcolor = config.linearColor;
3 years ago
}
3 years ago
if (linearType == 'custom' && newcolor.length < series.length) {
var chazhi = series.length - newcolor.length;
for (var i = 0; i < chazhi; i++) {
newcolor.push(config.linearColor[(i + 1) % config.linearColor.length]);
3 years ago
}
}
3 years ago
return newcolor;
3 years ago
}
3 years ago
function getDataRange(minData, maxData) {
var limit = 0;
var range = maxData - minData;
if (range >= 10000) {
limit = 1000;
} else if (range >= 1000) {
limit = 100;
} else if (range >= 100) {
limit = 10;
} else if (range >= 10) {
limit = 5;
} else if (range >= 1) {
limit = 1;
} else if (range >= 0.1) {
limit = 0.1;
} else if (range >= 0.01) {
limit = 0.01;
} else if (range >= 0.001) {
limit = 0.001;
} else if (range >= 0.0001) {
limit = 0.0001;
} else if (range >= 0.00001) {
limit = 0.00001;
3 years ago
} else {
3 years ago
limit = 0.000001;
3 years ago
}
return {
3 years ago
minRange: findRange(minData, 'lower', limit),
maxRange: findRange(maxData, 'upper', limit) };
3 years ago
}
3 years ago
function measureText(text, fontSize, context) {
var width = 0;
text = String(text);
3 years ago
3 years ago
if (context !== false && context !== undefined && context.setFontSize && context.measureText) {
context.setFontSize(fontSize);
return context.measureText(text).width;
3 years ago
} else {
3 years ago
var text = text.split('');
for (var i = 0; i < text.length; i++) {
var item = text[i];
if (/[a-zA-Z]/.test(item)) {
width += 7;
} else if (/[0-9]/.test(item)) {
width += 5.5;
} else if (/\./.test(item)) {
width += 2.7;
} else if (/-/.test(item)) {
width += 3.25;
} else if (/:/.test(item)) {
width += 2.5;
} else if (/[\u4e00-\u9fa5]/.test(item)) {
width += 10;
} else if (/\(|\)/.test(item)) {
width += 3.73;
} else if (/\s/.test(item)) {
width += 2.5;
} else if (/%/.test(item)) {
width += 8;
} else {
width += 10;
}
}
return width * fontSize / 10;
3 years ago
}
}
3 years ago
function dataCombine(series) {
return series.reduce(function (a, b) {
return (a.data ? a.data : a).concat(b.data);
}, []);
3 years ago
}
3 years ago
function dataCombineStack(series, len) {
var sum = new Array(len);
for (var j = 0; j < sum.length; j++) {
sum[j] = 0;
}
for (var i = 0; i < series.length; i++) {
for (var j = 0; j < sum.length; j++) {
sum[j] += series[i].data[j];
3 years ago
}
}
3 years ago
return series.reduce(function (a, b) {
return (a.data ? a.data : a).concat(b.data).concat(sum);
}, []);
3 years ago
}
3 years ago
function getTouches(touches, opts, e) {
var x, y;
if (touches.clientX) {
if (opts.rotate) {
y = opts.height - touches.clientX * opts.pix;
x = (touches.pageY - e.currentTarget.offsetTop - opts.height / opts.pix / 2 * (opts.pix - 1)) * opts.pix;
} else {
x = touches.clientX * opts.pix;
y = (touches.pageY - e.currentTarget.offsetTop - opts.height / opts.pix / 2 * (opts.pix - 1)) * opts.pix;
}
} else {
if (opts.rotate) {
y = opts.height - touches.x * opts.pix;
x = touches.y * opts.pix;
} else {
x = touches.x * opts.pix;
y = touches.y * opts.pix;
3 years ago
}
}
3 years ago
return {
x: x,
y: y };
3 years ago
}
3 years ago
function getSeriesDataItem(series, index, group) {
var data = [];
var newSeries = [];
var indexIsArr = index.constructor.toString().indexOf('Array') > -1;
if (indexIsArr) {
var tempSeries = filterSeries(series);
for (var i = 0; i < group.length; i++) {
newSeries.push(tempSeries[group[i]]);
}
} else {
newSeries = series;
};
for (var _i = 0; _i < newSeries.length; _i++) {
var item = newSeries[_i];
var tmpindex = -1;
if (indexIsArr) {
tmpindex = index[_i];
} else {
tmpindex = index;
}
if (item.data[tmpindex] !== null && typeof item.data[tmpindex] !== 'undefined' && item.show) {
var seriesItem = {};
seriesItem.color = item.color;
seriesItem.type = item.type;
seriesItem.style = item.style;
seriesItem.pointShape = item.pointShape;
seriesItem.disableLegend = item.disableLegend;
seriesItem.name = item.name;
seriesItem.show = item.show;
seriesItem.data = item.formatter ? item.formatter(item.data[tmpindex]) : item.data[tmpindex];
data.push(seriesItem);
3 years ago
}
}
3 years ago
return data;
3 years ago
}
3 years ago
function getMaxTextListLength(list, fontSize, context) {
var lengthList = list.map(function (item) {
return measureText(item, fontSize, context);
});
return Math.max.apply(null, lengthList);
}
function getRadarCoordinateSeries(length) {
var eachAngle = 2 * Math.PI / length;
var CoordinateSeries = [];
for (var i = 0; i < length; i++) {
CoordinateSeries.push(eachAngle * i);
3 years ago
}
3 years ago
return CoordinateSeries.map(function (item) {
return -1 * item + Math.PI / 2;
});
3 years ago
}
3 years ago
function getToolTipData(seriesData, opts, index, group, categories) {
var option = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {};
var calPoints = opts.chartData.calPoints ? opts.chartData.calPoints : [];
var points = {};
if (group.length > 0) {
var filterPoints = [];
for (var i = 0; i < group.length; i++) {
filterPoints.push(calPoints[group[i]]);
}
points = filterPoints[0][index[0]];
} else {
for (var _i2 = 0; _i2 < calPoints.length; _i2++) {
if (calPoints[_i2][index]) {
points = calPoints[_i2][index];
break;
}
}
};
var textList = seriesData.map(function (item) {
var titleText = null;
if (opts.categories && opts.categories.length > 0) {
titleText = categories[index];
};
return {
text: option.formatter ? option.formatter(item, titleText, index, opts) : item.name + ': ' + item.data,
color: item.color };
3 years ago
3 years ago
});
var offset = {
x: Math.round(points.x),
y: Math.round(points.y) };
3 years ago
3 years ago
return {
textList: textList,
offset: offset };
3 years ago
3 years ago
}
3 years ago
3 years ago
function getMixToolTipData(seriesData, opts, index, categories) {
var option = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {};
var points = opts.chartData.xAxisPoints[index] + opts.chartData.eachSpacing / 2;
var textList = seriesData.map(function (item) {
return {
text: option.formatter ? option.formatter(item, categories[index], index, opts) : item.name + ': ' + item.data,
color: item.color,
disableLegend: item.disableLegend ? true : false };
3 years ago
3 years ago
});
textList = textList.filter(function (item) {
if (item.disableLegend !== true) {
return item;
3 years ago
}
});
3 years ago
var offset = {
x: Math.round(points),
y: 0 };
3 years ago
3 years ago
return {
textList: textList,
offset: offset };
3 years ago
3 years ago
}
3 years ago
3 years ago
function getCandleToolTipData(series, seriesData, opts, index, categories, extra) {
var option = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : {};
var calPoints = opts.chartData.calPoints;
var upColor = extra.color.upFill;
var downColor = extra.color.downFill;
//颜色顺序为开盘,收盘,最低,最高
var color = [upColor, upColor, downColor, upColor];
var textList = [];
seriesData.map(function (item) {
if (index == 0) {
if (item.data[1] - item.data[0] < 0) {
color[1] = downColor;
} else {
color[1] = upColor;
3 years ago
}
3 years ago
} else {
if (item.data[0] < series[index - 1][1]) {
color[0] = downColor;
3 years ago
}
3 years ago
if (item.data[1] < item.data[0]) {
color[1] = downColor;
}
if (item.data[2] > series[index - 1][1]) {
color[2] = upColor;
}
if (item.data[3] < series[index - 1][1]) {
color[3] = downColor;
3 years ago
}
}
3 years ago
var text1 = {
text: '开盘:' + item.data[0],
color: color[0] };
3 years ago
3 years ago
var text2 = {
text: '收盘:' + item.data[1],
color: color[1] };
3 years ago
3 years ago
var text3 = {
text: '最低:' + item.data[2],
color: color[2] };
3 years ago
3 years ago
var text4 = {
text: '最高:' + item.data[3],
color: color[3] };
3 years ago
3 years ago
textList.push(text1, text2, text3, text4);
});
var validCalPoints = [];
var offset = {
x: 0,
y: 0 };
3 years ago
3 years ago
for (var i = 0; i < calPoints.length; i++) {
var points = calPoints[i];
if (typeof points[index] !== 'undefined' && points[index] !== null) {
validCalPoints.push(points[index]);
3 years ago
}
}
3 years ago
offset.x = Math.round(validCalPoints[0][0].x);
return {
textList: textList,
offset: offset };
3 years ago
}
3 years ago
function filterSeries(series) {
var tempSeries = [];
for (var i = 0; i < series.length; i++) {
if (series[i].show == true) {
tempSeries.push(series[i]);
3 years ago
}
}
3 years ago
return tempSeries;
3 years ago
}
3 years ago
function findCurrentIndex(currentPoints, calPoints, opts, config) {
var offset = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0;
var current = { index: -1, group: [] };
var spacing = opts.chartData.eachSpacing / 2;
var xAxisPoints = [];
if (calPoints && calPoints.length > 0) {
if (!opts.categories) {
spacing = 0;
} else {
for (var i = 1; i < opts.chartData.xAxisPoints.length; i++) {
xAxisPoints.push(opts.chartData.xAxisPoints[i] - spacing);
3 years ago
}
3 years ago
if ((opts.type == 'line' || opts.type == 'area') && opts.xAxis.boundaryGap == 'justify') {
xAxisPoints = opts.chartData.xAxisPoints;
3 years ago
}
}
3 years ago
if (isInExactChartArea(currentPoints, opts, config)) {
if (!opts.categories) {
var timePoints = Array(calPoints.length);
for (var _i3 = 0; _i3 < calPoints.length; _i3++) {
timePoints[_i3] = Array(calPoints[_i3].length);
for (var j = 0; j < calPoints[_i3].length; j++) {
timePoints[_i3][j] = Math.abs(calPoints[_i3][j].x - currentPoints.x);
}
};
var pointValue = Array(timePoints.length);
var pointIndex = Array(timePoints.length);
for (var _i4 = 0; _i4 < timePoints.length; _i4++) {
pointValue[_i4] = Math.min.apply(null, timePoints[_i4]);
pointIndex[_i4] = timePoints[_i4].indexOf(pointValue[_i4]);
}
var minValue = Math.min.apply(null, pointValue);
current.index = [];
for (var _i5 = 0; _i5 < pointValue.length; _i5++) {
if (pointValue[_i5] == minValue) {
current.group.push(_i5);
current.index.push(pointIndex[_i5]);
}
};
} else {
xAxisPoints.forEach(function (item, index) {
if (currentPoints.x + offset + spacing > item) {
current.index = index;
}
});
}
3 years ago
}
}
3 years ago
return current;
3 years ago
}
3 years ago
function findBarChartCurrentIndex(currentPoints, calPoints, opts, config) {
var offset = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 0;
var current = { index: -1, group: [] };
var spacing = opts.chartData.eachSpacing / 2;
var yAxisPoints = opts.chartData.yAxisPoints;
if (calPoints && calPoints.length > 0) {
if (isInExactChartArea(currentPoints, opts, config)) {
yAxisPoints.forEach(function (item, index) {
if (currentPoints.y + offset + spacing > item) {
current.index = index;
}
});
3 years ago
}
}
3 years ago
return current;
3 years ago
}
3 years ago
function findLegendIndex(currentPoints, legendData, opts) {
var currentIndex = -1;
var gap = 0;
if (isInExactLegendArea(currentPoints, legendData.area)) {
var points = legendData.points;
var index = -1;
for (var i = 0, len = points.length; i < len; i++) {
var item = points[i];
for (var j = 0; j < item.length; j++) {
index += 1;
var area = item[j]['area'];
if (area && currentPoints.x > area[0] - gap && currentPoints.x < area[2] + gap && currentPoints.y > area[1] - gap && currentPoints.y < area[3] + gap) {
currentIndex = index;
break;
3 years ago
}
}
}
3 years ago
return currentIndex;
3 years ago
}
3 years ago
return currentIndex;
3 years ago
}
3 years ago
function isInExactLegendArea(currentPoints, area) {
return currentPoints.x > area.start.x && currentPoints.x < area.end.x && currentPoints.y > area.start.y && currentPoints.y < area.end.y;
3 years ago
}
3 years ago
function isInExactChartArea(currentPoints, opts, config) {
return currentPoints.x <= opts.width - opts.area[1] + 10 && currentPoints.x >= opts.area[3] - 10 && currentPoints.y >= opts.area[0] && currentPoints.y <= opts.height - opts.area[2];
}
3 years ago
3 years ago
function findRadarChartCurrentIndex(currentPoints, radarData, count) {
var eachAngleArea = 2 * Math.PI / count;
var currentIndex = -1;
if (isInExactPieChartArea(currentPoints, radarData.center, radarData.radius)) {
var fixAngle = function fixAngle(angle) {
if (angle < 0) {
angle += 2 * Math.PI;
}
if (angle > 2 * Math.PI) {
angle -= 2 * Math.PI;
}
return angle;
};
var angle = Math.atan2(radarData.center.y - currentPoints.y, currentPoints.x - radarData.center.x);
angle = -1 * angle;
if (angle < 0) {
angle += 2 * Math.PI;
}
var angleList = radarData.angleList.map(function (item) {
item = fixAngle(-1 * item);
return item;
});
angleList.forEach(function (item, index) {
var rangeStart = fixAngle(item - eachAngleArea / 2);
var rangeEnd = fixAngle(item + eachAngleArea / 2);
if (rangeEnd < rangeStart) {
rangeEnd += 2 * Math.PI;
}
if (angle >= rangeStart && angle <= rangeEnd || angle + 2 * Math.PI >= rangeStart && angle + 2 * Math.PI <= rangeEnd) {
currentIndex = index;
}
});
}
return currentIndex;
}
3 years ago
3 years ago
function findFunnelChartCurrentIndex(currentPoints, funnelData) {
var currentIndex = -1;
for (var i = 0, len = funnelData.series.length; i < len; i++) {
var item = funnelData.series[i];
if (currentPoints.x > item.funnelArea[0] && currentPoints.x < item.funnelArea[2] && currentPoints.y > item.funnelArea[1] && currentPoints.y < item.funnelArea[3]) {
currentIndex = i;
break;
3 years ago
}
}
3 years ago
return currentIndex;
3 years ago
}
3 years ago
function findWordChartCurrentIndex(currentPoints, wordData) {
var currentIndex = -1;
for (var i = 0, len = wordData.length; i < len; i++) {
var item = wordData[i];
if (currentPoints.x > item.area[0] && currentPoints.x < item.area[2] && currentPoints.y > item.area[1] && currentPoints.y < item.area[3]) {
currentIndex = i;
break;
}
}
return currentIndex;
3 years ago
}
3 years ago
function findMapChartCurrentIndex(currentPoints, opts) {
var currentIndex = -1;
var cData = opts.chartData.mapData;
var data = opts.series;
var tmp = pointToCoordinate(currentPoints.y, currentPoints.x, cData.bounds, cData.scale, cData.xoffset, cData.yoffset);
var poi = [tmp.x, tmp.y];
for (var i = 0, len = data.length; i < len; i++) {
var item = data[i].geometry.coordinates;
if (isPoiWithinPoly(poi, item, opts.chartData.mapData.mercator)) {
currentIndex = i;
break;
}
}
return currentIndex;
3 years ago
}
3 years ago
function findRoseChartCurrentIndex(currentPoints, pieData, opts) {
var currentIndex = -1;
var series = getRoseDataPoints(opts._series_, opts.extra.rose.type, pieData.radius, pieData.radius);
if (pieData && pieData.center && isInExactPieChartArea(currentPoints, pieData.center, pieData.radius)) {
var angle = Math.atan2(pieData.center.y - currentPoints.y, currentPoints.x - pieData.center.x);
angle = -angle;
if (opts.extra.rose && opts.extra.rose.offsetAngle) {
angle = angle - opts.extra.rose.offsetAngle * Math.PI / 180;
}
for (var i = 0, len = series.length; i < len; i++) {
if (isInAngleRange(angle, series[i]._start_, series[i]._start_ + series[i]._rose_proportion_ * 2 * Math.PI)) {
currentIndex = i;
break;
3 years ago
}
}
}
3 years ago
return currentIndex;
3 years ago
}
3 years ago
function findPieChartCurrentIndex(currentPoints, pieData, opts) {
var currentIndex = -1;
var series = getPieDataPoints(pieData.series);
if (pieData && pieData.center && isInExactPieChartArea(currentPoints, pieData.center, pieData.radius)) {
var angle = Math.atan2(pieData.center.y - currentPoints.y, currentPoints.x - pieData.center.x);
angle = -angle;
if (opts.extra.pie && opts.extra.pie.offsetAngle) {
angle = angle - opts.extra.pie.offsetAngle * Math.PI / 180;
}
if (opts.extra.ring && opts.extra.ring.offsetAngle) {
angle = angle - opts.extra.ring.offsetAngle * Math.PI / 180;
}
for (var i = 0, len = series.length; i < len; i++) {
if (isInAngleRange(angle, series[i]._start_, series[i]._start_ + series[i]._proportion_ * 2 * Math.PI)) {
currentIndex = i;
break;
}
}
3 years ago
}
3 years ago
return currentIndex;
3 years ago
}
3 years ago
function isInExactPieChartArea(currentPoints, center, radius) {
return Math.pow(currentPoints.x - center.x, 2) + Math.pow(currentPoints.y - center.y, 2) <= Math.pow(radius, 2);
3 years ago
}
3 years ago
function splitPoints(points, eachSeries) {
var newPoints = [];
var items = [];
points.forEach(function (item, index) {
if (eachSeries.connectNulls) {
if (item !== null) {
items.push(item);
3 years ago
}
3 years ago
} else {
if (item !== null) {
items.push(item);
} else {
if (items.length) {
newPoints.push(items);
3 years ago
}
3 years ago
items = [];
3 years ago
}
}
3 years ago
});
if (items.length) {
newPoints.push(items);
3 years ago
}
3 years ago
return newPoints;
3 years ago
}
3 years ago
function calLegendData(series, opts, config, chartData, context) {
var legendData = {
area: {
start: {
x: 0,
y: 0 },
end: {
x: 0,
y: 0 },
width: 0,
height: 0,
wholeWidth: 0,
wholeHeight: 0 },
points: [],
widthArr: [],
heightArr: [] };
if (opts.legend.show === false) {
chartData.legendData = legendData;
return legendData;
3 years ago
}
3 years ago
var padding = opts.legend.padding * opts.pix;
var margin = opts.legend.margin * opts.pix;
var fontSize = opts.legend.fontSize ? opts.legend.fontSize * opts.pix : config.fontSize;
var shapeWidth = 15 * opts.pix;
var shapeRight = 5 * opts.pix;
var lineHeight = Math.max(opts.legend.lineHeight * opts.pix, fontSize);
if (opts.legend.position == 'top' || opts.legend.position == 'bottom') {
var legendList = [];
var widthCount = 0;
var widthCountArr = [];
var currentRow = [];
for (var i = 0; i < series.length; i++) {
var item = series[i];
var legendText = item.legendText ? item.legendText : item.name;
var itemWidth = shapeWidth + shapeRight + measureText(legendText || 'undefined', fontSize, context) + opts.legend.itemGap * opts.pix;
if (widthCount + itemWidth > opts.width - opts.area[1] - opts.area[3]) {
legendList.push(currentRow);
widthCountArr.push(widthCount - opts.legend.itemGap * opts.pix);
widthCount = itemWidth;
currentRow = [item];
3 years ago
} else {
3 years ago
widthCount += itemWidth;
currentRow.push(item);
3 years ago
}
}
3 years ago
if (currentRow.length) {
legendList.push(currentRow);
widthCountArr.push(widthCount - opts.legend.itemGap * opts.pix);
legendData.widthArr = widthCountArr;
var legendWidth = Math.max.apply(null, widthCountArr);
switch (opts.legend.float) {
case 'left':
legendData.area.start.x = opts.area[3];
legendData.area.end.x = opts.area[3] + legendWidth + 2 * padding;
break;
case 'right':
legendData.area.start.x = opts.width - opts.area[1] - legendWidth - 2 * padding;
legendData.area.end.x = opts.width - opts.area[1];
break;
default:
legendData.area.start.x = (opts.width - legendWidth) / 2 - padding;
legendData.area.end.x = (opts.width + legendWidth) / 2 + padding;}
legendData.area.width = legendWidth + 2 * padding;
legendData.area.wholeWidth = legendWidth + 2 * padding;
legendData.area.height = legendList.length * lineHeight + 2 * padding;
legendData.area.wholeHeight = legendList.length * lineHeight + 2 * padding + 2 * margin;
legendData.points = legendList;
}
} else {
var len = series.length;
var maxHeight = opts.height - opts.area[0] - opts.area[2] - 2 * margin - 2 * padding;
var maxLength = Math.min(Math.floor(maxHeight / lineHeight), len);
legendData.area.height = maxLength * lineHeight + padding * 2;
legendData.area.wholeHeight = maxLength * lineHeight + padding * 2;
switch (opts.legend.float) {
case 'top':
legendData.area.start.y = opts.area[0] + margin;
legendData.area.end.y = opts.area[0] + margin + legendData.area.height;
break;
case 'bottom':
legendData.area.start.y = opts.height - opts.area[2] - margin - legendData.area.height;
legendData.area.end.y = opts.height - opts.area[2] - margin;
break;
default:
legendData.area.start.y = (opts.height - legendData.area.height) / 2;
legendData.area.end.y = (opts.height + legendData.area.height) / 2;}
var lineNum = len % maxLength === 0 ? len / maxLength : Math.floor(len / maxLength + 1);
var _currentRow = [];
for (var _i6 = 0; _i6 < lineNum; _i6++) {
var temp = series.slice(_i6 * maxLength, _i6 * maxLength + maxLength);
_currentRow.push(temp);
}
legendData.points = _currentRow;
if (_currentRow.length) {
for (var _i7 = 0; _i7 < _currentRow.length; _i7++) {
var _item = _currentRow[_i7];
var maxWidth = 0;
for (var j = 0; j < _item.length; j++) {
var _itemWidth = shapeWidth + shapeRight + measureText(_item[j].name || 'undefined', fontSize, context) + opts.legend.itemGap * opts.pix;
if (_itemWidth > maxWidth) {
maxWidth = _itemWidth;
}
}
legendData.widthArr.push(maxWidth);
legendData.heightArr.push(_item.length * lineHeight + padding * 2);
}
var _legendWidth = 0;
for (var _i8 = 0; _i8 < legendData.widthArr.length; _i8++) {
_legendWidth += legendData.widthArr[_i8];
}
legendData.area.width = _legendWidth - opts.legend.itemGap * opts.pix + 2 * padding;
legendData.area.wholeWidth = legendData.area.width + padding;
3 years ago
}
}
3 years ago
switch (opts.legend.position) {
case 'top':
legendData.area.start.y = opts.area[0] + margin;
legendData.area.end.y = opts.area[0] + margin + legendData.area.height;
break;
case 'bottom':
legendData.area.start.y = opts.height - opts.area[2] - legendData.area.height - margin;
legendData.area.end.y = opts.height - opts.area[2] - margin;
break;
case 'left':
legendData.area.start.x = opts.area[3];
legendData.area.end.x = opts.area[3] + legendData.area.width;
break;
case 'right':
legendData.area.start.x = opts.width - opts.area[1] - legendData.area.width;
legendData.area.end.x = opts.width - opts.area[1];
break;}
3 years ago
3 years ago
chartData.legendData = legendData;
return legendData;
3 years ago
}
3 years ago
function calCategoriesData(categories, opts, config, eachSpacing, context) {
var result = {
angle: 0,
xAxisHeight: config.xAxisHeight };
3 years ago
3 years ago
var fontSize = opts.xAxis.fontSize * opts.pix || config.fontSize;
var categoriesTextLenth = categories.map(function (item, index) {
var xitem = opts.xAxis.formatter ? opts.xAxis.formatter(item, index, opts) : item;
return measureText(String(xitem), fontSize, context);
});
var maxTextLength = Math.max.apply(this, categoriesTextLenth);
if (opts.xAxis.rotateLabel == true) {
result.angle = opts.xAxis.rotateAngle * Math.PI / 180;
var tempHeight = 2 * config.xAxisTextPadding + Math.abs(maxTextLength * Math.sin(result.angle));
tempHeight = tempHeight < fontSize + 2 * config.xAxisTextPadding ? tempHeight + 2 * config.xAxisTextPadding : tempHeight;
if (opts.enableScroll == true && opts.xAxis.scrollShow == true) {
tempHeight += 12 * opts.pix;
3 years ago
}
3 years ago
result.xAxisHeight = tempHeight;
3 years ago
}
3 years ago
if (opts.xAxis.disabled) {
result.xAxisHeight = 0;
3 years ago
}
3 years ago
return result;
3 years ago
}
3 years ago
function getXAxisTextList(series, opts, config, stack) {
var index = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : -1;
var data;
if (stack == 'stack') {
data = dataCombineStack(series, opts.categories.length);
} else {
data = dataCombine(series);
3 years ago
}
3 years ago
var sorted = [];
// remove null from data
data = data.filter(function (item) {
//return item !== null;
if (typeof item === 'object' && item !== null) {
if (item.constructor.toString().indexOf('Array') > -1) {
return item !== null;
} else {
return item.value !== null;
3 years ago
}
} else {
3 years ago
return item !== null;
}
});
data.map(function (item) {
if (typeof item === 'object') {
if (item.constructor.toString().indexOf('Array') > -1) {
if (opts.type == 'candle') {
item.map(function (subitem) {
sorted.push(subitem);
});
} else {
sorted.push(item[0]);
}
} else {
sorted.push(item.value);
3 years ago
}
3 years ago
} else {
sorted.push(item);
3 years ago
}
3 years ago
});
3 years ago
3 years ago
var minData = 0;
var maxData = 0;
if (sorted.length > 0) {
minData = Math.min.apply(this, sorted);
maxData = Math.max.apply(this, sorted);
}
//为了兼容v1.9.0之前的项目
if (index > -1) {
if (typeof opts.xAxis.data[index].min === 'number') {
minData = Math.min(opts.xAxis.data[index].min, minData);
}
if (typeof opts.xAxis.data[index].max === 'number') {
maxData = Math.max(opts.xAxis.data[index].max, maxData);
3 years ago
}
} else {
3 years ago
if (typeof opts.xAxis.min === 'number') {
minData = Math.min(opts.xAxis.min, minData);
}
if (typeof opts.xAxis.max === 'number') {
maxData = Math.max(opts.xAxis.max, maxData);
}
3 years ago
}
3 years ago
if (minData === maxData) {
var rangeSpan = maxData || 10;
maxData += rangeSpan;
3 years ago
}
3 years ago
//var dataRange = getDataRange(minData, maxData);
var minRange = minData;
var maxRange = maxData;
var range = [];
var eachRange = (maxRange - minRange) / opts.xAxis.splitNumber;
for (var i = 0; i <= opts.xAxis.splitNumber; i++) {
range.push(minRange + eachRange * i);
}
return range;
3 years ago
}
3 years ago
function calXAxisData(series, opts, config, context) {
//堆叠图重算Y轴
var columnstyle = assign({}, {
type: "" },
opts.extra.bar);
var result = {
angle: 0,
xAxisHeight: config.xAxisHeight };
3 years ago
3 years ago
result.ranges = getXAxisTextList(series, opts, config, columnstyle.type);
result.rangesFormat = result.ranges.map(function (item) {
//item = opts.xAxis.formatter ? opts.xAxis.formatter(item) : util.toFixed(item, 2);
item = util.toFixed(item, 2);
return item;
});
var xAxisScaleValues = result.ranges.map(function (item) {
// 如果刻度值是浮点数,则保留两位小数
item = util.toFixed(item, 2);
// 若有自定义格式则调用自定义的格式化函数
//item = opts.xAxis.formatter ? opts.xAxis.formatter(Number(item)) : item;
return item;
});
result = Object.assign(result, getXAxisPoints(xAxisScaleValues, opts, config));
// 计算X轴刻度的属性譬如每个刻度的间隔,刻度的起始点\结束点以及总长
var eachSpacing = result.eachSpacing;
var textLength = xAxisScaleValues.map(function (item) {
return measureText(item, opts.xAxis.fontSize * opts.pix || config.fontSize, context);
});
// get max length of categories text
var maxTextLength = Math.max.apply(this, textLength);
// 如果刻度值文本内容过长,则将其逆时针旋转45°
if (maxTextLength + 2 * config.xAxisTextPadding > eachSpacing) {
result.angle = 45 * Math.PI / 180;
result.xAxisHeight = 2 * config.xAxisTextPadding + maxTextLength * Math.sin(result.angle);
}
if (opts.xAxis.disabled === true) {
result.xAxisHeight = 0;
3 years ago
}
3 years ago
return result;
3 years ago
}
3 years ago
function getRadarDataPoints(angleList, center, radius, series, opts) {
var process = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 1;
var radarOption = opts.extra.radar || {};
radarOption.max = radarOption.max || 0;
var maxData = Math.max(radarOption.max, Math.max.apply(null, dataCombine(series)));
var data = [];var _loop2 = function _loop2(
i) {
var each = series[i];
var listItem = {};
listItem.color = each.color;
listItem.legendShape = each.legendShape;
listItem.pointShape = each.pointShape;
listItem.data = [];
each.data.forEach(function (item, index) {
var tmp = {};
tmp.angle = angleList[index];
tmp.proportion = item / maxData;
tmp.value = item;
tmp.position = convertCoordinateOrigin(radius * tmp.proportion * process * Math.cos(tmp.angle), radius * tmp.proportion * process * Math.sin(tmp.angle), center);
listItem.data.push(tmp);
});
data.push(listItem);};for (var i = 0; i < series.length; i++) {_loop2(i);
3 years ago
}
3 years ago
return data;
3 years ago
}
3 years ago
function getPieDataPoints(series, radius) {
var process = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
var count = 0;
var _start_ = 0;
for (var i = 0; i < series.length; i++) {
var item = series[i];
item.data = item.data === null ? 0 : item.data;
count += item.data;
}
for (var _i9 = 0; _i9 < series.length; _i9++) {
var _item2 = series[_i9];
_item2.data = _item2.data === null ? 0 : _item2.data;
if (count === 0) {
_item2._proportion_ = 1 / series.length * process;
3 years ago
} else {
3 years ago
_item2._proportion_ = _item2.data / count * process;
3 years ago
}
3 years ago
_item2._radius_ = radius;
3 years ago
}
3 years ago
for (var _i10 = 0; _i10 < series.length; _i10++) {
var _item3 = series[_i10];
_item3._start_ = _start_;
_start_ += 2 * _item3._proportion_ * Math.PI;
3 years ago
}
3 years ago
return series;
3 years ago
}
3 years ago
function getFunnelDataPoints(series, radius, type, eachSpacing) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
series = series.sort(function (a, b) {
return parseInt(b.data) - parseInt(a.data);
});
for (var i = 0; i < series.length; i++) {
if (type == 'funnel') {
series[i].radius = series[i].data / series[0].data * radius * process;
} else {
series[i].radius = eachSpacing * (series.length - i) / (eachSpacing * series.length) * radius * process;
}
series[i]._proportion_ = series[i].data / series[0].data;
}
if (type !== 'pyramid') {
series.reverse();
}
return series;
3 years ago
}
3 years ago
function getRoseDataPoints(series, type, minRadius, radius) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var count = 0;
var _start_ = 0;
var dataArr = [];
for (var i = 0; i < series.length; i++) {
var item = series[i];
item.data = item.data === null ? 0 : item.data;
count += item.data;
dataArr.push(item.data);
}
var minData = Math.min.apply(null, dataArr);
var maxData = Math.max.apply(null, dataArr);
var radiusLength = radius - minRadius;
for (var _i11 = 0; _i11 < series.length; _i11++) {
var _item4 = series[_i11];
_item4.data = _item4.data === null ? 0 : _item4.data;
if (count === 0) {
_item4._proportion_ = 1 / series.length * process;
_item4._rose_proportion_ = 1 / series.length * process;
} else {
_item4._proportion_ = _item4.data / count * process;
if (type == 'area') {
_item4._rose_proportion_ = 1 / series.length * process;
} else {
_item4._rose_proportion_ = _item4.data / count * process;
3 years ago
}
}
3 years ago
_item4._radius_ = minRadius + radiusLength * ((_item4.data - minData) / (maxData - minData)) || radius;
3 years ago
}
3 years ago
for (var _i12 = 0; _i12 < series.length; _i12++) {
var _item5 = series[_i12];
_item5._start_ = _start_;
_start_ += 2 * _item5._rose_proportion_ * Math.PI;
}
return series;
3 years ago
}
3 years ago
function getArcbarDataPoints(series, arcbarOption) {
var process = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
if (process == 1) {
process = 0.999999;
}
for (var i = 0; i < series.length; i++) {
var item = series[i];
item.data = item.data === null ? 0 : item.data;
var totalAngle = void 0;
if (arcbarOption.type == 'circle') {
totalAngle = 2;
3 years ago
} else {
3 years ago
if (arcbarOption.endAngle < arcbarOption.startAngle) {
totalAngle = 2 + arcbarOption.endAngle - arcbarOption.startAngle;
} else {
totalAngle = arcbarOption.startAngle - arcbarOption.endAngle;
3 years ago
}
}
3 years ago
item._proportion_ = totalAngle * item.data * process + arcbarOption.startAngle;
if (item._proportion_ >= 2) {
item._proportion_ = item._proportion_ % 2;
}
3 years ago
}
3 years ago
return series;
3 years ago
}
3 years ago
function getGaugeArcbarDataPoints(series, arcbarOption) {
var process = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
if (process == 1) {
process = 0.999999;
}
for (var i = 0; i < series.length; i++) {
var item = series[i];
item.data = item.data === null ? 0 : item.data;
var totalAngle = void 0;
if (arcbarOption.type == 'circle') {
totalAngle = 2;
} else {
if (arcbarOption.endAngle < arcbarOption.startAngle) {
totalAngle = 2 + arcbarOption.endAngle - arcbarOption.startAngle;
} else {
totalAngle = arcbarOption.startAngle - arcbarOption.endAngle;
3 years ago
}
3 years ago
}
item._proportion_ = totalAngle * item.data * process + arcbarOption.startAngle;
if (item._proportion_ >= 2) {
item._proportion_ = item._proportion_ % 2;
3 years ago
}
}
3 years ago
return series;
}
function getGaugeAxisPoints(categories, startAngle, endAngle) {
var totalAngle = startAngle - endAngle + 1;
var tempStartAngle = startAngle;
for (var i = 0; i < categories.length; i++) {
categories[i].value = categories[i].value === null ? 0 : categories[i].value;
categories[i]._startAngle_ = tempStartAngle;
categories[i]._endAngle_ = totalAngle * categories[i].value + startAngle;
if (categories[i]._endAngle_ >= 2) {
categories[i]._endAngle_ = categories[i]._endAngle_ % 2;
}
tempStartAngle = categories[i]._endAngle_;
3 years ago
}
3 years ago
return categories;
3 years ago
}
3 years ago
function getGaugeDataPoints(series, categories, gaugeOption) {
var process = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 1;
for (var i = 0; i < series.length; i++) {
var item = series[i];
item.data = item.data === null ? 0 : item.data;
if (gaugeOption.pointer.color == 'auto') {
for (var _i13 = 0; _i13 < categories.length; _i13++) {
if (item.data <= categories[_i13].value) {
item.color = categories[_i13].color;
break;
}
}
} else {
item.color = gaugeOption.pointer.color;
}
var totalAngle = gaugeOption.startAngle - gaugeOption.endAngle + 1;
item._endAngle_ = totalAngle * item.data + gaugeOption.startAngle;
item._oldAngle_ = gaugeOption.oldAngle;
if (gaugeOption.oldAngle < gaugeOption.endAngle) {
item._oldAngle_ += 2;
}
if (item.data >= gaugeOption.oldData) {
item._proportion_ = (item._endAngle_ - item._oldAngle_) * process + gaugeOption.oldAngle;
} else {
item._proportion_ = item._oldAngle_ - (item._oldAngle_ - item._endAngle_) * process;
}
if (item._proportion_ >= 2) {
item._proportion_ = item._proportion_ % 2;
3 years ago
}
}
3 years ago
return series;
3 years ago
}
3 years ago
function getPieTextMaxLength(series, config, context, opts) {
series = getPieDataPoints(series);
var maxLength = 0;
for (var i = 0; i < series.length; i++) {
var item = series[i];
var text = item.formatter ? item.formatter(+item._proportion_.toFixed(2)) : util.toFixed(item._proportion_ * 100) + '%';
maxLength = Math.max(maxLength, measureText(text, item.textSize * opts.pix || config.fontSize, context));
}
return maxLength;
3 years ago
}
3 years ago
function fixColumeData(points, eachSpacing, columnLen, index, config, opts) {
return points.map(function (item) {
if (item === null) {
return null;
}
var seriesGap = 0;
var categoryGap = 0;
if (opts.type == 'mix') {
seriesGap = opts.extra.mix.column.seriesGap * opts.pix || 0;
categoryGap = opts.extra.mix.column.categoryGap * opts.pix || 0;
} else {
seriesGap = opts.extra.column.seriesGap * opts.pix || 0;
categoryGap = opts.extra.column.categoryGap * opts.pix || 0;
}
seriesGap = Math.min(seriesGap, eachSpacing / columnLen);
categoryGap = Math.min(categoryGap, eachSpacing / columnLen);
item.width = Math.ceil((eachSpacing - 2 * categoryGap - seriesGap * (columnLen - 1)) / columnLen);
if (opts.extra.mix && opts.extra.mix.column.width && +opts.extra.mix.column.width > 0) {
item.width = Math.min(item.width, +opts.extra.mix.column.width * opts.pix);
}
if (opts.extra.column && opts.extra.column.width && +opts.extra.column.width > 0) {
item.width = Math.min(item.width, +opts.extra.column.width * opts.pix);
}
if (item.width <= 0) {
item.width = 1;
}
item.x += (index + 0.5 - columnLen / 2) * (item.width + seriesGap);
return item;
});
3 years ago
}
3 years ago
function fixBarData(points, eachSpacing, columnLen, index, config, opts) {
return points.map(function (item) {
if (item === null) {
return null;
3 years ago
}
3 years ago
var seriesGap = 0;
var categoryGap = 0;
seriesGap = opts.extra.bar.seriesGap * opts.pix || 0;
categoryGap = opts.extra.bar.categoryGap * opts.pix || 0;
seriesGap = Math.min(seriesGap, eachSpacing / columnLen);
categoryGap = Math.min(categoryGap, eachSpacing / columnLen);
item.width = Math.ceil((eachSpacing - 2 * categoryGap - seriesGap * (columnLen - 1)) / columnLen);
if (opts.extra.bar && opts.extra.bar.width && +opts.extra.bar.width > 0) {
item.width = Math.min(item.width, +opts.extra.bar.width * opts.pix);
3 years ago
}
3 years ago
if (item.width <= 0) {
item.width = 1;
}
item.y += (index + 0.5 - columnLen / 2) * (item.width + seriesGap);
return item;
});
3 years ago
}
3 years ago
function fixColumeMeterData(points, eachSpacing, columnLen, index, config, opts, border) {
var categoryGap = opts.extra.column.categoryGap * opts.pix || 0;
return points.map(function (item) {
if (item === null) {
return null;
3 years ago
}
3 years ago
item.width = eachSpacing - 2 * categoryGap;
if (opts.extra.column && opts.extra.column.width && +opts.extra.column.width > 0) {
item.width = Math.min(item.width, +opts.extra.column.width * opts.pix);
3 years ago
}
3 years ago
if (index > 0) {
item.width -= border;
}
return item;
});
3 years ago
}
3 years ago
function fixColumeStackData(points, eachSpacing, columnLen, index, config, opts, series) {
var categoryGap = opts.extra.column.categoryGap * opts.pix || 0;
return points.map(function (item, indexn) {
if (item === null) {
return null;
3 years ago
}
3 years ago
item.width = Math.ceil(eachSpacing - 2 * categoryGap);
if (opts.extra.column && opts.extra.column.width && +opts.extra.column.width > 0) {
item.width = Math.min(item.width, +opts.extra.column.width * opts.pix);
3 years ago
}
3 years ago
if (item.width <= 0) {
item.width = 1;
3 years ago
}
3 years ago
return item;
});
}
3 years ago
3 years ago
function fixBarStackData(points, eachSpacing, columnLen, index, config, opts, series) {
var categoryGap = opts.extra.bar.categoryGap * opts.pix || 0;
return points.map(function (item, indexn) {
if (item === null) {
return null;
3 years ago
}
3 years ago
item.width = Math.ceil(eachSpacing - 2 * categoryGap);
if (opts.extra.bar && opts.extra.bar.width && +opts.extra.bar.width > 0) {
item.width = Math.min(item.width, +opts.extra.bar.width * opts.pix);
3 years ago
}
3 years ago
if (item.width <= 0) {
item.width = 1;
3 years ago
}
3 years ago
return item;
});
}
3 years ago
3 years ago
function getXAxisPoints(categories, opts, config) {
var spacingValid = opts.width - opts.area[1] - opts.area[3];
var dataCount = opts.enableScroll ? Math.min(opts.xAxis.itemCount, categories.length) : categories.length;
if ((opts.type == 'line' || opts.type == 'area' || opts.type == 'scatter' || opts.type == 'bubble' || opts.type == 'bar') && dataCount > 1 && opts.xAxis.boundaryGap == 'justify') {
dataCount -= 1;
3 years ago
}
3 years ago
var widthRatio = 0;
if (opts.type == 'mount' && opts.extra && opts.extra.mount && opts.extra.mount.widthRatio && opts.extra.mount.widthRatio > 1) {
if (opts.extra.mount.widthRatio > 2) opts.extra.mount.widthRatio = 2;
widthRatio = opts.extra.mount.widthRatio - 1;
dataCount += widthRatio;
3 years ago
}
3 years ago
var eachSpacing = spacingValid / dataCount;
var xAxisPoints = [];
var startX = opts.area[3];
var endX = opts.width - opts.area[1];
categories.forEach(function (item, index) {
xAxisPoints.push(startX + widthRatio / 2 * eachSpacing + index * eachSpacing);
});
if (opts.xAxis.boundaryGap !== 'justify') {
if (opts.enableScroll === true) {
xAxisPoints.push(startX + widthRatio * eachSpacing + categories.length * eachSpacing);
} else {
xAxisPoints.push(endX);
3 years ago
}
}
3 years ago
return {
xAxisPoints: xAxisPoints,
startX: startX,
endX: endX,
eachSpacing: eachSpacing };
3 years ago
3 years ago
}
3 years ago
3 years ago
function getCandleDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config) {
var process = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : 1;
var points = [];
var validHeight = opts.height - opts.area[0] - opts.area[2];
data.forEach(function (item, index) {
if (item === null) {
points.push(null);
} else {
var cPoints = [];
item.forEach(function (items, indexs) {
var point = {};
point.x = xAxisPoints[index] + Math.round(eachSpacing / 2);
var value = items.value || items;
var height = validHeight * (value - minRange) / (maxRange - minRange);
height *= process;
point.y = opts.height - Math.round(height) - opts.area[2];
cPoints.push(point);
});
points.push(cPoints);
}
});
return points;
3 years ago
}
3 years ago
function getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config) {
var process = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : 1;
var boundaryGap = 'center';
if (opts.type == 'line' || opts.type == 'area' || opts.type == 'scatter' || opts.type == 'bubble') {
boundaryGap = opts.xAxis.boundaryGap;
3 years ago
}
3 years ago
var points = [];
var validHeight = opts.height - opts.area[0] - opts.area[2];
var validWidth = opts.width - opts.area[1] - opts.area[3];
data.forEach(function (item, index) {
if (item === null) {
points.push(null);
} else {
var point = {};
point.color = item.color;
point.x = xAxisPoints[index];
var value = item;
if (typeof item === 'object' && item !== null) {
if (item.constructor.toString().indexOf('Array') > -1) {
var xranges, xminRange, xmaxRange;
xranges = [].concat(opts.chartData.xAxisData.ranges);
xminRange = xranges.shift();
xmaxRange = xranges.pop();
value = item[1];
point.x = opts.area[3] + validWidth * (item[0] - xminRange) / (xmaxRange - xminRange);
if (opts.type == 'bubble') {
point.r = item[2];
point.t = item[3];
}
} else {
value = item.value;
}
}
if (boundaryGap == 'center') {
point.x += eachSpacing / 2;
}
var height = validHeight * (value - minRange) / (maxRange - minRange);
height *= process;
point.y = opts.height - height - opts.area[2];
points.push(point);
3 years ago
}
3 years ago
});
return points;
3 years ago
}
3 years ago
function getMountDataPoints(series, minRange, maxRange, xAxisPoints, eachSpacing, opts, mountOption) {
var process = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : 1;
var points = [];
var validHeight = opts.height - opts.area[0] - opts.area[2];
var validWidth = opts.width - opts.area[1] - opts.area[3];
var mountWidth = eachSpacing * mountOption.widthRatio;
series.forEach(function (item, index) {
if (item === null) {
points.push(null);
} else {
var point = {};
point.color = item.color;
point.x = xAxisPoints[index];
point.x += eachSpacing / 2;
var value = item.data;
var height = validHeight * (value - minRange) / (maxRange - minRange);
height *= process;
point.y = opts.height - height - opts.area[2];
point.value = value;
point.width = mountWidth;
points.push(point);
}
});
return points;
3 years ago
}
3 years ago
function getBarDataPoints(data, minRange, maxRange, yAxisPoints, eachSpacing, opts, config) {
var process = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : 1;
var points = [];
var validHeight = opts.height - opts.area[0] - opts.area[2];
var validWidth = opts.width - opts.area[1] - opts.area[3];
data.forEach(function (item, index) {
if (item === null) {
points.push(null);
} else {
var point = {};
point.color = item.color;
point.y = yAxisPoints[index];
var value = item;
if (typeof item === 'object' && item !== null) {
value = item.value;
}
var height = validWidth * (value - minRange) / (maxRange - minRange);
height *= process;
point.height = height;
point.value = value;
point.x = height + opts.area[3];
points.push(point);
3 years ago
}
3 years ago
});
return points;
3 years ago
}
3 years ago
function getStackDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, seriesIndex, stackSeries) {
var process = arguments.length > 9 && arguments[9] !== undefined ? arguments[9] : 1;
var points = [];
var validHeight = opts.height - opts.area[0] - opts.area[2];
data.forEach(function (item, index) {
if (item === null) {
points.push(null);
} else {
var point = {};
point.color = item.color;
point.x = xAxisPoints[index] + Math.round(eachSpacing / 2);
3 years ago
3 years ago
if (seriesIndex > 0) {
var value = 0;
for (var i = 0; i <= seriesIndex; i++) {
value += stackSeries[i].data[index];
}
var value0 = value - item;
var height = validHeight * (value - minRange) / (maxRange - minRange);
var height0 = validHeight * (value0 - minRange) / (maxRange - minRange);
} else {
var value = item;
var height = validHeight * (value - minRange) / (maxRange - minRange);
var height0 = 0;
}
var heightc = height0;
height *= process;
heightc *= process;
point.y = opts.height - Math.round(height) - opts.area[2];
point.y0 = opts.height - Math.round(heightc) - opts.area[2];
points.push(point);
}
});
return points;
}
3 years ago
3 years ago
function getBarStackDataPoints(data, minRange, maxRange, yAxisPoints, eachSpacing, opts, config, seriesIndex, stackSeries) {
var process = arguments.length > 9 && arguments[9] !== undefined ? arguments[9] : 1;
var points = [];
var validHeight = opts.width - opts.area[1] - opts.area[3];
data.forEach(function (item, index) {
if (item === null) {
points.push(null);
} else {
var point = {};
point.color = item.color;
point.y = yAxisPoints[index];
if (seriesIndex > 0) {
var value = 0;
for (var i = 0; i <= seriesIndex; i++) {
value += stackSeries[i].data[index];
}
var value0 = value - item;
var height = validHeight * (value - minRange) / (maxRange - minRange);
var height0 = validHeight * (value0 - minRange) / (maxRange - minRange);
} else {
var value = item;
var height = validHeight * (value - minRange) / (maxRange - minRange);
var height0 = 0;
}
var heightc = height0;
height *= process;
heightc *= process;
point.height = height - heightc;
point.x = opts.area[3] + height;
point.x0 = opts.area[3] + heightc;
points.push(point);
}
});
return points;
3 years ago
}
3 years ago
function getYAxisTextList(series, opts, config, stack, yData) {
var index = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : -1;
var data;
if (stack == 'stack') {
data = dataCombineStack(series, opts.categories.length);
} else {
data = dataCombine(series);
3 years ago
}
3 years ago
var sorted = [];
// remove null from data
data = data.filter(function (item) {
//return item !== null;
if (typeof item === 'object' && item !== null) {
if (item.constructor.toString().indexOf('Array') > -1) {
return item !== null;
} else {
return item.value !== null;
}
} else {
return item !== null;
3 years ago
}
3 years ago
});
data.map(function (item) {
if (typeof item === 'object') {
if (item.constructor.toString().indexOf('Array') > -1) {
if (opts.type == 'candle') {
item.map(function (subitem) {
sorted.push(subitem);
});
} else {
sorted.push(item[1]);
}
} else {
sorted.push(item.value);
3 years ago
}
} else {
3 years ago
sorted.push(item);
3 years ago
}
3 years ago
});
var minData = yData.min || 0;
var maxData = yData.max || 0;
if (sorted.length > 0) {
minData = Math.min.apply(this, sorted);
maxData = Math.max.apply(this, sorted);
3 years ago
}
3 years ago
if (minData === maxData) {
// var rangeSpan = maxData || 10;
// maxData += rangeSpan;
if (maxData == 0) {
maxData = 10;
} else {
minData = 0;
}
}
var dataRange = getDataRange(minData, maxData);
var minRange = yData.min === undefined || yData.min === null ? dataRange.minRange : yData.min;
var maxRange = yData.max === undefined || yData.max === null ? dataRange.maxRange : yData.max;
var range = [];
var eachRange = (maxRange - minRange) / opts.yAxis.splitNumber;
for (var i = 0; i <= opts.yAxis.splitNumber; i++) {
range.push(minRange + eachRange * i);
3 years ago
}
3 years ago
return range.reverse();
3 years ago
}
3 years ago
function calYAxisData(series, opts, config, context) {
//堆叠图重算Y轴
var columnstyle = assign({}, {
type: "" },
opts.extra.column);
//如果是多Y轴,重新计算
var YLength = opts.yAxis.data.length;
var newSeries = new Array(YLength);
if (YLength > 0) {
for (var i = 0; i < YLength; i++) {
newSeries[i] = [];
for (var j = 0; j < series.length; j++) {
if (series[j].index == i) {
newSeries[i].push(series[j]);
}
3 years ago
}
}
3 years ago
var rangesArr = new Array(YLength);
var rangesFormatArr = new Array(YLength);
var yAxisWidthArr = new Array(YLength);var _loop3 = function _loop3(
3 years ago
3 years ago
_i14) {
var yData = opts.yAxis.data[_i14];
//如果总开关不显示,强制每个Y轴为不显示
if (opts.yAxis.disabled == true) {
yData.disabled = true;
}
if (yData.type === 'categories') {
if (!yData.formatter) {
yData.formatter = function (val, index, opts) {return val + (yData.unit || '');};
}
yData.categories = yData.categories || opts.categories;
rangesArr[_i14] = yData.categories;
} else {
if (!yData.formatter) {
yData.formatter = function (val, index, opts) {return val.toFixed(yData.tofix) + (yData.unit || '');};
}
rangesArr[_i14] = getYAxisTextList(newSeries[_i14], opts, config, columnstyle.type, yData, _i14);
}
var yAxisFontSizes = yData.fontSize * opts.pix || config.fontSize;
yAxisWidthArr[_i14] = {
position: yData.position ? yData.position : 'left',
width: 0 };
3 years ago
3 years ago
rangesFormatArr[_i14] = rangesArr[_i14].map(function (items, index) {
items = yData.formatter(items, index, opts);
yAxisWidthArr[_i14].width = Math.max(yAxisWidthArr[_i14].width, measureText(items, yAxisFontSizes, context) + 5);
return items;
});
var calibration = yData.calibration ? 4 * opts.pix : 0;
yAxisWidthArr[_i14].width += calibration + 3 * opts.pix;
if (yData.disabled === true) {
yAxisWidthArr[_i14].width = 0;
}};for (var _i14 = 0; _i14 < YLength; _i14++) {_loop3(_i14);
}
} else {
var rangesArr = new Array(1);
var rangesFormatArr = new Array(1);
var yAxisWidthArr = new Array(1);
if (opts.type === 'bar') {
rangesArr[0] = opts.categories;
if (!opts.yAxis.formatter) {
opts.yAxis.formatter = function (val, index, opts) {return val + (opts.yAxis.unit || '');};
}
} else {
if (!opts.yAxis.formatter) {
opts.yAxis.formatter = function (val, index, opts) {return val.toFixed(opts.yAxis.tofix) + (opts.yAxis.unit || '');};
}
rangesArr[0] = getYAxisTextList(series, opts, config, columnstyle.type, {});
}
yAxisWidthArr[0] = {
position: 'left',
width: 0 };
3 years ago
3 years ago
var yAxisFontSize = opts.yAxis.fontSize * opts.pix || config.fontSize;
rangesFormatArr[0] = rangesArr[0].map(function (item, index) {
item = opts.yAxis.formatter(item, index, opts);
yAxisWidthArr[0].width = Math.max(yAxisWidthArr[0].width, measureText(item, yAxisFontSize, context) + 5);
return item;
});
yAxisWidthArr[0].width += 3 * opts.pix;
if (opts.yAxis.disabled === true) {
yAxisWidthArr[0] = {
position: 'left',
width: 0 };
3 years ago
3 years ago
opts.yAxis.data[0] = {
disabled: true };
3 years ago
3 years ago
} else {
opts.yAxis.data[0] = {
disabled: false,
position: 'left',
max: opts.yAxis.max,
min: opts.yAxis.min,
formatter: opts.yAxis.formatter };
3 years ago
3 years ago
if (opts.type === 'bar') {
opts.yAxis.data[0].categories = opts.categories;
opts.yAxis.data[0].type = 'categories';
3 years ago
}
}
}
3 years ago
return {
rangesFormat: rangesFormatArr,
ranges: rangesArr,
yAxisWidth: yAxisWidthArr };
3 years ago
}
3 years ago
function calTooltipYAxisData(point, series, opts, config, eachSpacing) {
var ranges = [].concat(opts.chartData.yAxisData.ranges);
var spacingValid = opts.height - opts.area[0] - opts.area[2];
var minAxis = opts.area[0];
var items = [];
for (var i = 0; i < ranges.length; i++) {
var maxVal = ranges[i].shift();
var minVal = ranges[i].pop();
var item = maxVal - (maxVal - minVal) * (point - minAxis) / spacingValid;
item = opts.yAxis.data[i].formatter ? opts.yAxis.data[i].formatter(item) : item.toFixed(0);
items.push(String(item));
3 years ago
}
3 years ago
return items;
}
3 years ago
3 years ago
function calMarkLineData(points, opts) {
var minRange, maxRange;
var spacingValid = opts.height - opts.area[0] - opts.area[2];
for (var i = 0; i < points.length; i++) {
points[i].yAxisIndex = points[i].yAxisIndex ? points[i].yAxisIndex : 0;
var range = [].concat(opts.chartData.yAxisData.ranges[points[i].yAxisIndex]);
minRange = range.pop();
maxRange = range.shift();
var height = spacingValid * (points[i].value - minRange) / (maxRange - minRange);
points[i].y = opts.height - Math.round(height) - opts.area[2];
3 years ago
}
3 years ago
return points;
}
3 years ago
3 years ago
function contextRotate(context, opts) {
if (opts.rotateLock !== true) {
context.translate(opts.height, 0);
context.rotate(90 * Math.PI / 180);
} else if (opts._rotate_ !== true) {
context.translate(opts.height, 0);
context.rotate(90 * Math.PI / 180);
opts._rotate_ = true;
3 years ago
}
3 years ago
}
3 years ago
3 years ago
function drawPointShape(points, color, shape, context, opts) {
context.beginPath();
if (opts.dataPointShapeType == 'hollow') {
context.setStrokeStyle(color);
context.setFillStyle(opts.background);
context.setLineWidth(2 * opts.pix);
} else {
context.setStrokeStyle("#ffffff");
context.setFillStyle(color);
context.setLineWidth(1 * opts.pix);
3 years ago
}
3 years ago
if (shape === 'diamond') {
points.forEach(function (item, index) {
if (item !== null) {
context.moveTo(item.x, item.y - 4.5);
context.lineTo(item.x - 4.5, item.y);
context.lineTo(item.x, item.y + 4.5);
context.lineTo(item.x + 4.5, item.y);
context.lineTo(item.x, item.y - 4.5);
3 years ago
}
3 years ago
});
} else if (shape === 'circle') {
points.forEach(function (item, index) {
if (item !== null) {
context.moveTo(item.x + 2.5 * opts.pix, item.y);
context.arc(item.x, item.y, 3 * opts.pix, 0, 2 * Math.PI, false);
3 years ago
}
3 years ago
});
} else if (shape === 'square') {
points.forEach(function (item, index) {
if (item !== null) {
context.moveTo(item.x - 3.5, item.y - 3.5);
context.rect(item.x - 3.5, item.y - 3.5, 7, 7);
3 years ago
}
});
3 years ago
} else if (shape === 'triangle') {
points.forEach(function (item, index) {
if (item !== null) {
context.moveTo(item.x, item.y - 4.5);
context.lineTo(item.x - 4.5, item.y + 4.5);
context.lineTo(item.x + 4.5, item.y + 4.5);
context.lineTo(item.x, item.y - 4.5);
3 years ago
}
});
3 years ago
} else if (shape === 'triangle') {
return;
}
context.closePath();
context.fill();
context.stroke();
}
3 years ago
3 years ago
function drawRingTitle(opts, config, context, center) {
var titlefontSize = opts.title.fontSize || config.titleFontSize;
var subtitlefontSize = opts.subtitle.fontSize || config.subtitleFontSize;
var title = opts.title.name || '';
var subtitle = opts.subtitle.name || '';
var titleFontColor = opts.title.color || opts.fontColor;
var subtitleFontColor = opts.subtitle.color || opts.fontColor;
var titleHeight = title ? titlefontSize : 0;
var subtitleHeight = subtitle ? subtitlefontSize : 0;
var margin = 5;
if (subtitle) {
var textWidth = measureText(subtitle, subtitlefontSize * opts.pix, context);
var startX = center.x - textWidth / 2 + (opts.subtitle.offsetX || 0) * opts.pix;
var startY = center.y + subtitlefontSize * opts.pix / 2 + (opts.subtitle.offsetY || 0) * opts.pix;
if (title) {
startY += (titleHeight * opts.pix + margin) / 2;
}
context.beginPath();
context.setFontSize(subtitlefontSize * opts.pix);
context.setFillStyle(subtitleFontColor);
context.fillText(subtitle, startX, startY);
context.closePath();
context.stroke();
}
if (title) {
var _textWidth = measureText(title, titlefontSize * opts.pix, context);
var _startX = center.x - _textWidth / 2 + (opts.title.offsetX || 0);
var _startY = center.y + titlefontSize * opts.pix / 2 + (opts.title.offsetY || 0) * opts.pix;
if (subtitle) {
_startY -= (subtitleHeight * opts.pix + margin) / 2;
}
context.beginPath();
context.setFontSize(titlefontSize * opts.pix);
context.setFillStyle(titleFontColor);
context.fillText(title, _startX, _startY);
context.closePath();
context.stroke();
}
}
3 years ago
3 years ago
function drawPointText(points, series, config, context, opts) {
// 绘制数据文案
var data = series.data;
var textOffset = series.textOffset ? series.textOffset : 0;
points.forEach(function (item, index) {
if (item !== null) {
context.beginPath();
var fontSize = series.textSize ? series.textSize * opts.pix : config.fontSize;
context.setFontSize(fontSize);
context.setFillStyle(series.textColor || opts.fontColor);
var value = data[index];
if (typeof data[index] === 'object' && data[index] !== null) {
if (data[index].constructor.toString().indexOf('Array') > -1) {
value = data[index][1];
} else {
value = data[index].value;
3 years ago
}
}
3 years ago
var formatVal = series.formatter ? series.formatter(value, index, series, opts) : value;
context.setTextAlign('center');
context.fillText(String(formatVal), item.x, item.y - 4 + textOffset * opts.pix);
context.closePath();
context.stroke();
context.setTextAlign('left');
3 years ago
}
3 years ago
});
3 years ago
}
3 years ago
function drawMountPointText(points, series, config, context, opts) {
// 绘制数据文案
var data = series.data;
var textOffset = series.textOffset ? series.textOffset : 0;
points.forEach(function (item, index) {
if (item !== null) {
context.beginPath();
var fontSize = series[index].textSize ? series[index].textSize * opts.pix : config.fontSize;
context.setFontSize(fontSize);
context.setFillStyle(series[index].textColor || opts.fontColor);
var value = item.value;
var formatVal = series[index].formatter ? series[index].formatter(value, index, series, opts) : value;
context.setTextAlign('center');
context.fillText(String(formatVal), item.x, item.y - 4 + textOffset * opts.pix);
context.closePath();
context.stroke();
context.setTextAlign('left');
}
});
3 years ago
}
3 years ago
function drawBarPointText(points, series, config, context, opts) {
// 绘制数据文案
var data = series.data;
var textOffset = series.textOffset ? series.textOffset : 0;
points.forEach(function (item, index) {
if (item !== null) {
context.beginPath();
var fontSize = series.textSize ? series.textSize * opts.pix : config.fontSize;
context.setFontSize(fontSize);
context.setFillStyle(series.textColor || opts.fontColor);
var value = data[index];
if (typeof data[index] === 'object' && data[index] !== null) {
value = data[index].value;
3 years ago
}
3 years ago
var formatVal = series.formatter ? series.formatter(value, index, series, opts) : value;
context.setTextAlign('left');
context.fillText(String(formatVal), item.x + 4 * opts.pix, item.y + fontSize / 2 - 3);
context.closePath();
context.stroke();
3 years ago
}
3 years ago
});
3 years ago
}
3 years ago
function drawGaugeLabel(gaugeOption, radius, centerPosition, opts, config, context) {
radius -= gaugeOption.width / 2 + gaugeOption.labelOffset * opts.pix;
radius = radius < 10 ? 10 : radius;
var totalAngle = gaugeOption.startAngle - gaugeOption.endAngle + 1;
var splitAngle = totalAngle / gaugeOption.splitLine.splitNumber;
var totalNumber = gaugeOption.endNumber - gaugeOption.startNumber;
var splitNumber = totalNumber / gaugeOption.splitLine.splitNumber;
var nowAngle = gaugeOption.startAngle;
var nowNumber = gaugeOption.startNumber;
for (var i = 0; i < gaugeOption.splitLine.splitNumber + 1; i++) {
var pos = {
x: radius * Math.cos(nowAngle * Math.PI),
y: radius * Math.sin(nowAngle * Math.PI) };
3 years ago
3 years ago
var labelText = gaugeOption.formatter ? gaugeOption.formatter(nowNumber, i, opts) : nowNumber;
pos.x += centerPosition.x - measureText(labelText, config.fontSize, context) / 2;
pos.y += centerPosition.y;
var startX = pos.x;
var startY = pos.y;
context.beginPath();
context.setFontSize(config.fontSize);
context.setFillStyle(gaugeOption.labelColor || opts.fontColor);
context.fillText(labelText, startX, startY + config.fontSize / 2);
context.closePath();
context.stroke();
nowAngle += splitAngle;
if (nowAngle >= 2) {
nowAngle = nowAngle % 2;
}
nowNumber += splitNumber;
3 years ago
}
}
3 years ago
function drawRadarLabel(angleList, radius, centerPosition, opts, config, context) {
var radarOption = opts.extra.radar || {};
angleList.forEach(function (angle, index) {
if (radarOption.labelPointShow === true && opts.categories[index] !== '') {
var posPoint = {
x: radius * Math.cos(angle),
y: radius * Math.sin(angle) };
3 years ago
3 years ago
var posPointAxis = convertCoordinateOrigin(posPoint.x, posPoint.y, centerPosition);
context.setFillStyle(radarOption.labelPointColor);
context.beginPath();
context.arc(posPointAxis.x, posPointAxis.y, radarOption.labelPointRadius * opts.pix, 0, 2 * Math.PI, false);
context.closePath();
context.fill();
}
var pos = {
x: (radius + config.radarLabelTextMargin * opts.pix) * Math.cos(angle),
y: (radius + config.radarLabelTextMargin * opts.pix) * Math.sin(angle) };
3 years ago
3 years ago
var posRelativeCanvas = convertCoordinateOrigin(pos.x, pos.y, centerPosition);
var startX = posRelativeCanvas.x;
var startY = posRelativeCanvas.y;
if (util.approximatelyEqual(pos.x, 0)) {
startX -= measureText(opts.categories[index] || '', config.fontSize, context) / 2;
} else if (pos.x < 0) {
startX -= measureText(opts.categories[index] || '', config.fontSize, context);
3 years ago
}
3 years ago
context.beginPath();
context.setFontSize(config.fontSize);
context.setFillStyle(radarOption.labelColor || opts.fontColor);
context.fillText(opts.categories[index] || '', startX, startY + config.fontSize / 2);
context.closePath();
context.stroke();
});
3 years ago
}
3 years ago
function drawPieText(series, opts, config, context, radius, center) {
var lineRadius = config.pieChartLinePadding;
var textObjectCollection = [];
var lastTextObject = null;
var seriesConvert = series.map(function (item, index) {
var text = item.formatter ? item.formatter(item, index, series, opts) : util.toFixed(item._proportion_.toFixed(4) * 100) + '%';
text = item.labelText ? item.labelText : text;
var arc = 2 * Math.PI - (item._start_ + 2 * Math.PI * item._proportion_ / 2);
if (item._rose_proportion_) {
arc = 2 * Math.PI - (item._start_ + 2 * Math.PI * item._rose_proportion_ / 2);
3 years ago
}
3 years ago
var color = item.color;
var radius = item._radius_;
return {
arc: arc,
text: text,
color: color,
radius: radius,
textColor: item.textColor,
textSize: item.textSize,
labelShow: item.labelShow };
3 years ago
3 years ago
});
for (var i = 0; i < seriesConvert.length; i++) {
var item = seriesConvert[i];
// line end
var orginX1 = Math.cos(item.arc) * (item.radius + lineRadius);
var orginY1 = Math.sin(item.arc) * (item.radius + lineRadius);
// line start
var orginX2 = Math.cos(item.arc) * item.radius;
var orginY2 = Math.sin(item.arc) * item.radius;
// text start
var orginX3 = orginX1 >= 0 ? orginX1 + config.pieChartTextPadding : orginX1 - config.pieChartTextPadding;
var orginY3 = orginY1;
var textWidth = measureText(item.text, item.textSize * opts.pix || config.fontSize, context);
var startY = orginY3;
if (lastTextObject && util.isSameXCoordinateArea(lastTextObject.start, {
x: orginX3 }))
{
if (orginX3 > 0) {
startY = Math.min(orginY3, lastTextObject.start.y);
} else if (orginX1 < 0) {
startY = Math.max(orginY3, lastTextObject.start.y);
} else {
if (orginY3 > 0) {
startY = Math.max(orginY3, lastTextObject.start.y);
} else {
startY = Math.min(orginY3, lastTextObject.start.y);
}
3 years ago
}
}
3 years ago
if (orginX3 < 0) {
orginX3 -= textWidth;
3 years ago
}
3 years ago
var textObject = {
lineStart: {
x: orginX2,
y: orginY2 },
3 years ago
3 years ago
lineEnd: {
x: orginX1,
y: orginY1 },
3 years ago
3 years ago
start: {
x: orginX3,
y: startY },
3 years ago
3 years ago
width: textWidth,
height: config.fontSize,
text: item.text,
color: item.color,
textColor: item.textColor,
textSize: item.textSize };
3 years ago
3 years ago
lastTextObject = avoidCollision(textObject, lastTextObject);
textObjectCollection.push(lastTextObject);
3 years ago
}
3 years ago
for (var _i15 = 0; _i15 < textObjectCollection.length; _i15++) {
if (seriesConvert[_i15].labelShow === false) {
continue;
3 years ago
}
3 years ago
var _item6 = textObjectCollection[_i15];
var lineStartPoistion = convertCoordinateOrigin(_item6.lineStart.x, _item6.lineStart.y, center);
var lineEndPoistion = convertCoordinateOrigin(_item6.lineEnd.x, _item6.lineEnd.y, center);
var textPosition = convertCoordinateOrigin(_item6.start.x, _item6.start.y, center);
context.setLineWidth(1 * opts.pix);
context.setFontSize(_item6.textSize * opts.pix || config.fontSize);
context.beginPath();
context.setStrokeStyle(_item6.color);
context.setFillStyle(_item6.color);
context.moveTo(lineStartPoistion.x, lineStartPoistion.y);
var curveStartX = _item6.start.x < 0 ? textPosition.x + _item6.width : textPosition.x;
var textStartX = _item6.start.x < 0 ? textPosition.x - 5 : textPosition.x + 5;
context.quadraticCurveTo(lineEndPoistion.x, lineEndPoistion.y, curveStartX, textPosition.y);
context.moveTo(lineStartPoistion.x, lineStartPoistion.y);
context.stroke();
context.closePath();
context.beginPath();
context.moveTo(textPosition.x + _item6.width, textPosition.y);
context.arc(curveStartX, textPosition.y, 2 * opts.pix, 0, 2 * Math.PI);
context.closePath();
context.fill();
context.beginPath();
context.setFontSize(_item6.textSize * opts.pix || config.fontSize);
context.setFillStyle(_item6.textColor || opts.fontColor);
context.fillText(_item6.text, textStartX, textPosition.y + 3);
context.closePath();
context.stroke();
context.closePath();
3 years ago
}
3 years ago
}
3 years ago
3 years ago
function drawToolTipSplitLine(offsetX, opts, config, context) {
var toolTipOption = opts.extra.tooltip || {};
toolTipOption.gridType = toolTipOption.gridType == undefined ? 'solid' : toolTipOption.gridType;
toolTipOption.dashLength = toolTipOption.dashLength == undefined ? 4 : toolTipOption.dashLength;
var startY = opts.area[0];
var endY = opts.height - opts.area[2];
if (toolTipOption.gridType == 'dash') {
context.setLineDash([toolTipOption.dashLength, toolTipOption.dashLength]);
}
context.setStrokeStyle(toolTipOption.gridColor || '#cccccc');
context.setLineWidth(1 * opts.pix);
context.beginPath();
context.moveTo(offsetX, startY);
context.lineTo(offsetX, endY);
context.stroke();
context.setLineDash([]);
if (toolTipOption.xAxisLabel) {
var labelText = opts.categories[opts.tooltip.index];
context.setFontSize(config.fontSize);
var textWidth = measureText(labelText, config.fontSize, context);
var textX = offsetX - 0.5 * textWidth;
var textY = endY;
context.beginPath();
context.setFillStyle(hexToRgb(toolTipOption.labelBgColor || config.toolTipBackground, toolTipOption.labelBgOpacity || config.toolTipOpacity));
context.setStrokeStyle(toolTipOption.labelBgColor || config.toolTipBackground);
context.setLineWidth(1 * opts.pix);
context.rect(textX - config.toolTipPadding, textY, textWidth + 2 * config.toolTipPadding, config.fontSize + 2 * config.toolTipPadding);
context.closePath();
context.stroke();
context.fill();
context.beginPath();
context.setFontSize(config.fontSize);
context.setFillStyle(toolTipOption.labelFontColor || opts.fontColor);
context.fillText(String(labelText), textX, textY + config.toolTipPadding + config.fontSize);
context.closePath();
context.stroke();
}
3 years ago
}
3 years ago
function drawMarkLine(opts, config, context) {
var markLineOption = assign({}, {
type: 'solid',
dashLength: 4,
data: [] },
opts.extra.markLine);
var startX = opts.area[3];
var endX = opts.width - opts.area[1];
var points = calMarkLineData(markLineOption.data, opts);
for (var i = 0; i < points.length; i++) {
var item = assign({}, {
lineColor: '#DE4A42',
showLabel: false,
labelFontColor: '#666666',
labelBgColor: '#DFE8FF',
labelBgOpacity: 0.8,
labelAlign: 'left',
labelOffsetX: 0,
labelOffsetY: 0 },
points[i]);
if (markLineOption.type == 'dash') {
context.setLineDash([markLineOption.dashLength, markLineOption.dashLength]);
3 years ago
}
3 years ago
context.setStrokeStyle(item.lineColor);
context.setLineWidth(1 * opts.pix);
context.beginPath();
context.moveTo(startX, item.y);
context.lineTo(endX, item.y);
context.stroke();
context.setLineDash([]);
if (item.showLabel) {
var labelText = item.labelText ? item.labelText : item.value;
context.setFontSize(config.fontSize);
var textWidth = measureText(labelText, config.fontSize, context);
var bgWidth = textWidth + config.toolTipPadding * 2;
var bgStartX = item.labelAlign == 'left' ? opts.area[3] - bgWidth : opts.width - opts.area[1];
bgStartX += item.labelOffsetX;
var bgStartY = item.y - 0.5 * config.fontSize - config.toolTipPadding;
bgStartY += item.labelOffsetY;
var textX = bgStartX + config.toolTipPadding;
var textY = item.y;
context.setFillStyle(hexToRgb(item.labelBgColor, item.labelBgOpacity));
context.setStrokeStyle(item.labelBgColor);
context.setLineWidth(1 * opts.pix);
context.beginPath();
context.rect(bgStartX, bgStartY, bgWidth, config.fontSize + 2 * config.toolTipPadding);
context.closePath();
context.stroke();
context.fill();
context.setFontSize(config.fontSize);
context.setTextAlign('left');
context.setFillStyle(item.labelFontColor);
context.fillText(String(labelText), textX, bgStartY + config.fontSize + config.toolTipPadding / 2);
context.stroke();
context.setTextAlign('left');
3 years ago
}
}
3 years ago
}
3 years ago
3 years ago
function drawToolTipHorizentalLine(opts, config, context, eachSpacing, xAxisPoints) {
var toolTipOption = assign({}, {
gridType: 'solid',
dashLength: 4 },
opts.extra.tooltip);
var startX = opts.area[3];
var endX = opts.width - opts.area[1];
if (toolTipOption.gridType == 'dash') {
context.setLineDash([toolTipOption.dashLength, toolTipOption.dashLength]);
3 years ago
}
3 years ago
context.setStrokeStyle(toolTipOption.gridColor || '#cccccc');
context.setLineWidth(1 * opts.pix);
context.beginPath();
context.moveTo(startX, opts.tooltip.offset.y);
context.lineTo(endX, opts.tooltip.offset.y);
context.stroke();
context.setLineDash([]);
if (toolTipOption.yAxisLabel) {
var labelText = calTooltipYAxisData(opts.tooltip.offset.y, opts.series, opts, config, eachSpacing);
var widthArr = opts.chartData.yAxisData.yAxisWidth;
var tStartLeft = opts.area[3];
var tStartRight = opts.width - opts.area[1];
for (var i = 0; i < labelText.length; i++) {
context.setFontSize(config.fontSize);
var textWidth = measureText(labelText[i], config.fontSize, context);
var bgStartX = void 0,bgEndX = void 0,bgWidth = void 0;
if (widthArr[i].position == 'left') {
bgStartX = tStartLeft - widthArr[i].width;
bgEndX = Math.max(bgStartX, bgStartX + textWidth + config.toolTipPadding * 2);
} else {
bgStartX = tStartRight;
bgEndX = Math.max(bgStartX + widthArr[i].width, bgStartX + textWidth + config.toolTipPadding * 2);
}
bgWidth = bgEndX - bgStartX;
var textX = bgStartX + (bgWidth - textWidth) / 2;
var textY = opts.tooltip.offset.y;
context.beginPath();
context.setFillStyle(hexToRgb(toolTipOption.labelBgColor || config.toolTipBackground, toolTipOption.labelBgOpacity || config.toolTipOpacity));
context.setStrokeStyle(toolTipOption.labelBgColor || config.toolTipBackground);
context.setLineWidth(1 * opts.pix);
context.rect(bgStartX, textY - 0.5 * config.fontSize - config.toolTipPadding, bgWidth, config.fontSize + 2 *
config.toolTipPadding);
context.closePath();
context.stroke();
context.fill();
context.beginPath();
context.setFontSize(config.fontSize);
context.setFillStyle(toolTipOption.labelFontColor || opts.fontColor);
context.fillText(labelText[i], textX, textY + 0.5 * config.fontSize);
context.closePath();
context.stroke();
if (widthArr[i].position == 'left') {
tStartLeft -= widthArr[i].width + opts.yAxis.padding * opts.pix;
} else {
tStartRight += widthArr[i].width + opts.yAxis.padding * opts.pix;
}
3 years ago
}
}
3 years ago
}
3 years ago
3 years ago
function drawToolTipSplitArea(offsetX, opts, config, context, eachSpacing) {
var toolTipOption = assign({}, {
activeBgColor: '#000000',
activeBgOpacity: 0.08,
activeWidth: eachSpacing },
opts.extra.column);
toolTipOption.activeWidth = toolTipOption.activeWidth > eachSpacing ? eachSpacing : toolTipOption.activeWidth;
var startY = opts.area[0];
var endY = opts.height - opts.area[2];
context.beginPath();
context.setFillStyle(hexToRgb(toolTipOption.activeBgColor, toolTipOption.activeBgOpacity));
context.rect(offsetX - toolTipOption.activeWidth / 2, startY, toolTipOption.activeWidth, endY - startY);
context.closePath();
context.fill();
context.setFillStyle("#FFFFFF");
3 years ago
}
3 years ago
function drawBarToolTipSplitArea(offsetX, opts, config, context, eachSpacing) {
var toolTipOption = assign({}, {
activeBgColor: '#000000',
activeBgOpacity: 0.08 },
opts.extra.bar);
var startX = opts.area[3];
var endX = opts.width - opts.area[1];
context.beginPath();
context.setFillStyle(hexToRgb(toolTipOption.activeBgColor, toolTipOption.activeBgOpacity));
context.rect(startX, offsetX - eachSpacing / 2, endX - startX, eachSpacing);
context.closePath();
context.fill();
context.setFillStyle("#FFFFFF");
3 years ago
}
3 years ago
function drawToolTip(textList, offset, opts, config, context, eachSpacing, xAxisPoints) {
var toolTipOption = assign({}, {
showBox: true,
showArrow: true,
showCategory: false,
bgColor: '#000000',
bgOpacity: 0.7,
borderColor: '#000000',
borderWidth: 0,
borderRadius: 0,
borderOpacity: 0.7,
fontColor: '#FFFFFF',
splitLine: true },
opts.extra.tooltip);
if (toolTipOption.showCategory == true && opts.categories) {
textList.unshift({ text: opts.categories[opts.tooltip.index], color: null });
3 years ago
}
3 years ago
var legendWidth = 4 * opts.pix;
var legendMarginRight = 5 * opts.pix;
var arrowWidth = toolTipOption.showArrow ? 8 * opts.pix : 0;
var isOverRightBorder = false;
if (opts.type == 'line' || opts.type == 'mount' || opts.type == 'area' || opts.type == 'candle' || opts.type == 'mix') {
if (toolTipOption.splitLine == true) {
drawToolTipSplitLine(opts.tooltip.offset.x, opts, config, context);
3 years ago
}
}
3 years ago
offset = assign({
x: 0,
y: 0 },
offset);
offset.y -= 8 * opts.pix;
var textWidth = textList.map(function (item) {
return measureText(item.text, config.fontSize, context);
});
var toolTipWidth = legendWidth + legendMarginRight + 4 * config.toolTipPadding + Math.max.apply(null, textWidth);
var toolTipHeight = 2 * config.toolTipPadding + textList.length * config.toolTipLineHeight;
if (toolTipOption.showBox == false) {
return;
3 years ago
}
3 years ago
// if beyond the right border
if (offset.x - Math.abs(opts._scrollDistance_ || 0) + arrowWidth + toolTipWidth > opts.width) {
isOverRightBorder = true;
3 years ago
}
3 years ago
if (toolTipHeight + offset.y > opts.height) {
offset.y = opts.height - toolTipHeight;
}
// draw background rect
context.beginPath();
context.setFillStyle(hexToRgb(toolTipOption.bgColor || config.toolTipBackground, toolTipOption.bgOpacity || config.toolTipOpacity));
context.setLineWidth(toolTipOption.borderWidth * opts.pix);
context.setStrokeStyle(hexToRgb(toolTipOption.borderColor, toolTipOption.borderOpacity));
var radius = toolTipOption.borderRadius;
if (isOverRightBorder) {
if (toolTipOption.showArrow) {
context.moveTo(offset.x, offset.y + 10 * opts.pix);
context.lineTo(offset.x - arrowWidth, offset.y + 10 * opts.pix + 5 * opts.pix);
}
context.arc(offset.x - arrowWidth - radius, offset.y + toolTipHeight - radius, radius, 0, Math.PI / 2, false);
context.arc(offset.x - arrowWidth - Math.round(toolTipWidth) + radius, offset.y + toolTipHeight - radius, radius,
Math.PI / 2, Math.PI, false);
context.arc(offset.x - arrowWidth - Math.round(toolTipWidth) + radius, offset.y + radius, radius, -Math.PI, -Math.PI / 2, false);
context.arc(offset.x - arrowWidth - radius, offset.y + radius, radius, -Math.PI / 2, 0, false);
if (toolTipOption.showArrow) {
context.lineTo(offset.x - arrowWidth, offset.y + 10 * opts.pix - 5 * opts.pix);
context.lineTo(offset.x, offset.y + 10 * opts.pix);
}
} else {
if (toolTipOption.showArrow) {
context.moveTo(offset.x, offset.y + 10 * opts.pix);
context.lineTo(offset.x + arrowWidth, offset.y + 10 * opts.pix - 5 * opts.pix);
}
context.arc(offset.x + arrowWidth + radius, offset.y + radius, radius, -Math.PI, -Math.PI / 2, false);
context.arc(offset.x + arrowWidth + Math.round(toolTipWidth) - radius, offset.y + radius, radius, -Math.PI / 2, 0,
false);
context.arc(offset.x + arrowWidth + Math.round(toolTipWidth) - radius, offset.y + toolTipHeight - radius, radius, 0,
Math.PI / 2, false);
context.arc(offset.x + arrowWidth + radius, offset.y + toolTipHeight - radius, radius, Math.PI / 2, Math.PI, false);
if (toolTipOption.showArrow) {
context.lineTo(offset.x + arrowWidth, offset.y + 10 * opts.pix + 5 * opts.pix);
context.lineTo(offset.x, offset.y + 10 * opts.pix);
3 years ago
}
}
3 years ago
context.closePath();
context.fill();
if (toolTipOption.borderWidth > 0) {
context.stroke();
3 years ago
}
3 years ago
// draw legend
textList.forEach(function (item, index) {
if (item.color !== null) {
context.beginPath();
context.setFillStyle(item.color);
var startX = offset.x + arrowWidth + 2 * config.toolTipPadding;
var startY = offset.y + (config.toolTipLineHeight - config.fontSize) / 2 + config.toolTipLineHeight * index + config.toolTipPadding + 1;
if (isOverRightBorder) {
startX = offset.x - toolTipWidth - arrowWidth + 2 * config.toolTipPadding;
}
context.fillRect(startX, startY, legendWidth, config.fontSize);
context.closePath();
}
});
// draw text list
textList.forEach(function (item, index) {
var startX = offset.x + arrowWidth + 2 * config.toolTipPadding + legendWidth + legendMarginRight;
if (isOverRightBorder) {
startX = offset.x - toolTipWidth - arrowWidth + 2 * config.toolTipPadding + +legendWidth + legendMarginRight;
}
var startY = offset.y + (config.toolTipLineHeight - config.fontSize) / 2 + config.toolTipLineHeight * index + config.toolTipPadding;
context.beginPath();
context.setFontSize(config.fontSize);
context.setFillStyle(toolTipOption.fontColor);
context.fillText(item.text, startX, startY + config.fontSize);
context.closePath();
context.stroke();
});
3 years ago
}
3 years ago
function drawColumnDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var xAxisData = opts.chartData.xAxisData,
xAxisPoints = xAxisData.xAxisPoints,
eachSpacing = xAxisData.eachSpacing;
var columnOption = assign({}, {
type: 'group',
width: eachSpacing / 2,
meterBorder: 4,
meterFillColor: '#FFFFFF',
barBorderCircle: false,
barBorderRadius: [],
seriesGap: 2,
linearType: 'none',
linearOpacity: 1,
customColor: [],
colorStop: 0 },
opts.extra.column);
var calPoints = [];
context.save();
var leftNum = -2;
var rightNum = xAxisPoints.length + 2;
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0 && opts.enableScroll === true) {
context.translate(opts._scrollDistance_, 0);
leftNum = Math.floor(-opts._scrollDistance_ / eachSpacing) - 2;
rightNum = leftNum + opts.xAxis.itemCount + 4;
3 years ago
}
3 years ago
if (opts.tooltip && opts.tooltip.textList && opts.tooltip.textList.length && process === 1) {
drawToolTipSplitArea(opts.tooltip.offset.x, opts, config, context, eachSpacing);
3 years ago
}
3 years ago
columnOption.customColor = fillCustomColor(columnOption.linearType, columnOption.customColor, series, config);
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
switch (columnOption.type) {
case 'group':
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
var tooltipPoints = getStackDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, seriesIndex, series, process);
calPoints.push(tooltipPoints);
points = fixColumeData(points, eachSpacing, series.length, seriesIndex, config, opts);
for (var i = 0; i < points.length; i++) {
var item = points[i];
//fix issues/I27B1N yyoinge & Joeshu
if (item !== null && i > leftNum && i < rightNum) {
var startX = item.x - item.width / 2;
var height = opts.height - item.y - opts.area[2];
context.beginPath();
var fillColor = item.color || eachSeries.color;
var strokeColor = item.color || eachSeries.color;
if (columnOption.linearType !== 'none') {
var grd = context.createLinearGradient(startX, item.y, startX, opts.height - opts.area[2]);
//透明渐变
if (columnOption.linearType == 'opacity') {
grd.addColorStop(0, hexToRgb(fillColor, columnOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
} else {
grd.addColorStop(0, hexToRgb(columnOption.customColor[eachSeries.linearIndex], columnOption.linearOpacity));
grd.addColorStop(columnOption.colorStop, hexToRgb(columnOption.customColor[eachSeries.linearIndex], columnOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
}
fillColor = grd;
}
// 圆角边框
if (columnOption.barBorderRadius && columnOption.barBorderRadius.length === 4 || columnOption.barBorderCircle === true) {
var left = startX;
var top = item.y;
var width = item.width;
var _height = opts.height - opts.area[2] - item.y;
if (columnOption.barBorderCircle) {
columnOption.barBorderRadius = [width / 2, width / 2, 0, 0];
}var _columnOption$barBord = _slicedToArray(
columnOption.barBorderRadius, 4),r0 = _columnOption$barBord[0],r1 = _columnOption$barBord[1],r2 = _columnOption$barBord[2],r3 = _columnOption$barBord[3];
var minRadius = Math.min(width / 2, _height / 2);
r0 = r0 > minRadius ? minRadius : r0;
r1 = r1 > minRadius ? minRadius : r1;
r2 = r2 > minRadius ? minRadius : r2;
r3 = r3 > minRadius ? minRadius : r3;
r0 = r0 < 0 ? 0 : r0;
r1 = r1 < 0 ? 0 : r1;
r2 = r2 < 0 ? 0 : r2;
r3 = r3 < 0 ? 0 : r3;
context.arc(left + r0, top + r0, r0, -Math.PI, -Math.PI / 2);
context.arc(left + width - r1, top + r1, r1, -Math.PI / 2, 0);
context.arc(left + width - r2, top + _height - r2, r2, 0, Math.PI / 2);
context.arc(left + r3, top + _height - r3, r3, Math.PI / 2, Math.PI);
} else {
context.moveTo(startX, item.y);
context.lineTo(startX + item.width, item.y);
context.lineTo(startX + item.width, opts.height - opts.area[2]);
context.lineTo(startX, opts.height - opts.area[2]);
context.lineTo(startX, item.y);
context.setLineWidth(1);
context.setStrokeStyle(strokeColor);
}
context.setFillStyle(fillColor);
context.closePath();
//context.stroke();
context.fill();
}
};
break;
case 'stack':
// 绘制堆叠数据图
var points = getStackDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, seriesIndex, series, process);
calPoints.push(points);
points = fixColumeStackData(points, eachSpacing, series.length, seriesIndex, config, opts, series);
for (var _i16 = 0; _i16 < points.length; _i16++) {
var _item7 = points[_i16];
if (_item7 !== null && _i16 > leftNum && _i16 < rightNum) {
context.beginPath();
var fillColor = _item7.color || eachSeries.color;
var startX = _item7.x - _item7.width / 2 + 1;
var height = opts.height - _item7.y - opts.area[2];
var height0 = opts.height - _item7.y0 - opts.area[2];
if (seriesIndex > 0) {
height -= height0;
}
context.setFillStyle(fillColor);
context.moveTo(startX, _item7.y);
context.fillRect(startX, _item7.y, _item7.width, height);
context.closePath();
context.fill();
}
};
break;
case 'meter':
// 绘制温度计数据图
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
calPoints.push(points);
points = fixColumeMeterData(points, eachSpacing, series.length, seriesIndex, config, opts, columnOption.meterBorder);
for (var _i17 = 0; _i17 < points.length; _i17++) {
var _item8 = points[_i17];
if (_item8 !== null && _i17 > leftNum && _i17 < rightNum) {
//画背景颜色
context.beginPath();
if (seriesIndex == 0 && columnOption.meterBorder > 0) {
context.setStrokeStyle(eachSeries.color);
context.setLineWidth(columnOption.meterBorder * opts.pix);
}
if (seriesIndex == 0) {
context.setFillStyle(columnOption.meterFillColor);
} else {
context.setFillStyle(_item8.color || eachSeries.color);
}
var startX = _item8.x - _item8.width / 2;
var height = opts.height - _item8.y - opts.area[2];
if (columnOption.barBorderRadius && columnOption.barBorderRadius.length === 4 || columnOption.barBorderCircle === true) {
var _left = startX;
var _top = _item8.y;
var _width = _item8.width;
var _height2 = opts.height - opts.area[2] - _item8.y;
if (columnOption.barBorderCircle) {
columnOption.barBorderRadius = [_width / 2, _width / 2, 0, 0];
}var _columnOption$barBord2 = _slicedToArray(
columnOption.barBorderRadius, 4),_r = _columnOption$barBord2[0],_r2 = _columnOption$barBord2[1],_r3 = _columnOption$barBord2[2],_r4 = _columnOption$barBord2[3];
var _minRadius = Math.min(_width / 2, _height2 / 2);
_r = _r > _minRadius ? _minRadius : _r;
_r2 = _r2 > _minRadius ? _minRadius : _r2;
_r3 = _r3 > _minRadius ? _minRadius : _r3;
_r4 = _r4 > _minRadius ? _minRadius : _r4;
_r = _r < 0 ? 0 : _r;
_r2 = _r2 < 0 ? 0 : _r2;
_r3 = _r3 < 0 ? 0 : _r3;
_r4 = _r4 < 0 ? 0 : _r4;
context.arc(_left + _r, _top + _r, _r, -Math.PI, -Math.PI / 2);
context.arc(_left + _width - _r2, _top + _r2, _r2, -Math.PI / 2, 0);
context.arc(_left + _width - _r3, _top + _height2 - _r3, _r3, 0, Math.PI / 2);
context.arc(_left + _r4, _top + _height2 - _r4, _r4, Math.PI / 2, Math.PI);
context.fill();
} else {
context.moveTo(startX, _item8.y);
context.lineTo(startX + _item8.width, _item8.y);
context.lineTo(startX + _item8.width, opts.height - opts.area[2]);
context.lineTo(startX, opts.height - opts.area[2]);
context.lineTo(startX, _item8.y);
context.fill();
}
if (seriesIndex == 0 && columnOption.meterBorder > 0) {
context.closePath();
context.stroke();
}
}
}
break;}
3 years ago
3 years ago
});
3 years ago
3 years ago
if (opts.dataLabel !== false && process === 1) {
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
switch (columnOption.type) {
case 'group':
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
points = fixColumeData(points, eachSpacing, series.length, seriesIndex, config, opts);
drawPointText(points, eachSeries, config, context, opts);
break;
case 'stack':
var points = getStackDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, seriesIndex, series, process);
drawPointText(points, eachSeries, config, context, opts);
break;
case 'meter':
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
drawPointText(points, eachSeries, config, context, opts);
break;}
3 years ago
3 years ago
});
3 years ago
}
3 years ago
context.restore();
return {
xAxisPoints: xAxisPoints,
calPoints: calPoints,
eachSpacing: eachSpacing };
3 years ago
}
3 years ago
function drawMountDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var xAxisData = opts.chartData.xAxisData,
xAxisPoints = xAxisData.xAxisPoints,
eachSpacing = xAxisData.eachSpacing;
var mountOption = assign({}, {
type: 'mount',
widthRatio: 1,
borderWidth: 1,
barBorderCircle: false,
barBorderRadius: [],
linearType: 'none',
linearOpacity: 1,
customColor: [],
colorStop: 0 },
opts.extra.mount);
mountOption.widthRatio = mountOption.widthRatio <= 0 ? 0 : mountOption.widthRatio;
mountOption.widthRatio = mountOption.widthRatio >= 2 ? 2 : mountOption.widthRatio;
var calPoints = [];
context.save();
var leftNum = -2;
var rightNum = xAxisPoints.length + 2;
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0 && opts.enableScroll === true) {
context.translate(opts._scrollDistance_, 0);
leftNum = Math.floor(-opts._scrollDistance_ / eachSpacing) - 2;
rightNum = leftNum + opts.xAxis.itemCount + 4;
3 years ago
}
3 years ago
mountOption.customColor = fillCustomColor(mountOption.linearType, mountOption.customColor, series, config);
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[0]);
minRange = ranges.pop();
maxRange = ranges.shift();
var points = getMountDataPoints(series, minRange, maxRange, xAxisPoints, eachSpacing, opts, mountOption, process);
switch (mountOption.type) {
case 'bar':
for (var i = 0; i < points.length; i++) {
var item = points[i];
if (item !== null && i > leftNum && i < rightNum) {
var startX = item.x - eachSpacing * mountOption.widthRatio / 2;
var height = opts.height - item.y - opts.area[2];
context.beginPath();
var fillColor = item.color || series[i].color;
var strokeColor = item.color || series[i].color;
if (mountOption.linearType !== 'none') {
var grd = context.createLinearGradient(startX, item.y, startX, opts.height - opts.area[2]);
//透明渐变
if (mountOption.linearType == 'opacity') {
grd.addColorStop(0, hexToRgb(fillColor, mountOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
} else {
grd.addColorStop(0, hexToRgb(mountOption.customColor[series[i].linearIndex], mountOption.linearOpacity));
grd.addColorStop(mountOption.colorStop, hexToRgb(mountOption.customColor[series[i].linearIndex], mountOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
}
fillColor = grd;
}
// 圆角边框
if (mountOption.barBorderRadius && mountOption.barBorderRadius.length === 4 || mountOption.barBorderCircle === true) {
var left = startX;
var top = item.y;
var width = item.width;
var _height3 = opts.height - opts.area[2] - item.y - mountOption.borderWidth * opts.pix / 2;
if (mountOption.barBorderCircle) {
mountOption.barBorderRadius = [width / 2, width / 2, 0, 0];
}var _mountOption$barBorde = _slicedToArray(
mountOption.barBorderRadius, 4),r0 = _mountOption$barBorde[0],r1 = _mountOption$barBorde[1],r2 = _mountOption$barBorde[2],r3 = _mountOption$barBorde[3];
var minRadius = Math.min(width / 2, _height3 / 2);
r0 = r0 > minRadius ? minRadius : r0;
r1 = r1 > minRadius ? minRadius : r1;
r2 = r2 > minRadius ? minRadius : r2;
r3 = r3 > minRadius ? minRadius : r3;
r0 = r0 < 0 ? 0 : r0;
r1 = r1 < 0 ? 0 : r1;
r2 = r2 < 0 ? 0 : r2;
r3 = r3 < 0 ? 0 : r3;
context.arc(left + r0, top + r0, r0, -Math.PI, -Math.PI / 2);
context.arc(left + width - r1, top + r1, r1, -Math.PI / 2, 0);
context.arc(left + width - r2, top + _height3 - r2, r2, 0, Math.PI / 2);
context.arc(left + r3, top + _height3 - r3, r3, Math.PI / 2, Math.PI);
} else {
context.moveTo(startX, item.y);
context.lineTo(startX + item.width, item.y);
context.lineTo(startX + item.width, opts.height - opts.area[2]);
context.lineTo(startX, opts.height - opts.area[2]);
context.lineTo(startX, item.y);
}
context.setStrokeStyle(strokeColor);
context.setFillStyle(fillColor);
if (mountOption.borderWidth > 0) {
context.setLineWidth(mountOption.borderWidth * opts.pix);
context.closePath();
context.stroke();
}
context.fill();
}
};
break;
case 'triangle':
for (var _i18 = 0; _i18 < points.length; _i18++) {
var _item9 = points[_i18];
if (_item9 !== null && _i18 > leftNum && _i18 < rightNum) {
var startX = _item9.x - eachSpacing * mountOption.widthRatio / 2;
var height = opts.height - _item9.y - opts.area[2];
context.beginPath();
var fillColor = _item9.color || series[_i18].color;
var strokeColor = _item9.color || series[_i18].color;
if (mountOption.linearType !== 'none') {
var grd = context.createLinearGradient(startX, _item9.y, startX, opts.height - opts.area[2]);
//透明渐变
if (mountOption.linearType == 'opacity') {
grd.addColorStop(0, hexToRgb(fillColor, mountOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
} else {
grd.addColorStop(0, hexToRgb(mountOption.customColor[series[_i18].linearIndex], mountOption.linearOpacity));
grd.addColorStop(mountOption.colorStop, hexToRgb(mountOption.customColor[series[_i18].linearIndex], mountOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
}
fillColor = grd;
}
context.moveTo(startX, opts.height - opts.area[2]);
context.lineTo(_item9.x, _item9.y);
context.lineTo(startX + _item9.width, opts.height - opts.area[2]);
context.setStrokeStyle(strokeColor);
context.setFillStyle(fillColor);
if (mountOption.borderWidth > 0) {
context.setLineWidth(mountOption.borderWidth * opts.pix);
context.stroke();
}
context.fill();
}
};
break;
case 'mount':
for (var _i19 = 0; _i19 < points.length; _i19++) {
var _item10 = points[_i19];
if (_item10 !== null && _i19 > leftNum && _i19 < rightNum) {
var startX = _item10.x - eachSpacing * mountOption.widthRatio / 2;
var height = opts.height - _item10.y - opts.area[2];
context.beginPath();
var fillColor = _item10.color || series[_i19].color;
var strokeColor = _item10.color || series[_i19].color;
if (mountOption.linearType !== 'none') {
var grd = context.createLinearGradient(startX, _item10.y, startX, opts.height - opts.area[2]);
//透明渐变
if (mountOption.linearType == 'opacity') {
grd.addColorStop(0, hexToRgb(fillColor, mountOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
} else {
grd.addColorStop(0, hexToRgb(mountOption.customColor[series[_i19].linearIndex], mountOption.linearOpacity));
grd.addColorStop(mountOption.colorStop, hexToRgb(mountOption.customColor[series[_i19].linearIndex], mountOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
}
fillColor = grd;
}
context.moveTo(startX, opts.height - opts.area[2]);
context.bezierCurveTo(_item10.x - _item10.width / 4, opts.height - opts.area[2], _item10.x - _item10.width / 4, _item10.y, _item10.x, _item10.y);
context.bezierCurveTo(_item10.x + _item10.width / 4, _item10.y, _item10.x + _item10.width / 4, opts.height - opts.area[2], startX + _item10.width, opts.height - opts.area[2]);
context.setStrokeStyle(strokeColor);
context.setFillStyle(fillColor);
if (mountOption.borderWidth > 0) {
context.setLineWidth(mountOption.borderWidth * opts.pix);
context.stroke();
}
context.fill();
}
};
break;
case 'sharp':
for (var _i20 = 0; _i20 < points.length; _i20++) {
var _item11 = points[_i20];
if (_item11 !== null && _i20 > leftNum && _i20 < rightNum) {
var startX = _item11.x - eachSpacing * mountOption.widthRatio / 2;
var height = opts.height - _item11.y - opts.area[2];
context.beginPath();
var fillColor = _item11.color || series[_i20].color;
var strokeColor = _item11.color || series[_i20].color;
if (mountOption.linearType !== 'none') {
var grd = context.createLinearGradient(startX, _item11.y, startX, opts.height - opts.area[2]);
//透明渐变
if (mountOption.linearType == 'opacity') {
grd.addColorStop(0, hexToRgb(fillColor, mountOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
} else {
grd.addColorStop(0, hexToRgb(mountOption.customColor[series[_i20].linearIndex], mountOption.linearOpacity));
grd.addColorStop(mountOption.colorStop, hexToRgb(mountOption.customColor[series[_i20].linearIndex], mountOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
}
fillColor = grd;
}
context.moveTo(startX, opts.height - opts.area[2]);
context.quadraticCurveTo(_item11.x - 0, opts.height - opts.area[2] - height / 4, _item11.x, _item11.y);
context.quadraticCurveTo(_item11.x + 0, opts.height - opts.area[2] - height / 4, startX + _item11.width, opts.height - opts.area[2]);
context.setStrokeStyle(strokeColor);
context.setFillStyle(fillColor);
if (mountOption.borderWidth > 0) {
context.setLineWidth(mountOption.borderWidth * opts.pix);
context.stroke();
}
context.fill();
}
};
break;}
3 years ago
3 years ago
if (opts.dataLabel !== false && process === 1) {
var _ranges, _minRange, _maxRange;
_ranges = [].concat(opts.chartData.yAxisData.ranges[0]);
_minRange = _ranges.pop();
_maxRange = _ranges.shift();
var points = getMountDataPoints(series, _minRange, _maxRange, xAxisPoints, eachSpacing, opts, mountOption, process);
drawMountPointText(points, series, config, context, opts);
3 years ago
}
3 years ago
context.restore();
return {
xAxisPoints: xAxisPoints,
calPoints: points,
eachSpacing: eachSpacing };
3 years ago
3 years ago
}
3 years ago
3 years ago
function drawBarDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var yAxisPoints = [];
var eachSpacing = (opts.height - opts.area[0] - opts.area[2]) / opts.categories.length;
for (var i = 0; i < opts.categories.length; i++) {
yAxisPoints.push(opts.area[0] + eachSpacing / 2 + eachSpacing * i);
3 years ago
}
3 years ago
var columnOption = assign({}, {
type: 'group',
width: eachSpacing / 2,
meterBorder: 4,
meterFillColor: '#FFFFFF',
barBorderCircle: false,
barBorderRadius: [],
seriesGap: 2,
linearType: 'none',
linearOpacity: 1,
customColor: [],
colorStop: 0 },
opts.extra.bar);
var calPoints = [];
context.save();
var leftNum = -2;
var rightNum = yAxisPoints.length + 2;
if (opts.tooltip && opts.tooltip.textList && opts.tooltip.textList.length && process === 1) {
drawBarToolTipSplitArea(opts.tooltip.offset.y, opts, config, context, eachSpacing);
3 years ago
}
3 years ago
columnOption.customColor = fillCustomColor(columnOption.linearType, columnOption.customColor, series, config);
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.xAxisData.ranges);
maxRange = ranges.pop();
minRange = ranges.shift();
var data = eachSeries.data;
switch (columnOption.type) {
case 'group':
var points = getBarDataPoints(data, minRange, maxRange, yAxisPoints, eachSpacing, opts, config, process);
var tooltipPoints = getBarStackDataPoints(data, minRange, maxRange, yAxisPoints, eachSpacing, opts, config, seriesIndex, series, process);
calPoints.push(tooltipPoints);
points = fixBarData(points, eachSpacing, series.length, seriesIndex, config, opts);
for (var _i21 = 0; _i21 < points.length; _i21++) {
var item = points[_i21];
//fix issues/I27B1N yyoinge & Joeshu
if (item !== null && _i21 > leftNum && _i21 < rightNum) {
//var startX = item.x - item.width / 2;
var startX = opts.area[3];
var startY = item.y - item.width / 2;
var height = item.height;
context.beginPath();
var fillColor = item.color || eachSeries.color;
var strokeColor = item.color || eachSeries.color;
if (columnOption.linearType !== 'none') {
var grd = context.createLinearGradient(startX, item.y, item.x, item.y);
//透明渐变
if (columnOption.linearType == 'opacity') {
grd.addColorStop(0, hexToRgb(fillColor, columnOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
} else {
grd.addColorStop(0, hexToRgb(columnOption.customColor[eachSeries.linearIndex], columnOption.linearOpacity));
grd.addColorStop(columnOption.colorStop, hexToRgb(columnOption.customColor[eachSeries.linearIndex], columnOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
}
fillColor = grd;
}
// 圆角边框
if (columnOption.barBorderRadius && columnOption.barBorderRadius.length === 4 || columnOption.barBorderCircle === true) {
var left = startX;
var width = item.width;
var top = item.y - item.width / 2;
var _height4 = item.height;
if (columnOption.barBorderCircle) {
columnOption.barBorderRadius = [width / 2, width / 2, 0, 0];
}var _columnOption$barBord3 = _slicedToArray(
columnOption.barBorderRadius, 4),r0 = _columnOption$barBord3[0],r1 = _columnOption$barBord3[1],r2 = _columnOption$barBord3[2],r3 = _columnOption$barBord3[3];
var minRadius = Math.min(width / 2, _height4 / 2);
r0 = r0 > minRadius ? minRadius : r0;
r1 = r1 > minRadius ? minRadius : r1;
r2 = r2 > minRadius ? minRadius : r2;
r3 = r3 > minRadius ? minRadius : r3;
r0 = r0 < 0 ? 0 : r0;
r1 = r1 < 0 ? 0 : r1;
r2 = r2 < 0 ? 0 : r2;
r3 = r3 < 0 ? 0 : r3;
3 years ago
3 years ago
context.arc(left + r3, top + r3, r3, -Math.PI, -Math.PI / 2);
context.arc(item.x - r0, top + r0, r0, -Math.PI / 2, 0);
context.arc(item.x - r1, top + width - r1, r1, 0, Math.PI / 2);
context.arc(left + r2, top + width - r2, r2, Math.PI / 2, Math.PI);
} else {
context.moveTo(startX, startY);
context.lineTo(item.x, startY);
context.lineTo(item.x, startY + item.width);
context.lineTo(startX, startY + item.width);
context.lineTo(startX, startY);
context.setLineWidth(1);
context.setStrokeStyle(strokeColor);
}
context.setFillStyle(fillColor);
context.closePath();
//context.stroke();
context.fill();
}
};
break;
case 'stack':
// 绘制堆叠数据图
var points = getBarStackDataPoints(data, minRange, maxRange, yAxisPoints, eachSpacing, opts, config, seriesIndex, series, process);
calPoints.push(points);
points = fixBarStackData(points, eachSpacing, series.length, seriesIndex, config, opts, series);
for (var _i22 = 0; _i22 < points.length; _i22++) {
var _item12 = points[_i22];
if (_item12 !== null && _i22 > leftNum && _i22 < rightNum) {
context.beginPath();
var fillColor = _item12.color || eachSeries.color;
var startX = _item12.x0;
context.setFillStyle(fillColor);
context.moveTo(startX, _item12.y - _item12.width / 2);
context.fillRect(startX, _item12.y - _item12.width / 2, _item12.height, _item12.width);
context.closePath();
context.fill();
}
};
break;}
3 years ago
3 years ago
});
3 years ago
3 years ago
if (opts.dataLabel !== false && process === 1) {
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.xAxisData.ranges);
maxRange = ranges.pop();
minRange = ranges.shift();
var data = eachSeries.data;
switch (columnOption.type) {
case 'group':
var points = getBarDataPoints(data, minRange, maxRange, yAxisPoints, eachSpacing, opts, config, process);
points = fixBarData(points, eachSpacing, series.length, seriesIndex, config, opts);
drawBarPointText(points, eachSeries, config, context, opts);
break;
case 'stack':
var points = getBarStackDataPoints(data, minRange, maxRange, yAxisPoints, eachSpacing, opts, config, seriesIndex, series, process);
drawBarPointText(points, eachSeries, config, context, opts);
break;}
});
3 years ago
}
3 years ago
return {
yAxisPoints: yAxisPoints,
calPoints: calPoints,
eachSpacing: eachSpacing };
3 years ago
3 years ago
}
3 years ago
3 years ago
function drawCandleDataPoints(series, seriesMA, opts, config, context) {
var process = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 1;
var candleOption = assign({}, {
color: {},
average: {} },
opts.extra.candle);
candleOption.color = assign({}, {
upLine: '#f04864',
upFill: '#f04864',
downLine: '#2fc25b',
downFill: '#2fc25b' },
candleOption.color);
candleOption.average = assign({}, {
show: false,
name: [],
day: [],
color: config.color },
candleOption.average);
opts.extra.candle = candleOption;
var xAxisData = opts.chartData.xAxisData,
xAxisPoints = xAxisData.xAxisPoints,
eachSpacing = xAxisData.eachSpacing;
var calPoints = [];
context.save();
var leftNum = -2;
var rightNum = xAxisPoints.length + 2;
var leftSpace = 0;
var rightSpace = opts.width + eachSpacing;
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0 && opts.enableScroll === true) {
context.translate(opts._scrollDistance_, 0);
leftNum = Math.floor(-opts._scrollDistance_ / eachSpacing) - 2;
rightNum = leftNum + opts.xAxis.itemCount + 4;
leftSpace = -opts._scrollDistance_ - eachSpacing * 2 + opts.area[3];
rightSpace = leftSpace + (opts.xAxis.itemCount + 4) * eachSpacing;
}
//画均线
if (candleOption.average.show || seriesMA) {//Merge pull request !12 from 邱贵翔
seriesMA.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
var splitPointList = splitPoints(points, eachSeries);
for (var i = 0; i < splitPointList.length; i++) {
var _points = splitPointList[i];
context.beginPath();
context.setStrokeStyle(eachSeries.color);
context.setLineWidth(1);
if (_points.length === 1) {
context.moveTo(_points[0].x, _points[0].y);
context.arc(_points[0].x, _points[0].y, 1, 0, 2 * Math.PI);
} else {
context.moveTo(_points[0].x, _points[0].y);
var startPoint = 0;
for (var j = 0; j < _points.length; j++) {
var item = _points[j];
if (startPoint == 0 && item.x > leftSpace) {
context.moveTo(item.x, item.y);
startPoint = 1;
}
if (j > 0 && item.x > leftSpace && item.x < rightSpace) {
var ctrlPoint = createCurveControlPoints(_points, j - 1);
context.bezierCurveTo(ctrlPoint.ctrA.x, ctrlPoint.ctrA.y, ctrlPoint.ctrB.x, ctrlPoint.ctrB.y, item.x,
item.y);
}
}
context.moveTo(_points[0].x, _points[0].y);
3 years ago
}
3 years ago
context.closePath();
context.stroke();
3 years ago
}
3 years ago
});
3 years ago
}
3 years ago
//画K线
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getCandleDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
calPoints.push(points);
var splitPointList = splitPoints(points, eachSeries);
for (var i = 0; i < splitPointList[0].length; i++) {
if (i > leftNum && i < rightNum) {
var item = splitPointList[0][i];
context.beginPath();
//如果上涨
if (data[i][1] - data[i][0] > 0) {
context.setStrokeStyle(candleOption.color.upLine);
context.setFillStyle(candleOption.color.upFill);
context.setLineWidth(1 * opts.pix);
context.moveTo(item[3].x, item[3].y); //顶点
context.lineTo(item[1].x, item[1].y); //收盘中间点
context.lineTo(item[1].x - eachSpacing / 4, item[1].y); //收盘左侧点
context.lineTo(item[0].x - eachSpacing / 4, item[0].y); //开盘左侧点
context.lineTo(item[0].x, item[0].y); //开盘中间点
context.lineTo(item[2].x, item[2].y); //底点
context.lineTo(item[0].x, item[0].y); //开盘中间点
context.lineTo(item[0].x + eachSpacing / 4, item[0].y); //开盘右侧点
context.lineTo(item[1].x + eachSpacing / 4, item[1].y); //收盘右侧点
context.lineTo(item[1].x, item[1].y); //收盘中间点
context.moveTo(item[3].x, item[3].y); //顶点
} else {
context.setStrokeStyle(candleOption.color.downLine);
context.setFillStyle(candleOption.color.downFill);
context.setLineWidth(1 * opts.pix);
context.moveTo(item[3].x, item[3].y); //顶点
context.lineTo(item[0].x, item[0].y); //开盘中间点
context.lineTo(item[0].x - eachSpacing / 4, item[0].y); //开盘左侧点
context.lineTo(item[1].x - eachSpacing / 4, item[1].y); //收盘左侧点
context.lineTo(item[1].x, item[1].y); //收盘中间点
context.lineTo(item[2].x, item[2].y); //底点
context.lineTo(item[1].x, item[1].y); //收盘中间点
context.lineTo(item[1].x + eachSpacing / 4, item[1].y); //收盘右侧点
context.lineTo(item[0].x + eachSpacing / 4, item[0].y); //开盘右侧点
context.lineTo(item[0].x, item[0].y); //开盘中间点
context.moveTo(item[3].x, item[3].y); //顶点
}
context.closePath();
context.fill();
context.stroke();
}
3 years ago
}
3 years ago
});
context.restore();
return {
xAxisPoints: xAxisPoints,
calPoints: calPoints,
eachSpacing: eachSpacing };
3 years ago
}
3 years ago
function drawAreaDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var areaOption = assign({}, {
type: 'straight',
opacity: 0.2,
addLine: false,
width: 2,
gradient: false },
opts.extra.area);
var xAxisData = opts.chartData.xAxisData,
xAxisPoints = xAxisData.xAxisPoints,
eachSpacing = xAxisData.eachSpacing;
var endY = opts.height - opts.area[2];
var calPoints = [];
context.save();
var leftSpace = 0;
var rightSpace = opts.width + eachSpacing;
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0 && opts.enableScroll === true) {
context.translate(opts._scrollDistance_, 0);
leftSpace = -opts._scrollDistance_ - eachSpacing * 2 + opts.area[3];
rightSpace = leftSpace + (opts.xAxis.itemCount + 4) * eachSpacing;
3 years ago
}
3 years ago
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
calPoints.push(points);
var splitPointList = splitPoints(points, eachSeries);
for (var i = 0; i < splitPointList.length; i++) {
var _points2 = splitPointList[i];
// 绘制区域数
context.beginPath();
context.setStrokeStyle(hexToRgb(eachSeries.color, areaOption.opacity));
if (areaOption.gradient) {
var gradient = context.createLinearGradient(0, opts.area[0], 0, opts.height - opts.area[2]);
gradient.addColorStop('0', hexToRgb(eachSeries.color, areaOption.opacity));
gradient.addColorStop('1.0', hexToRgb("#FFFFFF", 0.1));
context.setFillStyle(gradient);
} else {
context.setFillStyle(hexToRgb(eachSeries.color, areaOption.opacity));
3 years ago
}
3 years ago
context.setLineWidth(areaOption.width * opts.pix);
if (_points2.length > 1) {
var firstPoint = _points2[0];
var lastPoint = _points2[_points2.length - 1];
context.moveTo(firstPoint.x, firstPoint.y);
var startPoint = 0;
if (areaOption.type === 'curve') {
for (var j = 0; j < _points2.length; j++) {
var item = _points2[j];
if (startPoint == 0 && item.x > leftSpace) {
context.moveTo(item.x, item.y);
startPoint = 1;
3 years ago
}
3 years ago
if (j > 0 && item.x > leftSpace && item.x < rightSpace) {
var ctrlPoint = createCurveControlPoints(_points2, j - 1);
context.bezierCurveTo(ctrlPoint.ctrA.x, ctrlPoint.ctrA.y, ctrlPoint.ctrB.x, ctrlPoint.ctrB.y, item.x, item.y);
3 years ago
}
3 years ago
};
}
if (areaOption.type === 'straight') {
for (var _j = 0; _j < _points2.length; _j++) {
var _item13 = _points2[_j];
if (startPoint == 0 && _item13.x > leftSpace) {
context.moveTo(_item13.x, _item13.y);
startPoint = 1;
3 years ago
}
3 years ago
if (_j > 0 && _item13.x > leftSpace && _item13.x < rightSpace) {
context.lineTo(_item13.x, _item13.y);
}
};
}
if (areaOption.type === 'step') {
for (var _j2 = 0; _j2 < _points2.length; _j2++) {
var _item14 = _points2[_j2];
if (startPoint == 0 && _item14.x > leftSpace) {
context.moveTo(_item14.x, _item14.y);
startPoint = 1;
}
if (_j2 > 0 && _item14.x > leftSpace && _item14.x < rightSpace) {
context.lineTo(_item14.x, _points2[_j2 - 1].y);
context.lineTo(_item14.x, _item14.y);
3 years ago
}
3 years ago
};
}
context.lineTo(lastPoint.x, endY);
context.lineTo(firstPoint.x, endY);
context.lineTo(firstPoint.x, firstPoint.y);
} else {
var _item15 = _points2[0];
context.moveTo(_item15.x - eachSpacing / 2, _item15.y);
context.lineTo(_item15.x + eachSpacing / 2, _item15.y);
context.lineTo(_item15.x + eachSpacing / 2, endY);
context.lineTo(_item15.x - eachSpacing / 2, endY);
context.moveTo(_item15.x - eachSpacing / 2, _item15.y);
}
context.closePath();
context.fill();
//画连线
if (areaOption.addLine) {
if (eachSeries.lineType == 'dash') {
var dashLength = eachSeries.dashLength ? eachSeries.dashLength : 8;
dashLength *= opts.pix;
context.setLineDash([dashLength, dashLength]);
}
context.beginPath();
context.setStrokeStyle(eachSeries.color);
context.setLineWidth(areaOption.width * opts.pix);
if (_points2.length === 1) {
context.moveTo(_points2[0].x, _points2[0].y);
context.arc(_points2[0].x, _points2[0].y, 1, 0, 2 * Math.PI);
} else {
context.moveTo(_points2[0].x, _points2[0].y);
var _startPoint = 0;
if (areaOption.type === 'curve') {
for (var _j3 = 0; _j3 < _points2.length; _j3++) {
var _item16 = _points2[_j3];
if (_startPoint == 0 && _item16.x > leftSpace) {
context.moveTo(_item16.x, _item16.y);
_startPoint = 1;
}
if (_j3 > 0 && _item16.x > leftSpace && _item16.x < rightSpace) {
var _ctrlPoint = createCurveControlPoints(_points2, _j3 - 1);
context.bezierCurveTo(_ctrlPoint.ctrA.x, _ctrlPoint.ctrA.y, _ctrlPoint.ctrB.x, _ctrlPoint.ctrB.y, _item16.x, _item16.y);
}
};
3 years ago
}
3 years ago
if (areaOption.type === 'straight') {
for (var _j4 = 0; _j4 < _points2.length; _j4++) {
var _item17 = _points2[_j4];
if (_startPoint == 0 && _item17.x > leftSpace) {
context.moveTo(_item17.x, _item17.y);
_startPoint = 1;
}
if (_j4 > 0 && _item17.x > leftSpace && _item17.x < rightSpace) {
context.lineTo(_item17.x, _item17.y);
}
};
}
if (areaOption.type === 'step') {
for (var _j5 = 0; _j5 < _points2.length; _j5++) {
var _item18 = _points2[_j5];
if (_startPoint == 0 && _item18.x > leftSpace) {
context.moveTo(_item18.x, _item18.y);
_startPoint = 1;
}
if (_j5 > 0 && _item18.x > leftSpace && _item18.x < rightSpace) {
context.lineTo(_item18.x, _points2[_j5 - 1].y);
context.lineTo(_item18.x, _item18.y);
}
};
}
context.moveTo(_points2[0].x, _points2[0].y);
3 years ago
}
3 years ago
context.stroke();
context.setLineDash([]);
3 years ago
}
}
3 years ago
//画点
if (opts.dataPointShape !== false) {
drawPointShape(points, eachSeries.color, eachSeries.pointShape, context, opts);
3 years ago
}
3 years ago
});
if (opts.dataLabel !== false && process === 1) {
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
drawPointText(points, eachSeries, config, context, opts);
});
3 years ago
}
3 years ago
context.restore();
return {
xAxisPoints: xAxisPoints,
calPoints: calPoints,
eachSpacing: eachSpacing };
3 years ago
}
3 years ago
function drawScatterDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var scatterOption = assign({}, {
type: 'circle' },
opts.extra.scatter);
var xAxisData = opts.chartData.xAxisData,
xAxisPoints = xAxisData.xAxisPoints,
eachSpacing = xAxisData.eachSpacing;
var calPoints = [];
context.save();
var leftSpace = 0;
var rightSpace = opts.width + eachSpacing;
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0 && opts.enableScroll === true) {
context.translate(opts._scrollDistance_, 0);
leftSpace = -opts._scrollDistance_ - eachSpacing * 2 + opts.area[3];
rightSpace = leftSpace + (opts.xAxis.itemCount + 4) * eachSpacing;
3 years ago
}
3 years ago
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
context.beginPath();
context.setStrokeStyle(eachSeries.color);
context.setFillStyle(eachSeries.color);
context.setLineWidth(1 * opts.pix);
var shape = eachSeries.pointShape;
if (shape === 'diamond') {
points.forEach(function (item, index) {
if (item !== null) {
context.moveTo(item.x, item.y - 4.5);
context.lineTo(item.x - 4.5, item.y);
context.lineTo(item.x, item.y + 4.5);
context.lineTo(item.x + 4.5, item.y);
context.lineTo(item.x, item.y - 4.5);
}
});
} else if (shape === 'circle') {
points.forEach(function (item, index) {
if (item !== null) {
context.moveTo(item.x + 2.5 * opts.pix, item.y);
context.arc(item.x, item.y, 3 * opts.pix, 0, 2 * Math.PI, false);
}
});
} else if (shape === 'square') {
points.forEach(function (item, index) {
if (item !== null) {
context.moveTo(item.x - 3.5, item.y - 3.5);
context.rect(item.x - 3.5, item.y - 3.5, 7, 7);
}
});
} else if (shape === 'triangle') {
points.forEach(function (item, index) {
if (item !== null) {
context.moveTo(item.x, item.y - 4.5);
context.lineTo(item.x - 4.5, item.y + 4.5);
context.lineTo(item.x + 4.5, item.y + 4.5);
context.lineTo(item.x, item.y - 4.5);
}
});
} else if (shape === 'triangle') {
return;
3 years ago
}
3 years ago
context.closePath();
context.fill();
context.stroke();
});
if (opts.dataLabel !== false && process === 1) {
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
drawPointText(points, eachSeries, config, context, opts);
});
3 years ago
}
3 years ago
context.restore();
return {
xAxisPoints: xAxisPoints,
calPoints: calPoints,
eachSpacing: eachSpacing };
3 years ago
}
3 years ago
function drawBubbleDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var bubbleOption = assign({}, {
opacity: 1,
border: 2 },
opts.extra.bubble);
var xAxisData = opts.chartData.xAxisData,
xAxisPoints = xAxisData.xAxisPoints,
eachSpacing = xAxisData.eachSpacing;
var calPoints = [];
context.save();
var leftSpace = 0;
var rightSpace = opts.width + eachSpacing;
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0 && opts.enableScroll === true) {
context.translate(opts._scrollDistance_, 0);
leftSpace = -opts._scrollDistance_ - eachSpacing * 2 + opts.area[3];
rightSpace = leftSpace + (opts.xAxis.itemCount + 4) * eachSpacing;
3 years ago
}
3 years ago
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
context.beginPath();
context.setStrokeStyle(eachSeries.color);
context.setLineWidth(bubbleOption.border * opts.pix);
context.setFillStyle(hexToRgb(eachSeries.color, bubbleOption.opacity));
points.forEach(function (item, index) {
context.moveTo(item.x + item.r, item.y);
context.arc(item.x, item.y, item.r * opts.pix, 0, 2 * Math.PI, false);
});
context.closePath();
context.fill();
context.stroke();
3 years ago
3 years ago
if (opts.dataLabel !== false && process === 1) {
points.forEach(function (item, index) {
context.beginPath();
var fontSize = series.textSize * opts.pix || config.fontSize;
context.setFontSize(fontSize);
context.setFillStyle(series.textColor || "#FFFFFF");
context.setTextAlign('center');
context.fillText(String(item.t), item.x, item.y + fontSize / 2);
context.closePath();
context.stroke();
context.setTextAlign('left');
});
3 years ago
}
3 years ago
});
context.restore();
return {
xAxisPoints: xAxisPoints,
calPoints: calPoints,
eachSpacing: eachSpacing };
3 years ago
}
3 years ago
function drawLineDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var lineOption = assign({}, {
type: 'straight',
width: 2 },
opts.extra.line);
lineOption.width *= opts.pix;
var xAxisData = opts.chartData.xAxisData,
xAxisPoints = xAxisData.xAxisPoints,
eachSpacing = xAxisData.eachSpacing;
var calPoints = [];
context.save();
var leftSpace = 0;
var rightSpace = opts.width + eachSpacing;
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0 && opts.enableScroll === true) {
context.translate(opts._scrollDistance_, 0);
leftSpace = -opts._scrollDistance_ - eachSpacing * 2 + opts.area[3];
rightSpace = leftSpace + (opts.xAxis.itemCount + 4) * eachSpacing;
3 years ago
}
3 years ago
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
calPoints.push(points);
var splitPointList = splitPoints(points, eachSeries);
if (eachSeries.lineType == 'dash') {
var dashLength = eachSeries.dashLength ? eachSeries.dashLength : 8;
dashLength *= opts.pix;
context.setLineDash([dashLength, dashLength]);
3 years ago
}
3 years ago
context.beginPath();
context.setStrokeStyle(eachSeries.color);
context.setLineWidth(lineOption.width);
splitPointList.forEach(function (points, index) {
if (points.length === 1) {
context.moveTo(points[0].x, points[0].y);
context.arc(points[0].x, points[0].y, 1, 0, 2 * Math.PI);
} else {
context.moveTo(points[0].x, points[0].y);
var startPoint = 0;
if (lineOption.type === 'curve') {
for (var j = 0; j < points.length; j++) {
var item = points[j];
if (startPoint == 0 && item.x > leftSpace) {
context.moveTo(item.x, item.y);
startPoint = 1;
}
if (j > 0 && item.x > leftSpace && item.x < rightSpace) {
var ctrlPoint = createCurveControlPoints(points, j - 1);
context.bezierCurveTo(ctrlPoint.ctrA.x, ctrlPoint.ctrA.y, ctrlPoint.ctrB.x, ctrlPoint.ctrB.y, item.x, item.y);
}
};
}
if (lineOption.type === 'straight') {
for (var _j6 = 0; _j6 < points.length; _j6++) {
var _item19 = points[_j6];
if (startPoint == 0 && _item19.x > leftSpace) {
context.moveTo(_item19.x, _item19.y);
startPoint = 1;
}
if (_j6 > 0 && _item19.x > leftSpace && _item19.x < rightSpace) {
context.lineTo(_item19.x, _item19.y);
}
};
}
if (lineOption.type === 'step') {
for (var _j7 = 0; _j7 < points.length; _j7++) {
var _item20 = points[_j7];
if (startPoint == 0 && _item20.x > leftSpace) {
context.moveTo(_item20.x, _item20.y);
startPoint = 1;
}
if (_j7 > 0 && _item20.x > leftSpace && _item20.x < rightSpace) {
context.lineTo(_item20.x, points[_j7 - 1].y);
context.lineTo(_item20.x, _item20.y);
}
};
}
context.moveTo(points[0].x, points[0].y);
3 years ago
}
3 years ago
});
context.stroke();
context.setLineDash([]);
if (opts.dataPointShape !== false) {
drawPointShape(points, eachSeries.color, eachSeries.pointShape, context, opts);
3 years ago
}
3 years ago
});
if (opts.dataLabel !== false && process === 1) {
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
drawPointText(points, eachSeries, config, context, opts);
});
3 years ago
}
3 years ago
context.restore();
return {
xAxisPoints: xAxisPoints,
calPoints: calPoints,
eachSpacing: eachSpacing };
3 years ago
}
3 years ago
function drawMixDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var xAxisData = opts.chartData.xAxisData,
xAxisPoints = xAxisData.xAxisPoints,
eachSpacing = xAxisData.eachSpacing;
var columnOption = assign({}, {
width: eachSpacing / 2,
barBorderCircle: false,
barBorderRadius: [],
seriesGap: 2,
linearType: 'none',
linearOpacity: 1,
customColor: [],
colorStop: 0 },
opts.extra.mix.column);
var areaOption = assign({}, {
opacity: 0.2,
gradient: false },
opts.extra.mix.area);
var endY = opts.height - opts.area[2];
var calPoints = [];
var columnIndex = 0;
var columnLength = 0;
series.forEach(function (eachSeries, seriesIndex) {
if (eachSeries.type == 'column') {
columnLength += 1;
}
});
context.save();
var leftNum = -2;
var rightNum = xAxisPoints.length + 2;
var leftSpace = 0;
var rightSpace = opts.width + eachSpacing;
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0 && opts.enableScroll === true) {
context.translate(opts._scrollDistance_, 0);
leftNum = Math.floor(-opts._scrollDistance_ / eachSpacing) - 2;
rightNum = leftNum + opts.xAxis.itemCount + 4;
leftSpace = -opts._scrollDistance_ - eachSpacing * 2 + opts.area[3];
rightSpace = leftSpace + (opts.xAxis.itemCount + 4) * eachSpacing;
}
columnOption.customColor = fillCustomColor(columnOption.linearType, columnOption.customColor, series, config);
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
calPoints.push(points);
// 绘制柱状数据图
if (eachSeries.type == 'column') {
points = fixColumeData(points, eachSpacing, columnLength, columnIndex, config, opts);
for (var i = 0; i < points.length; i++) {
var item = points[i];
if (item !== null && i > leftNum && i < rightNum) {
var startX = item.x - item.width / 2;
var height = opts.height - item.y - opts.area[2];
context.beginPath();
var fillColor = item.color || eachSeries.color;
var strokeColor = item.color || eachSeries.color;
if (columnOption.linearType !== 'none') {
var grd = context.createLinearGradient(startX, item.y, startX, opts.height - opts.area[2]);
//透明渐变
if (columnOption.linearType == 'opacity') {
grd.addColorStop(0, hexToRgb(fillColor, columnOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
} else {
grd.addColorStop(0, hexToRgb(columnOption.customColor[eachSeries.linearIndex], columnOption.linearOpacity));
grd.addColorStop(columnOption.colorStop, hexToRgb(columnOption.customColor[eachSeries.linearIndex], columnOption.linearOpacity));
grd.addColorStop(1, hexToRgb(fillColor, 1));
}
fillColor = grd;
}
// 圆角边框
if (columnOption.barBorderRadius && columnOption.barBorderRadius.length === 4 || columnOption.barBorderCircle) {
var left = startX;
var top = item.y;
var width = item.width;
var _height5 = opts.height - opts.area[2] - item.y;
if (columnOption.barBorderCircle) {
columnOption.barBorderRadius = [width / 2, width / 2, 0, 0];
}var _columnOption$barBord4 = _slicedToArray(
columnOption.barBorderRadius, 4),r0 = _columnOption$barBord4[0],r1 = _columnOption$barBord4[1],r2 = _columnOption$barBord4[2],r3 = _columnOption$barBord4[3];
var minRadius = Math.min(width / 2, _height5 / 2);
r0 = r0 > minRadius ? minRadius : r0;
r1 = r1 > minRadius ? minRadius : r1;
r2 = r2 > minRadius ? minRadius : r2;
r3 = r3 > minRadius ? minRadius : r3;
r0 = r0 < 0 ? 0 : r0;
r1 = r1 < 0 ? 0 : r1;
r2 = r2 < 0 ? 0 : r2;
r3 = r3 < 0 ? 0 : r3;
context.arc(left + r0, top + r0, r0, -Math.PI, -Math.PI / 2);
context.arc(left + width - r1, top + r1, r1, -Math.PI / 2, 0);
context.arc(left + width - r2, top + _height5 - r2, r2, 0, Math.PI / 2);
context.arc(left + r3, top + _height5 - r3, r3, Math.PI / 2, Math.PI);
} else {
context.moveTo(startX, item.y);
context.lineTo(startX + item.width, item.y);
context.lineTo(startX + item.width, opts.height - opts.area[2]);
context.lineTo(startX, opts.height - opts.area[2]);
context.lineTo(startX, item.y);
context.setLineWidth(1);
context.setStrokeStyle(strokeColor);
}
context.setFillStyle(fillColor);
context.closePath();
context.fill();
}
}
columnIndex += 1;
}
//绘制区域图数据
if (eachSeries.type == 'area') {
var _splitPointList = splitPoints(points, eachSeries);
for (var _i23 = 0; _i23 < _splitPointList.length; _i23++) {
var _points3 = _splitPointList[_i23];
// 绘制区域数据
context.beginPath();
context.setStrokeStyle(eachSeries.color);
context.setStrokeStyle(hexToRgb(eachSeries.color, areaOption.opacity));
if (areaOption.gradient) {
var gradient = context.createLinearGradient(0, opts.area[0], 0, opts.height - opts.area[2]);
gradient.addColorStop('0', hexToRgb(eachSeries.color, areaOption.opacity));
gradient.addColorStop('1.0', hexToRgb("#FFFFFF", 0.1));
context.setFillStyle(gradient);
} else {
context.setFillStyle(hexToRgb(eachSeries.color, areaOption.opacity));
}
context.setLineWidth(2 * opts.pix);
if (_points3.length > 1) {
var firstPoint = _points3[0];
var lastPoint = _points3[_points3.length - 1];
context.moveTo(firstPoint.x, firstPoint.y);
var startPoint = 0;
if (eachSeries.style === 'curve') {
for (var j = 0; j < _points3.length; j++) {
var _item21 = _points3[j];
if (startPoint == 0 && _item21.x > leftSpace) {
context.moveTo(_item21.x, _item21.y);
startPoint = 1;
}
if (j > 0 && _item21.x > leftSpace && _item21.x < rightSpace) {
var ctrlPoint = createCurveControlPoints(_points3, j - 1);
context.bezierCurveTo(ctrlPoint.ctrA.x, ctrlPoint.ctrA.y, ctrlPoint.ctrB.x, ctrlPoint.ctrB.y, _item21.x, _item21.y);
}
};
} else {
for (var _j8 = 0; _j8 < _points3.length; _j8++) {
var _item22 = _points3[_j8];
if (startPoint == 0 && _item22.x > leftSpace) {
context.moveTo(_item22.x, _item22.y);
startPoint = 1;
}
if (_j8 > 0 && _item22.x > leftSpace && _item22.x < rightSpace) {
context.lineTo(_item22.x, _item22.y);
}
};
}
context.lineTo(lastPoint.x, endY);
context.lineTo(firstPoint.x, endY);
context.lineTo(firstPoint.x, firstPoint.y);
} else {
var _item23 = _points3[0];
context.moveTo(_item23.x - eachSpacing / 2, _item23.y);
context.lineTo(_item23.x + eachSpacing / 2, _item23.y);
context.lineTo(_item23.x + eachSpacing / 2, endY);
context.lineTo(_item23.x - eachSpacing / 2, endY);
context.moveTo(_item23.x - eachSpacing / 2, _item23.y);
}
context.closePath();
context.fill();
}
}
// 绘制折线数据图
if (eachSeries.type == 'line') {
var splitPointList = splitPoints(points, eachSeries);
splitPointList.forEach(function (points, index) {
if (eachSeries.lineType == 'dash') {
var dashLength = eachSeries.dashLength ? eachSeries.dashLength : 8;
dashLength *= opts.pix;
context.setLineDash([dashLength, dashLength]);
}
context.beginPath();
context.setStrokeStyle(eachSeries.color);
context.setLineWidth(2 * opts.pix);
if (points.length === 1) {
context.moveTo(points[0].x, points[0].y);
context.arc(points[0].x, points[0].y, 1, 0, 2 * Math.PI);
} else {
context.moveTo(points[0].x, points[0].y);
var _startPoint2 = 0;
if (eachSeries.style == 'curve') {
for (var _j9 = 0; _j9 < points.length; _j9++) {
var _item24 = points[_j9];
if (_startPoint2 == 0 && _item24.x > leftSpace) {
context.moveTo(_item24.x, _item24.y);
_startPoint2 = 1;
}
if (_j9 > 0 && _item24.x > leftSpace && _item24.x < rightSpace) {
var ctrlPoint = createCurveControlPoints(points, _j9 - 1);
context.bezierCurveTo(ctrlPoint.ctrA.x, ctrlPoint.ctrA.y, ctrlPoint.ctrB.x, ctrlPoint.ctrB.y,
_item24.x, _item24.y);
}
}
} else {
for (var _j10 = 0; _j10 < points.length; _j10++) {
var _item25 = points[_j10];
if (_startPoint2 == 0 && _item25.x > leftSpace) {
context.moveTo(_item25.x, _item25.y);
_startPoint2 = 1;
}
if (_j10 > 0 && _item25.x > leftSpace && _item25.x < rightSpace) {
context.lineTo(_item25.x, _item25.y);
}
}
}
context.moveTo(points[0].x, points[0].y);
}
context.stroke();
context.setLineDash([]);
});
}
// 绘制点数据图
if (eachSeries.type == 'point') {
eachSeries.addPoint = true;
}
if (eachSeries.addPoint == true && eachSeries.type !== 'column') {
drawPointShape(points, eachSeries.color, eachSeries.pointShape, context, opts);
}
});
if (opts.dataLabel !== false && process === 1) {
var columnIndex = 0;
series.forEach(function (eachSeries, seriesIndex) {
var ranges, minRange, maxRange;
ranges = [].concat(opts.chartData.yAxisData.ranges[eachSeries.index]);
minRange = ranges.pop();
maxRange = ranges.shift();
var data = eachSeries.data;
var points = getDataPoints(data, minRange, maxRange, xAxisPoints, eachSpacing, opts, config, process);
if (eachSeries.type !== 'column') {
drawPointText(points, eachSeries, config, context, opts);
} else {
points = fixColumeData(points, eachSpacing, columnLength, columnIndex, config, opts);
drawPointText(points, eachSeries, config, context, opts);
columnIndex += 1;
}
});
}
context.restore();
return {
xAxisPoints: xAxisPoints,
calPoints: calPoints,
eachSpacing: eachSpacing };
}
function drawToolTipBridge(opts, config, context, process, eachSpacing, xAxisPoints) {
var toolTipOption = opts.extra.tooltip || {};
if (toolTipOption.horizentalLine && opts.tooltip && process === 1 && (opts.type == 'line' || opts.type == 'area' || opts.type == 'column' || opts.type == 'mount' || opts.type == 'candle' || opts.type == 'mix')) {
drawToolTipHorizentalLine(opts, config, context, eachSpacing, xAxisPoints);
}
context.save();
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0 && opts.enableScroll === true) {
context.translate(opts._scrollDistance_, 0);
}
if (opts.tooltip && opts.tooltip.textList && opts.tooltip.textList.length && process === 1) {
drawToolTip(opts.tooltip.textList, opts.tooltip.offset, opts, config, context, eachSpacing, xAxisPoints);
}
context.restore();
}
function drawXAxis(categories, opts, config, context) {
var xAxisData = opts.chartData.xAxisData,
xAxisPoints = xAxisData.xAxisPoints,
startX = xAxisData.startX,
endX = xAxisData.endX,
eachSpacing = xAxisData.eachSpacing;
var boundaryGap = 'center';
if (opts.type == 'bar' || opts.type == 'line' || opts.type == 'area' || opts.type == 'scatter' || opts.type == 'bubble') {
boundaryGap = opts.xAxis.boundaryGap;
}
var startY = opts.height - opts.area[2];
var endY = opts.area[0];
//绘制滚动条
if (opts.enableScroll && opts.xAxis.scrollShow) {
var scrollY = opts.height - opts.area[2] + config.xAxisHeight;
var scrollScreenWidth = endX - startX;
var scrollTotalWidth = eachSpacing * (xAxisPoints.length - 1);
if (opts.type == 'mount' && opts.extra && opts.extra.mount && opts.extra.mount.widthRatio && opts.extra.mount.widthRatio > 1) {
if (opts.extra.mount.widthRatio > 2) opts.extra.mount.widthRatio = 2;
scrollTotalWidth += (opts.extra.mount.widthRatio - 1) * eachSpacing;
}
var scrollWidth = scrollScreenWidth * scrollScreenWidth / scrollTotalWidth;
var scrollLeft = 0;
if (opts._scrollDistance_) {
scrollLeft = -opts._scrollDistance_ * scrollScreenWidth / scrollTotalWidth;
}
context.beginPath();
context.setLineCap('round');
context.setLineWidth(6 * opts.pix);
context.setStrokeStyle(opts.xAxis.scrollBackgroundColor || "#EFEBEF");
context.moveTo(startX, scrollY);
context.lineTo(endX, scrollY);
context.stroke();
context.closePath();
context.beginPath();
context.setLineCap('round');
context.setLineWidth(6 * opts.pix);
context.setStrokeStyle(opts.xAxis.scrollColor || "#A6A6A6");
context.moveTo(startX + scrollLeft, scrollY);
context.lineTo(startX + scrollLeft + scrollWidth, scrollY);
context.stroke();
context.closePath();
context.setLineCap('butt');
}
context.save();
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0) {
context.translate(opts._scrollDistance_, 0);
}
//绘制X轴刻度线
if (opts.xAxis.calibration === true) {
context.setStrokeStyle(opts.xAxis.gridColor || "#cccccc");
context.setLineCap('butt');
context.setLineWidth(1 * opts.pix);
xAxisPoints.forEach(function (item, index) {
if (index > 0) {
context.beginPath();
context.moveTo(item - eachSpacing / 2, startY);
context.lineTo(item - eachSpacing / 2, startY + 3 * opts.pix);
context.closePath();
context.stroke();
}
});
}
//绘制X轴网格
if (opts.xAxis.disableGrid !== true) {
context.setStrokeStyle(opts.xAxis.gridColor || "#cccccc");
context.setLineCap('butt');
context.setLineWidth(1 * opts.pix);
if (opts.xAxis.gridType == 'dash') {
context.setLineDash([opts.xAxis.dashLength * opts.pix, opts.xAxis.dashLength * opts.pix]);
}
opts.xAxis.gridEval = opts.xAxis.gridEval || 1;
xAxisPoints.forEach(function (item, index) {
if (index % opts.xAxis.gridEval == 0) {
context.beginPath();
context.moveTo(item, startY);
context.lineTo(item, endY);
context.stroke();
}
});
context.setLineDash([]);
}
//绘制X轴文案
if (opts.xAxis.disabled !== true) {
// 对X轴列表做抽稀处理
//默认全部显示X轴标签
var maxXAxisListLength = categories.length;
//如果设置了X轴单屏数量
if (opts.xAxis.labelCount) {
//如果设置X轴密度
if (opts.xAxis.itemCount) {
maxXAxisListLength = Math.ceil(categories.length / opts.xAxis.itemCount * opts.xAxis.labelCount);
} else {
maxXAxisListLength = opts.xAxis.labelCount;
}
maxXAxisListLength -= 1;
}
var ratio = Math.ceil(categories.length / maxXAxisListLength);
var newCategories = [];
var cgLength = categories.length;
for (var i = 0; i < cgLength; i++) {
if (i % ratio !== 0) {
newCategories.push("");
} else {
newCategories.push(categories[i]);
}
}
newCategories[cgLength - 1] = categories[cgLength - 1];
var xAxisFontSize = opts.xAxis.fontSize * opts.pix || config.fontSize;
if (config._xAxisTextAngle_ === 0) {
newCategories.forEach(function (item, index) {
var xitem = opts.xAxis.formatter ? opts.xAxis.formatter(item, index, opts) : item;
var offset = -measureText(String(xitem), xAxisFontSize, context) / 2;
if (boundaryGap == 'center') {
offset += eachSpacing / 2;
}
var scrollHeight = 0;
if (opts.xAxis.scrollShow) {
scrollHeight = 6 * opts.pix;
}
context.beginPath();
context.setFontSize(xAxisFontSize);
context.setFillStyle(opts.xAxis.fontColor || opts.fontColor);
context.fillText(String(xitem), xAxisPoints[index] + offset, startY + xAxisFontSize + (config.xAxisHeight - scrollHeight - xAxisFontSize) / 2);
context.closePath();
context.stroke();
});
} else {
newCategories.forEach(function (item, index) {
var xitem = opts.xAxis.formatter ? opts.xAxis.formatter(item) : item;
context.save();
context.beginPath();
context.setFontSize(xAxisFontSize);
context.setFillStyle(opts.xAxis.fontColor || opts.fontColor);
var textWidth = measureText(String(xitem), xAxisFontSize, context);
var offsetX = xAxisPoints[index];
if (boundaryGap == 'center') {
offsetX = xAxisPoints[index] + eachSpacing / 2;
}
var scrollHeight = 0;
if (opts.xAxis.scrollShow) {
scrollHeight = 6 * opts.pix;
}
var offsetY = startY + 6 * opts.pix + xAxisFontSize - xAxisFontSize * Math.abs(Math.sin(config._xAxisTextAngle_));
if (opts.xAxis.rotateAngle < 0) {
offsetX -= xAxisFontSize / 2;
textWidth = 0;
} else {
offsetX += xAxisFontSize / 2;
textWidth = -textWidth;
}
context.translate(offsetX, offsetY);
context.rotate(-1 * config._xAxisTextAngle_);
context.fillText(String(xitem), textWidth, 0);
context.closePath();
context.stroke();
context.restore();
});
}
}
context.restore();
//绘制X轴轴线
if (opts.xAxis.axisLine) {
context.beginPath();
context.setStrokeStyle(opts.xAxis.axisLineColor);
context.setLineWidth(1 * opts.pix);
context.moveTo(startX, opts.height - opts.area[2]);
context.lineTo(endX, opts.height - opts.area[2]);
context.stroke();
}
}
function drawYAxisGrid(categories, opts, config, context) {
if (opts.yAxis.disableGrid === true) {
return;
}
var spacingValid = opts.height - opts.area[0] - opts.area[2];
var eachSpacing = spacingValid / opts.yAxis.splitNumber;
var startX = opts.area[3];
var xAxisPoints = opts.chartData.xAxisData.xAxisPoints,
xAxiseachSpacing = opts.chartData.xAxisData.eachSpacing;
var TotalWidth = xAxiseachSpacing * (xAxisPoints.length - 1);
if (opts.type == 'mount' && opts.extra && opts.extra.mount && opts.extra.mount.widthRatio && opts.extra.mount.widthRatio > 1) {
if (opts.extra.mount.widthRatio > 2) opts.extra.mount.widthRatio = 2;
TotalWidth += (opts.extra.mount.widthRatio - 1) * xAxiseachSpacing;
}
var endX = startX + TotalWidth;
var points = [];
var startY = 1;
if (opts.xAxis.axisLine === false) {
startY = 0;
}
for (var i = startY; i < opts.yAxis.splitNumber + 1; i++) {
points.push(opts.height - opts.area[2] - eachSpacing * i);
}
context.save();
if (opts._scrollDistance_ && opts._scrollDistance_ !== 0) {
context.translate(opts._scrollDistance_, 0);
}
if (opts.yAxis.gridType == 'dash') {
context.setLineDash([opts.yAxis.dashLength * opts.pix, opts.yAxis.dashLength * opts.pix]);
}
context.setStrokeStyle(opts.yAxis.gridColor);
context.setLineWidth(1 * opts.pix);
points.forEach(function (item, index) {
context.beginPath();
context.moveTo(startX, item);
context.lineTo(endX, item);
context.stroke();
});
context.setLineDash([]);
context.restore();
}
function drawYAxis(series, opts, config, context) {
if (opts.yAxis.disabled === true) {
return;
}
var spacingValid = opts.height - opts.area[0] - opts.area[2];
var eachSpacing = spacingValid / opts.yAxis.splitNumber;
var startX = opts.area[3];
var endX = opts.width - opts.area[1];
var endY = opts.height - opts.area[2];
var fillEndY = endY + config.xAxisHeight;
if (opts.xAxis.scrollShow) {
fillEndY -= 3 * opts.pix;
}
if (opts.xAxis.rotateLabel) {
fillEndY = opts.height - opts.area[2] + opts.fontSize * opts.pix / 2;
}
// set YAxis background
context.beginPath();
context.setFillStyle(opts.background);
if (opts.enableScroll == true && opts.xAxis.scrollPosition && opts.xAxis.scrollPosition !== 'left') {
context.fillRect(0, 0, startX, fillEndY);
}
if (opts.enableScroll == true && opts.xAxis.scrollPosition && opts.xAxis.scrollPosition !== 'right') {
context.fillRect(endX, 0, opts.width, fillEndY);
}
context.closePath();
context.stroke();
var tStartLeft = opts.area[3];
var tStartRight = opts.width - opts.area[1];
var tStartCenter = opts.area[3] + (opts.width - opts.area[1] - opts.area[3]) / 2;
if (opts.yAxis.data) {var _loop4 = function _loop4(
i) {
var yData = opts.yAxis.data[i];
points = [];
if (yData.type === 'categories') {
for (var _i24 = 0; _i24 <= yData.categories.length; _i24++) {
points.push(opts.area[0] + spacingValid / yData.categories.length / 2 + spacingValid / yData.categories.length * _i24);
}
} else {
for (var _i25 = 0; _i25 <= opts.yAxis.splitNumber; _i25++) {
points.push(opts.area[0] + eachSpacing * _i25);
}
}
if (yData.disabled !== true) {
var rangesFormat = opts.chartData.yAxisData.rangesFormat[i];
var yAxisFontSize = yData.fontSize ? yData.fontSize * opts.pix : config.fontSize;
var yAxisWidth = opts.chartData.yAxisData.yAxisWidth[i];
var textAlign = yData.textAlign || "right";
//画Y轴刻度及文案
rangesFormat.forEach(function (item, index) {
var pos = points[index];
context.beginPath();
context.setFontSize(yAxisFontSize);
context.setLineWidth(1 * opts.pix);
context.setStrokeStyle(yData.axisLineColor || '#cccccc');
context.setFillStyle(yData.fontColor || opts.fontColor);
var tmpstrat = 0;
var gapwidth = 4 * opts.pix;
if (yAxisWidth.position == 'left') {
//画刻度线
if (yData.calibration == true) {
context.moveTo(tStartLeft, pos);
context.lineTo(tStartLeft - 3 * opts.pix, pos);
gapwidth += 3 * opts.pix;
}
//画文字
switch (textAlign) {
case "left":
context.setTextAlign('left');
tmpstrat = tStartLeft - yAxisWidth.width;
break;
case "right":
context.setTextAlign('right');
tmpstrat = tStartLeft - gapwidth;
break;
default:
context.setTextAlign('center');
tmpstrat = tStartLeft - yAxisWidth.width / 2;}
context.fillText(String(item), tmpstrat, pos + yAxisFontSize / 2 - 3 * opts.pix);
} else if (yAxisWidth.position == 'right') {
//画刻度线
if (yData.calibration == true) {
context.moveTo(tStartRight, pos);
context.lineTo(tStartRight + 3 * opts.pix, pos);
gapwidth += 3 * opts.pix;
}
switch (textAlign) {
case "left":
context.setTextAlign('left');
tmpstrat = tStartRight + gapwidth;
break;
case "right":
context.setTextAlign('right');
tmpstrat = tStartRight + yAxisWidth.width;
break;
default:
context.setTextAlign('center');
tmpstrat = tStartRight + yAxisWidth.width / 2;}
context.fillText(String(item), tmpstrat, pos + yAxisFontSize / 2 - 3 * opts.pix);
} else if (yAxisWidth.position == 'center') {
//画刻度线
if (yData.calibration == true) {
context.moveTo(tStartCenter, pos);
context.lineTo(tStartCenter - 3 * opts.pix, pos);
gapwidth += 3 * opts.pix;
}
//画文字
switch (textAlign) {
case "left":
context.setTextAlign('left');
tmpstrat = tStartCenter - yAxisWidth.width;
break;
case "right":
context.setTextAlign('right');
tmpstrat = tStartCenter - gapwidth;
break;
default:
context.setTextAlign('center');
tmpstrat = tStartCenter - yAxisWidth.width / 2;}
context.fillText(String(item), tmpstrat, pos + yAxisFontSize / 2 - 3 * opts.pix);
}
context.closePath();
context.stroke();
context.setTextAlign('left');
});
//画Y轴轴线
if (yData.axisLine !== false) {
context.beginPath();
context.setStrokeStyle(yData.axisLineColor || '#cccccc');
context.setLineWidth(1 * opts.pix);
if (yAxisWidth.position == 'left') {
context.moveTo(tStartLeft, opts.height - opts.area[2]);
context.lineTo(tStartLeft, opts.area[0]);
} else if (yAxisWidth.position == 'right') {
context.moveTo(tStartRight, opts.height - opts.area[2]);
context.lineTo(tStartRight, opts.area[0]);
} else if (yAxisWidth.position == 'center') {
context.moveTo(tStartCenter, opts.height - opts.area[2]);
context.lineTo(tStartCenter, opts.area[0]);
}
context.stroke();
}
//画Y轴标题
if (opts.yAxis.showTitle) {
var titleFontSize = yData.titleFontSize * opts.pix || config.fontSize;
var title = yData.title;
context.beginPath();
context.setFontSize(titleFontSize);
context.setFillStyle(yData.titleFontColor || opts.fontColor);
if (yAxisWidth.position == 'left') {
context.fillText(title, tStartLeft - measureText(title, titleFontSize, context) / 2 + (yData.titleOffsetX || 0), opts.area[0] - (10 - (yData.titleOffsetY || 0)) * opts.pix);
} else if (yAxisWidth.position == 'right') {
context.fillText(title, tStartRight - measureText(title, titleFontSize, context) / 2 + (yData.titleOffsetX || 0), opts.area[0] - (10 - (yData.titleOffsetY || 0)) * opts.pix);
} else if (yAxisWidth.position == 'center') {
context.fillText(title, tStartCenter - measureText(title, titleFontSize, context) / 2 + (yData.titleOffsetX || 0), opts.area[0] - (10 - (yData.titleOffsetY || 0)) * opts.pix);
}
context.closePath();
context.stroke();
}
if (yAxisWidth.position == 'left') {
tStartLeft -= yAxisWidth.width + opts.yAxis.padding * opts.pix;
} else {
tStartRight += yAxisWidth.width + opts.yAxis.padding * opts.pix;
}
}};for (var i = 0; i < opts.yAxis.data.length; i++) {var points;_loop4(i);
}
}
}
function drawLegend(series, opts, config, context, chartData) {
if (opts.legend.show === false) {
return;
}
var legendData = chartData.legendData;
var legendList = legendData.points;
var legendArea = legendData.area;
var padding = opts.legend.padding * opts.pix;
var fontSize = opts.legend.fontSize * opts.pix;
var shapeWidth = 15 * opts.pix;
var shapeRight = 5 * opts.pix;
var itemGap = opts.legend.itemGap * opts.pix;
var lineHeight = Math.max(opts.legend.lineHeight * opts.pix, fontSize);
//画背景及边框
context.beginPath();
context.setLineWidth(opts.legend.borderWidth * opts.pix);
context.setStrokeStyle(opts.legend.borderColor);
context.setFillStyle(opts.legend.backgroundColor);
context.moveTo(legendArea.start.x, legendArea.start.y);
context.rect(legendArea.start.x, legendArea.start.y, legendArea.width, legendArea.height);
context.closePath();
context.fill();
context.stroke();
legendList.forEach(function (itemList, listIndex) {
var width = 0;
var height = 0;
width = legendData.widthArr[listIndex];
height = legendData.heightArr[listIndex];
var startX = 0;
var startY = 0;
if (opts.legend.position == 'top' || opts.legend.position == 'bottom') {
switch (opts.legend.float) {
case 'left':
startX = legendArea.start.x + padding;
break;
case 'right':
startX = legendArea.start.x + legendArea.width - width;
break;
default:
startX = legendArea.start.x + (legendArea.width - width) / 2;}
startY = legendArea.start.y + padding + listIndex * lineHeight;
} else {
if (listIndex == 0) {
width = 0;
} else {
width = legendData.widthArr[listIndex - 1];
3 years ago
}
3 years ago
startX = legendArea.start.x + padding + width;
startY = legendArea.start.y + padding + (legendArea.height - height) / 2;
}
context.setFontSize(config.fontSize);
for (var i = 0; i < itemList.length; i++) {
var item = itemList[i];
item.area = [0, 0, 0, 0];
item.area[0] = startX;
item.area[1] = startY;
item.area[3] = startY + lineHeight;
context.beginPath();
context.setLineWidth(1 * opts.pix);
context.setStrokeStyle(item.show ? item.color : opts.legend.hiddenColor);
context.setFillStyle(item.show ? item.color : opts.legend.hiddenColor);
switch (item.legendShape) {
case 'line':
context.moveTo(startX, startY + 0.5 * lineHeight - 2 * opts.pix);
context.fillRect(startX, startY + 0.5 * lineHeight - 2 * opts.pix, 15 * opts.pix, 4 * opts.pix);
break;
case 'triangle':
context.moveTo(startX + 7.5 * opts.pix, startY + 0.5 * lineHeight - 5 * opts.pix);
context.lineTo(startX + 2.5 * opts.pix, startY + 0.5 * lineHeight + 5 * opts.pix);
context.lineTo(startX + 12.5 * opts.pix, startY + 0.5 * lineHeight + 5 * opts.pix);
context.lineTo(startX + 7.5 * opts.pix, startY + 0.5 * lineHeight - 5 * opts.pix);
break;
case 'diamond':
context.moveTo(startX + 7.5 * opts.pix, startY + 0.5 * lineHeight - 5 * opts.pix);
context.lineTo(startX + 2.5 * opts.pix, startY + 0.5 * lineHeight);
context.lineTo(startX + 7.5 * opts.pix, startY + 0.5 * lineHeight + 5 * opts.pix);
context.lineTo(startX + 12.5 * opts.pix, startY + 0.5 * lineHeight);
context.lineTo(startX + 7.5 * opts.pix, startY + 0.5 * lineHeight - 5 * opts.pix);
break;
case 'circle':
context.moveTo(startX + 7.5 * opts.pix, startY + 0.5 * lineHeight);
context.arc(startX + 7.5 * opts.pix, startY + 0.5 * lineHeight, 5 * opts.pix, 0, 2 * Math.PI);
break;
case 'rect':
context.moveTo(startX, startY + 0.5 * lineHeight - 5 * opts.pix);
context.fillRect(startX, startY + 0.5 * lineHeight - 5 * opts.pix, 15 * opts.pix, 10 * opts.pix);
break;
case 'square':
context.moveTo(startX + 5 * opts.pix, startY + 0.5 * lineHeight - 5 * opts.pix);
context.fillRect(startX + 5 * opts.pix, startY + 0.5 * lineHeight - 5 * opts.pix, 10 * opts.pix, 10 * opts.pix);
break;
case 'none':
break;
default:
context.moveTo(startX, startY + 0.5 * lineHeight - 5 * opts.pix);
context.fillRect(startX, startY + 0.5 * lineHeight - 5 * opts.pix, 15 * opts.pix, 10 * opts.pix);}
context.closePath();
context.fill();
context.stroke();
startX += shapeWidth + shapeRight;
var fontTrans = 0.5 * lineHeight + 0.5 * fontSize - 2;
var legendText = item.legendText ? item.legendText : item.name;
context.beginPath();
context.setFontSize(fontSize);
context.setFillStyle(item.show ? opts.legend.fontColor : opts.legend.hiddenColor);
context.fillText(legendText, startX, startY + fontTrans);
context.closePath();
context.stroke();
if (opts.legend.position == 'top' || opts.legend.position == 'bottom') {
startX += measureText(legendText, fontSize, context) + itemGap;
item.area[2] = startX;
} else {
item.area[2] = startX + measureText(legendText, fontSize, context) + itemGap;;
startX -= shapeWidth + shapeRight;
startY += lineHeight;
}
}
});
}
function drawPieDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var pieOption = assign({}, {
activeOpacity: 0.5,
activeRadius: 10,
offsetAngle: 0,
labelWidth: 15,
ringWidth: 30,
customRadius: 0,
border: false,
borderWidth: 2,
borderColor: '#FFFFFF',
centerColor: '#FFFFFF',
linearType: 'none',
customColor: [] },
opts.type == "pie" ? opts.extra.pie : opts.extra.ring);
var centerPosition = {
x: opts.area[3] + (opts.width - opts.area[1] - opts.area[3]) / 2,
y: opts.area[0] + (opts.height - opts.area[0] - opts.area[2]) / 2 };
if (config.pieChartLinePadding == 0) {
config.pieChartLinePadding = pieOption.activeRadius * opts.pix;
}
var radius = Math.min((opts.width - opts.area[1] - opts.area[3]) / 2 - config.pieChartLinePadding - config.pieChartTextPadding - config._pieTextMaxLength_, (opts.height - opts.area[0] - opts.area[2]) / 2 - config.pieChartLinePadding - config.pieChartTextPadding);
radius = radius < 10 ? 10 : radius;
if (pieOption.customRadius > 0) {
radius = pieOption.customRadius * opts.pix;
}
series = getPieDataPoints(series, radius, process);
var activeRadius = pieOption.activeRadius * opts.pix;
pieOption.customColor = fillCustomColor(pieOption.linearType, pieOption.customColor, series, config);
series = series.map(function (eachSeries) {
eachSeries._start_ += pieOption.offsetAngle * Math.PI / 180;
return eachSeries;
});
series.forEach(function (eachSeries, seriesIndex) {
if (opts.tooltip) {
if (opts.tooltip.index == seriesIndex) {
context.beginPath();
context.setFillStyle(hexToRgb(eachSeries.color, pieOption.activeOpacity || 0.5));
context.moveTo(centerPosition.x, centerPosition.y);
context.arc(centerPosition.x, centerPosition.y, eachSeries._radius_ + activeRadius, eachSeries._start_, eachSeries._start_ + 2 * eachSeries._proportion_ * Math.PI);
context.closePath();
context.fill();
}
}
context.beginPath();
context.setLineWidth(pieOption.borderWidth * opts.pix);
context.lineJoin = "round";
context.setStrokeStyle(pieOption.borderColor);
var fillcolor = eachSeries.color;
if (pieOption.linearType == 'custom') {
var grd;
if (context.createCircularGradient) {
grd = context.createCircularGradient(centerPosition.x, centerPosition.y, eachSeries._radius_);
} else {
grd = context.createRadialGradient(centerPosition.x, centerPosition.y, 0, centerPosition.x, centerPosition.y, eachSeries._radius_);
}
grd.addColorStop(0, hexToRgb(pieOption.customColor[eachSeries.linearIndex], 1));
grd.addColorStop(1, hexToRgb(eachSeries.color, 1));
fillcolor = grd;
}
context.setFillStyle(fillcolor);
context.moveTo(centerPosition.x, centerPosition.y);
context.arc(centerPosition.x, centerPosition.y, eachSeries._radius_, eachSeries._start_, eachSeries._start_ + 2 * eachSeries._proportion_ * Math.PI);
context.closePath();
context.fill();
if (pieOption.border == true) {
context.stroke();
}
});
if (opts.type === 'ring') {
var innerPieWidth = radius * 0.6;
if (typeof pieOption.ringWidth === 'number' && pieOption.ringWidth > 0) {
innerPieWidth = Math.max(0, radius - pieOption.ringWidth * opts.pix);
}
context.beginPath();
context.setFillStyle(pieOption.centerColor);
context.moveTo(centerPosition.x, centerPosition.y);
context.arc(centerPosition.x, centerPosition.y, innerPieWidth, 0, 2 * Math.PI);
context.closePath();
context.fill();
}
if (opts.dataLabel !== false && process === 1) {
drawPieText(series, opts, config, context, radius, centerPosition);
}
if (process === 1 && opts.type === 'ring') {
drawRingTitle(opts, config, context, centerPosition);
}
return {
center: centerPosition,
radius: radius,
series: series };
}
function drawRoseDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var roseOption = assign({}, {
type: 'area',
activeOpacity: 0.5,
activeRadius: 10,
offsetAngle: 0,
labelWidth: 15,
border: false,
borderWidth: 2,
borderColor: '#FFFFFF',
linearType: 'none',
customColor: [] },
opts.extra.rose);
if (config.pieChartLinePadding == 0) {
config.pieChartLinePadding = roseOption.activeRadius * opts.pix;
}
var centerPosition = {
x: opts.area[3] + (opts.width - opts.area[1] - opts.area[3]) / 2,
y: opts.area[0] + (opts.height - opts.area[0] - opts.area[2]) / 2 };
var radius = Math.min((opts.width - opts.area[1] - opts.area[3]) / 2 - config.pieChartLinePadding - config.pieChartTextPadding - config._pieTextMaxLength_, (opts.height - opts.area[0] - opts.area[2]) / 2 - config.pieChartLinePadding - config.pieChartTextPadding);
radius = radius < 10 ? 10 : radius;
var minRadius = roseOption.minRadius || radius * 0.5;
series = getRoseDataPoints(series, roseOption.type, minRadius, radius, process);
var activeRadius = roseOption.activeRadius * opts.pix;
roseOption.customColor = fillCustomColor(roseOption.linearType, roseOption.customColor, series, config);
series = series.map(function (eachSeries) {
eachSeries._start_ += (roseOption.offsetAngle || 0) * Math.PI / 180;
return eachSeries;
});
series.forEach(function (eachSeries, seriesIndex) {
if (opts.tooltip) {
if (opts.tooltip.index == seriesIndex) {
context.beginPath();
context.setFillStyle(hexToRgb(eachSeries.color, roseOption.activeOpacity || 0.5));
context.moveTo(centerPosition.x, centerPosition.y);
context.arc(centerPosition.x, centerPosition.y, activeRadius + eachSeries._radius_, eachSeries._start_, eachSeries._start_ + 2 * eachSeries._rose_proportion_ * Math.PI);
context.closePath();
context.fill();
}
}
context.beginPath();
context.setLineWidth(roseOption.borderWidth * opts.pix);
context.lineJoin = "round";
context.setStrokeStyle(roseOption.borderColor);
var fillcolor = eachSeries.color;
if (roseOption.linearType == 'custom') {
var grd;
if (context.createCircularGradient) {
grd = context.createCircularGradient(centerPosition.x, centerPosition.y, eachSeries._radius_);
} else {
grd = context.createRadialGradient(centerPosition.x, centerPosition.y, 0, centerPosition.x, centerPosition.y, eachSeries._radius_);
3 years ago
}
3 years ago
grd.addColorStop(0, hexToRgb(roseOption.customColor[eachSeries.linearIndex], 1));
grd.addColorStop(1, hexToRgb(eachSeries.color, 1));
fillcolor = grd;
}
context.setFillStyle(fillcolor);
context.moveTo(centerPosition.x, centerPosition.y);
context.arc(centerPosition.x, centerPosition.y, eachSeries._radius_, eachSeries._start_, eachSeries._start_ + 2 * eachSeries._rose_proportion_ * Math.PI);
context.closePath();
context.fill();
if (roseOption.border == true) {
context.stroke();
}
});
if (opts.dataLabel !== false && process === 1) {
drawPieText(series, opts, config, context, radius, centerPosition);
}
return {
center: centerPosition,
radius: radius,
series: series };
}
function drawArcbarDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var arcbarOption = assign({}, {
startAngle: 0.75,
endAngle: 0.25,
type: 'default',
lineCap: 'round',
width: 12,
gap: 2,
linearType: 'none',
customColor: [] },
opts.extra.arcbar);
series = getArcbarDataPoints(series, arcbarOption, process);
var centerPosition;
if (arcbarOption.centerX || arcbarOption.centerY) {
centerPosition = {
x: arcbarOption.centerX ? arcbarOption.centerX : opts.width / 2,
y: arcbarOption.centerY ? arcbarOption.centerY : opts.height / 2 };
} else {
centerPosition = {
x: opts.width / 2,
y: opts.height / 2 };
}
var radius;
if (arcbarOption.radius) {
radius = arcbarOption.radius;
} else {
radius = Math.min(centerPosition.x, centerPosition.y);
radius -= 5 * opts.pix;
radius -= arcbarOption.width / 2;
}
radius = radius < 10 ? 10 : radius;
arcbarOption.customColor = fillCustomColor(arcbarOption.linearType, arcbarOption.customColor, series, config);
for (var i = 0; i < series.length; i++) {
var eachSeries = series[i];
//背景颜色
context.setLineWidth(arcbarOption.width * opts.pix);
context.setStrokeStyle(arcbarOption.backgroundColor || '#E9E9E9');
context.setLineCap(arcbarOption.lineCap);
context.beginPath();
if (arcbarOption.type == 'default') {
context.arc(centerPosition.x, centerPosition.y, radius - (arcbarOption.width * opts.pix + arcbarOption.gap * opts.pix) * i, arcbarOption.startAngle * Math.PI, arcbarOption.endAngle * Math.PI, false);
} else {
context.arc(centerPosition.x, centerPosition.y, radius - (arcbarOption.width * opts.pix + arcbarOption.gap * opts.pix) * i, 0, 2 * Math.PI, false);
}
context.stroke();
//进度条
var fillColor = eachSeries.color;
if (arcbarOption.linearType == 'custom') {
var grd = context.createLinearGradient(centerPosition.x - radius, centerPosition.y, centerPosition.x + radius, centerPosition.y);
grd.addColorStop(1, hexToRgb(arcbarOption.customColor[eachSeries.linearIndex], 1));
grd.addColorStop(0, hexToRgb(eachSeries.color, 1));
fillColor = grd;
3 years ago
}
3 years ago
context.setLineWidth(arcbarOption.width * opts.pix);
context.setStrokeStyle(fillColor);
context.setLineCap(arcbarOption.lineCap);
context.beginPath();
context.arc(centerPosition.x, centerPosition.y, radius - (arcbarOption.width * opts.pix + arcbarOption.gap * opts.pix) * i, arcbarOption.startAngle * Math.PI, eachSeries._proportion_ * Math.PI, false);
context.stroke();
3 years ago
}
3 years ago
drawRingTitle(opts, config, context, centerPosition);
return {
center: centerPosition,
radius: radius,
series: series };
3 years ago
}
3 years ago
function drawGaugeDataPoints(categories, series, opts, config, context) {
var process = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 1;
var gaugeOption = assign({}, {
type: 'default',
startAngle: 0.75,
endAngle: 0.25,
width: 15,
labelOffset: 13,
splitLine: {
fixRadius: 0,
splitNumber: 10,
width: 15,
color: '#FFFFFF',
childNumber: 5,
childWidth: 5 },
pointer: {
width: 15,
color: 'auto' } },
opts.extra.gauge);
if (gaugeOption.oldAngle == undefined) {
gaugeOption.oldAngle = gaugeOption.startAngle;
}
if (gaugeOption.oldData == undefined) {
gaugeOption.oldData = 0;
}
categories = getGaugeAxisPoints(categories, gaugeOption.startAngle, gaugeOption.endAngle);
var centerPosition = {
x: opts.width / 2,
y: opts.height / 2 };
var radius = Math.min(centerPosition.x, centerPosition.y);
radius -= 5 * opts.pix;
radius -= gaugeOption.width / 2;
radius = radius < 10 ? 10 : radius;
var innerRadius = radius - gaugeOption.width;
var totalAngle = 0;
//判断仪表盘的样式:default百度样式,progress新样式
if (gaugeOption.type == 'progress') {
//## 第一步画中心圆形背景和进度条背景
//中心圆形背景
var pieRadius = radius - gaugeOption.width * 3;
context.beginPath();
var gradient = context.createLinearGradient(centerPosition.x, centerPosition.y - pieRadius, centerPosition.x, centerPosition.y + pieRadius);
//配置渐变填充(起点:中心点向上减半径;结束点中心点向下加半径)
gradient.addColorStop('0', hexToRgb(series[0].color, 0.3));
gradient.addColorStop('1.0', hexToRgb("#FFFFFF", 0.1));
context.setFillStyle(gradient);
context.arc(centerPosition.x, centerPosition.y, pieRadius, 0, 2 * Math.PI, false);
context.fill();
//画进度条背景
context.setLineWidth(gaugeOption.width);
context.setStrokeStyle(hexToRgb(series[0].color, 0.3));
context.setLineCap('round');
context.beginPath();
context.arc(centerPosition.x, centerPosition.y, innerRadius, gaugeOption.startAngle * Math.PI, gaugeOption.endAngle * Math.PI, false);
context.stroke();
//## 第二步画刻度线
totalAngle = gaugeOption.startAngle - gaugeOption.endAngle + 1;
var splitAngle = totalAngle / gaugeOption.splitLine.splitNumber;
var childAngle = totalAngle / gaugeOption.splitLine.splitNumber / gaugeOption.splitLine.childNumber;
var startX = -radius - gaugeOption.width * 0.5 - gaugeOption.splitLine.fixRadius;
var endX = -radius - gaugeOption.width - gaugeOption.splitLine.fixRadius + gaugeOption.splitLine.width;
context.save();
context.translate(centerPosition.x, centerPosition.y);
context.rotate((gaugeOption.startAngle - 1) * Math.PI);
var len = gaugeOption.splitLine.splitNumber * gaugeOption.splitLine.childNumber + 1;
var proc = series[0].data * process;
for (var i = 0; i < len; i++) {
context.beginPath();
//刻度线随进度变色
if (proc > i / len) {
context.setStrokeStyle(hexToRgb(series[0].color, 1));
} else {
context.setStrokeStyle(hexToRgb(series[0].color, 0.3));
}
context.setLineWidth(3 * opts.pix);
context.moveTo(startX, 0);
context.lineTo(endX, 0);
context.stroke();
context.rotate(childAngle * Math.PI);
}
context.restore();
//## 第三步画进度条
series = getGaugeArcbarDataPoints(series, gaugeOption, process);
context.setLineWidth(gaugeOption.width);
context.setStrokeStyle(series[0].color);
context.setLineCap('round');
context.beginPath();
context.arc(centerPosition.x, centerPosition.y, innerRadius, gaugeOption.startAngle * Math.PI, series[0]._proportion_ * Math.PI, false);
context.stroke();
//## 第四步画指针
var pointerRadius = radius - gaugeOption.width * 2.5;
context.save();
context.translate(centerPosition.x, centerPosition.y);
context.rotate((series[0]._proportion_ - 1) * Math.PI);
context.beginPath();
context.setLineWidth(gaugeOption.width / 3);
var gradient3 = context.createLinearGradient(0, -pointerRadius * 0.6, 0, pointerRadius * 0.6);
gradient3.addColorStop('0', hexToRgb('#FFFFFF', 0));
gradient3.addColorStop('0.5', hexToRgb(series[0].color, 1));
gradient3.addColorStop('1.0', hexToRgb('#FFFFFF', 0));
context.setStrokeStyle(gradient3);
context.arc(0, 0, pointerRadius, 0.85 * Math.PI, 1.15 * Math.PI, false);
context.stroke();
context.beginPath();
context.setLineWidth(1);
context.setStrokeStyle(series[0].color);
context.setFillStyle(series[0].color);
context.moveTo(-pointerRadius - gaugeOption.width / 3 / 2, -4);
context.lineTo(-pointerRadius - gaugeOption.width / 3 / 2 - 4, 0);
context.lineTo(-pointerRadius - gaugeOption.width / 3 / 2, 4);
context.lineTo(-pointerRadius - gaugeOption.width / 3 / 2, -4);
context.stroke();
context.fill();
context.restore();
//default百度样式
} else {
//画背景
context.setLineWidth(gaugeOption.width);
context.setLineCap('butt');
for (var _i26 = 0; _i26 < categories.length; _i26++) {
var eachCategories = categories[_i26];
context.beginPath();
context.setStrokeStyle(eachCategories.color);
context.arc(centerPosition.x, centerPosition.y, radius, eachCategories._startAngle_ * Math.PI, eachCategories._endAngle_ * Math.PI, false);
context.stroke();
}
context.save();
//画刻度线
totalAngle = gaugeOption.startAngle - gaugeOption.endAngle + 1;
var _splitAngle = totalAngle / gaugeOption.splitLine.splitNumber;
var _childAngle = totalAngle / gaugeOption.splitLine.splitNumber / gaugeOption.splitLine.childNumber;
var _startX2 = -radius - gaugeOption.width * 0.5 - gaugeOption.splitLine.fixRadius;
var _endX = -radius - gaugeOption.width * 0.5 - gaugeOption.splitLine.fixRadius + gaugeOption.splitLine.width;
var childendX = -radius - gaugeOption.width * 0.5 - gaugeOption.splitLine.fixRadius + gaugeOption.splitLine.childWidth;
context.translate(centerPosition.x, centerPosition.y);
context.rotate((gaugeOption.startAngle - 1) * Math.PI);
for (var _i27 = 0; _i27 < gaugeOption.splitLine.splitNumber + 1; _i27++) {
context.beginPath();
context.setStrokeStyle(gaugeOption.splitLine.color);
context.setLineWidth(2 * opts.pix);
context.moveTo(_startX2, 0);
context.lineTo(_endX, 0);
context.stroke();
context.rotate(_splitAngle * Math.PI);
}
context.restore();
context.save();
context.translate(centerPosition.x, centerPosition.y);
context.rotate((gaugeOption.startAngle - 1) * Math.PI);
for (var _i28 = 0; _i28 < gaugeOption.splitLine.splitNumber * gaugeOption.splitLine.childNumber + 1; _i28++) {
context.beginPath();
context.setStrokeStyle(gaugeOption.splitLine.color);
context.setLineWidth(1 * opts.pix);
context.moveTo(_startX2, 0);
context.lineTo(childendX, 0);
context.stroke();
context.rotate(_childAngle * Math.PI);
}
context.restore();
//画指针
series = getGaugeDataPoints(series, categories, gaugeOption, process);
for (var _i29 = 0; _i29 < series.length; _i29++) {
var eachSeries = series[_i29];
context.save();
context.translate(centerPosition.x, centerPosition.y);
context.rotate((eachSeries._proportion_ - 1) * Math.PI);
context.beginPath();
context.setFillStyle(eachSeries.color);
context.moveTo(gaugeOption.pointer.width, 0);
context.lineTo(0, -gaugeOption.pointer.width / 2);
context.lineTo(-innerRadius, 0);
context.lineTo(0, gaugeOption.pointer.width / 2);
context.lineTo(gaugeOption.pointer.width, 0);
context.closePath();
context.fill();
context.beginPath();
context.setFillStyle('#FFFFFF');
context.arc(0, 0, gaugeOption.pointer.width / 6, 0, 2 * Math.PI, false);
context.fill();
context.restore();
}
if (opts.dataLabel !== false) {
drawGaugeLabel(gaugeOption, radius, centerPosition, opts, config, context);
3 years ago
}
}
3 years ago
//画仪表盘标题,副标题
drawRingTitle(opts, config, context, centerPosition);
if (process === 1 && opts.type === 'gauge') {
opts.extra.gauge.oldAngle = series[0]._proportion_;
opts.extra.gauge.oldData = series[0].data;
3 years ago
}
3 years ago
return {
center: centerPosition,
radius: radius,
innerRadius: innerRadius,
categories: categories,
totalAngle: totalAngle };
3 years ago
3 years ago
}
3 years ago
3 years ago
function drawRadarDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var radarOption = assign({}, {
gridColor: '#cccccc',
gridType: 'radar',
gridEval: 1,
axisLabel: false,
axisLabelTofix: 0,
labelColor: '#666666',
labelPointShow: false,
labelPointRadius: 3,
labelPointColor: '#cccccc',
opacity: 0.2,
gridCount: 3,
border: false,
borderWidth: 2,
linearType: 'none',
customColor: [] },
opts.extra.radar);
var coordinateAngle = getRadarCoordinateSeries(opts.categories.length);
var centerPosition = {
x: opts.area[3] + (opts.width - opts.area[1] - opts.area[3]) / 2,
y: opts.area[0] + (opts.height - opts.area[0] - opts.area[2]) / 2 };
3 years ago
3 years ago
var xr = (opts.width - opts.area[1] - opts.area[3]) / 2;
var yr = (opts.height - opts.area[0] - opts.area[2]) / 2;
var radius = Math.min(xr - (getMaxTextListLength(opts.categories, config.fontSize, context) + config.radarLabelTextMargin), yr - config.radarLabelTextMargin);
radius -= config.radarLabelTextMargin * opts.pix;
radius = radius < 10 ? 10 : radius;
// 画分割线
context.beginPath();
context.setLineWidth(1 * opts.pix);
context.setStrokeStyle(radarOption.gridColor);
coordinateAngle.forEach(function (angle, index) {
var pos = convertCoordinateOrigin(radius * Math.cos(angle), radius * Math.sin(angle), centerPosition);
context.moveTo(centerPosition.x, centerPosition.y);
if (index % radarOption.gridEval == 0) {
context.lineTo(pos.x, pos.y);
3 years ago
}
3 years ago
});
context.stroke();
context.closePath();
3 years ago
3 years ago
// 画背景网格
var _loop = function _loop(i) {
var startPos = {};
context.beginPath();
context.setLineWidth(1 * opts.pix);
context.setStrokeStyle(radarOption.gridColor);
if (radarOption.gridType == 'radar') {
coordinateAngle.forEach(function (angle, index) {
var pos = convertCoordinateOrigin(radius / radarOption.gridCount * i * Math.cos(angle), radius /
radarOption.gridCount * i * Math.sin(angle), centerPosition);
if (index === 0) {
startPos = pos;
context.moveTo(pos.x, pos.y);
} else {
context.lineTo(pos.x, pos.y);
}
});
context.lineTo(startPos.x, startPos.y);
} else {
var pos = convertCoordinateOrigin(radius / radarOption.gridCount * i * Math.cos(1.5), radius / radarOption.gridCount * i * Math.sin(1.5), centerPosition);
context.arc(centerPosition.x, centerPosition.y, centerPosition.y - pos.y, 0, 2 * Math.PI, false);
3 years ago
}
3 years ago
context.stroke();
context.closePath();
3 years ago
};
3 years ago
for (var i = 1; i <= radarOption.gridCount; i++) {
_loop(i);
}
radarOption.customColor = fillCustomColor(radarOption.linearType, radarOption.customColor, series, config);
var radarDataPoints = getRadarDataPoints(coordinateAngle, centerPosition, radius, series, opts, process);
radarDataPoints.forEach(function (eachSeries, seriesIndex) {
// 绘制区域数据
context.beginPath();
context.setLineWidth(radarOption.borderWidth * opts.pix);
context.setStrokeStyle(eachSeries.color);
3 years ago
3 years ago
var fillcolor = hexToRgb(eachSeries.color, radarOption.opacity);
if (radarOption.linearType == 'custom') {
var grd;
if (context.createCircularGradient) {
grd = context.createCircularGradient(centerPosition.x, centerPosition.y, radius);
} else {
grd = context.createRadialGradient(centerPosition.x, centerPosition.y, 0, centerPosition.x, centerPosition.y, radius);
}
grd.addColorStop(0, hexToRgb(radarOption.customColor[series[seriesIndex].linearIndex], radarOption.opacity));
grd.addColorStop(1, hexToRgb(eachSeries.color, radarOption.opacity));
fillcolor = grd;
}
3 years ago
3 years ago
context.setFillStyle(fillcolor);
eachSeries.data.forEach(function (item, index) {
if (index === 0) {
context.moveTo(item.position.x, item.position.y);
} else {
context.lineTo(item.position.x, item.position.y);
}
});
context.closePath();
context.fill();
if (radarOption.border === true) {
context.stroke();
}
context.closePath();
if (opts.dataPointShape !== false) {
var points = eachSeries.data.map(function (item) {
return item.position;
});
drawPointShape(points, eachSeries.color, eachSeries.pointShape, context, opts);
}
});
// 画刻度值
if (radarOption.axisLabel === true) {
var maxData = Math.max(radarOption.max, Math.max.apply(null, dataCombine(series)));
var stepLength = radius / radarOption.gridCount;
var fontSize = opts.fontSize * opts.pix;
context.setFontSize(fontSize);
context.setFillStyle(opts.fontColor);
context.setTextAlign('left');
for (var i = 0; i < radarOption.gridCount + 1; i++) {
var label = i * maxData / radarOption.gridCount;
label = label.toFixed(radarOption.axisLabelTofix);
context.fillText(String(label), centerPosition.x + 3 * opts.pix, centerPosition.y - i * stepLength + fontSize / 2);
}
}
3 years ago
3 years ago
// draw label text
drawRadarLabel(coordinateAngle, radius, centerPosition, opts, config, context);
3 years ago
3 years ago
// draw dataLabel
if (opts.dataLabel !== false && process === 1) {
radarDataPoints.forEach(function (eachSeries, seriesIndex) {
context.beginPath();
var fontSize = eachSeries.textSize * opts.pix || config.fontSize;
context.setFontSize(fontSize);
context.setFillStyle(eachSeries.textColor || opts.fontColor);
eachSeries.data.forEach(function (item, index) {
//如果是中心点垂直的上下点位
if (Math.abs(item.position.x - centerPosition.x) < 2) {
//如果在上面
if (item.position.y < centerPosition.y) {
context.setTextAlign('center');
context.fillText(item.value, item.position.x, item.position.y - 4);
} else {
context.setTextAlign('center');
context.fillText(item.value, item.position.x, item.position.y + fontSize + 2);
}
} else {
//如果在左侧
if (item.position.x < centerPosition.x) {
context.setTextAlign('right');
context.fillText(item.value, item.position.x - 4, item.position.y + fontSize / 2 - 2);
} else {
context.setTextAlign('left');
context.fillText(item.value, item.position.x + 4, item.position.y + fontSize / 2 - 2);
}
}
});
context.closePath();
context.stroke();
});
context.setTextAlign('left');
}
3 years ago
3 years ago
return {
center: centerPosition,
radius: radius,
angleList: coordinateAngle };
3 years ago
3 years ago
}
// 经纬度转墨卡托
function lonlat2mercator(longitude, latitude) {
var mercator = Array(2);
var x = longitude * 20037508.34 / 180;
var y = Math.log(Math.tan((90 + latitude) * Math.PI / 360)) / (Math.PI / 180);
y = y * 20037508.34 / 180;
mercator[0] = x;
mercator[1] = y;
return mercator;
}
// 墨卡托转经纬度
function mercator2lonlat(longitude, latitude) {
var lonlat = Array(2);
var x = longitude / 20037508.34 * 180;
var y = latitude / 20037508.34 * 180;
y = 180 / Math.PI * (2 * Math.atan(Math.exp(y * Math.PI / 180)) - Math.PI / 2);
lonlat[0] = x;
lonlat[1] = y;
return lonlat;
}
3 years ago
3 years ago
function getBoundingBox(data) {
var bounds = {},coords;
bounds.xMin = 180;
bounds.xMax = 0;
bounds.yMin = 90;
bounds.yMax = 0;
for (var i = 0; i < data.length; i++) {
var coorda = data[i].geometry.coordinates;
for (var k = 0; k < coorda.length; k++) {
coords = coorda[k];
if (coords.length == 1) {
coords = coords[0];
}
for (var j = 0; j < coords.length; j++) {
var longitude = coords[j][0];
var latitude = coords[j][1];
var point = {
x: longitude,
y: latitude };
3 years ago
3 years ago
bounds.xMin = bounds.xMin < point.x ? bounds.xMin : point.x;
bounds.xMax = bounds.xMax > point.x ? bounds.xMax : point.x;
bounds.yMin = bounds.yMin < point.y ? bounds.yMin : point.y;
bounds.yMax = bounds.yMax > point.y ? bounds.yMax : point.y;
}
3 years ago
}
3 years ago
}
return bounds;
}
3 years ago
3 years ago
function coordinateToPoint(latitude, longitude, bounds, scale, xoffset, yoffset) {
return {
x: (longitude - bounds.xMin) * scale + xoffset,
y: (bounds.yMax - latitude) * scale + yoffset };
3 years ago
3 years ago
}
3 years ago
3 years ago
function pointToCoordinate(pointY, pointX, bounds, scale, xoffset, yoffset) {
return {
x: (pointX - xoffset) / scale + bounds.xMin,
y: bounds.yMax - (pointY - yoffset) / scale };
3 years ago
}
3 years ago
function isRayIntersectsSegment(poi, s_poi, e_poi) {
if (s_poi[1] == e_poi[1]) {
return false;
}
if (s_poi[1] > poi[1] && e_poi[1] > poi[1]) {
return false;
}
if (s_poi[1] < poi[1] && e_poi[1] < poi[1]) {
return false;
}
if (s_poi[1] == poi[1] && e_poi[1] > poi[1]) {
return false;
}
if (e_poi[1] == poi[1] && s_poi[1] > poi[1]) {
return false;
}
if (s_poi[0] < poi[0] && e_poi[1] < poi[1]) {
return false;
}
var xseg = e_poi[0] - (e_poi[0] - s_poi[0]) * (e_poi[1] - poi[1]) / (e_poi[1] - s_poi[1]);
if (xseg < poi[0]) {
return false;
} else {
return true;
3 years ago
}
}
3 years ago
function isPoiWithinPoly(poi, poly, mercator) {
var sinsc = 0;
for (var i = 0; i < poly.length; i++) {
var epoly = poly[i][0];
if (poly.length == 1) {
epoly = poly[i][0];
}
for (var j = 0; j < epoly.length - 1; j++) {
var s_poi = epoly[j];
var e_poi = epoly[j + 1];
if (mercator) {
s_poi = lonlat2mercator(epoly[j][0], epoly[j][1]);
e_poi = lonlat2mercator(epoly[j + 1][0], epoly[j + 1][1]);
}
if (isRayIntersectsSegment(poi, s_poi, e_poi)) {
sinsc += 1;
}
}
}
if (sinsc % 2 == 1) {
return true;
} else {
return false;
3 years ago
}
}
3 years ago
function drawMapDataPoints(series, opts, config, context) {
var mapOption = assign({}, {
border: true,
mercator: false,
borderWidth: 1,
borderColor: '#666666',
fillOpacity: 0.6,
activeBorderColor: '#f04864',
activeFillColor: '#facc14',
activeFillOpacity: 1 },
opts.extra.map);
var coords, point;
var data = series;
var bounds = getBoundingBox(data);
if (mapOption.mercator) {
var max = lonlat2mercator(bounds.xMax, bounds.yMax);
var min = lonlat2mercator(bounds.xMin, bounds.yMin);
bounds.xMax = max[0];
bounds.yMax = max[1];
bounds.xMin = min[0];
bounds.yMin = min[1];
}
var xScale = opts.width / Math.abs(bounds.xMax - bounds.xMin);
var yScale = opts.height / Math.abs(bounds.yMax - bounds.yMin);
var scale = xScale < yScale ? xScale : yScale;
var xoffset = opts.width / 2 - Math.abs(bounds.xMax - bounds.xMin) / 2 * scale;
var yoffset = opts.height / 2 - Math.abs(bounds.yMax - bounds.yMin) / 2 * scale;
for (var i = 0; i < data.length; i++) {
context.beginPath();
context.setLineWidth(mapOption.borderWidth * opts.pix);
context.setStrokeStyle(mapOption.borderColor);
context.setFillStyle(hexToRgb(series[i].color, mapOption.fillOpacity));
if (opts.tooltip) {
if (opts.tooltip.index == i) {
context.setStrokeStyle(mapOption.activeBorderColor);
context.setFillStyle(hexToRgb(mapOption.activeFillColor, mapOption.activeFillOpacity));
}
}
var coorda = data[i].geometry.coordinates;
for (var k = 0; k < coorda.length; k++) {
coords = coorda[k];
if (coords.length == 1) {
coords = coords[0];
}
for (var j = 0; j < coords.length; j++) {
var gaosi = Array(2);
if (mapOption.mercator) {
gaosi = lonlat2mercator(coords[j][0], coords[j][1]);
} else {
gaosi = coords[j];
3 years ago
}
3 years ago
point = coordinateToPoint(gaosi[1], gaosi[0], bounds, scale, xoffset, yoffset);
if (j === 0) {
context.beginPath();
context.moveTo(point.x, point.y);
} else {
context.lineTo(point.x, point.y);
3 years ago
}
3 years ago
}
context.fill();
if (mapOption.border == true) {
context.stroke();
}
}
}
if (opts.dataLabel == true) {
for (var i = 0; i < data.length; i++) {
var centerPoint = data[i].properties.centroid;
if (centerPoint) {
if (mapOption.mercator) {
centerPoint = lonlat2mercator(data[i].properties.centroid[0], data[i].properties.centroid[1]);
3 years ago
}
3 years ago
point = coordinateToPoint(centerPoint[1], centerPoint[0], bounds, scale, xoffset, yoffset);
var fontSize = data[i].textSize * opts.pix || config.fontSize;
var text = data[i].properties.name;
context.beginPath();
context.setFontSize(fontSize);
context.setFillStyle(data[i].textColor || opts.fontColor);
context.fillText(text, point.x - measureText(text, fontSize, context) / 2, point.y + fontSize / 2);
context.closePath();
context.stroke();
3 years ago
}
3 years ago
}
}
opts.chartData.mapData = {
bounds: bounds,
scale: scale,
xoffset: xoffset,
yoffset: yoffset,
mercator: mapOption.mercator };
3 years ago
3 years ago
drawToolTipBridge(opts, config, context, 1);
context.draw();
3 years ago
}
3 years ago
function normalInt(min, max, iter) {
iter = iter == 0 ? 1 : iter;
var arr = [];
for (var i = 0; i < iter; i++) {
arr[i] = Math.random();
};
return Math.floor(arr.reduce(function (i, j) {
return i + j;
}) / iter * (max - min)) + min;
};
3 years ago
3 years ago
function collisionNew(area, points, width, height) {
var isIn = false;
for (var i = 0; i < points.length; i++) {
if (points[i].area) {
if (area[3] < points[i].area[1] || area[0] > points[i].area[2] || area[1] > points[i].area[3] || area[2] < points[i].area[0]) {
if (area[0] < 0 || area[1] < 0 || area[2] > width || area[3] > height) {
isIn = true;
break;
} else {
isIn = false;
}
} else {
isIn = true;
break;
3 years ago
}
}
}
3 years ago
return isIn;
};
3 years ago
3 years ago
function getWordCloudPoint(opts, type, context) {
var points = opts.series;
switch (type) {
case 'normal':
for (var i = 0; i < points.length; i++) {
var text = points[i].name;
var tHeight = points[i].textSize * opts.pix;
var tWidth = measureText(text, tHeight, context);
var x = void 0,y = void 0;
var area = void 0;
var breaknum = 0;
while (true) {
breaknum++;
x = normalInt(-opts.width / 2, opts.width / 2, 5) - tWidth / 2;
y = normalInt(-opts.height / 2, opts.height / 2, 5) + tHeight / 2;
area = [x - 5 + opts.width / 2, y - 5 - tHeight + opts.height / 2, x + tWidth + 5 + opts.width / 2, y + 5 +
opts.height / 2];
3 years ago
3 years ago
var isCollision = collisionNew(area, points, opts.width, opts.height);
if (!isCollision) break;
if (breaknum == 1000) {
area = [-100, -100, -100, -100];
break;
}
};
points[i].area = area;
}
break;
case 'vertical':var
Spin = function Spin() {
//获取均匀随机值,是否旋转,旋转的概率为(1-0.5)
if (Math.random() > 0.7) {
return true;
} else {
return false;
};
};;
for (var _i30 = 0; _i30 < points.length; _i30++) {
var _text = points[_i30].name;
var _tHeight = points[_i30].textSize * opts.pix;
var _tWidth = measureText(_text, _tHeight, context);
var isSpin = Spin();
var _x = void 0,_y = void 0,_area = void 0,areav = void 0;
var _breaknum = 0;
while (true) {
_breaknum++;
var _isCollision = void 0;
if (isSpin) {
_x = normalInt(-opts.width / 2, opts.width / 2, 5) - _tWidth / 2;
_y = normalInt(-opts.height / 2, opts.height / 2, 5) + _tHeight / 2;
_area = [_y - 5 - _tWidth + opts.width / 2, -_x - 5 + opts.height / 2, _y + 5 + opts.width / 2, -_x + _tHeight + 5 + opts.height / 2];
areav = [opts.width - (opts.width / 2 - opts.height / 2) - (-_x + _tHeight + 5 + opts.height / 2) - 5, opts.height / 2 - opts.width / 2 + (_y - 5 - _tWidth + opts.width / 2) - 5, opts.width - (opts.width / 2 - opts.height / 2) - (-_x + _tHeight + 5 + opts.height / 2) + _tHeight, opts.height / 2 - opts.width / 2 + (_y - 5 - _tWidth + opts.width / 2) + _tWidth + 5];
_isCollision = collisionNew(areav, points, opts.height, opts.width);
} else {
_x = normalInt(-opts.width / 2, opts.width / 2, 5) - _tWidth / 2;
_y = normalInt(-opts.height / 2, opts.height / 2, 5) + _tHeight / 2;
_area = [_x - 5 + opts.width / 2, _y - 5 - _tHeight + opts.height / 2, _x + _tWidth + 5 + opts.width / 2, _y + 5 + opts.height / 2];
_isCollision = collisionNew(_area, points, opts.width, opts.height);
}
if (!_isCollision) break;
if (_breaknum == 1000) {
_area = [-1000, -1000, -1000, -1000];
break;
}
};
if (isSpin) {
points[_i30].area = areav;
points[_i30].areav = _area;
} else {
points[_i30].area = _area;
}
points[_i30].rotate = isSpin;
};
break;}
3 years ago
3 years ago
return points;
}
3 years ago
3 years ago
function drawWordCloudDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var wordOption = assign({}, {
type: 'normal',
autoColors: true },
opts.extra.word);
if (!opts.chartData.wordCloudData) {
opts.chartData.wordCloudData = getWordCloudPoint(opts, wordOption.type, context);
}
context.beginPath();
context.setFillStyle(opts.background);
context.rect(0, 0, opts.width, opts.height);
context.fill();
context.save();
var points = opts.chartData.wordCloudData;
context.translate(opts.width / 2, opts.height / 2);
for (var i = 0; i < points.length; i++) {
context.save();
if (points[i].rotate) {
context.rotate(90 * Math.PI / 180);
3 years ago
}
3 years ago
var text = points[i].name;
var tHeight = points[i].textSize * opts.pix;
var tWidth = measureText(text, tHeight, context);
context.beginPath();
context.setStrokeStyle(points[i].color);
context.setFillStyle(points[i].color);
context.setFontSize(tHeight);
if (points[i].rotate) {
if (points[i].areav[0] > 0) {
if (opts.tooltip) {
if (opts.tooltip.index == i) {
context.strokeText(text, (points[i].areav[0] + 5 - opts.width / 2) * process - tWidth * (1 - process) / 2, (points[i].areav[1] + 5 + tHeight - opts.height / 2) * process);
} else {
context.fillText(text, (points[i].areav[0] + 5 - opts.width / 2) * process - tWidth * (1 - process) / 2, (points[i].areav[1] + 5 + tHeight - opts.height / 2) * process);
}
} else {
context.fillText(text, (points[i].areav[0] + 5 - opts.width / 2) * process - tWidth * (1 - process) / 2, (points[i].areav[1] + 5 + tHeight - opts.height / 2) * process);
}
3 years ago
}
3 years ago
} else {
if (points[i].area[0] > 0) {
if (opts.tooltip) {
if (opts.tooltip.index == i) {
context.strokeText(text, (points[i].area[0] + 5 - opts.width / 2) * process - tWidth * (1 - process) / 2, (points[i].area[1] + 5 + tHeight - opts.height / 2) * process);
} else {
context.fillText(text, (points[i].area[0] + 5 - opts.width / 2) * process - tWidth * (1 - process) / 2, (points[i].area[1] + 5 + tHeight - opts.height / 2) * process);
}
} else {
context.fillText(text, (points[i].area[0] + 5 - opts.width / 2) * process - tWidth * (1 - process) / 2, (points[i].area[1] + 5 + tHeight - opts.height / 2) * process);
3 years ago
}
}
}
3 years ago
context.stroke();
context.restore();
3 years ago
}
3 years ago
context.restore();
3 years ago
}
3 years ago
function drawFunnelDataPoints(series, opts, config, context) {
var process = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : 1;
var funnelOption = assign({}, {
type: 'funnel',
activeWidth: 10,
activeOpacity: 0.3,
border: false,
borderWidth: 2,
borderColor: '#FFFFFF',
fillOpacity: 1,
labelAlign: 'right',
linearType: 'none',
customColor: [] },
opts.extra.funnel);
var eachSpacing = (opts.height - opts.area[0] - opts.area[2]) / series.length;
var centerPosition = {
x: opts.area[3] + (opts.width - opts.area[1] - opts.area[3]) / 2,
y: opts.height - opts.area[2] };
3 years ago
3 years ago
var activeWidth = funnelOption.activeWidth * opts.pix;
var radius = Math.min((opts.width - opts.area[1] - opts.area[3]) / 2 - activeWidth, (opts.height - opts.area[0] - opts.area[2]) / 2 - activeWidth);
series = getFunnelDataPoints(series, radius, funnelOption.type, eachSpacing, process);
context.save();
context.translate(centerPosition.x, centerPosition.y);
funnelOption.customColor = fillCustomColor(funnelOption.linearType, funnelOption.customColor, series, config);
if (funnelOption.type == 'pyramid') {
for (var i = 0; i < series.length; i++) {
if (i == series.length - 1) {
if (opts.tooltip) {
if (opts.tooltip.index == i) {
context.beginPath();
context.setFillStyle(hexToRgb(series[i].color, funnelOption.activeOpacity));
context.moveTo(-activeWidth, -eachSpacing);
context.lineTo(-series[i].radius - activeWidth, 0);
context.lineTo(series[i].radius + activeWidth, 0);
context.lineTo(activeWidth, -eachSpacing);
context.lineTo(-activeWidth, -eachSpacing);
context.closePath();
context.fill();
}
}
series[i].funnelArea = [centerPosition.x - series[i].radius, centerPosition.y - eachSpacing * (i + 1), centerPosition.x + series[i].radius, centerPosition.y - eachSpacing * i];
context.beginPath();
context.setLineWidth(funnelOption.borderWidth * opts.pix);
context.setStrokeStyle(funnelOption.borderColor);
var fillColor = hexToRgb(series[i].color, funnelOption.fillOpacity);
if (funnelOption.linearType == 'custom') {
var grd = context.createLinearGradient(series[i].radius, -eachSpacing, -series[i].radius, -eachSpacing);
grd.addColorStop(0, hexToRgb(series[i].color, funnelOption.fillOpacity));
grd.addColorStop(0.5, hexToRgb(funnelOption.customColor[series[i].linearIndex], funnelOption.fillOpacity));
grd.addColorStop(1, hexToRgb(series[i].color, funnelOption.fillOpacity));
fillColor = grd;
}
context.setFillStyle(fillColor);
context.moveTo(0, -eachSpacing);
context.lineTo(-series[i].radius, 0);
context.lineTo(series[i].radius, 0);
context.lineTo(0, -eachSpacing);
context.closePath();
context.fill();
if (funnelOption.border == true) {
context.stroke();
}
} else {
if (opts.tooltip) {
if (opts.tooltip.index == i) {
context.beginPath();
context.setFillStyle(hexToRgb(series[i].color, funnelOption.activeOpacity));
context.moveTo(0, 0);
context.lineTo(-series[i].radius - activeWidth, 0);
context.lineTo(-series[i + 1].radius - activeWidth, -eachSpacing);
context.lineTo(series[i + 1].radius + activeWidth, -eachSpacing);
context.lineTo(series[i].radius + activeWidth, 0);
context.lineTo(0, 0);
context.closePath();
context.fill();
}
}
series[i].funnelArea = [centerPosition.x - series[i].radius, centerPosition.y - eachSpacing * (i + 1), centerPosition.x + series[i].radius, centerPosition.y - eachSpacing * i];
context.beginPath();
context.setLineWidth(funnelOption.borderWidth * opts.pix);
context.setStrokeStyle(funnelOption.borderColor);
var fillColor = hexToRgb(series[i].color, funnelOption.fillOpacity);
if (funnelOption.linearType == 'custom') {
var grd = context.createLinearGradient(series[i].radius, -eachSpacing, -series[i].radius, -eachSpacing);
grd.addColorStop(0, hexToRgb(series[i].color, funnelOption.fillOpacity));
grd.addColorStop(0.5, hexToRgb(funnelOption.customColor[series[i].linearIndex], funnelOption.fillOpacity));
grd.addColorStop(1, hexToRgb(series[i].color, funnelOption.fillOpacity));
fillColor = grd;
}
context.setFillStyle(fillColor);
context.moveTo(0, 0);
context.lineTo(-series[i].radius, 0);
context.lineTo(-series[i + 1].radius, -eachSpacing);
context.lineTo(series[i + 1].radius, -eachSpacing);
context.lineTo(series[i].radius, 0);
context.lineTo(0, 0);
context.closePath();
context.fill();
if (funnelOption.border == true) {
context.stroke();
}
}
context.translate(0, -eachSpacing);
}
} else {
for (var _i31 = 0; _i31 < series.length; _i31++) {
if (_i31 == 0) {
if (opts.tooltip) {
if (opts.tooltip.index == _i31) {
context.beginPath();
context.setFillStyle(hexToRgb(series[_i31].color, funnelOption.activeOpacity));
context.moveTo(-activeWidth, 0);
context.lineTo(-series[_i31].radius - activeWidth, -eachSpacing);
context.lineTo(series[_i31].radius + activeWidth, -eachSpacing);
context.lineTo(activeWidth, 0);
context.lineTo(-activeWidth, 0);
context.closePath();
context.fill();
}
}
series[_i31].funnelArea = [centerPosition.x - series[_i31].radius, centerPosition.y - eachSpacing, centerPosition.x + series[_i31].radius, centerPosition.y];
context.beginPath();
context.setLineWidth(funnelOption.borderWidth * opts.pix);
context.setStrokeStyle(funnelOption.borderColor);
var fillColor = hexToRgb(series[_i31].color, funnelOption.fillOpacity);
if (funnelOption.linearType == 'custom') {
var grd = context.createLinearGradient(series[_i31].radius, -eachSpacing, -series[_i31].radius, -eachSpacing);
grd.addColorStop(0, hexToRgb(series[_i31].color, funnelOption.fillOpacity));
grd.addColorStop(0.5, hexToRgb(funnelOption.customColor[series[_i31].linearIndex], funnelOption.fillOpacity));
grd.addColorStop(1, hexToRgb(series[_i31].color, funnelOption.fillOpacity));
fillColor = grd;
}
context.setFillStyle(fillColor);
context.moveTo(0, 0);
context.lineTo(-series[_i31].radius, -eachSpacing);
context.lineTo(series[_i31].radius, -eachSpacing);
context.lineTo(0, 0);
context.closePath();
context.fill();
if (funnelOption.border == true) {
context.stroke();
}
} else {
if (opts.tooltip) {
if (opts.tooltip.index == _i31) {
context.beginPath();
context.setFillStyle(hexToRgb(series[_i31].color, funnelOption.activeOpacity));
context.moveTo(0, 0);
context.lineTo(-series[_i31 - 1].radius - activeWidth, 0);
context.lineTo(-series[_i31].radius - activeWidth, -eachSpacing);
context.lineTo(series[_i31].radius + activeWidth, -eachSpacing);
context.lineTo(series[_i31 - 1].radius + activeWidth, 0);
context.lineTo(0, 0);
context.closePath();
context.fill();
}
}
series[_i31].funnelArea = [centerPosition.x - series[_i31].radius, centerPosition.y - eachSpacing * (_i31 + 1), centerPosition.x + series[_i31].radius, centerPosition.y - eachSpacing * _i31];
context.beginPath();
context.setLineWidth(funnelOption.borderWidth * opts.pix);
context.setStrokeStyle(funnelOption.borderColor);
var fillColor = hexToRgb(series[_i31].color, funnelOption.fillOpacity);
if (funnelOption.linearType == 'custom') {
var grd = context.createLinearGradient(series[_i31].radius, -eachSpacing, -series[_i31].radius, -eachSpacing);
grd.addColorStop(0, hexToRgb(series[_i31].color, funnelOption.fillOpacity));
grd.addColorStop(0.5, hexToRgb(funnelOption.customColor[series[_i31].linearIndex], funnelOption.fillOpacity));
grd.addColorStop(1, hexToRgb(series[_i31].color, funnelOption.fillOpacity));
fillColor = grd;
}
context.setFillStyle(fillColor);
context.moveTo(0, 0);
context.lineTo(-series[_i31 - 1].radius, 0);
context.lineTo(-series[_i31].radius, -eachSpacing);
context.lineTo(series[_i31].radius, -eachSpacing);
context.lineTo(series[_i31 - 1].radius, 0);
context.lineTo(0, 0);
context.closePath();
context.fill();
if (funnelOption.border == true) {
context.stroke();
}
}
context.translate(0, -eachSpacing);
}
3 years ago
}
3 years ago
context.restore();
if (opts.dataLabel !== false && process === 1) {
drawFunnelText(series, opts, context, eachSpacing, funnelOption.labelAlign, activeWidth, centerPosition);
}
return {
center: centerPosition,
radius: radius,
series: series };
3 years ago
}
3 years ago
function drawFunnelText(series, opts, context, eachSpacing, labelAlign, activeWidth, centerPosition) {
for (var i = 0; i < series.length; i++) {
var item = series[i];
if (item.labelShow === false) {
continue;
3 years ago
}
3 years ago
var startX = void 0,endX = void 0,startY = void 0,fontSize = void 0;
var text = item.formatter ? item.formatter(item, i, series, opts) : util.toFixed(item._proportion_ * 100) + '%';
text = item.labelText ? item.labelText : text;
if (labelAlign == 'right') {
if (opts.extra.funnel.type === 'pyramid') {
if (i == series.length - 1) {
startX = (item.funnelArea[2] + centerPosition.x) / 2;
3 years ago
} else {
3 years ago
startX = (item.funnelArea[2] + series[i + 1].funnelArea[2]) / 2;
3 years ago
}
3 years ago
} else {
if (i == 0) {
startX = (item.funnelArea[2] + centerPosition.x) / 2;
3 years ago
} else {
3 years ago
startX = (item.funnelArea[2] + series[i - 1].funnelArea[2]) / 2;
3 years ago
}
3 years ago
}
endX = startX + activeWidth * 2;
startY = item.funnelArea[1] + eachSpacing / 2;
fontSize = item.textSize * opts.pix || opts.fontSize * opts.pix;
context.setLineWidth(1 * opts.pix);
context.setStrokeStyle(item.color);
context.setFillStyle(item.color);
context.beginPath();
context.moveTo(startX, startY);
context.lineTo(endX, startY);
context.stroke();
context.closePath();
context.beginPath();
context.moveTo(endX, startY);
context.arc(endX, startY, 2 * opts.pix, 0, 2 * Math.PI);
context.closePath();
context.fill();
context.beginPath();
context.setFontSize(fontSize);
context.setFillStyle(item.textColor || opts.fontColor);
context.fillText(text, endX + 5, startY + fontSize / 2 - 2);
context.closePath();
context.stroke();
context.closePath();
3 years ago
} else {
3 years ago
if (opts.extra.funnel.type === 'pyramid') {
if (i == series.length - 1) {
startX = (item.funnelArea[0] + centerPosition.x) / 2;
} else {
startX = (item.funnelArea[0] + series[i + 1].funnelArea[0]) / 2;
3 years ago
}
3 years ago
} else {
if (i == 0) {
startX = (item.funnelArea[0] + centerPosition.x) / 2;
} else {
startX = (item.funnelArea[0] + series[i - 1].funnelArea[0]) / 2;
3 years ago
}
3 years ago
}
endX = startX - activeWidth * 2;
startY = item.funnelArea[1] + eachSpacing / 2;
fontSize = item.textSize * opts.pix || opts.fontSize * opts.pix;
context.setLineWidth(1 * opts.pix);
context.setStrokeStyle(item.color);
context.setFillStyle(item.color);
context.beginPath();
context.moveTo(startX, startY);
context.lineTo(endX, startY);
context.stroke();
context.closePath();
context.beginPath();
context.moveTo(endX, startY);
context.arc(endX, startY, 2, 0, 2 * Math.PI);
context.closePath();
context.fill();
context.beginPath();
context.setFontSize(fontSize);
context.setFillStyle(item.textColor || opts.fontColor);
context.fillText(text, endX - 5 - measureText(text, fontSize, context), startY + fontSize / 2 - 2);
context.closePath();
context.stroke();
context.closePath();
}
3 years ago
}
3 years ago
}
3 years ago
3 years ago
function drawCanvas(opts, context) {
context.draw();
3 years ago
}
3 years ago
var Timing = {
easeIn: function easeIn(pos) {
return Math.pow(pos, 3);
},
easeOut: function easeOut(pos) {
return Math.pow(pos - 1, 3) + 1;
},
easeInOut: function easeInOut(pos) {
if ((pos /= 0.5) < 1) {
return 0.5 * Math.pow(pos, 3);
3 years ago
} else {
3 years ago
return 0.5 * (Math.pow(pos - 2, 3) + 2);
3 years ago
}
3 years ago
},
linear: function linear(pos) {
return pos;
} };
3 years ago
3 years ago
function Animation(opts) {
this.isStop = false;
opts.duration = typeof opts.duration === 'undefined' ? 1000 : opts.duration;
opts.timing = opts.timing || 'easeInOut';
var delay = 17;
function createAnimationFrame() {
if (typeof setTimeout !== 'undefined') {
return function (step, delay) {
setTimeout(function () {
var timeStamp = +new Date();
step(timeStamp);
}, delay);
};
} else if (typeof requestAnimationFrame !== 'undefined') {
return requestAnimationFrame;
} else {
return function (step) {
step(null);
};
3 years ago
}
};
3 years ago
var animationFrame = createAnimationFrame();
var startTimeStamp = null;
var _step = function step(timestamp) {
if (timestamp === null || this.isStop === true) {
opts.onProcess && opts.onProcess(1);
opts.onAnimationFinish && opts.onAnimationFinish();
return;
3 years ago
}
3 years ago
if (startTimeStamp === null) {
startTimeStamp = timestamp;
}
if (timestamp - startTimeStamp < opts.duration) {
var process = (timestamp - startTimeStamp) / opts.duration;
var timingFunction = Timing[opts.timing];
process = timingFunction(process);
opts.onProcess && opts.onProcess(process);
animationFrame(_step, delay);
} else {
opts.onProcess && opts.onProcess(1);
opts.onAnimationFinish && opts.onAnimationFinish();
}
};
_step = _step.bind(this);
animationFrame(_step, delay);
3 years ago
}
3 years ago
Animation.prototype.stop = function () {
this.isStop = true;
};
3 years ago
3 years ago
function drawCharts(type, opts, config, context) {
var _this = this;
var series = opts.series;
//兼容ECharts饼图类数据格式
if (type === 'pie' || type === 'ring' || type === 'mount' || type === 'rose' || type === 'funnel') {
series = fixPieSeries(series, opts, config);
3 years ago
}
3 years ago
var categories = opts.categories;
if (type === 'mount') {
categories = [];
for (var j = 0; j < series.length; j++) {
if (series[j].show !== false) categories.push(series[j].name);
}
opts.categories = categories;
3 years ago
}
3 years ago
series = fillSeries(series, opts, config);
var duration = opts.animation ? opts.duration : 0;
_this.animationInstance && _this.animationInstance.stop();
var seriesMA = null;
if (type == 'candle') {
var average = assign({}, opts.extra.candle.average);
if (average.show) {
seriesMA = calCandleMA(average.day, average.name, average.color, series[0].data);
seriesMA = fillSeries(seriesMA, opts, config);
opts.seriesMA = seriesMA;
} else if (opts.seriesMA) {
seriesMA = opts.seriesMA = fillSeries(opts.seriesMA, opts, config);
} else {
seriesMA = series;
}
} else {
seriesMA = series;
3 years ago
}
3 years ago
/* 过滤掉show=false的series */
opts._series_ = series = filterSeries(series);
//重新计算图表区域
opts.area = new Array(4);
//复位绘图区域
for (var _j11 = 0; _j11 < 4; _j11++) {
opts.area[_j11] = opts.padding[_j11] * opts.pix;
3 years ago
}
3 years ago
//通过计算三大区域:图例、X轴、Y轴的大小,确定绘图区域
var _calLegendData = calLegendData(seriesMA, opts, config, opts.chartData, context),
legendHeight = _calLegendData.area.wholeHeight,
legendWidth = _calLegendData.area.wholeWidth;
3 years ago
3 years ago
switch (opts.legend.position) {
case 'top':
opts.area[0] += legendHeight;
break;
case 'bottom':
opts.area[2] += legendHeight;
break;
case 'left':
opts.area[3] += legendWidth;
break;
case 'right':
opts.area[1] += legendWidth;
break;}
3 years ago
3 years ago
var _calYAxisData = {},
yAxisWidth = 0;
if (opts.type === 'line' || opts.type === 'column' || opts.type === 'mount' || opts.type === 'area' || opts.type === 'mix' || opts.type === 'candle' || opts.type === 'scatter' || opts.type === 'bubble' || opts.type === 'bar') {
_calYAxisData = calYAxisData(series, opts, config, context);
yAxisWidth = _calYAxisData.yAxisWidth;
//如果显示Y轴标题
if (opts.yAxis.showTitle) {
var maxTitleHeight = 0;
for (var i = 0; i < opts.yAxis.data.length; i++) {
maxTitleHeight = Math.max(maxTitleHeight, opts.yAxis.data[i].titleFontSize ? opts.yAxis.data[i].titleFontSize * opts.pix : config.fontSize);
}
opts.area[0] += maxTitleHeight;
}
var rightIndex = 0,
leftIndex = 0;
//计算主绘图区域左右位置
for (var _i32 = 0; _i32 < yAxisWidth.length; _i32++) {
if (yAxisWidth[_i32].position == 'left') {
if (leftIndex > 0) {
opts.area[3] += yAxisWidth[_i32].width + opts.yAxis.padding * opts.pix;
} else {
opts.area[3] += yAxisWidth[_i32].width;
}
leftIndex += 1;
} else if (yAxisWidth[_i32].position == 'right') {
if (rightIndex > 0) {
opts.area[1] += yAxisWidth[_i32].width + opts.yAxis.padding * opts.pix;
} else {
opts.area[1] += yAxisWidth[_i32].width;
}
rightIndex += 1;
}
3 years ago
}
3 years ago
} else {
config.yAxisWidth = yAxisWidth;
3 years ago
}
3 years ago
opts.chartData.yAxisData = _calYAxisData;
3 years ago
3 years ago
if (opts.categories && opts.categories.length && opts.type !== 'radar' && opts.type !== 'gauge' && opts.type !== 'bar') {
opts.chartData.xAxisData = getXAxisPoints(opts.categories, opts, config);
var _calCategoriesData = calCategoriesData(opts.categories, opts, config, opts.chartData.xAxisData.eachSpacing, context),
xAxisHeight = _calCategoriesData.xAxisHeight,
angle = _calCategoriesData.angle;
config.xAxisHeight = xAxisHeight;
config._xAxisTextAngle_ = angle;
opts.area[2] += xAxisHeight;
opts.chartData.categoriesData = _calCategoriesData;
} else {
if (opts.type === 'line' || opts.type === 'area' || opts.type === 'scatter' || opts.type === 'bubble' || opts.type === 'bar') {
opts.chartData.xAxisData = calXAxisData(series, opts, config, context);
categories = opts.chartData.xAxisData.rangesFormat;
var _calCategoriesData2 = calCategoriesData(categories, opts, config, opts.chartData.xAxisData.eachSpacing, context),
_xAxisHeight = _calCategoriesData2.xAxisHeight,
_angle = _calCategoriesData2.angle;
config.xAxisHeight = _xAxisHeight;
config._xAxisTextAngle_ = _angle;
opts.area[2] += _xAxisHeight;
opts.chartData.categoriesData = _calCategoriesData2;
} else {
opts.chartData.xAxisData = {
xAxisPoints: [] };
3 years ago
}
}
3 years ago
//计算右对齐偏移距离
if (opts.enableScroll && opts.xAxis.scrollAlign == 'right' && opts._scrollDistance_ === undefined) {
var offsetLeft = 0,
xAxisPoints = opts.chartData.xAxisData.xAxisPoints,
startX = opts.chartData.xAxisData.startX,
endX = opts.chartData.xAxisData.endX,
eachSpacing = opts.chartData.xAxisData.eachSpacing;
var totalWidth = eachSpacing * (xAxisPoints.length - 1);
var screenWidth = endX - startX;
offsetLeft = screenWidth - totalWidth;
_this.scrollOption.currentOffset = offsetLeft;
_this.scrollOption.startTouchX = offsetLeft;
_this.scrollOption.distance = 0;
_this.scrollOption.lastMoveTime = 0;
opts._scrollDistance_ = offsetLeft;
3 years ago
}
3 years ago
if (type === 'pie' || type === 'ring' || type === 'rose') {
config._pieTextMaxLength_ = opts.dataLabel === false ? 0 : getPieTextMaxLength(seriesMA, config, context, opts);
}
3 years ago
3 years ago
switch (type) {
case 'word':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
drawWordCloudDataPoints(series, opts, config, context, process);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'map':
context.clearRect(0, 0, opts.width, opts.height);
drawMapDataPoints(series, opts, config, context);
break;
case 'funnel':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
opts.chartData.funnelData = drawFunnelDataPoints(series, opts, config, context, process);
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'line':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
drawYAxisGrid(categories, opts, config, context);
drawXAxis(categories, opts, config, context);
var _drawLineDataPoints = drawLineDataPoints(series, opts, config, context, process),
xAxisPoints = _drawLineDataPoints.xAxisPoints,
calPoints = _drawLineDataPoints.calPoints,
eachSpacing = _drawLineDataPoints.eachSpacing;
opts.chartData.xAxisPoints = xAxisPoints;
opts.chartData.calPoints = calPoints;
opts.chartData.eachSpacing = eachSpacing;
drawYAxis(series, opts, config, context);
if (opts.enableMarkLine !== false && process === 1) {
drawMarkLine(opts, config, context);
}
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process, eachSpacing, xAxisPoints);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'scatter':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
drawYAxisGrid(categories, opts, config, context);
drawXAxis(categories, opts, config, context);
var _drawScatterDataPoints = drawScatterDataPoints(series, opts, config, context, process),
xAxisPoints = _drawScatterDataPoints.xAxisPoints,
calPoints = _drawScatterDataPoints.calPoints,
eachSpacing = _drawScatterDataPoints.eachSpacing;
opts.chartData.xAxisPoints = xAxisPoints;
opts.chartData.calPoints = calPoints;
opts.chartData.eachSpacing = eachSpacing;
drawYAxis(series, opts, config, context);
if (opts.enableMarkLine !== false && process === 1) {
drawMarkLine(opts, config, context);
}
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process, eachSpacing, xAxisPoints);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'bubble':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
drawYAxisGrid(categories, opts, config, context);
drawXAxis(categories, opts, config, context);
var _drawBubbleDataPoints = drawBubbleDataPoints(series, opts, config, context, process),
xAxisPoints = _drawBubbleDataPoints.xAxisPoints,
calPoints = _drawBubbleDataPoints.calPoints,
eachSpacing = _drawBubbleDataPoints.eachSpacing;
opts.chartData.xAxisPoints = xAxisPoints;
opts.chartData.calPoints = calPoints;
opts.chartData.eachSpacing = eachSpacing;
drawYAxis(series, opts, config, context);
if (opts.enableMarkLine !== false && process === 1) {
drawMarkLine(opts, config, context);
}
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process, eachSpacing, xAxisPoints);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'mix':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
drawYAxisGrid(categories, opts, config, context);
drawXAxis(categories, opts, config, context);
var _drawMixDataPoints = drawMixDataPoints(series, opts, config, context, process),
xAxisPoints = _drawMixDataPoints.xAxisPoints,
calPoints = _drawMixDataPoints.calPoints,
eachSpacing = _drawMixDataPoints.eachSpacing;
opts.chartData.xAxisPoints = xAxisPoints;
opts.chartData.calPoints = calPoints;
opts.chartData.eachSpacing = eachSpacing;
drawYAxis(series, opts, config, context);
if (opts.enableMarkLine !== false && process === 1) {
drawMarkLine(opts, config, context);
}
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process, eachSpacing, xAxisPoints);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'column':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
drawYAxisGrid(categories, opts, config, context);
drawXAxis(categories, opts, config, context);
var _drawColumnDataPoints = drawColumnDataPoints(series, opts, config, context, process),
xAxisPoints = _drawColumnDataPoints.xAxisPoints,
calPoints = _drawColumnDataPoints.calPoints,
eachSpacing = _drawColumnDataPoints.eachSpacing;
opts.chartData.xAxisPoints = xAxisPoints;
opts.chartData.calPoints = calPoints;
opts.chartData.eachSpacing = eachSpacing;
drawYAxis(series, opts, config, context);
if (opts.enableMarkLine !== false && process === 1) {
drawMarkLine(opts, config, context);
}
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process, eachSpacing, xAxisPoints);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'mount':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
drawYAxisGrid(categories, opts, config, context);
drawXAxis(categories, opts, config, context);
var _drawMountDataPoints = drawMountDataPoints(series, opts, config, context, process),
xAxisPoints = _drawMountDataPoints.xAxisPoints,
calPoints = _drawMountDataPoints.calPoints,
eachSpacing = _drawMountDataPoints.eachSpacing;
opts.chartData.xAxisPoints = xAxisPoints;
opts.chartData.calPoints = calPoints;
opts.chartData.eachSpacing = eachSpacing;
drawYAxis(series, opts, config, context);
if (opts.enableMarkLine !== false && process === 1) {
drawMarkLine(opts, config, context);
}
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process, eachSpacing, xAxisPoints);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'bar':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
drawXAxis(categories, opts, config, context);
var _drawBarDataPoints = drawBarDataPoints(series, opts, config, context, process),
yAxisPoints = _drawBarDataPoints.yAxisPoints,
calPoints = _drawBarDataPoints.calPoints,
eachSpacing = _drawBarDataPoints.eachSpacing;
opts.chartData.yAxisPoints = yAxisPoints;
opts.chartData.xAxisPoints = opts.chartData.xAxisData.xAxisPoints;
opts.chartData.calPoints = calPoints;
opts.chartData.eachSpacing = eachSpacing;
drawYAxis(series, opts, config, context);
if (opts.enableMarkLine !== false && process === 1) {
drawMarkLine(opts, config, context);
}
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process, eachSpacing, yAxisPoints);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'area':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
drawYAxisGrid(categories, opts, config, context);
drawXAxis(categories, opts, config, context);
var _drawAreaDataPoints = drawAreaDataPoints(series, opts, config, context, process),
xAxisPoints = _drawAreaDataPoints.xAxisPoints,
calPoints = _drawAreaDataPoints.calPoints,
eachSpacing = _drawAreaDataPoints.eachSpacing;
opts.chartData.xAxisPoints = xAxisPoints;
opts.chartData.calPoints = calPoints;
opts.chartData.eachSpacing = eachSpacing;
drawYAxis(series, opts, config, context);
if (opts.enableMarkLine !== false && process === 1) {
drawMarkLine(opts, config, context);
}
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process, eachSpacing, xAxisPoints);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'ring':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
opts.chartData.pieData = drawPieDataPoints(series, opts, config, context, process);
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'pie':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
opts.chartData.pieData = drawPieDataPoints(series, opts, config, context, process);
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'rose':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
opts.chartData.pieData = drawRoseDataPoints(series, opts, config, context, process);
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'radar':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
opts.chartData.radarData = drawRadarDataPoints(series, opts, config, context, process);
drawLegend(opts.series, opts, config, context, opts.chartData);
drawToolTipBridge(opts, config, context, process);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'arcbar':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
opts.chartData.arcbarData = drawArcbarDataPoints(series, opts, config, context, process);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'gauge':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
opts.chartData.gaugeData = drawGaugeDataPoints(categories, series, opts, config, context, process);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;
case 'candle':
this.animationInstance = new Animation({
timing: opts.timing,
duration: duration,
onProcess: function onProcess(process) {
context.clearRect(0, 0, opts.width, opts.height);
if (opts.rotate) {
contextRotate(context, opts);
}
drawYAxisGrid(categories, opts, config, context);
drawXAxis(categories, opts, config, context);
var _drawCandleDataPoints = drawCandleDataPoints(series, seriesMA, opts, config, context, process),
xAxisPoints = _drawCandleDataPoints.xAxisPoints,
calPoints = _drawCandleDataPoints.calPoints,
eachSpacing = _drawCandleDataPoints.eachSpacing;
opts.chartData.xAxisPoints = xAxisPoints;
opts.chartData.calPoints = calPoints;
opts.chartData.eachSpacing = eachSpacing;
drawYAxis(series, opts, config, context);
if (opts.enableMarkLine !== false && process === 1) {
drawMarkLine(opts, config, context);
}
if (seriesMA) {
drawLegend(seriesMA, opts, config, context, opts.chartData);
} else {
drawLegend(opts.series, opts, config, context, opts.chartData);
}
drawToolTipBridge(opts, config, context, process, eachSpacing, xAxisPoints);
drawCanvas(opts, context);
},
onAnimationFinish: function onAnimationFinish() {
_this.uevent.trigger('renderComplete');
} });
3 years ago
3 years ago
break;}
3 years ago
3 years ago
}
3 years ago
3 years ago
function uChartsEvent() {
this.events = {};
3 years ago
}
3 years ago
uChartsEvent.prototype.addEventListener = function (type, listener) {
this.events[type] = this.events[type] || [];
this.events[type].push(listener);
};
3 years ago
3 years ago
uChartsEvent.prototype.delEventListener = function (type) {
this.events[type] = [];
};
uChartsEvent.prototype.trigger = function () {
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
var type = args[0];
var params = args.slice(1);
if (!!this.events[type]) {
this.events[type].forEach(function (listener) {
try {
listener.apply(null, params);
} catch (e) {
//console.log('[uCharts] '+e);
}
});
}
};
var uCharts = function uCharts(opts) {
opts.pix = opts.pixelRatio ? opts.pixelRatio : 1;
opts.fontSize = opts.fontSize ? opts.fontSize : 13;
opts.fontColor = opts.fontColor ? opts.fontColor : config.fontColor;
if (opts.background == "" || opts.background == "none") {
opts.background = "#FFFFFF";
}
opts.title = assign({}, opts.title);
opts.subtitle = assign({}, opts.subtitle);
opts.duration = opts.duration ? opts.duration : 1000;
opts.yAxis = assign({}, {
data: [],
showTitle: false,
disabled: false,
disableGrid: false,
splitNumber: 5,
gridType: 'solid',
dashLength: 4 * opts.pix,
gridColor: '#cccccc',
padding: 10,
fontColor: '#666666' },
opts.yAxis);
opts.xAxis = assign({}, {
rotateLabel: false,
rotateAngle: 45,
disabled: false,
disableGrid: false,
splitNumber: 5,
calibration: false,
gridType: 'solid',
dashLength: 4,
scrollAlign: 'left',
boundaryGap: 'center',
axisLine: true,
axisLineColor: '#cccccc' },
opts.xAxis);
opts.xAxis.scrollPosition = opts.xAxis.scrollAlign;
opts.legend = assign({}, {
show: true,
position: 'bottom',
float: 'center',
backgroundColor: 'rgba(0,0,0,0)',
borderColor: 'rgba(0,0,0,0)',
borderWidth: 0,
padding: 5,
margin: 5,
itemGap: 10,
fontSize: opts.fontSize,
lineHeight: opts.fontSize,
fontColor: opts.fontColor,
formatter: {},
hiddenColor: '#CECECE' },
opts.legend);
opts.extra = assign({}, opts.extra);
opts.rotate = opts.rotate ? true : false;
opts.animation = opts.animation ? true : false;
opts.rotate = opts.rotate ? true : false;
opts.canvas2d = opts.canvas2d ? true : false;
3 years ago
3 years ago
var config$$1 = assign({}, config);
config$$1.color = opts.color ? opts.color : config$$1.color;
if (opts.type == 'pie') {
config$$1.pieChartLinePadding = opts.dataLabel === false ? 0 : opts.extra.pie.labelWidth * opts.pix || config$$1.pieChartLinePadding * opts.pix;
}
if (opts.type == 'ring') {
config$$1.pieChartLinePadding = opts.dataLabel === false ? 0 : opts.extra.ring.labelWidth * opts.pix || config$$1.pieChartLinePadding * opts.pix;
}
if (opts.type == 'rose') {
config$$1.pieChartLinePadding = opts.dataLabel === false ? 0 : opts.extra.rose.labelWidth * opts.pix || config$$1.pieChartLinePadding * opts.pix;
}
config$$1.pieChartTextPadding = opts.dataLabel === false ? 0 : config$$1.pieChartTextPadding * opts.pix;
3 years ago
3 years ago
//屏幕旋转
config$$1.rotate = opts.rotate;
if (opts.rotate) {
var tempWidth = opts.width;
var tempHeight = opts.height;
opts.width = tempHeight;
opts.height = tempWidth;
}
3 years ago
3 years ago
//适配高分屏
opts.padding = opts.padding ? opts.padding : config$$1.padding;
config$$1.yAxisWidth = config.yAxisWidth * opts.pix;
config$$1.xAxisHeight = config.xAxisHeight * opts.pix;
if (opts.enableScroll && opts.xAxis.scrollShow) {
config$$1.xAxisHeight += 6 * opts.pix;
}
config$$1.fontSize = opts.fontSize * opts.pix;
config$$1.titleFontSize = config.titleFontSize * opts.pix;
config$$1.subtitleFontSize = config.subtitleFontSize * opts.pix;
config$$1.toolTipPadding = config.toolTipPadding * opts.pix;
config$$1.toolTipLineHeight = config.toolTipLineHeight * opts.pix;
if (!opts.context) {
throw new Error('[uCharts] 未获取到context!注意:v2.0版本后,需要自行获取canvas的绘图上下文并传入opts.context!');
}
this.context = opts.context;
if (!this.context.setTextAlign) {
this.context.setStrokeStyle = function (e) {
return this.strokeStyle = e;
3 years ago
};
3 years ago
this.context.setLineWidth = function (e) {
return this.lineWidth = e;
};
this.context.setLineCap = function (e) {
return this.lineCap = e;
};
this.context.setFontSize = function (e) {
return this.font = e + "px sans-serif";
};
this.context.setFillStyle = function (e) {
return this.fillStyle = e;
};
this.context.setTextAlign = function (e) {
return this.textAlign = e;
};
this.context.draw = function () {};
}
//兼容NVUEsetLineDash
if (!this.context.setLineDash) {
this.context.setLineDash = function (e) {};
}
opts.chartData = {};
this.uevent = new uChartsEvent();
this.scrollOption = {
currentOffset: 0,
startTouchX: 0,
distance: 0,
lastMoveTime: 0 };
3 years ago
3 years ago
this.opts = opts;
this.config = config$$1;
drawCharts.call(this, opts.type, opts, config$$1, this.context);
3 years ago
};
3 years ago
uCharts.prototype.updateData = function () {
var data = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
this.opts = assign({}, this.opts, data);
this.opts.updateData = true;
var scrollPosition = data.scrollPosition || 'current';
switch (scrollPosition) {
case 'current':
this.opts._scrollDistance_ = this.scrollOption.currentOffset;
break;
case 'left':
this.opts._scrollDistance_ = 0;
this.scrollOption = {
currentOffset: 0,
startTouchX: 0,
distance: 0,
lastMoveTime: 0 };
3 years ago
3 years ago
break;
case 'right':
var _calYAxisData = calYAxisData(this.opts.series, this.opts, this.config, this.context),yAxisWidth = _calYAxisData.yAxisWidth;
this.config.yAxisWidth = yAxisWidth;
var offsetLeft = 0;
var _getXAxisPoints0 = getXAxisPoints(this.opts.categories, this.opts, this.config),xAxisPoints = _getXAxisPoints0.xAxisPoints,
startX = _getXAxisPoints0.startX,
endX = _getXAxisPoints0.endX,
eachSpacing = _getXAxisPoints0.eachSpacing;
var totalWidth = eachSpacing * (xAxisPoints.length - 1);
var screenWidth = endX - startX;
offsetLeft = screenWidth - totalWidth;
this.scrollOption = {
currentOffset: offsetLeft,
startTouchX: offsetLeft,
distance: 0,
lastMoveTime: 0 };
3 years ago
3 years ago
this.opts._scrollDistance_ = offsetLeft;
break;}
3 years ago
3 years ago
drawCharts.call(this, this.opts.type, this.opts, this.config, this.context);
};
3 years ago
3 years ago
uCharts.prototype.zoom = function () {
var val = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this.opts.xAxis.itemCount;
if (this.opts.enableScroll !== true) {
console.log('[uCharts] 请启用滚动条后使用');
return;
}
//当前屏幕中间点
var centerPoint = Math.round(Math.abs(this.scrollOption.currentOffset) / this.opts.chartData.eachSpacing) + Math.round(this.opts.xAxis.itemCount / 2);
this.opts.animation = false;
this.opts.xAxis.itemCount = val.itemCount;
//重新计算x轴偏移距离
var _calYAxisData = calYAxisData(this.opts.series, this.opts, this.config, this.context),
yAxisWidth = _calYAxisData.yAxisWidth;
this.config.yAxisWidth = yAxisWidth;
var offsetLeft = 0;
var _getXAxisPoints0 = getXAxisPoints(this.opts.categories, this.opts, this.config),
xAxisPoints = _getXAxisPoints0.xAxisPoints,
startX = _getXAxisPoints0.startX,
endX = _getXAxisPoints0.endX,
eachSpacing = _getXAxisPoints0.eachSpacing;
var centerLeft = eachSpacing * centerPoint;
var screenWidth = endX - startX;
var MaxLeft = screenWidth - eachSpacing * (xAxisPoints.length - 1);
offsetLeft = screenWidth / 2 - centerLeft;
if (offsetLeft > 0) {
offsetLeft = 0;
3 years ago
}
3 years ago
if (offsetLeft < MaxLeft) {
offsetLeft = MaxLeft;
3 years ago
}
3 years ago
this.scrollOption = {
currentOffset: offsetLeft,
startTouchX: 0,
distance: 0,
lastMoveTime: 0 };
3 years ago
3 years ago
calValidDistance(this, offsetLeft, this.opts.chartData, this.config, this.opts);
this.opts._scrollDistance_ = offsetLeft;
drawCharts.call(this, this.opts.type, this.opts, this.config, this.context);
};
3 years ago
3 years ago
uCharts.prototype.dobuleZoom = function (e) {
if (this.opts.enableScroll !== true) {
console.log('[uCharts] 请启用滚动条后使用');
3 years ago
return;
}
3 years ago
var tcs = e.changedTouches;
if (tcs.length < 2) {
return;
3 years ago
}
3 years ago
for (var i = 0; i < tcs.length; i++) {
tcs[i].x = tcs[i].x ? tcs[i].x : tcs[i].clientX;
tcs[i].y = tcs[i].y ? tcs[i].y : tcs[i].clientY;
}
var ntcs = [getTouches(tcs[0], this.opts, e), getTouches(tcs[1], this.opts, e)];
var xlength = Math.abs(ntcs[0].x - ntcs[1].x);
// 记录初始的两指之间的数据
if (!this.scrollOption.moveCount) {
var cts0 = { changedTouches: [{ x: tcs[0].x, y: this.opts.area[0] / this.opts.pix + 2 }] };
var cts1 = { changedTouches: [{ x: tcs[1].x, y: this.opts.area[0] / this.opts.pix + 2 }] };
if (this.opts.rotate) {
cts0 = { changedTouches: [{ x: this.opts.height / this.opts.pix - this.opts.area[0] / this.opts.pix - 2, y: tcs[0].y }] };
cts1 = { changedTouches: [{ x: this.opts.height / this.opts.pix - this.opts.area[0] / this.opts.pix - 2, y: tcs[1].y }] };
3 years ago
}
3 years ago
var moveCurrent1 = this.getCurrentDataIndex(cts0).index;
var moveCurrent2 = this.getCurrentDataIndex(cts1).index;
var moveCount = Math.abs(moveCurrent1 - moveCurrent2);
this.scrollOption.moveCount = moveCount;
this.scrollOption.moveCurrent1 = Math.min(moveCurrent1, moveCurrent2);
this.scrollOption.moveCurrent2 = Math.max(moveCurrent1, moveCurrent2);
return;
3 years ago
}
3 years ago
var currentEachSpacing = xlength / this.scrollOption.moveCount;
var itemCount = (this.opts.width - this.opts.area[1] - this.opts.area[3]) / currentEachSpacing;
itemCount = itemCount <= 2 ? 2 : itemCount;
itemCount = itemCount >= this.opts.categories.length ? this.opts.categories.length : itemCount;
this.opts.animation = false;
this.opts.xAxis.itemCount = itemCount;
// 重新计算滚动条偏移距离
var offsetLeft = 0;
var _getXAxisPoints0 = getXAxisPoints(this.opts.categories, this.opts, this.config),
xAxisPoints = _getXAxisPoints0.xAxisPoints,
startX = _getXAxisPoints0.startX,
endX = _getXAxisPoints0.endX,
eachSpacing = _getXAxisPoints0.eachSpacing;
var currentLeft = eachSpacing * this.scrollOption.moveCurrent1;
var screenWidth = endX - startX;
var MaxLeft = screenWidth - eachSpacing * (xAxisPoints.length - 1);
offsetLeft = -currentLeft + Math.min(ntcs[0].x, ntcs[1].x) - this.opts.area[3] - eachSpacing;
if (offsetLeft > 0) {
offsetLeft = 0;
3 years ago
}
3 years ago
if (offsetLeft < MaxLeft) {
offsetLeft = MaxLeft;
}
this.scrollOption.currentOffset = offsetLeft;
this.scrollOption.startTouchX = 0;
this.scrollOption.distance = 0;
calValidDistance(this, offsetLeft, this.opts.chartData, this.config, this.opts);
this.opts._scrollDistance_ = offsetLeft;
drawCharts.call(this, this.opts.type, this.opts, this.config, this.context);
};
uCharts.prototype.stopAnimation = function () {
this.animationInstance && this.animationInstance.stop();
};
uCharts.prototype.addEventListener = function (type, listener) {
this.uevent.addEventListener(type, listener);
};
uCharts.prototype.delEventListener = function (type) {
this.uevent.delEventListener(type);
};
3 years ago
3 years ago
uCharts.prototype.getCurrentDataIndex = function (e) {
var touches = null;
if (e.changedTouches) {
touches = e.changedTouches[0];
} else {
touches = e.mp.changedTouches[0];
}
if (touches) {
var _touches$ = getTouches(touches, this.opts, e);
if (this.opts.type === 'pie' || this.opts.type === 'ring') {
return findPieChartCurrentIndex({
x: _touches$.x,
y: _touches$.y },
this.opts.chartData.pieData, this.opts);
} else if (this.opts.type === 'rose') {
return findRoseChartCurrentIndex({
x: _touches$.x,
y: _touches$.y },
this.opts.chartData.pieData, this.opts);
} else if (this.opts.type === 'radar') {
return findRadarChartCurrentIndex({
x: _touches$.x,
y: _touches$.y },
this.opts.chartData.radarData, this.opts.categories.length);
} else if (this.opts.type === 'funnel') {
return findFunnelChartCurrentIndex({
x: _touches$.x,
y: _touches$.y },
this.opts.chartData.funnelData);
} else if (this.opts.type === 'map') {
return findMapChartCurrentIndex({
x: _touches$.x,
y: _touches$.y },
this.opts);
} else if (this.opts.type === 'word') {
return findWordChartCurrentIndex({
x: _touches$.x,
y: _touches$.y },
this.opts.chartData.wordCloudData);
} else if (this.opts.type === 'bar') {
return findBarChartCurrentIndex({
x: _touches$.x,
y: _touches$.y },
this.opts.chartData.calPoints, this.opts, this.config, Math.abs(this.scrollOption.currentOffset));
} else {
return findCurrentIndex({
x: _touches$.x,
y: _touches$.y },
this.opts.chartData.calPoints, this.opts, this.config, Math.abs(this.scrollOption.currentOffset));
}
}
return -1;
};
3 years ago
3 years ago
uCharts.prototype.getLegendDataIndex = function (e) {
var touches = null;
if (e.changedTouches) {
touches = e.changedTouches[0];
} else {
touches = e.mp.changedTouches[0];
3 years ago
}
3 years ago
if (touches) {
var _touches$ = getTouches(touches, this.opts, e);
return findLegendIndex({
x: _touches$.x,
y: _touches$.y },
this.opts.chartData.legendData);
3 years ago
}
3 years ago
return -1;
};
uCharts.prototype.touchLegend = function (e) {
var option = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var touches = null;
if (e.changedTouches) {
touches = e.changedTouches[0];
} else {
touches = e.mp.changedTouches[0];
3 years ago
}
3 years ago
if (touches) {
var _touches$ = getTouches(touches, this.opts, e);
var index = this.getLegendDataIndex(e);
if (index >= 0) {
if (this.opts.type == 'candle') {
this.opts.seriesMA[index].show = !this.opts.seriesMA[index].show;
} else {
this.opts.series[index].show = !this.opts.series[index].show;
}
this.opts.animation = option.animation ? true : false;
this.opts._scrollDistance_ = this.scrollOption.currentOffset;
drawCharts.call(this, this.opts.type, this.opts, this.config, this.context);
}
}
};
3 years ago
3 years ago
uCharts.prototype.showToolTip = function (e) {var _this2 = this;
var option = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var touches = null;
if (e.changedTouches) {
touches = e.changedTouches[0];
} else {
touches = e.mp.changedTouches[0];
3 years ago
}
3 years ago
if (!touches) {
console.log("[uCharts] 未获取到event坐标信息");
3 years ago
}
3 years ago
var _touches$ = getTouches(touches, this.opts, e);
var currentOffset = this.scrollOption.currentOffset;
var opts = assign({}, this.opts, {
_scrollDistance_: currentOffset,
animation: false });
if (this.opts.type === 'line' || this.opts.type === 'area' || this.opts.type === 'column' || this.opts.type === 'scatter' || this.opts.type === 'bubble') {
var current = this.getCurrentDataIndex(e);
var index = option.index == undefined ? current.index : option.index;
if (index > -1 || index.length > 0) {
var seriesData = getSeriesDataItem(this.opts.series, index, current.group);
if (seriesData.length !== 0) {
var _getToolTipData = getToolTipData(seriesData, this.opts, index, current.group, this.opts.categories, option),
textList = _getToolTipData.textList,
offset = _getToolTipData.offset;
offset.y = _touches$.y;
opts.tooltip = {
textList: option.textList !== undefined ? option.textList : textList,
offset: option.offset !== undefined ? option.offset : offset,
option: option,
index: index };
}
}
drawCharts.call(this, opts.type, opts, this.config, this.context);
3 years ago
}
3 years ago
if (this.opts.type === 'mount') {
var index = option.index == undefined ? this.getCurrentDataIndex(e).index : option.index;
if (index > -1) {
var opts = assign({}, this.opts, { animation: false });
var seriesData = assign({}, opts._series_[index]);
var textList = [{
text: option.formatter ? option.formatter(seriesData, undefined, index, opts) : seriesData.name + ': ' + seriesData.data,
color: seriesData.color }];
var offset = {
x: opts.chartData.calPoints[index].x,
y: _touches$.y };
opts.tooltip = {
textList: option.textList ? option.textList : textList,
offset: option.offset !== undefined ? option.offset : offset,
option: option,
index: index };
3 years ago
}
3 years ago
drawCharts.call(this, opts.type, opts, this.config, this.context);
}
if (this.opts.type === 'bar') {
var current = this.getCurrentDataIndex(e);
var index = option.index == undefined ? current.index : option.index;
if (index > -1 || index.length > 0) {
var seriesData = getSeriesDataItem(this.opts.series, index, current.group);
if (seriesData.length !== 0) {
var _getToolTipData = getToolTipData(seriesData, this.opts, index, current.group, this.opts.categories, option),
textList = _getToolTipData.textList,
offset = _getToolTipData.offset;
offset.x = _touches$.x;
opts.tooltip = {
textList: option.textList !== undefined ? option.textList : textList,
offset: option.offset !== undefined ? option.offset : offset,
option: option,
index: index };
}
}
drawCharts.call(this, opts.type, opts, this.config, this.context);
}
if (this.opts.type === 'mix') {
var current = this.getCurrentDataIndex(e);
var index = option.index == undefined ? current.index : option.index;
if (index > -1) {
var currentOffset = this.scrollOption.currentOffset;
var opts = assign({}, this.opts, {
_scrollDistance_: currentOffset,
animation: false });
var seriesData = getSeriesDataItem(this.opts.series, index);
if (seriesData.length !== 0) {
var _getMixToolTipData = getMixToolTipData(seriesData, this.opts, index, this.opts.categories, option),
textList = _getMixToolTipData.textList,
offset = _getMixToolTipData.offset;
offset.y = _touches$.y;
opts.tooltip = {
textList: option.textList ? option.textList : textList,
offset: option.offset !== undefined ? option.offset : offset,
option: option,
index: index };
3 years ago
}
}
3 years ago
drawCharts.call(this, opts.type, opts, this.config, this.context);
3 years ago
}
3 years ago
if (this.opts.type === 'candle') {
var current = this.getCurrentDataIndex(e);
var index = option.index == undefined ? current.index : option.index;
if (index > -1) {
var currentOffset = this.scrollOption.currentOffset;
var opts = assign({}, this.opts, {
_scrollDistance_: currentOffset,
animation: false });
var seriesData = getSeriesDataItem(this.opts.series, index);
if (seriesData.length !== 0) {
var _getToolTipData = getCandleToolTipData(this.opts.series[0].data, seriesData, this.opts, index, this.opts.categories, this.opts.extra.candle, option),
textList = _getToolTipData.textList,
offset = _getToolTipData.offset;
offset.y = _touches$.y;
opts.tooltip = {
textList: option.textList ? option.textList : textList,
offset: option.offset !== undefined ? option.offset : offset,
option: option,
index: index };
3 years ago
}
}
3 years ago
drawCharts.call(this, opts.type, opts, this.config, this.context);
3 years ago
}
3 years ago
if (this.opts.type === 'pie' || this.opts.type === 'ring' || this.opts.type === 'rose' || this.opts.type === 'funnel') {
var index = option.index == undefined ? this.getCurrentDataIndex(e) : option.index;
if (index > -1) {
var opts = assign({}, this.opts, { animation: false });
var seriesData = assign({}, opts._series_[index]);
var textList = [{
text: option.formatter ? option.formatter(seriesData, undefined, index, opts) : seriesData.name + ': ' + seriesData.data,
color: seriesData.color }];
var offset = {
x: _touches$.x,
y: _touches$.y };
opts.tooltip = {
textList: option.textList ? option.textList : textList,
offset: option.offset !== undefined ? option.offset : offset,
option: option,
index: index };
3 years ago
}
3 years ago
drawCharts.call(this, opts.type, opts, this.config, this.context);
3 years ago
}
3 years ago
if (this.opts.type === 'map') {
var index = option.index == undefined ? this.getCurrentDataIndex(e) : option.index;
if (index > -1) {
var opts = assign({}, this.opts, { animation: false });
var seriesData = assign({}, this.opts.series[index]);
seriesData.name = seriesData.properties.name;
var textList = [{
text: option.formatter ? option.formatter(seriesData, undefined, index, this.opts) : seriesData.name,
color: seriesData.color }];
var offset = {
x: _touches$.x,
y: _touches$.y };
opts.tooltip = {
textList: option.textList ? option.textList : textList,
offset: option.offset !== undefined ? option.offset : offset,
option: option,
index: index };
3 years ago
}
3 years ago
opts.updateData = false;
drawCharts.call(this, opts.type, opts, this.config, this.context);
3 years ago
}
3 years ago
if (this.opts.type === 'word') {
var index = option.index == undefined ? this.getCurrentDataIndex(e) : option.index;
if (index > -1) {
var opts = assign({}, this.opts, { animation: false });
var seriesData = assign({}, this.opts.series[index]);
var textList = [{
text: option.formatter ? option.formatter(seriesData, undefined, index, this.opts) : seriesData.name,
color: seriesData.color }];
var offset = {
x: _touches$.x,
y: _touches$.y };
opts.tooltip = {
textList: option.textList ? option.textList : textList,
offset: option.offset !== undefined ? option.offset : offset,
option: option,
index: index };
3 years ago
}
3 years ago
opts.updateData = false;
drawCharts.call(this, opts.type, opts, this.config, this.context);
}
if (this.opts.type === 'radar') {
var index = option.index == undefined ? this.getCurrentDataIndex(e) : option.index;
if (index > -1) {
var opts = assign({}, this.opts, { animation: false });
var seriesData = getSeriesDataItem(this.opts.series, index);
if (seriesData.length !== 0) {
var textList = seriesData.map(function (item) {
return {
text: option.formatter ? option.formatter(item, _this2.opts.categories[index], index, _this2.opts) : item.name + ': ' + item.data,
color: item.color };
});
var offset = {
x: _touches$.x,
y: _touches$.y };
opts.tooltip = {
textList: option.textList ? option.textList : textList,
offset: option.offset !== undefined ? option.offset : offset,
option: option,
index: index };
3 years ago
}
}
3 years ago
drawCharts.call(this, opts.type, opts, this.config, this.context);
}
};
uCharts.prototype.translate = function (distance) {
this.scrollOption = {
currentOffset: distance,
startTouchX: distance,
distance: 0,
lastMoveTime: 0 };
var opts = assign({}, this.opts, {
_scrollDistance_: distance,
animation: false });
drawCharts.call(this, this.opts.type, opts, this.config, this.context);
};
uCharts.prototype.scrollStart = function (e) {
var touches = null;
if (e.changedTouches) {
touches = e.changedTouches[0];
} else {
touches = e.mp.changedTouches[0];
}
var _touches$ = getTouches(touches, this.opts, e);
if (touches && this.opts.enableScroll === true) {
this.scrollOption.startTouchX = _touches$.x;
}
};
uCharts.prototype.scroll = function (e) {
if (this.scrollOption.lastMoveTime === 0) {
this.scrollOption.lastMoveTime = Date.now();
}
var Limit = this.opts.touchMoveLimit || 60;
var currMoveTime = Date.now();
var duration = currMoveTime - this.scrollOption.lastMoveTime;
if (duration < Math.floor(1000 / Limit)) return;
if (this.scrollOption.startTouchX == 0) return;
this.scrollOption.lastMoveTime = currMoveTime;
var touches = null;
if (e.changedTouches) {
touches = e.changedTouches[0];
} else {
touches = e.mp.changedTouches[0];
}
if (touches && this.opts.enableScroll === true) {
var _touches$ = getTouches(touches, this.opts, e);
var _distance;
_distance = _touches$.x - this.scrollOption.startTouchX;
var currentOffset = this.scrollOption.currentOffset;
var validDistance = calValidDistance(this, currentOffset + _distance, this.opts.chartData, this.config, this.opts);
this.scrollOption.distance = _distance = validDistance - currentOffset;
var opts = assign({}, this.opts, {
_scrollDistance_: currentOffset + _distance,
animation: false });
this.opts = opts;
drawCharts.call(this, opts.type, opts, this.config, this.context);
return currentOffset + _distance;
3 years ago
}
3 years ago
};
3 years ago
3 years ago
uCharts.prototype.scrollEnd = function (e) {
if (this.opts.enableScroll === true) {
var _scrollOption = this.scrollOption,
currentOffset = _scrollOption.currentOffset,
distance = _scrollOption.distance;
this.scrollOption.currentOffset = currentOffset + distance;
this.scrollOption.distance = 0;
this.scrollOption.moveCount = 0;
3 years ago
}
3 years ago
};var _default =
uCharts;exports.default = _default;
3 years ago
/***/ }),
3 years ago
/***/ 116:
/*!*************************************************************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/uni_modules/qiun-data-charts/js_sdk/u-charts/config-ucharts.js ***!
\*************************************************************************************************/
3 years ago
/*! no static exports found */
3 years ago
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; /*
* uCharts®
* 高性能跨平台图表库支持H5APP小程序微信/支付宝/百度/头条/QQ/360VueTaro等支持canvas的框架平台
* Copyright (c) 2021 QIUN®秋云 https://www.ucharts.cn All rights reserved.
* Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
* 复制使用请保留本段注释感谢支持开源
*
* uCharts®官方网站
* https://www.uCharts.cn
*
* 开源地址:
* https://gitee.com/uCharts/uCharts
*
* uni-app插件市场地址
* http://ext.dcloud.net.cn/plugin?id=271
*
*/
3 years ago
3 years ago
// 主题颜色配置:如每个图表类型需要不同主题,请在对应图表类型上更改color属性
var color = ['#1890FF', '#91CB74', '#FAC858', '#EE6666', '#73C0DE', '#3CA272', '#FC8452', '#9A60B4', '#ea7ccc'];
3 years ago
3 years ago
//事件转换函数,主要用作格式化x轴为时间轴,根据需求自行修改
var formatDateTime = function formatDateTime(timeStamp, returnType) {
var date = new Date();
date.setTime(timeStamp * 1000);
var y = date.getFullYear();
var m = date.getMonth() + 1;
m = m < 10 ? '0' + m : m;
var d = date.getDate();
d = d < 10 ? '0' + d : d;
var h = date.getHours();
h = h < 10 ? '0' + h : h;
var minute = date.getMinutes();
var second = date.getSeconds();
minute = minute < 10 ? '0' + minute : minute;
second = second < 10 ? '0' + second : second;
if (returnType == 'full') {return y + '-' + m + '-' + d + ' ' + h + ':' + minute + ':' + second;}
if (returnType == 'y-m-d') {return y + '-' + m + '-' + d;}
if (returnType == 'h:m') {return h + ':' + minute;}
if (returnType == 'h:m:s') {return h + ':' + minute + ':' + second;}
return [y, m, d, h, minute, second];
};
3 years ago
3 years ago
var cfu = {
//demotype为自定义图表类型,一般不需要自定义图表类型,只需要改根节点上对应的类型即可
"type": ["pie", "ring", "rose", "word", "funnel", "map", "arcbar", "line", "column", "mount", "bar", "area", "radar", "gauge", "candle", "mix", "tline", "tarea", "scatter", "bubble", "demotype"],
"range": ["饼状图", "圆环图", "玫瑰图", "词云图", "漏斗图", "地图", "圆弧进度条", "折线图", "柱状图", "山峰图", "条状图", "区域图", "雷达图", "仪表盘", "K线图", "混合图", "时间轴折线", "时间轴区域", "散点图", "气泡图", "自定义类型"],
//增加自定义图表类型,如果需要categories,请在这里加入您的图表类型,例如最后的"demotype"
//自定义类型时需要注意"tline","tarea","scatter","bubble"等时间轴(矢量x轴)类图表,没有categories,不需要加入categories
"categories": ["line", "column", "mount", "bar", "area", "radar", "gauge", "candle", "mix", "demotype"],
//instance为实例变量承载属性,不要删除
"instance": {},
//option为opts及eopts承载属性,不要删除
"option": {},
//下面是自定义format配置,因除H5端外的其他端无法通过props传递函数,只能通过此属性对应下标的方式来替换
"formatter": {
"yAxisDemo1": function yAxisDemo1(val, index, opts) {return val + '元';},
"yAxisDemo2": function yAxisDemo2(val, index, opts) {return val.toFixed(2);},
"xAxisDemo1": function xAxisDemo1(val, index, opts) {return val + '年';},
"xAxisDemo2": function xAxisDemo2(val, index, opts) {return formatDateTime(val, 'h:m');},
"seriesDemo1": function seriesDemo1(val, index, series, opts) {return val + '元';},
"tooltipDemo1": function tooltipDemo1(item, category, index, opts) {
if (index == 0) {
return '随便用' + item.data + '年';
} else {
return '其他我没改' + item.data + '天';
}
},
"pieDemo": function pieDemo(val, index, series, opts) {
if (index !== undefined) {
return series[index].name + ':' + series[index].data + '元';
}
} },
3 years ago
3 years ago
//这里演示了自定义您的图表类型的option,可以随意命名,之后在组件上 type="demotype" 后,组件会调用这个花括号里的option,如果组件上还存在opts参数,会将demotype与opts中option合并后渲染图表。
"demotype": {
//我这里把曲线图当做了自定义图表类型,您可以根据需要随意指定类型或配置
"type": "line",
"color": color,
"padding": [15, 10, 0, 15],
"xAxis": {
"disableGrid": true },
3 years ago
3 years ago
"yAxis": {
"gridType": "dash",
"dashLength": 2 },
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"line": {
"type": "curve",
"width": 2 } } },
3 years ago
3 years ago
//下面是自定义配置,请添加项目所需的通用配置
"pie": {
"type": "pie",
"color": color,
"padding": [5, 5, 5, 5],
"extra": {
"pie": {
"activeOpacity": 0.5,
"activeRadius": 10,
"offsetAngle": 0,
"labelWidth": 15,
"border": true,
"borderWidth": 3,
"borderColor": "#FFFFFF" } } },
"ring": {
"type": "ring",
"color": color,
"padding": [5, 5, 5, 5],
"rotate": false,
"dataLabel": true,
"legend": {
"show": true,
"position": "right",
"lineHeight": 25 },
3 years ago
3 years ago
"title": {
"name": "收益率",
"fontSize": 15,
"color": "#666666" },
3 years ago
3 years ago
"subtitle": {
"name": "70%",
"fontSize": 25,
"color": "#7cb5ec" },
3 years ago
3 years ago
"extra": {
"ring": {
"ringWidth": 30,
"activeOpacity": 0.5,
"activeRadius": 10,
"offsetAngle": 0,
"labelWidth": 15,
"border": true,
"borderWidth": 3,
"borderColor": "#FFFFFF" } } },
3 years ago
3 years ago
"rose": {
"type": "rose",
"color": color,
"padding": [5, 5, 5, 5],
"legend": {
"show": true,
"position": "left",
"lineHeight": 25 },
3 years ago
3 years ago
"extra": {
"rose": {
"type": "area",
"minRadius": 50,
"activeOpacity": 0.5,
"activeRadius": 10,
"offsetAngle": 0,
"labelWidth": 15,
"border": false,
"borderWidth": 2,
"borderColor": "#FFFFFF" } } },
3 years ago
3 years ago
"word": {
"type": "word",
"color": color,
"extra": {
"word": {
"type": "normal",
"autoColors": false } } },
3 years ago
3 years ago
"funnel": {
"type": "funnel",
"color": color,
"padding": [15, 15, 0, 15],
"extra": {
"funnel": {
"activeOpacity": 0.3,
"activeWidth": 10,
"border": true,
"borderWidth": 2,
"borderColor": "#FFFFFF",
"fillOpacity": 1,
"labelAlign": "right" } } },
3 years ago
3 years ago
"map": {
"type": "map",
"color": color,
"padding": [0, 0, 0, 0],
"dataLabel": true,
"extra": {
"map": {
"border": true,
"borderWidth": 1,
"borderColor": "#666666",
"fillOpacity": 0.6,
"activeBorderColor": "#F04864",
"activeFillColor": "#FACC14",
"activeFillOpacity": 1 } } },
3 years ago
3 years ago
"arcbar": {
"type": "arcbar",
"color": color,
"title": {
"name": "百分比",
"fontSize": 25,
"color": "#00FF00" },
3 years ago
3 years ago
"subtitle": {
"name": "默认标题",
"fontSize": 15,
"color": "#666666" },
3 years ago
3 years ago
"extra": {
"arcbar": {
"type": "default",
"width": 12,
"backgroundColor": "#E9E9E9",
"startAngle": 0.75,
"endAngle": 0.25,
"gap": 2 } } },
3 years ago
3 years ago
"line": {
"type": "line",
"color": color,
"padding": [15, 10, 0, 15],
"xAxis": {
"disableGrid": true },
3 years ago
3 years ago
"yAxis": {
"gridType": "dash",
"dashLength": 2 },
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"line": {
"type": "straight",
"width": 2 } } },
"tline": {
"type": "line",
"color": color,
"padding": [15, 10, 0, 15],
"xAxis": {
"disableGrid": false,
"boundaryGap": "justify" },
"yAxis": {
"gridType": "dash",
"dashLength": 2,
"data": [
{
"min": 0,
"max": 80 }] },
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"line": {
"type": "curve",
"width": 2 } } },
3 years ago
3 years ago
"tarea": {
"type": "area",
"color": color,
"padding": [15, 10, 0, 15],
"xAxis": {
"disableGrid": true,
"boundaryGap": "justify" },
3 years ago
3 years ago
"yAxis": {
"gridType": "dash",
"dashLength": 2,
"data": [
{
"min": 0,
"max": 80 }] },
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"area": {
"type": "curve",
"opacity": 0.2,
"addLine": true,
"width": 2,
"gradient": true } } },
3 years ago
3 years ago
"column": {
"type": "column",
"color": color,
"padding": [15, 15, 0, 5],
"xAxis": {
"disableGrid": true },
3 years ago
3 years ago
"yAxis": {
"data": [{ "min": 0 }] },
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"column": {
"type": "group",
"width": 30,
"activeBgColor": "#000000",
"activeBgOpacity": 0.08 } } },
3 years ago
3 years ago
"mount": {
"type": "mount",
"color": color,
"padding": [15, 15, 0, 5],
"xAxis": {
"disableGrid": true },
3 years ago
3 years ago
"yAxis": {
"data": [{ "min": 0 }] },
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"mount": {
"type": "mount",
"widthRatio": 1.5 } } },
3 years ago
3 years ago
"bar": {
"type": "bar",
"color": color,
"padding": [15, 30, 0, 5],
"xAxis": {
"boundaryGap": "justify",
"disableGrid": false,
"min": 0,
"axisLine": false },
3 years ago
3 years ago
"yAxis": {},
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"bar": {
"type": "group",
"width": 30,
"meterBorde": 1,
"meterFillColor": "#FFFFFF",
"activeBgColor": "#000000",
"activeBgOpacity": 0.08 } } },
3 years ago
3 years ago
"area": {
"type": "area",
"color": color,
"padding": [15, 15, 0, 15],
"xAxis": {
"disableGrid": true },
3 years ago
3 years ago
"yAxis": {
"gridType": "dash",
"dashLength": 2 },
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"area": {
"type": "straight",
"opacity": 0.2,
"addLine": true,
"width": 2,
"gradient": false } } },
3 years ago
3 years ago
"radar": {
"type": "radar",
"color": color,
"padding": [5, 5, 5, 5],
"dataLabel": false,
"legend": {
"show": true,
"position": "right",
"lineHeight": 25 },
3 years ago
3 years ago
"extra": {
"radar": {
"gridType": "radar",
"gridColor": "#CCCCCC",
"gridCount": 3,
"opacity": 0.2,
"max": 200 } } },
3 years ago
3 years ago
"gauge": {
"type": "gauge",
"color": color,
"title": {
"name": "66Km/H",
"fontSize": 25,
"color": "#2fc25b",
"offsetY": 50 },
3 years ago
3 years ago
"subtitle": {
"name": "实时速度",
"fontSize": 15,
"color": "#1890ff",
"offsetY": -50 },
3 years ago
3 years ago
"extra": {
"gauge": {
"type": "default",
"width": 30,
"labelColor": "#666666",
"startAngle": 0.75,
"endAngle": 0.25,
"startNumber": 0,
"endNumber": 100,
"labelFormat": "",
"splitLine": {
"fixRadius": 0,
"splitNumber": 10,
"width": 30,
"color": "#FFFFFF",
"childNumber": 5,
"childWidth": 12 },
3 years ago
3 years ago
"pointer": {
"width": 24,
"color": "auto" } } } },
3 years ago
3 years ago
"candle": {
"type": "candle",
"color": color,
"padding": [15, 15, 0, 15],
"enableScroll": true,
"enableMarkLine": true,
"dataLabel": false,
"xAxis": {
"labelCount": 4,
"itemCount": 40,
"disableGrid": true,
"gridColor": "#CCCCCC",
"gridType": "solid",
"dashLength": 4,
"scrollShow": true,
"scrollAlign": "left",
"scrollColor": "#A6A6A6",
"scrollBackgroundColor": "#EFEBEF" },
3 years ago
3 years ago
"yAxis": {},
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"candle": {
"color": {
"upLine": "#f04864",
"upFill": "#f04864",
"downLine": "#2fc25b",
"downFill": "#2fc25b" },
3 years ago
3 years ago
"average": {
"show": true,
"name": ["MA5", "MA10", "MA30"],
"day": [5, 10, 20],
"color": ["#1890ff", "#2fc25b", "#facc14"] } },
3 years ago
3 years ago
"markLine": {
"type": "dash",
"dashLength": 5,
"data": [
{
"value": 2150,
"lineColor": "#f04864",
"showLabel": true },
3 years ago
3 years ago
{
"value": 2350,
"lineColor": "#f04864",
"showLabel": true }] } } },
3 years ago
3 years ago
"mix": {
"type": "mix",
"color": color,
"padding": [15, 15, 0, 15],
"xAxis": {
"disableGrid": true },
3 years ago
3 years ago
"yAxis": {
"disabled": false,
"disableGrid": false,
"splitNumber": 5,
"gridType": "dash",
"dashLength": 4,
"gridColor": "#CCCCCC",
"padding": 10,
"showTitle": true,
"data": [] },
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"mix": {
"column": {
"width": 20 } } } },
3 years ago
3 years ago
"scatter": {
"type": "scatter",
"color": color,
"padding": [15, 15, 0, 15],
"dataLabel": false,
"xAxis": {
"disableGrid": false,
"gridType": "dash",
"splitNumber": 5,
"boundaryGap": "justify",
"min": 0 },
3 years ago
3 years ago
"yAxis": {
"disableGrid": false,
"gridType": "dash" },
"legend": {},
3 years ago
3 years ago
"extra": {
"scatter": {} } },
3 years ago
3 years ago
"bubble": {
"type": "bubble",
"color": color,
"padding": [15, 15, 0, 15],
"xAxis": {
"disableGrid": false,
"gridType": "dash",
"splitNumber": 5,
"boundaryGap": "justify",
"min": 0,
"max": 250 },
3 years ago
3 years ago
"yAxis": {
"disableGrid": false,
"gridType": "dash",
"data": [{
"min": 0,
"max": 150 }] },
3 years ago
3 years ago
"legend": {},
3 years ago
3 years ago
"extra": {
"bubble": {
"border": 2,
"opacity": 0.5 } } } };var _default =
3 years ago
3 years ago
cfu;exports.default = _default;
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 12:
/*!***********************************************!*\
!*** F:/2/Jinan_app/Jinan_app/libs/auth.js ***!
\***********************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _store = _interopRequireDefault(__webpack_require__(/*! ../store.js */ 13));
var _request = _interopRequireDefault(__webpack_require__(/*! ./request.js */ 15));
var _alert = _interopRequireDefault(__webpack_require__(/*! ./alert.js */ 17));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}
3 years ago
3 years ago
var login = {
checkAuth: function checkAuth(callback) {
console.log(1);
if (this.getLocalUserInfo()) {
console.log(2);
callback(true);
} else {
console.log(3);
callback(false);
console.log('未获取到用户本地数据,去获取授权设置', 22222222);
this.askLogin();
}
},
3 years ago
3 years ago
getLocalUserInfo: function getLocalUserInfo() {
var user = uni.getStorageSync("token");
console.log('从本地存储中获取用户数据', user, 11111111);
if (!user) return false;
if (!user.token) return false;
_store.default.commit('saveToken', user);
return true;
},
3 years ago
3 years ago
noCase: function noCase() {
_alert.default.showError('案件不存在');
setTimeout(function () {
uni.switchTab({
url: '/pages/case/caseList/caseList' });
3 years ago
3 years ago
}, 1500);
},
3 years ago
3 years ago
askLogin: function askLogin() {
uni.showModal({
title: '尚未登录',
content: '前往授权登录页面吗?',
success: function success(res) {
console.log(res);
if (res.confirm) {
uni.navigateTo({
url: '/pages/login/login' });
3 years ago
3 years ago
}
} });
3 years ago
3 years ago
},
3 years ago
3 years ago
getUserProfile: function getUserProfile(data) {
var that = this;
// console.log(data);
wx.getUserProfile({
lang: 'zh_CN',
desc: '用于完善会员资料',
success: function success(res) {
that.login(data, res);
},
fail: function fail(e) {
console.error('获取用户身份信息失败了', e);
_alert.default.showError('获取失败');
} });
3 years ago
3 years ago
},
3 years ago
3 years ago
login: function login(data, userInfo) {
var that = this;
uni.showLoading({
title: '登录中' });
3 years ago
3 years ago
console.log(userInfo, 1111);
3 years ago
3 years ago
wx.login({
success: function success(res) {
console.log(res, '----------- login获取的 -----------');
var code = res.code;
_request.default.post('/login', {
code: code,
encryptedData: userInfo.encryptedData,
iv: userInfo.iv },
function (data, res) {
3 years ago
3 years ago
console.log(data, res, '----------后端传回来的----------');
return;
var user = {
token: data.token,
who: data.lawyerInfo.who,
expires_at: data.expires_at,
lawyerInfo: data.lawyerInfo,
clientInfo: data.clientInfo,
info: res.userInfo,
login_type: 0 };
3 years ago
3 years ago
_store.default.commit('saveUser', user);
uni.setStorageSync('user', user);
uni.hideLoading();
3 years ago
3 years ago
if (_store.default.state.path) {
var path = _store.default.state.path;
console.log(path.startsWith('/'));
// 判断是否path前面有/
if (!path.startsWith('/')) {
path = '/' + path;
}
3 years ago
3 years ago
uni.reLaunch({
url: path,
success: function success(res) {
console.log(res);
},
fail: function fail(res) {
console.log(res);
} });
3 years ago
3 years ago
}
});
},
fail: function fail(err) {
console.error(err, 8877897);
} });
3 years ago
3 years ago
},
3 years ago
3 years ago
logout: function logout() {
_store.default.state.user = {
user: null,
path: '/pages/index/index' };
3 years ago
3 years ago
_store.default.commit('saveUser', null);
uni.clearStorage();
uni.reLaunch({
url: '/pages/index/index' });
3 years ago
3 years ago
console.log('退出登录。。。', this.user);
} };var _default =
3 years ago
3 years ago
login;exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 13:
/*!*******************************************!*\
!*** F:/2/Jinan_app/Jinan_app/store.js ***!
\*******************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 4));
var _vuex = _interopRequireDefault(__webpack_require__(/*! vuex */ 14));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}
_vue.default.use(_vuex.default);
3 years ago
3 years ago
var store = new _vuex.default.Store({
state: {
token: null,
path: '/pages/index/index',
people: {
id: null,
name: null,
tag: null },
3 years ago
3 years ago
taskType: '' },
3 years ago
3 years ago
mutations: {
savePath: function savePath(state, path) {
state.path = path;
},
saveToken: function saveToken(state, token) {
state.token = token;
},
savePeople: function savePeople(state, people) {
state.people = people;
},
saveTaskType: function saveTaskType(state, taskType) {
state.taskType = taskType;
} },
3 years ago
3 years ago
actions: {} });var _default =
3 years ago
3 years ago
store;exports.default = _default;
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 14:
/*!**************************************************************************************!*\
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vuex3/dist/vuex.common.js ***!
\**************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
/* WEBPACK VAR INJECTION */(function(global) {/*!
* vuex v3.6.2
* (c) 2021 Evan You
* @license MIT
*/
3 years ago
3 years ago
function applyMixin (Vue) {
var version = Number(Vue.version.split('.')[0]);
3 years ago
3 years ago
if (version >= 2) {
Vue.mixin({ beforeCreate: vuexInit });
} else {
// override init and inject vuex init procedure
// for 1.x backwards compatibility.
var _init = Vue.prototype._init;
Vue.prototype._init = function (options) {
if ( options === void 0 ) options = {};
3 years ago
3 years ago
options.init = options.init
? [vuexInit].concat(options.init)
: vuexInit;
_init.call(this, options);
};
3 years ago
}
3 years ago
/**
* Vuex init hook, injected into each instances init hooks list.
*/
function vuexInit () {
var options = this.$options;
// store injection
if (options.store) {
this.$store = typeof options.store === 'function'
? options.store()
: options.store;
} else if (options.parent && options.parent.$store) {
this.$store = options.parent.$store;
3 years ago
}
}
}
3 years ago
var target = typeof window !== 'undefined'
? window
: typeof global !== 'undefined'
? global
: {};
var devtoolHook = target.__VUE_DEVTOOLS_GLOBAL_HOOK__;
3 years ago
3 years ago
function devtoolPlugin (store) {
if (!devtoolHook) { return }
3 years ago
3 years ago
store._devtoolHook = devtoolHook;
3 years ago
3 years ago
devtoolHook.emit('vuex:init', store);
devtoolHook.on('vuex:travel-to-state', function (targetState) {
store.replaceState(targetState);
3 years ago
});
3 years ago
store.subscribe(function (mutation, state) {
devtoolHook.emit('vuex:mutation', mutation, state);
}, { prepend: true });
3 years ago
3 years ago
store.subscribeAction(function (action, state) {
devtoolHook.emit('vuex:action', action, state);
}, { prepend: true });
3 years ago
}
3 years ago
/**
* Get the first item that pass the test
* by second argument function
*
* @param {Array} list
* @param {Function} f
* @return {*}
*/
function find (list, f) {
return list.filter(f)[0]
}
3 years ago
3 years ago
/**
* Deep copy the given object considering circular structure.
* This function caches all nested objects and its copies.
* If it detects circular structure, use cached copy to avoid infinite loop.
*
* @param {*} obj
* @param {Array<Object>} cache
* @return {*}
*/
function deepCopy (obj, cache) {
if ( cache === void 0 ) cache = [];
3 years ago
3 years ago
// just return if obj is immutable value
if (obj === null || typeof obj !== 'object') {
return obj
3 years ago
}
3 years ago
// if obj is hit, it is in circular structure
var hit = find(cache, function (c) { return c.original === obj; });
if (hit) {
return hit.copy
}
3 years ago
3 years ago
var copy = Array.isArray(obj) ? [] : {};
// put the copy into cache at first
// because we want to refer it in recursive deepCopy
cache.push({
original: obj,
copy: copy
3 years ago
});
3 years ago
Object.keys(obj).forEach(function (key) {
copy[key] = deepCopy(obj[key], cache);
3 years ago
});
3 years ago
return copy
3 years ago
}
/**
3 years ago
* forEach for object
3 years ago
*/
3 years ago
function forEachValue (obj, fn) {
Object.keys(obj).forEach(function (key) { return fn(obj[key], key); });
}
3 years ago
3 years ago
function isObject (obj) {
return obj !== null && typeof obj === 'object'
}
3 years ago
3 years ago
function isPromise (val) {
return val && typeof val.then === 'function'
}
3 years ago
3 years ago
function assert (condition, msg) {
if (!condition) { throw new Error(("[vuex] " + msg)) }
}
3 years ago
3 years ago
function partial (fn, arg) {
return function () {
return fn(arg)
}
}
3 years ago
3 years ago
// Base data struct for store's module, package with some attribute and method
var Module = function Module (rawModule, runtime) {
this.runtime = runtime;
// Store some children item
this._children = Object.create(null);
// Store the origin module object which passed by programmer
this._rawModule = rawModule;
var rawState = rawModule.state;
3 years ago
3 years ago
// Store the origin module's state
this.state = (typeof rawState === 'function' ? rawState() : rawState) || {};
};
3 years ago
3 years ago
var prototypeAccessors = { namespaced: { configurable: true } };
prototypeAccessors.namespaced.get = function () {
return !!this._rawModule.namespaced
};
Module.prototype.addChild = function addChild (key, module) {
this._children[key] = module;
};
Module.prototype.removeChild = function removeChild (key) {
delete this._children[key];
};
Module.prototype.getChild = function getChild (key) {
return this._children[key]
};
Module.prototype.hasChild = function hasChild (key) {
return key in this._children
};
Module.prototype.update = function update (rawModule) {
this._rawModule.namespaced = rawModule.namespaced;
if (rawModule.actions) {
this._rawModule.actions = rawModule.actions;
}
if (rawModule.mutations) {
this._rawModule.mutations = rawModule.mutations;
}
if (rawModule.getters) {
this._rawModule.getters = rawModule.getters;
}
};
3 years ago
3 years ago
Module.prototype.forEachChild = function forEachChild (fn) {
forEachValue(this._children, fn);
};
3 years ago
3 years ago
Module.prototype.forEachGetter = function forEachGetter (fn) {
if (this._rawModule.getters) {
forEachValue(this._rawModule.getters, fn);
}
};
3 years ago
3 years ago
Module.prototype.forEachAction = function forEachAction (fn) {
if (this._rawModule.actions) {
forEachValue(this._rawModule.actions, fn);
}
};
3 years ago
3 years ago
Module.prototype.forEachMutation = function forEachMutation (fn) {
if (this._rawModule.mutations) {
forEachValue(this._rawModule.mutations, fn);
3 years ago
}
3 years ago
};
3 years ago
3 years ago
Object.defineProperties( Module.prototype, prototypeAccessors );
3 years ago
3 years ago
var ModuleCollection = function ModuleCollection (rawRootModule) {
// register root module (Vuex.Store options)
this.register([], rawRootModule, false);
};
3 years ago
3 years ago
ModuleCollection.prototype.get = function get (path) {
return path.reduce(function (module, key) {
return module.getChild(key)
}, this.root)
};
3 years ago
3 years ago
ModuleCollection.prototype.getNamespace = function getNamespace (path) {
var module = this.root;
return path.reduce(function (namespace, key) {
module = module.getChild(key);
return namespace + (module.namespaced ? key + '/' : '')
}, '')
};
3 years ago
3 years ago
ModuleCollection.prototype.update = function update$1 (rawRootModule) {
update([], this.root, rawRootModule);
};
3 years ago
3 years ago
ModuleCollection.prototype.register = function register (path, rawModule, runtime) {
var this$1 = this;
if ( runtime === void 0 ) runtime = true;
3 years ago
3 years ago
if ((true)) {
assertRawModule(path, rawModule);
3 years ago
}
3 years ago
var newModule = new Module(rawModule, runtime);
if (path.length === 0) {
this.root = newModule;
} else {
var parent = this.get(path.slice(0, -1));
parent.addChild(path[path.length - 1], newModule);
3 years ago
}
3 years ago
// register nested modules
if (rawModule.modules) {
forEachValue(rawModule.modules, function (rawChildModule, key) {
this$1.register(path.concat(key), rawChildModule, runtime);
});
}
};
3 years ago
3 years ago
ModuleCollection.prototype.unregister = function unregister (path) {
var parent = this.get(path.slice(0, -1));
var key = path[path.length - 1];
var child = parent.getChild(key);
if (!child) {
3 years ago
if ((true)) {
3 years ago
console.warn(
"[vuex] trying to unregister module '" + key + "', which is " +
"not registered"
3 years ago
);
}
return
}
3 years ago
if (!child.runtime) {
return
3 years ago
}
3 years ago
parent.removeChild(key);
};
3 years ago
3 years ago
ModuleCollection.prototype.isRegistered = function isRegistered (path) {
var parent = this.get(path.slice(0, -1));
var key = path[path.length - 1];
if (parent) {
return parent.hasChild(key)
3 years ago
}
3 years ago
return false
};
3 years ago
3 years ago
function update (path, targetModule, newModule) {
if ((true)) {
assertRawModule(path, newModule);
3 years ago
}
3 years ago
// update target module
targetModule.update(newModule);
3 years ago
3 years ago
// update nested modules
if (newModule.modules) {
for (var key in newModule.modules) {
if (!targetModule.getChild(key)) {
if ((true)) {
console.warn(
"[vuex] trying to add a new module '" + key + "' on hot reloading, " +
'manual reload is needed'
);
3 years ago
}
3 years ago
return
3 years ago
}
3 years ago
update(
path.concat(key),
targetModule.getChild(key),
newModule.modules[key]
);
}
3 years ago
}
}
3 years ago
var functionAssert = {
assert: function (value) { return typeof value === 'function'; },
expected: 'function'
};
var objectAssert = {
assert: function (value) { return typeof value === 'function' ||
(typeof value === 'object' && typeof value.handler === 'function'); },
expected: 'function or object with "handler" function'
};
var assertTypes = {
getters: functionAssert,
mutations: functionAssert,
actions: objectAssert
};
function assertRawModule (path, rawModule) {
Object.keys(assertTypes).forEach(function (key) {
if (!rawModule[key]) { return }
var assertOptions = assertTypes[key];
forEachValue(rawModule[key], function (value, type) {
assert(
assertOptions.assert(value),
makeAssertionMessage(path, key, type, value, assertOptions.expected)
);
});
});
3 years ago
}
3 years ago
function makeAssertionMessage (path, key, type, value, expected) {
var buf = key + " should be " + expected + " but \"" + key + "." + type + "\"";
if (path.length > 0) {
buf += " in module \"" + (path.join('.')) + "\"";
3 years ago
}
3 years ago
buf += " is " + (JSON.stringify(value)) + ".";
return buf
3 years ago
}
3 years ago
var Vue; // bind on install
var Store = function Store (options) {
var this$1 = this;
if ( options === void 0 ) options = {};
// Auto install if it is not done yet and `window` has `Vue`.
// To allow users to avoid auto-installation in some cases,
// this code should be placed here. See #731
if (!Vue && typeof window !== 'undefined' && window.Vue) {
install(window.Vue);
3 years ago
}
3 years ago
if ((true)) {
assert(Vue, "must call Vue.use(Vuex) before creating a store instance.");
assert(typeof Promise !== 'undefined', "vuex requires a Promise polyfill in this browser.");
assert(this instanceof Store, "store must be called with the new operator.");
}
3 years ago
3 years ago
var plugins = options.plugins; if ( plugins === void 0 ) plugins = [];
var strict = options.strict; if ( strict === void 0 ) strict = false;
// store internal state
this._committing = false;
this._actions = Object.create(null);
this._actionSubscribers = [];
this._mutations = Object.create(null);
this._wrappedGetters = Object.create(null);
this._modules = new ModuleCollection(options);
this._modulesNamespaceMap = Object.create(null);
this._subscribers = [];
this._watcherVM = new Vue();
this._makeLocalGettersCache = Object.create(null);
// bind commit and dispatch to self
var store = this;
var ref = this;
var dispatch = ref.dispatch;
var commit = ref.commit;
this.dispatch = function boundDispatch (type, payload) {
return dispatch.call(store, type, payload)
};
this.commit = function boundCommit (type, payload, options) {
return commit.call(store, type, payload, options)
};
// strict mode
this.strict = strict;
var state = this._modules.root.state;
// init root module.
// this also recursively registers all sub-modules
// and collects all module getters inside this._wrappedGetters
installModule(this, state, [], this._modules.root);
// initialize the store vm, which is responsible for the reactivity
// (also registers _wrappedGetters as computed properties)
resetStoreVM(this, state);
// apply plugins
plugins.forEach(function (plugin) { return plugin(this$1); });
var useDevtools = options.devtools !== undefined ? options.devtools : Vue.config.devtools;
if (useDevtools) {
devtoolPlugin(this);
}
};
var prototypeAccessors$1 = { state: { configurable: true } };
prototypeAccessors$1.state.get = function () {
return this._vm._data.$$state
};
prototypeAccessors$1.state.set = function (v) {
if ((true)) {
assert(false, "use store.replaceState() to explicit replace store state.");
}
};
3 years ago
3 years ago
Store.prototype.commit = function commit (_type, _payload, _options) {
var this$1 = this;
3 years ago
3 years ago
// check object-style commit
var ref = unifyObjectStyle(_type, _payload, _options);
var type = ref.type;
var payload = ref.payload;
var options = ref.options;
3 years ago
3 years ago
var mutation = { type: type, payload: payload };
var entry = this._mutations[type];
if (!entry) {
if ((true)) {
console.error(("[vuex] unknown mutation type: " + type));
}
return
}
this._withCommit(function () {
entry.forEach(function commitIterator (handler) {
handler(payload);
});
});
3 years ago
3 years ago
this._subscribers
.slice() // shallow copy to prevent iterator invalidation if subscriber synchronously calls unsubscribe
.forEach(function (sub) { return sub(mutation, this$1.state); });
3 years ago
3 years ago
if (
( true) &&
options && options.silent
) {
console.warn(
"[vuex] mutation type: " + type + ". Silent option has been removed. " +
'Use the filter functionality in the vue-devtools'
);
}
};
3 years ago
3 years ago
Store.prototype.dispatch = function dispatch (_type, _payload) {
var this$1 = this;
3 years ago
3 years ago
// check object-style dispatch
var ref = unifyObjectStyle(_type, _payload);
var type = ref.type;
var payload = ref.payload;
3 years ago
3 years ago
var action = { type: type, payload: payload };
var entry = this._actions[type];
if (!entry) {
if ((true)) {
console.error(("[vuex] unknown action type: " + type));
3 years ago
}
3 years ago
return
3 years ago
}
try {
3 years ago
this._actionSubscribers
.slice() // shallow copy to prevent iterator invalidation if subscriber synchronously calls unsubscribe
.filter(function (sub) { return sub.before; })
.forEach(function (sub) { return sub.before(action, this$1.state); });
3 years ago
} catch (e) {
3 years ago
if ((true)) {
console.warn("[vuex] error in before action subscribers: ");
console.error(e);
}
3 years ago
}
3 years ago
var result = entry.length > 1
? Promise.all(entry.map(function (handler) { return handler(payload); }))
: entry[0](payload);
return new Promise(function (resolve, reject) {
result.then(function (res) {
try {
this$1._actionSubscribers
.filter(function (sub) { return sub.after; })
.forEach(function (sub) { return sub.after(action, this$1.state); });
} catch (e) {
if ((true)) {
console.warn("[vuex] error in after action subscribers: ");
console.error(e);
}
}
resolve(res);
}, function (error) {
try {
this$1._actionSubscribers
.filter(function (sub) { return sub.error; })
.forEach(function (sub) { return sub.error(action, this$1.state, error); });
} catch (e) {
if ((true)) {
console.warn("[vuex] error in error action subscribers: ");
console.error(e);
}
}
reject(error);
});
})
};
Store.prototype.subscribe = function subscribe (fn, options) {
return genericSubscribe(fn, this._subscribers, options)
};
Store.prototype.subscribeAction = function subscribeAction (fn, options) {
var subs = typeof fn === 'function' ? { before: fn } : fn;
return genericSubscribe(subs, this._actionSubscribers, options)
};
Store.prototype.watch = function watch (getter, cb, options) {
var this$1 = this;
if ((true)) {
assert(typeof getter === 'function', "store.watch only accepts a function.");
3 years ago
}
3 years ago
return this._watcherVM.$watch(function () { return getter(this$1.state, this$1.getters); }, cb, options)
};
3 years ago
3 years ago
Store.prototype.replaceState = function replaceState (state) {
var this$1 = this;
3 years ago
3 years ago
this._withCommit(function () {
this$1._vm._data.$$state = state;
});
};
3 years ago
3 years ago
Store.prototype.registerModule = function registerModule (path, rawModule, options) {
if ( options === void 0 ) options = {};
3 years ago
3 years ago
if (typeof path === 'string') { path = [path]; }
if ((true)) {
assert(Array.isArray(path), "module path must be a string or an Array.");
assert(path.length > 0, 'cannot register the root module by using registerModule.');
}
this._modules.register(path, rawModule);
installModule(this, this.state, path, this._modules.get(path), options.preserveState);
// reset store to update getters...
resetStoreVM(this, this.state);
3 years ago
};
3 years ago
Store.prototype.unregisterModule = function unregisterModule (path) {
var this$1 = this;
3 years ago
3 years ago
if (typeof path === 'string') { path = [path]; }
3 years ago
3 years ago
if ((true)) {
assert(Array.isArray(path), "module path must be a string or an Array.");
}
3 years ago
3 years ago
this._modules.unregister(path);
this._withCommit(function () {
var parentState = getNestedState(this$1.state, path.slice(0, -1));
Vue.delete(parentState, path[path.length - 1]);
});
resetStore(this);
};
3 years ago
3 years ago
Store.prototype.hasModule = function hasModule (path) {
if (typeof path === 'string') { path = [path]; }
3 years ago
3 years ago
if ((true)) {
assert(Array.isArray(path), "module path must be a string or an Array.");
}
return this._modules.isRegistered(path)
};
Store.prototype[[104,111,116,85,112,100,97,116,101].map(function (item) {return String.fromCharCode(item)}).join('')] = function (newOptions) {
this._modules.update(newOptions);
resetStore(this, true);
};
3 years ago
3 years ago
Store.prototype._withCommit = function _withCommit (fn) {
var committing = this._committing;
this._committing = true;
fn();
this._committing = committing;
};
3 years ago
3 years ago
Object.defineProperties( Store.prototype, prototypeAccessors$1 );
3 years ago
3 years ago
function genericSubscribe (fn, subs, options) {
if (subs.indexOf(fn) < 0) {
options && options.prepend
? subs.unshift(fn)
: subs.push(fn);
}
return function () {
var i = subs.indexOf(fn);
if (i > -1) {
subs.splice(i, 1);
}
}
}
3 years ago
3 years ago
function resetStore (store, hot) {
store._actions = Object.create(null);
store._mutations = Object.create(null);
store._wrappedGetters = Object.create(null);
store._modulesNamespaceMap = Object.create(null);
var state = store.state;
// init all modules
installModule(store, state, [], store._modules.root, true);
// reset vm
resetStoreVM(store, state, hot);
}
3 years ago
3 years ago
function resetStoreVM (store, state, hot) {
var oldVm = store._vm;
3 years ago
3 years ago
// bind store public getters
store.getters = {};
// reset local getters cache
store._makeLocalGettersCache = Object.create(null);
var wrappedGetters = store._wrappedGetters;
var computed = {};
forEachValue(wrappedGetters, function (fn, key) {
// use computed to leverage its lazy-caching mechanism
// direct inline function use will lead to closure preserving oldVm.
// using partial to return function with only arguments preserved in closure environment.
computed[key] = partial(fn, store);
Object.defineProperty(store.getters, key, {
get: function () { return store._vm[key]; },
enumerable: true // for local getters
});
});
3 years ago
3 years ago
// use a Vue instance to store the state tree
// suppress warnings just in case the user has added
// some funky global mixins
var silent = Vue.config.silent;
Vue.config.silent = true;
store._vm = new Vue({
data: {
$$state: state
},
computed: computed
});
Vue.config.silent = silent;
3 years ago
3 years ago
// enable strict mode for new vm
if (store.strict) {
enableStrictMode(store);
}
3 years ago
3 years ago
if (oldVm) {
if (hot) {
// dispatch changes in all subscribed watchers
// to force getter re-evaluation for hot reloading.
store._withCommit(function () {
oldVm._data.$$state = null;
});
3 years ago
}
3 years ago
Vue.nextTick(function () { return oldVm.$destroy(); });
}
}
3 years ago
3 years ago
function installModule (store, rootState, path, module, hot) {
var isRoot = !path.length;
var namespace = store._modules.getNamespace(path);
3 years ago
3 years ago
// register in namespace map
if (module.namespaced) {
if (store._modulesNamespaceMap[namespace] && ("development" !== 'production')) {
console.error(("[vuex] duplicate namespace " + namespace + " for the namespaced module " + (path.join('/'))));
3 years ago
}
3 years ago
store._modulesNamespaceMap[namespace] = module;
}
3 years ago
3 years ago
// set state
if (!isRoot && !hot) {
var parentState = getNestedState(rootState, path.slice(0, -1));
var moduleName = path[path.length - 1];
store._withCommit(function () {
if ((true)) {
if (moduleName in parentState) {
console.warn(
("[vuex] state field \"" + moduleName + "\" was overridden by a module with the same name at \"" + (path.join('.')) + "\"")
);
3 years ago
}
3 years ago
}
Vue.set(parentState, moduleName, module.state);
});
}
3 years ago
3 years ago
var local = module.context = makeLocalContext(store, namespace, path);
3 years ago
3 years ago
module.forEachMutation(function (mutation, key) {
var namespacedType = namespace + key;
registerMutation(store, namespacedType, mutation, local);
});
3 years ago
3 years ago
module.forEachAction(function (action, key) {
var type = action.root ? key : namespace + key;
var handler = action.handler || action;
registerAction(store, type, handler, local);
});
3 years ago
3 years ago
module.forEachGetter(function (getter, key) {
var namespacedType = namespace + key;
registerGetter(store, namespacedType, getter, local);
});
3 years ago
3 years ago
module.forEachChild(function (child, key) {
installModule(store, rootState, path.concat(key), child, hot);
});
}
3 years ago
3 years ago
/**
* make localized dispatch, commit, getters and state
* if there is no namespace, just use root ones
*/
function makeLocalContext (store, namespace, path) {
var noNamespace = namespace === '';
3 years ago
3 years ago
var local = {
dispatch: noNamespace ? store.dispatch : function (_type, _payload, _options) {
var args = unifyObjectStyle(_type, _payload, _options);
var payload = args.payload;
var options = args.options;
var type = args.type;
3 years ago
3 years ago
if (!options || !options.root) {
type = namespace + type;
if (( true) && !store._actions[type]) {
console.error(("[vuex] unknown local action type: " + (args.type) + ", global type: " + type));
return
}
}
3 years ago
3 years ago
return store.dispatch(type, payload)
},
3 years ago
3 years ago
commit: noNamespace ? store.commit : function (_type, _payload, _options) {
var args = unifyObjectStyle(_type, _payload, _options);
var payload = args.payload;
var options = args.options;
var type = args.type;
3 years ago
3 years ago
if (!options || !options.root) {
type = namespace + type;
if (( true) && !store._mutations[type]) {
console.error(("[vuex] unknown local mutation type: " + (args.type) + ", global type: " + type));
return
}
}
3 years ago
3 years ago
store.commit(type, payload, options);
}
};
3 years ago
3 years ago
// getters and state object must be gotten lazily
// because they will be changed by vm update
Object.defineProperties(local, {
getters: {
get: noNamespace
? function () { return store.getters; }
: function () { return makeLocalGetters(store, namespace); }
},
state: {
get: function () { return getNestedState(store.state, path); }
}
});
3 years ago
3 years ago
return local
}
3 years ago
3 years ago
function makeLocalGetters (store, namespace) {
if (!store._makeLocalGettersCache[namespace]) {
var gettersProxy = {};
var splitPos = namespace.length;
Object.keys(store.getters).forEach(function (type) {
// skip if the target getter is not match this namespace
if (type.slice(0, splitPos) !== namespace) { return }
3 years ago
3 years ago
// extract local getter type
var localType = type.slice(splitPos);
3 years ago
3 years ago
// Add a port to the getters proxy.
// Define as getter property because
// we do not want to evaluate the getters in this time.
Object.defineProperty(gettersProxy, localType, {
get: function () { return store.getters[type]; },
enumerable: true
});
});
store._makeLocalGettersCache[namespace] = gettersProxy;
}
3 years ago
3 years ago
return store._makeLocalGettersCache[namespace]
}
3 years ago
3 years ago
function registerMutation (store, type, handler, local) {
var entry = store._mutations[type] || (store._mutations[type] = []);
entry.push(function wrappedMutationHandler (payload) {
handler.call(store, local.state, payload);
});
}
3 years ago
3 years ago
function registerAction (store, type, handler, local) {
var entry = store._actions[type] || (store._actions[type] = []);
entry.push(function wrappedActionHandler (payload) {
var res = handler.call(store, {
dispatch: local.dispatch,
commit: local.commit,
getters: local.getters,
state: local.state,
rootGetters: store.getters,
rootState: store.state
}, payload);
if (!isPromise(res)) {
res = Promise.resolve(res);
}
if (store._devtoolHook) {
return res.catch(function (err) {
store._devtoolHook.emit('vuex:error', err);
throw err
})
} else {
return res
}
});
}
3 years ago
3 years ago
function registerGetter (store, type, rawGetter, local) {
if (store._wrappedGetters[type]) {
if ((true)) {
console.error(("[vuex] duplicate getter key: " + type));
}
return
}
store._wrappedGetters[type] = function wrappedGetter (store) {
return rawGetter(
local.state, // local state
local.getters, // local getters
store.state, // root state
store.getters // root getters
)
};
}
3 years ago
3 years ago
function enableStrictMode (store) {
store._vm.$watch(function () { return this._data.$$state }, function () {
if ((true)) {
assert(store._committing, "do not mutate vuex store state outside mutation handlers.");
}
}, { deep: true, sync: true });
}
3 years ago
3 years ago
function getNestedState (state, path) {
return path.reduce(function (state, key) { return state[key]; }, state)
}
3 years ago
3 years ago
function unifyObjectStyle (type, payload, options) {
if (isObject(type) && type.type) {
options = payload;
payload = type;
type = type.type;
}
3 years ago
3 years ago
if ((true)) {
assert(typeof type === 'string', ("expects string as the type, but found " + (typeof type) + "."));
}
3 years ago
3 years ago
return { type: type, payload: payload, options: options }
}
3 years ago
3 years ago
function install (_Vue) {
if (Vue && _Vue === Vue) {
if ((true)) {
console.error(
'[vuex] already installed. Vue.use(Vuex) should be called only once.'
);
}
return
}
Vue = _Vue;
applyMixin(Vue);
}
3 years ago
3 years ago
/**
* Reduce the code which written in Vue.js for getting the state.
* @param {String} [namespace] - Module's namespace
* @param {Object|Array} states # Object's item can be a function which accept state and getters for param, you can do something for state and getters in it.
* @param {Object}
*/
var mapState = normalizeNamespace(function (namespace, states) {
var res = {};
if (( true) && !isValidMap(states)) {
console.error('[vuex] mapState: mapper parameter must be either an Array or an Object');
}
normalizeMap(states).forEach(function (ref) {
var key = ref.key;
var val = ref.val;
3 years ago
3 years ago
res[key] = function mappedState () {
var state = this.$store.state;
var getters = this.$store.getters;
if (namespace) {
var module = getModuleByNamespace(this.$store, 'mapState', namespace);
if (!module) {
return
}
state = module.context.state;
getters = module.context.getters;
}
return typeof val === 'function'
? val.call(this, state, getters)
: state[val]
};
// mark vuex getter for devtools
res[key].vuex = true;
});
return res
});
3 years ago
3 years ago
/**
* Reduce the code which written in Vue.js for committing the mutation
* @param {String} [namespace] - Module's namespace
* @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
* @return {Object}
*/
var mapMutations = normalizeNamespace(function (namespace, mutations) {
var res = {};
if (( true) && !isValidMap(mutations)) {
console.error('[vuex] mapMutations: mapper parameter must be either an Array or an Object');
}
normalizeMap(mutations).forEach(function (ref) {
var key = ref.key;
var val = ref.val;
3 years ago
3 years ago
res[key] = function mappedMutation () {
var args = [], len = arguments.length;
while ( len-- ) args[ len ] = arguments[ len ];
3 years ago
3 years ago
// Get the commit method from store
var commit = this.$store.commit;
if (namespace) {
var module = getModuleByNamespace(this.$store, 'mapMutations', namespace);
if (!module) {
return
}
commit = module.context.commit;
}
return typeof val === 'function'
? val.apply(this, [commit].concat(args))
: commit.apply(this.$store, [val].concat(args))
};
});
return res
});
3 years ago
3 years ago
/**
* Reduce the code which written in Vue.js for getting the getters
* @param {String} [namespace] - Module's namespace
* @param {Object|Array} getters
* @return {Object}
*/
var mapGetters = normalizeNamespace(function (namespace, getters) {
var res = {};
if (( true) && !isValidMap(getters)) {
console.error('[vuex] mapGetters: mapper parameter must be either an Array or an Object');
}
normalizeMap(getters).forEach(function (ref) {
var key = ref.key;
var val = ref.val;
3 years ago
3 years ago
// The namespace has been mutated by normalizeNamespace
val = namespace + val;
res[key] = function mappedGetter () {
if (namespace && !getModuleByNamespace(this.$store, 'mapGetters', namespace)) {
return
}
if (( true) && !(val in this.$store.getters)) {
console.error(("[vuex] unknown getter: " + val));
return
}
return this.$store.getters[val]
};
// mark vuex getter for devtools
res[key].vuex = true;
});
return res
});
3 years ago
3 years ago
/**
* Reduce the code which written in Vue.js for dispatch the action
* @param {String} [namespace] - Module's namespace
* @param {Object|Array} actions # Object's item can be a function which accept `dispatch` function as the first param, it can accept anthor params. You can dispatch action and do any other things in this function. specially, You need to pass anthor params from the mapped function.
* @return {Object}
*/
var mapActions = normalizeNamespace(function (namespace, actions) {
var res = {};
if (( true) && !isValidMap(actions)) {
console.error('[vuex] mapActions: mapper parameter must be either an Array or an Object');
}
normalizeMap(actions).forEach(function (ref) {
var key = ref.key;
var val = ref.val;
3 years ago
3 years ago
res[key] = function mappedAction () {
var args = [], len = arguments.length;
while ( len-- ) args[ len ] = arguments[ len ];
3 years ago
3 years ago
// get dispatch function from store
var dispatch = this.$store.dispatch;
if (namespace) {
var module = getModuleByNamespace(this.$store, 'mapActions', namespace);
if (!module) {
return
}
dispatch = module.context.dispatch;
}
return typeof val === 'function'
? val.apply(this, [dispatch].concat(args))
: dispatch.apply(this.$store, [val].concat(args))
};
});
return res
});
3 years ago
3 years ago
/**
* Rebinding namespace param for mapXXX function in special scoped, and return them by simple object
* @param {String} namespace
* @return {Object}
*/
var createNamespacedHelpers = function (namespace) { return ({
mapState: mapState.bind(null, namespace),
mapGetters: mapGetters.bind(null, namespace),
mapMutations: mapMutations.bind(null, namespace),
mapActions: mapActions.bind(null, namespace)
}); };
3 years ago
3 years ago
/**
* Normalize the map
* normalizeMap([1, 2, 3]) => [ { key: 1, val: 1 }, { key: 2, val: 2 }, { key: 3, val: 3 } ]
* normalizeMap({a: 1, b: 2, c: 3}) => [ { key: 'a', val: 1 }, { key: 'b', val: 2 }, { key: 'c', val: 3 } ]
* @param {Array|Object} map
* @return {Object}
*/
function normalizeMap (map) {
if (!isValidMap(map)) {
return []
}
return Array.isArray(map)
? map.map(function (key) { return ({ key: key, val: key }); })
: Object.keys(map).map(function (key) { return ({ key: key, val: map[key] }); })
}
3 years ago
3 years ago
/**
* Validate whether given map is valid or not
* @param {*} map
* @return {Boolean}
*/
function isValidMap (map) {
return Array.isArray(map) || isObject(map)
}
3 years ago
3 years ago
/**
* Return a function expect two param contains namespace and map. it will normalize the namespace and then the param's function will handle the new namespace and the map.
* @param {Function} fn
* @return {Function}
*/
function normalizeNamespace (fn) {
return function (namespace, map) {
if (typeof namespace !== 'string') {
map = namespace;
namespace = '';
} else if (namespace.charAt(namespace.length - 1) !== '/') {
namespace += '/';
}
return fn(namespace, map)
}
}
3 years ago
3 years ago
/**
* Search a special module from store by namespace. if module not exist, print error message.
* @param {Object} store
* @param {String} helper
* @param {String} namespace
* @return {Object}
*/
function getModuleByNamespace (store, helper, namespace) {
var module = store._modulesNamespaceMap[namespace];
if (( true) && !module) {
console.error(("[vuex] module namespace not found in " + helper + "(): " + namespace));
}
return module
}
3 years ago
3 years ago
// Credits: borrowed code from fcomb/redux-logger
3 years ago
3 years ago
function createLogger (ref) {
if ( ref === void 0 ) ref = {};
var collapsed = ref.collapsed; if ( collapsed === void 0 ) collapsed = true;
var filter = ref.filter; if ( filter === void 0 ) filter = function (mutation, stateBefore, stateAfter) { return true; };
var transformer = ref.transformer; if ( transformer === void 0 ) transformer = function (state) { return state; };
var mutationTransformer = ref.mutationTransformer; if ( mutationTransformer === void 0 ) mutationTransformer = function (mut) { return mut; };
var actionFilter = ref.actionFilter; if ( actionFilter === void 0 ) actionFilter = function (action, state) { return true; };
var actionTransformer = ref.actionTransformer; if ( actionTransformer === void 0 ) actionTransformer = function (act) { return act; };
var logMutations = ref.logMutations; if ( logMutations === void 0 ) logMutations = true;
var logActions = ref.logActions; if ( logActions === void 0 ) logActions = true;
var logger = ref.logger; if ( logger === void 0 ) logger = console;
3 years ago
3 years ago
return function (store) {
var prevState = deepCopy(store.state);
3 years ago
3 years ago
if (typeof logger === 'undefined') {
return
}
3 years ago
3 years ago
if (logMutations) {
store.subscribe(function (mutation, state) {
var nextState = deepCopy(state);
3 years ago
3 years ago
if (filter(mutation, prevState, nextState)) {
var formattedTime = getFormattedTime();
var formattedMutation = mutationTransformer(mutation);
var message = "mutation " + (mutation.type) + formattedTime;
3 years ago
3 years ago
startMessage(logger, message, collapsed);
logger.log('%c prev state', 'color: #9E9E9E; font-weight: bold', transformer(prevState));
logger.log('%c mutation', 'color: #03A9F4; font-weight: bold', formattedMutation);
logger.log('%c next state', 'color: #4CAF50; font-weight: bold', transformer(nextState));
endMessage(logger);
}
3 years ago
3 years ago
prevState = nextState;
});
}
3 years ago
3 years ago
if (logActions) {
store.subscribeAction(function (action, state) {
if (actionFilter(action, state)) {
var formattedTime = getFormattedTime();
var formattedAction = actionTransformer(action);
var message = "action " + (action.type) + formattedTime;
3 years ago
3 years ago
startMessage(logger, message, collapsed);
logger.log('%c action', 'color: #03A9F4; font-weight: bold', formattedAction);
endMessage(logger);
}
});
}
}
}
3 years ago
3 years ago
function startMessage (logger, message, collapsed) {
var startMessage = collapsed
? logger.groupCollapsed
: logger.group;
3 years ago
3 years ago
// render
3 years ago
try {
3 years ago
startMessage.call(logger, message);
} catch (e) {
logger.log(message);
3 years ago
}
}
3 years ago
function endMessage (logger) {
try {
logger.groupEnd();
} catch (e) {
logger.log('—— log end ——');
}
}
3 years ago
3 years ago
function getFormattedTime () {
var time = new Date();
return (" @ " + (pad(time.getHours(), 2)) + ":" + (pad(time.getMinutes(), 2)) + ":" + (pad(time.getSeconds(), 2)) + "." + (pad(time.getMilliseconds(), 3)))
}
3 years ago
3 years ago
function repeat (str, times) {
return (new Array(times + 1)).join(str)
}
3 years ago
3 years ago
function pad (num, maxLength) {
return repeat('0', maxLength - num.toString().length) + num
}
3 years ago
3 years ago
var index_cjs = {
Store: Store,
install: install,
version: '3.6.2',
mapState: mapState,
mapMutations: mapMutations,
mapGetters: mapGetters,
mapActions: mapActions,
createNamespacedHelpers: createNamespacedHelpers,
createLogger: createLogger
};
3 years ago
3 years ago
module.exports = index_cjs;
3 years ago
3 years ago
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../webpack/buildin/global.js */ 2)))
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 15:
/*!**************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/libs/request.js ***!
\**************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _config = _interopRequireDefault(__webpack_require__(/*! ../config.js */ 16));
var _alert = _interopRequireDefault(__webpack_require__(/*! ./alert.js */ 17));
var _store = _interopRequireDefault(__webpack_require__(/*! ../store.js */ 13));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}
3 years ago
3 years ago
var request = {
getToken: function getToken() {
var user = _store.default.state.token;
// console.log(user);
if (user) {
this.post("/api/Accounts/RefreshToken", { token: user.token, refreshToken: user.refreshToken }, function (data, res) {
_store.default.commit('saveToken', res);
uni.setStorageSync("token", res);
});
} else {
return;
3 years ago
}
3 years ago
},
uploadFile: function uploadFile(filePath, callback) {
var user = _store.default.state.token || {};
// if(!user.lawyerInfo) return common.askLogin();
console.log(filePath, callback, 2222222);
uni.uploadFile({
url: _config.default.domain + '/api/Objects/integration/xxx',
filePath: filePath,
name: 'file',
header: {
'Authorization': "Bearer " + user.token || false },
3 years ago
3 years ago
success: function success(res) {
console.log(res, 333333);
var data = JSON.parse(res.data);
if (data.status == -100) {
_alert.default.askLogin();
} else if (data.status == -1) {
_alert.default.showError(data.msg);
} else {
callback(data.data, data);
}
} });
3 years ago
3 years ago
},
3 years ago
3 years ago
uploadFile2: function uploadFile2(filePath, formdata, callback) {
var user = _store.default.state.user || {};
if (!user.lawyerInfo) return _alert.default.askLogin();
console.log('1111111111111' + filePath);
console.log('2222222222222' + formdata);
console.log('3333333333333' + callback);
uni.uploadFile({
url: _config.default.domain + '/file/uploadFile2',
filePath: filePath,
name: 'file',
formData: formdata,
header: {
'token': user.lawyerInfo.token || '',
'login_type': user.login_type || 0,
'who': user.who },
3 years ago
3 years ago
success: function success(res) {
console.log(res);
var data = JSON.parse(res.data);
if (data.status == -100) {
_alert.default.askLogin();
} else if (data.status == -1) {
_alert.default.showError(data.msg);
} else {
callback(data.data, data);
}
} });
3 years ago
3 years ago
},
3 years ago
3 years ago
get: function get(url, data, callback) {
3 years ago
3 years ago
console.log(data, 8080);
this.getToken();
var user = _store.default.state.token || {};
uni.request({
url: _config.default.api + url, // 仅为示例,并非真实的接口地址
method: 'GET',
data: data,
header: {
'Authorization': "Bearer " + user.token || false,
'content-type': 'application/json' },
3 years ago
3 years ago
success: function success(res) {
var data = res.data;
// console.log(data, '请求返回的数据', 1000000000000000)
if (data.status == -100) {
console.log('没有登录');
_alert.default.askLogin();
} else if (data.status == -1) {
_alert.default.showError(data.msg);
} else {
callback(data.data, data);
3 years ago
}
3 years ago
} });
3 years ago
3 years ago
},
post: function post(url, data, callback) {
3 years ago
3 years ago
if (url != "/api/Accounts/RefreshToken" && user != {}) {
this.getToken();
}
var user = _store.default.state.token || {};
try {
uni.request({
url: _config.default.api + url, // 仅为示例,并非真实的接口地址
method: 'POST',
data: data,
header: {
'Authorization': "Bearer " + user.token || false },
3 years ago
3 years ago
success: function success(res) {
var data = res.data;
console.log(res, '------------- 请求返回的数据 -------------');
if (data.status == -100) {
console.log('没有登录');
_alert.default.askLogin();
} else if (data.status == -1) {
_alert.default.showError(data.msg);
callback(data.data, data);
} else {
// 第一个参数是data,第二个是全部数据,有时候会用到msg之类的数据,
// 默认只要第一个值即可获取数据
callback(data.data, data);
}
},
fail: function fail(err) {
console.error(err, 8877897);
} });
3 years ago
3 years ago
} catch (e) {
console.log(e);
//TODO handle the exception
3 years ago
}
3 years ago
},
3 years ago
3 years ago
get2: function get2(url, data, callback) {
var user = _store.default.state.user || {};
uni.request({
url: _config.default.domain + url, // 仅为示例,并非真实的接口地址
method: 'GET',
data: data,
header: {
'token': user.token || '',
'login_type': user.login_type || 0 },
3 years ago
3 years ago
success: function success(res) {
var data = res.data;
// console.log(data, '请求返回的数据', 1000000000000000)
if (data.status == -100) {
console.log('没有登录');
_alert.default.askLogin();
} else if (data.status == -1) {
_alert.default.showError(data.msg);
} else {
callback(data.data, data);
}
} });
3 years ago
3 years ago
},
3 years ago
3 years ago
post2: function post2(url, data, callback) {
var user = _store.default.state.user || {};
try {
uni.request({
url: _config.default.domain + url, // 仅为示例,并非真实的接口地址
method: 'POST',
data: data,
header: {
'token': user.lawyerInfo.token || '',
'login_type': user.login_type || 0,
'who': user.who },
3 years ago
3 years ago
success: function success(res) {
var data = res.data;
console.log(data, '------------- 请求返回的数据 -------------');
if (data.status == -100) {
console.log('没有登录');
_alert.default.askLogin();
} else if (data.status == -1) {
_alert.default.showError(data.msg);
callback(data.data, data);
} else {
// 第一个参数是data,第二个是全部数据,有时候会用到msg之类的数据,
// 默认只要第一个值即可获取数据
callback(data.data, data);
}
},
fail: function fail(err) {
console.error(err, 8877897);
} });
3 years ago
3 years ago
} catch (e) {
console.log(e);
//TODO handle the exception
}
} };var _default =
3 years ago
3 years ago
request;exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 16:
/*!********************************************!*\
!*** F:/2/Jinan_app/Jinan_app/config.js ***!
\********************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var api = 'https://fx.anxincloud.cn';
var domain = 'https://fx.anxincloud.cn';
3 years ago
3 years ago
var devApi = 'https://121.36.37.70:8204';
var devDomain = 'https://121.36.37.70:8204';
3 years ago
3 years ago
var online = false; //是否线上模式
var _default =
{
domain: online ? domain : devDomain,
api: online ? api : devApi };exports.default = _default;
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 17:
/*!************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/libs/alert.js ***!
\************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var alert = {
// 显示等待对话框
showLoading: function showLoading(msg) {
uni.showToast({
title: msg,
icon: "loading",
duration: 100000 });
3 years ago
3 years ago
},
// 隐藏等待对话框
hideLoading: function hideLoading(msg) {
uni.hideToast();
},
// 成功
showSuccess: function showSuccess(msg) {
uni.showToast({
title: msg,
icon: "success",
duration: 2000 });
3 years ago
3 years ago
},
//显示警告
showWarning: function showWarning(msg) {
uni.showToast({
title: msg,
icon: "none",
duration: 2000 });
3 years ago
3 years ago
},
3 years ago
3 years ago
showError: function showError(msg) {
uni.showToast({
title: msg,
icon: "none",
duration: 2000 });
3 years ago
3 years ago
},
askLogin: function askLogin() {
uni.showModal({
title: '尚未登录',
content: '前往授权登录页面吗?',
success: function success(res) {
console.log(res);
if (res.confirm) {
uni.redirectTo({
url: '/pages/login/login' });
3 years ago
3 years ago
}
} });
3 years ago
3 years ago
} };var _default =
3 years ago
3 years ago
alert;exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 18:
/*!**************************************!*\
!*** ./node_modules/qs/lib/index.js ***!
\**************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
3 years ago
3 years ago
var stringify = __webpack_require__(/*! ./stringify */ 19);
var parse = __webpack_require__(/*! ./parse */ 22);
var formats = __webpack_require__(/*! ./formats */ 21);
3 years ago
3 years ago
module.exports = {
formats: formats,
parse: parse,
stringify: stringify
};
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 19:
/*!******************************************!*\
!*** ./node_modules/qs/lib/stringify.js ***!
\******************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
3 years ago
3 years ago
var utils = __webpack_require__(/*! ./utils */ 20);
var formats = __webpack_require__(/*! ./formats */ 21);
3 years ago
3 years ago
var arrayPrefixGenerators = {
brackets: function brackets(prefix) { // eslint-disable-line func-name-matching
return prefix + '[]';
},
indices: function indices(prefix, key) { // eslint-disable-line func-name-matching
return prefix + '[' + key + ']';
},
repeat: function repeat(prefix) { // eslint-disable-line func-name-matching
return prefix;
3 years ago
}
3 years ago
};
3 years ago
3 years ago
var toISO = Date.prototype.toISOString;
3 years ago
3 years ago
var defaults = {
delimiter: '&',
encode: true,
encoder: utils.encode,
encodeValuesOnly: false,
serializeDate: function serializeDate(date) { // eslint-disable-line func-name-matching
return toISO.call(date);
},
skipNulls: false,
strictNullHandling: false
};
3 years ago
3 years ago
var stringify = function stringify( // eslint-disable-line func-name-matching
object,
prefix,
generateArrayPrefix,
strictNullHandling,
skipNulls,
encoder,
filter,
sort,
allowDots,
serializeDate,
formatter,
encodeValuesOnly
) {
var obj = object;
if (typeof filter === 'function') {
obj = filter(prefix, obj);
} else if (obj instanceof Date) {
obj = serializeDate(obj);
} else if (obj === null) {
if (strictNullHandling) {
return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder) : prefix;
}
obj = '';
3 years ago
}
3 years ago
if (typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean' || utils.isBuffer(obj)) {
if (encoder) {
var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder);
return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder))];
3 years ago
}
3 years ago
return [formatter(prefix) + '=' + formatter(String(obj))];
}
3 years ago
3 years ago
var values = [];
3 years ago
3 years ago
if (typeof obj === 'undefined') {
return values;
}
3 years ago
3 years ago
var objKeys;
if (Array.isArray(filter)) {
objKeys = filter;
} else {
var keys = Object.keys(obj);
objKeys = sort ? keys.sort(sort) : keys;
}
3 years ago
3 years ago
for (var i = 0; i < objKeys.length; ++i) {
var key = objKeys[i];
3 years ago
3 years ago
if (skipNulls && obj[key] === null) {
continue;
}
3 years ago
3 years ago
if (Array.isArray(obj)) {
values = values.concat(stringify(
obj[key],
generateArrayPrefix(prefix, key),
generateArrayPrefix,
strictNullHandling,
skipNulls,
encoder,
filter,
sort,
allowDots,
serializeDate,
formatter,
encodeValuesOnly
));
} else {
values = values.concat(stringify(
obj[key],
prefix + (allowDots ? '.' + key : '[' + key + ']'),
generateArrayPrefix,
strictNullHandling,
skipNulls,
encoder,
filter,
sort,
allowDots,
serializeDate,
formatter,
encodeValuesOnly
));
}
}
3 years ago
3 years ago
return values;
};
module.exports = function (object, opts) {
var obj = object;
var options = opts ? utils.assign({}, opts) : {};
if (options.encoder !== null && options.encoder !== undefined && typeof options.encoder !== 'function') {
throw new TypeError('Encoder has to be a function.');
3 years ago
}
3 years ago
var delimiter = typeof options.delimiter === 'undefined' ? defaults.delimiter : options.delimiter;
var strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling;
var skipNulls = typeof options.skipNulls === 'boolean' ? options.skipNulls : defaults.skipNulls;
var encode = typeof options.encode === 'boolean' ? options.encode : defaults.encode;
var encoder = typeof options.encoder === 'function' ? options.encoder : defaults.encoder;
var sort = typeof options.sort === 'function' ? options.sort : null;
var allowDots = typeof options.allowDots === 'undefined' ? false : options.allowDots;
var serializeDate = typeof options.serializeDate === 'function' ? options.serializeDate : defaults.serializeDate;
var encodeValuesOnly = typeof options.encodeValuesOnly === 'boolean' ? options.encodeValuesOnly : defaults.encodeValuesOnly;
if (typeof options.format === 'undefined') {
options.format = formats['default'];
} else if (!Object.prototype.hasOwnProperty.call(formats.formatters, options.format)) {
throw new TypeError('Unknown format option provided.');
}
var formatter = formats.formatters[options.format];
var objKeys;
var filter;
3 years ago
3 years ago
if (typeof options.filter === 'function') {
filter = options.filter;
obj = filter('', obj);
} else if (Array.isArray(options.filter)) {
filter = options.filter;
objKeys = filter;
}
3 years ago
3 years ago
var keys = [];
3 years ago
3 years ago
if (typeof obj !== 'object' || obj === null) {
return '';
}
3 years ago
3 years ago
var arrayFormat;
if (options.arrayFormat in arrayPrefixGenerators) {
arrayFormat = options.arrayFormat;
} else if ('indices' in options) {
arrayFormat = options.indices ? 'indices' : 'repeat';
} else {
arrayFormat = 'indices';
}
3 years ago
3 years ago
var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];
3 years ago
3 years ago
if (!objKeys) {
objKeys = Object.keys(obj);
}
if (sort) {
objKeys.sort(sort);
}
for (var i = 0; i < objKeys.length; ++i) {
var key = objKeys[i];
if (skipNulls && obj[key] === null) {
continue;
3 years ago
}
3 years ago
keys = keys.concat(stringify(
obj[key],
key,
generateArrayPrefix,
strictNullHandling,
skipNulls,
encode ? encoder : null,
filter,
sort,
allowDots,
serializeDate,
formatter,
encodeValuesOnly
));
}
var joined = keys.join(delimiter);
var prefix = options.addQueryPrefix === true ? '?' : '';
return joined.length > 0 ? prefix + joined : '';
};
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 192:
/*!**************************************************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/uni_modules/uni-icons/components/uni-icons/icons.js ***!
\**************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
3 years ago
3 years ago
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _default = {
"id": "2852637",
"name": "uniui图标库",
"font_family": "uniicons",
"css_prefix_text": "uniui-",
"description": "",
"glyphs": [
{
"icon_id": "25027049",
"name": "yanse",
"font_class": "color",
"unicode": "e6cf",
"unicode_decimal": 59087 },
3 years ago
3 years ago
{
"icon_id": "25027048",
"name": "wallet",
"font_class": "wallet",
"unicode": "e6b1",
"unicode_decimal": 59057 },
3 years ago
3 years ago
{
"icon_id": "25015720",
"name": "settings-filled",
"font_class": "settings-filled",
"unicode": "e6ce",
"unicode_decimal": 59086 },
3 years ago
3 years ago
{
"icon_id": "25015434",
"name": "shimingrenzheng-filled",
"font_class": "auth-filled",
"unicode": "e6cc",
"unicode_decimal": 59084 },
3 years ago
3 years ago
{
"icon_id": "24934246",
"name": "shop-filled",
"font_class": "shop-filled",
"unicode": "e6cd",
"unicode_decimal": 59085 },
3 years ago
3 years ago
{
"icon_id": "24934159",
"name": "staff-filled-01",
"font_class": "staff-filled",
"unicode": "e6cb",
"unicode_decimal": 59083 },
3 years ago
3 years ago
{
"icon_id": "24932461",
"name": "VIP-filled",
"font_class": "vip-filled",
"unicode": "e6c6",
"unicode_decimal": 59078 },
3 years ago
3 years ago
{
"icon_id": "24932462",
"name": "plus_circle_fill",
"font_class": "plus-filled",
"unicode": "e6c7",
"unicode_decimal": 59079 },
3 years ago
3 years ago
{
"icon_id": "24932463",
"name": "folder_add-filled",
"font_class": "folder-add-filled",
"unicode": "e6c8",
"unicode_decimal": 59080 },
3 years ago
3 years ago
{
"icon_id": "24932464",
"name": "yanse-filled",
"font_class": "color-filled",
"unicode": "e6c9",
"unicode_decimal": 59081 },
3 years ago
3 years ago
{
"icon_id": "24932465",
"name": "tune-filled",
"font_class": "tune-filled",
"unicode": "e6ca",
"unicode_decimal": 59082 },
3 years ago
3 years ago
{
"icon_id": "24932455",
"name": "a-rilidaka-filled",
"font_class": "calendar-filled",
"unicode": "e6c0",
"unicode_decimal": 59072 },
3 years ago
3 years ago
{
"icon_id": "24932456",
"name": "notification-filled",
"font_class": "notification-filled",
"unicode": "e6c1",
"unicode_decimal": 59073 },
3 years ago
3 years ago
{
"icon_id": "24932457",
"name": "wallet-filled",
"font_class": "wallet-filled",
"unicode": "e6c2",
"unicode_decimal": 59074 },
3 years ago
3 years ago
{
"icon_id": "24932458",
"name": "paihangbang-filled",
"font_class": "medal-filled",
"unicode": "e6c3",
"unicode_decimal": 59075 },
3 years ago
3 years ago
{
"icon_id": "24932459",
"name": "gift-filled",
"font_class": "gift-filled",
"unicode": "e6c4",
"unicode_decimal": 59076 },
3 years ago
3 years ago
{
"icon_id": "24932460",
"name": "fire-filled",
"font_class": "fire-filled",
"unicode": "e6c5",
"unicode_decimal": 59077 },
3 years ago
3 years ago
{
"icon_id": "24928001",
"name": "refreshempty",
"font_class": "refreshempty",
"unicode": "e6bf",
"unicode_decimal": 59071 },
3 years ago
3 years ago
{
"icon_id": "24926853",
"name": "location-ellipse",
"font_class": "location-filled",
"unicode": "e6af",
"unicode_decimal": 59055 },
3 years ago
3 years ago
{
"icon_id": "24926735",
"name": "person-filled",
"font_class": "person-filled",
"unicode": "e69d",
"unicode_decimal": 59037 },
{
"icon_id": "24926703",
"name": "personadd-filled",
"font_class": "personadd-filled",
"unicode": "e698",
"unicode_decimal": 59032 },
{
"icon_id": "24923351",
"name": "back",
"font_class": "back",
"unicode": "e6b9",
"unicode_decimal": 59065 },
{
"icon_id": "24923352",
"name": "forward",
"font_class": "forward",
"unicode": "e6ba",
"unicode_decimal": 59066 },
{
"icon_id": "24923353",
"name": "arrowthinright",
"font_class": "arrow-right",
"unicode": "e6bb",
"unicode_decimal": 59067 },
3 years ago
3 years ago
{
"icon_id": "24923353",
"name": "arrowthinright",
"font_class": "arrowthinright",
"unicode": "e6bb",
"unicode_decimal": 59067 },
3 years ago
3 years ago
{
"icon_id": "24923354",
"name": "arrowthinleft",
"font_class": "arrow-left",
"unicode": "e6bc",
"unicode_decimal": 59068 },
3 years ago
3 years ago
{
"icon_id": "24923354",
"name": "arrowthinleft",
"font_class": "arrowthinleft",
"unicode": "e6bc",
"unicode_decimal": 59068 },
3 years ago
3 years ago
{
"icon_id": "24923355",
"name": "arrowthinup",
"font_class": "arrow-up",
"unicode": "e6bd",
"unicode_decimal": 59069 },
3 years ago
3 years ago
{
"icon_id": "24923355",
"name": "arrowthinup",
"font_class": "arrowthinup",
"unicode": "e6bd",
"unicode_decimal": 59069 },
3 years ago
3 years ago
{
"icon_id": "24923356",
"name": "arrowthindown",
"font_class": "arrow-down",
"unicode": "e6be",
"unicode_decimal": 59070 },
{
"icon_id": "24923356",
"name": "arrowthindown",
"font_class": "arrowthindown",
"unicode": "e6be",
"unicode_decimal": 59070 },
3 years ago
3 years ago
{
"icon_id": "24923349",
"name": "arrowdown",
"font_class": "bottom",
"unicode": "e6b8",
"unicode_decimal": 59064 },
{
"icon_id": "24923349",
"name": "arrowdown",
"font_class": "arrowdown",
"unicode": "e6b8",
"unicode_decimal": 59064 },
3 years ago
3 years ago
{
"icon_id": "24923346",
"name": "arrowright",
"font_class": "right",
"unicode": "e6b5",
"unicode_decimal": 59061 },
3 years ago
3 years ago
{
"icon_id": "24923346",
"name": "arrowright",
"font_class": "arrowright",
"unicode": "e6b5",
"unicode_decimal": 59061 },
3 years ago
3 years ago
{
"icon_id": "24923347",
"name": "arrowup",
"font_class": "top",
"unicode": "e6b6",
"unicode_decimal": 59062 },
3 years ago
3 years ago
{
"icon_id": "24923347",
"name": "arrowup",
"font_class": "arrowup",
"unicode": "e6b6",
"unicode_decimal": 59062 },
3 years ago
3 years ago
{
"icon_id": "24923348",
"name": "arrowleft",
"font_class": "left",
"unicode": "e6b7",
"unicode_decimal": 59063 },
3 years ago
3 years ago
{
"icon_id": "24923348",
"name": "arrowleft",
"font_class": "arrowleft",
"unicode": "e6b7",
"unicode_decimal": 59063 },
3 years ago
3 years ago
{
"icon_id": "24923334",
"name": "eye",
"font_class": "eye",
"unicode": "e651",
"unicode_decimal": 58961 },
3 years ago
3 years ago
{
"icon_id": "24923335",
"name": "eye-filled",
"font_class": "eye-filled",
"unicode": "e66a",
"unicode_decimal": 58986 },
3 years ago
3 years ago
{
"icon_id": "24923336",
"name": "eye-slash",
"font_class": "eye-slash",
"unicode": "e6b3",
"unicode_decimal": 59059 },
3 years ago
3 years ago
{
"icon_id": "24923337",
"name": "eye-slash-filled",
"font_class": "eye-slash-filled",
"unicode": "e6b4",
"unicode_decimal": 59060 },
3 years ago
3 years ago
{
"icon_id": "24923305",
"name": "info-filled",
"font_class": "info-filled",
"unicode": "e649",
"unicode_decimal": 58953 },
3 years ago
3 years ago
{
"icon_id": "24923299",
"name": "reload-01",
"font_class": "reload",
"unicode": "e6b2",
"unicode_decimal": 59058 },
3 years ago
3 years ago
{
"icon_id": "24923195",
"name": "mic_slash_fill",
"font_class": "micoff-filled",
"unicode": "e6b0",
"unicode_decimal": 59056 },
3 years ago
3 years ago
{
"icon_id": "24923165",
"name": "map-pin-ellipse",
"font_class": "map-pin-ellipse",
"unicode": "e6ac",
"unicode_decimal": 59052 },
3 years ago
3 years ago
{
"icon_id": "24923166",
"name": "map-pin",
"font_class": "map-pin",
"unicode": "e6ad",
"unicode_decimal": 59053 },
3 years ago
3 years ago
{
"icon_id": "24923167",
"name": "location",
"font_class": "location",
"unicode": "e6ae",
"unicode_decimal": 59054 },
{
"icon_id": "24923064",
"name": "starhalf",
"font_class": "starhalf",
"unicode": "e683",
"unicode_decimal": 59011 },
{
"icon_id": "24923065",
"name": "star",
"font_class": "star",
"unicode": "e688",
"unicode_decimal": 59016 },
3 years ago
3 years ago
{
"icon_id": "24923066",
"name": "star-filled",
"font_class": "star-filled",
"unicode": "e68f",
"unicode_decimal": 59023 },
3 years ago
3 years ago
{
"icon_id": "24899646",
"name": "a-rilidaka",
"font_class": "calendar",
"unicode": "e6a0",
"unicode_decimal": 59040 },
3 years ago
3 years ago
{
"icon_id": "24899647",
"name": "fire",
"font_class": "fire",
"unicode": "e6a1",
"unicode_decimal": 59041 },
3 years ago
3 years ago
{
"icon_id": "24899648",
"name": "paihangbang",
"font_class": "medal",
"unicode": "e6a2",
"unicode_decimal": 59042 },
3 years ago
3 years ago
{
"icon_id": "24899649",
"name": "font",
"font_class": "font",
"unicode": "e6a3",
"unicode_decimal": 59043 },
3 years ago
3 years ago
{
"icon_id": "24899650",
"name": "gift",
"font_class": "gift",
"unicode": "e6a4",
"unicode_decimal": 59044 },
3 years ago
3 years ago
{
"icon_id": "24899651",
"name": "link",
"font_class": "link",
"unicode": "e6a5",
"unicode_decimal": 59045 },
3 years ago
3 years ago
{
"icon_id": "24899652",
"name": "notification",
"font_class": "notification",
"unicode": "e6a6",
"unicode_decimal": 59046 },
3 years ago
3 years ago
{
"icon_id": "24899653",
"name": "staff",
"font_class": "staff",
"unicode": "e6a7",
"unicode_decimal": 59047 },
3 years ago
3 years ago
{
"icon_id": "24899654",
"name": "VIP",
"font_class": "vip",
"unicode": "e6a8",
"unicode_decimal": 59048 },
3 years ago
3 years ago
{
"icon_id": "24899655",
"name": "folder_add",
"font_class": "folder-add",
"unicode": "e6a9",
"unicode_decimal": 59049 },
3 years ago
3 years ago
{
"icon_id": "24899656",
"name": "tune",
"font_class": "tune",
"unicode": "e6aa",
"unicode_decimal": 59050 },
3 years ago
3 years ago
{
"icon_id": "24899657",
"name": "shimingrenzheng",
"font_class": "auth",
"unicode": "e6ab",
"unicode_decimal": 59051 },
3 years ago
3 years ago
{
"icon_id": "24899565",
"name": "person",
"font_class": "person",
"unicode": "e699",
"unicode_decimal": 59033 },
3 years ago
3 years ago
{
"icon_id": "24899566",
"name": "email-filled",
"font_class": "email-filled",
"unicode": "e69a",
"unicode_decimal": 59034 },
{
"icon_id": "24899567",
"name": "phone-filled",
"font_class": "phone-filled",
"unicode": "e69b",
"unicode_decimal": 59035 },
{
"icon_id": "24899568",
"name": "phone",
"font_class": "phone",
"unicode": "e69c",
"unicode_decimal": 59036 },
{
"icon_id": "24899570",
"name": "email",
"font_class": "email",
"unicode": "e69e",
"unicode_decimal": 59038 },
{
"icon_id": "24899571",
"name": "personadd",
"font_class": "personadd",
"unicode": "e69f",
"unicode_decimal": 59039 },
{
"icon_id": "24899558",
"name": "chatboxes-filled",
"font_class": "chatboxes-filled",
"unicode": "e692",
"unicode_decimal": 59026 },
{
"icon_id": "24899559",
"name": "contact",
"font_class": "contact",
"unicode": "e693",
"unicode_decimal": 59027 },
{
"icon_id": "24899560",
"name": "chatbubble-filled",
"font_class": "chatbubble-filled",
"unicode": "e694",
"unicode_decimal": 59028 },
{
"icon_id": "24899561",
"name": "contact-filled",
"font_class": "contact-filled",
"unicode": "e695",
"unicode_decimal": 59029 },
{
"icon_id": "24899562",
"name": "chatboxes",
"font_class": "chatboxes",
"unicode": "e696",
"unicode_decimal": 59030 },
{
"icon_id": "24899563",
"name": "chatbubble",
"font_class": "chatbubble",
"unicode": "e697",
"unicode_decimal": 59031 },
{
"icon_id": "24881290",
"name": "upload-filled",
"font_class": "upload-filled",
"unicode": "e68e",
"unicode_decimal": 59022 },
{
"icon_id": "24881292",
"name": "upload",
"font_class": "upload",
"unicode": "e690",
"unicode_decimal": 59024 },
3 years ago
3 years ago
{
"icon_id": "24881293",
"name": "weixin",
"font_class": "weixin",
"unicode": "e691",
"unicode_decimal": 59025 },
3 years ago
3 years ago
{
"icon_id": "24881274",
"name": "compose",
"font_class": "compose",
"unicode": "e67f",
"unicode_decimal": 59007 },
3 years ago
3 years ago
{
"icon_id": "24881275",
"name": "qq",
"font_class": "qq",
"unicode": "e680",
"unicode_decimal": 59008 },
3 years ago
3 years ago
{
"icon_id": "24881276",
"name": "download-filled",
"font_class": "download-filled",
"unicode": "e681",
"unicode_decimal": 59009 },
3 years ago
3 years ago
{
"icon_id": "24881277",
"name": "pengyouquan",
"font_class": "pyq",
"unicode": "e682",
"unicode_decimal": 59010 },
3 years ago
3 years ago
{
"icon_id": "24881279",
"name": "sound",
"font_class": "sound",
"unicode": "e684",
"unicode_decimal": 59012 },
3 years ago
3 years ago
{
"icon_id": "24881280",
"name": "trash-filled",
"font_class": "trash-filled",
"unicode": "e685",
"unicode_decimal": 59013 },
3 years ago
3 years ago
{
"icon_id": "24881281",
"name": "sound-filled",
"font_class": "sound-filled",
"unicode": "e686",
"unicode_decimal": 59014 },
3 years ago
3 years ago
{
"icon_id": "24881282",
"name": "trash",
"font_class": "trash",
"unicode": "e687",
"unicode_decimal": 59015 },
3 years ago
3 years ago
{
"icon_id": "24881284",
"name": "videocam-filled",
"font_class": "videocam-filled",
"unicode": "e689",
"unicode_decimal": 59017 },
3 years ago
3 years ago
{
"icon_id": "24881285",
"name": "spinner-cycle",
"font_class": "spinner-cycle",
"unicode": "e68a",
"unicode_decimal": 59018 },
3 years ago
3 years ago
{
"icon_id": "24881286",
"name": "weibo",
"font_class": "weibo",
"unicode": "e68b",
"unicode_decimal": 59019 },
3 years ago
3 years ago
{
"icon_id": "24881288",
"name": "videocam",
"font_class": "videocam",
"unicode": "e68c",
"unicode_decimal": 59020 },
3 years ago
3 years ago
{
"icon_id": "24881289",
"name": "download",
"font_class": "download",
"unicode": "e68d",
"unicode_decimal": 59021 },
3 years ago
3 years ago
{
"icon_id": "24879601",
"name": "help",
"font_class": "help",
"unicode": "e679",
"unicode_decimal": 59001 },
3 years ago
3 years ago
{
"icon_id": "24879602",
"name": "navigate-filled",
"font_class": "navigate-filled",
"unicode": "e67a",
"unicode_decimal": 59002 },
3 years ago
3 years ago
{
"icon_id": "24879603",
"name": "plusempty",
"font_class": "plusempty",
"unicode": "e67b",
"unicode_decimal": 59003 },
3 years ago
3 years ago
{
"icon_id": "24879604",
"name": "smallcircle",
"font_class": "smallcircle",
"unicode": "e67c",
"unicode_decimal": 59004 },
3 years ago
3 years ago
{
"icon_id": "24879605",
"name": "minus-filled",
"font_class": "minus-filled",
"unicode": "e67d",
"unicode_decimal": 59005 },
3 years ago
3 years ago
{
"icon_id": "24879606",
"name": "micoff",
"font_class": "micoff",
"unicode": "e67e",
"unicode_decimal": 59006 },
3 years ago
3 years ago
{
"icon_id": "24879588",
"name": "closeempty",
"font_class": "closeempty",
"unicode": "e66c",
"unicode_decimal": 58988 },
{
"icon_id": "24879589",
"name": "clear",
"font_class": "clear",
"unicode": "e66d",
"unicode_decimal": 58989 },
{
"icon_id": "24879590",
"name": "navigate",
"font_class": "navigate",
"unicode": "e66e",
"unicode_decimal": 58990 },
{
"icon_id": "24879591",
"name": "minus",
"font_class": "minus",
"unicode": "e66f",
"unicode_decimal": 58991 },
{
"icon_id": "24879592",
"name": "image",
"font_class": "image",
"unicode": "e670",
"unicode_decimal": 58992 },
{
"icon_id": "24879593",
"name": "mic",
"font_class": "mic",
"unicode": "e671",
"unicode_decimal": 58993 },
{
"icon_id": "24879594",
"name": "paperplane",
"font_class": "paperplane",
"unicode": "e672",
"unicode_decimal": 58994 },
{
"icon_id": "24879595",
"name": "close",
"font_class": "close",
"unicode": "e673",
"unicode_decimal": 58995 },
{
"icon_id": "24879596",
"name": "help-filled",
"font_class": "help-filled",
"unicode": "e674",
"unicode_decimal": 58996 },
{
"icon_id": "24879597",
"name": "plus-filled",
"font_class": "paperplane-filled",
"unicode": "e675",
"unicode_decimal": 58997 },
3 years ago
3 years ago
{
"icon_id": "24879598",
"name": "plus",
"font_class": "plus",
"unicode": "e676",
"unicode_decimal": 58998 },
3 years ago
3 years ago
{
"icon_id": "24879599",
"name": "mic-filled",
"font_class": "mic-filled",
"unicode": "e677",
"unicode_decimal": 58999 },
3 years ago
3 years ago
{
"icon_id": "24879600",
"name": "image-filled",
"font_class": "image-filled",
"unicode": "e678",
"unicode_decimal": 59000 },
3 years ago
3 years ago
{
"icon_id": "24855900",
"name": "locked-filled",
"font_class": "locked-filled",
"unicode": "e668",
"unicode_decimal": 58984 },
3 years ago
3 years ago
{
"icon_id": "24855901",
"name": "info",
"font_class": "info",
"unicode": "e669",
"unicode_decimal": 58985 },
3 years ago
3 years ago
{
"icon_id": "24855903",
"name": "locked",
"font_class": "locked",
"unicode": "e66b",
"unicode_decimal": 58987 },
3 years ago
3 years ago
{
"icon_id": "24855884",
"name": "camera-filled",
"font_class": "camera-filled",
"unicode": "e658",
"unicode_decimal": 58968 },
3 years ago
3 years ago
{
"icon_id": "24855885",
"name": "chat-filled",
"font_class": "chat-filled",
"unicode": "e659",
"unicode_decimal": 58969 },
3 years ago
3 years ago
{
"icon_id": "24855886",
"name": "camera",
"font_class": "camera",
"unicode": "e65a",
"unicode_decimal": 58970 },
3 years ago
3 years ago
{
"icon_id": "24855887",
"name": "circle",
"font_class": "circle",
"unicode": "e65b",
"unicode_decimal": 58971 },
3 years ago
3 years ago
{
"icon_id": "24855888",
"name": "checkmarkempty",
"font_class": "checkmarkempty",
"unicode": "e65c",
"unicode_decimal": 58972 },
3 years ago
3 years ago
{
"icon_id": "24855889",
"name": "chat",
"font_class": "chat",
"unicode": "e65d",
"unicode_decimal": 58973 },
3 years ago
3 years ago
{
"icon_id": "24855890",
"name": "circle-filled",
"font_class": "circle-filled",
"unicode": "e65e",
"unicode_decimal": 58974 },
3 years ago
3 years ago
{
"icon_id": "24855891",
"name": "flag",
"font_class": "flag",
"unicode": "e65f",
"unicode_decimal": 58975 },
3 years ago
3 years ago
{
"icon_id": "24855892",
"name": "flag-filled",
"font_class": "flag-filled",
"unicode": "e660",
"unicode_decimal": 58976 },
3 years ago
3 years ago
{
"icon_id": "24855893",
"name": "gear-filled",
"font_class": "gear-filled",
"unicode": "e661",
"unicode_decimal": 58977 },
3 years ago
3 years ago
{
"icon_id": "24855894",
"name": "home",
"font_class": "home",
"unicode": "e662",
"unicode_decimal": 58978 },
3 years ago
3 years ago
{
"icon_id": "24855895",
"name": "home-filled",
"font_class": "home-filled",
"unicode": "e663",
"unicode_decimal": 58979 },
3 years ago
3 years ago
{
"icon_id": "24855896",
"name": "gear",
"font_class": "gear",
"unicode": "e664",
"unicode_decimal": 58980 },
3 years ago
3 years ago
{
"icon_id": "24855897",
"name": "smallcircle-filled",
"font_class": "smallcircle-filled",
"unicode": "e665",
"unicode_decimal": 58981 },
3 years ago
3 years ago
{
"icon_id": "24855898",
"name": "map-filled",
"font_class": "map-filled",
"unicode": "e666",
"unicode_decimal": 58982 },
3 years ago
3 years ago
{
"icon_id": "24855899",
"name": "map",
"font_class": "map",
"unicode": "e667",
"unicode_decimal": 58983 },
3 years ago
3 years ago
{
"icon_id": "24855825",
"name": "refresh-filled",
"font_class": "refresh-filled",
"unicode": "e656",
"unicode_decimal": 58966 },
3 years ago
3 years ago
{
"icon_id": "24855826",
"name": "refresh",
"font_class": "refresh",
"unicode": "e657",
"unicode_decimal": 58967 },
3 years ago
3 years ago
{
"icon_id": "24855808",
"name": "cloud-upload",
"font_class": "cloud-upload",
"unicode": "e645",
"unicode_decimal": 58949 },
3 years ago
3 years ago
{
"icon_id": "24855809",
"name": "cloud-download-filled",
"font_class": "cloud-download-filled",
"unicode": "e646",
"unicode_decimal": 58950 },
3 years ago
3 years ago
{
"icon_id": "24855810",
"name": "cloud-download",
"font_class": "cloud-download",
"unicode": "e647",
"unicode_decimal": 58951 },
3 years ago
3 years ago
{
"icon_id": "24855811",
"name": "cloud-upload-filled",
"font_class": "cloud-upload-filled",
"unicode": "e648",
"unicode_decimal": 58952 },
3 years ago
3 years ago
{
"icon_id": "24855813",
"name": "redo",
"font_class": "redo",
"unicode": "e64a",
"unicode_decimal": 58954 },
3 years ago
3 years ago
{
"icon_id": "24855814",
"name": "images-filled",
"font_class": "images-filled",
"unicode": "e64b",
"unicode_decimal": 58955 },
3 years ago
3 years ago
{
"icon_id": "24855815",
"name": "undo-filled",
"font_class": "undo-filled",
"unicode": "e64c",
"unicode_decimal": 58956 },
3 years ago
3 years ago
{
"icon_id": "24855816",
"name": "more",
"font_class": "more",
"unicode": "e64d",
"unicode_decimal": 58957 },
3 years ago
3 years ago
{
"icon_id": "24855817",
"name": "more-filled",
"font_class": "more-filled",
"unicode": "e64e",
"unicode_decimal": 58958 },
3 years ago
3 years ago
{
"icon_id": "24855818",
"name": "undo",
"font_class": "undo",
"unicode": "e64f",
"unicode_decimal": 58959 },
3 years ago
3 years ago
{
"icon_id": "24855819",
"name": "images",
"font_class": "images",
"unicode": "e650",
"unicode_decimal": 58960 },
{
"icon_id": "24855821",
"name": "paperclip",
"font_class": "paperclip",
"unicode": "e652",
"unicode_decimal": 58962 },
{
"icon_id": "24855822",
"name": "settings",
"font_class": "settings",
"unicode": "e653",
"unicode_decimal": 58963 },
{
"icon_id": "24855823",
"name": "search",
"font_class": "search",
"unicode": "e654",
"unicode_decimal": 58964 },
{
"icon_id": "24855824",
"name": "redo-filled",
"font_class": "redo-filled",
"unicode": "e655",
"unicode_decimal": 58965 },
{
"icon_id": "24841702",
"name": "list",
"font_class": "list",
"unicode": "e644",
"unicode_decimal": 58948 },
{
"icon_id": "24841489",
"name": "mail-open-filled",
"font_class": "mail-open-filled",
"unicode": "e63a",
"unicode_decimal": 58938 },
{
"icon_id": "24841491",
"name": "hand-thumbsdown-filled",
"font_class": "hand-down-filled",
"unicode": "e63c",
"unicode_decimal": 58940 },
3 years ago
3 years ago
{
"icon_id": "24841492",
"name": "hand-thumbsdown",
"font_class": "hand-down",
"unicode": "e63d",
"unicode_decimal": 58941 },
3 years ago
3 years ago
{
"icon_id": "24841493",
"name": "hand-thumbsup-filled",
"font_class": "hand-up-filled",
"unicode": "e63e",
"unicode_decimal": 58942 },
3 years ago
3 years ago
{
"icon_id": "24841494",
"name": "hand-thumbsup",
"font_class": "hand-up",
"unicode": "e63f",
"unicode_decimal": 58943 },
3 years ago
3 years ago
{
"icon_id": "24841496",
"name": "heart-filled",
"font_class": "heart-filled",
"unicode": "e641",
"unicode_decimal": 58945 },
3 years ago
3 years ago
{
"icon_id": "24841498",
"name": "mail-open",
"font_class": "mail-open",
"unicode": "e643",
"unicode_decimal": 58947 },
3 years ago
3 years ago
{
"icon_id": "24841488",
"name": "heart",
"font_class": "heart",
"unicode": "e639",
"unicode_decimal": 58937 },
3 years ago
3 years ago
{
"icon_id": "24839963",
"name": "loop",
"font_class": "loop",
"unicode": "e633",
"unicode_decimal": 58931 },
3 years ago
3 years ago
{
"icon_id": "24839866",
"name": "pulldown",
"font_class": "pulldown",
"unicode": "e632",
"unicode_decimal": 58930 },
3 years ago
3 years ago
{
"icon_id": "24813798",
"name": "scan",
"font_class": "scan",
"unicode": "e62a",
"unicode_decimal": 58922 },
{
"icon_id": "24813786",
"name": "bars",
"font_class": "bars",
"unicode": "e627",
"unicode_decimal": 58919 },
{
"icon_id": "24813788",
"name": "cart-filled",
"font_class": "cart-filled",
"unicode": "e629",
"unicode_decimal": 58921 },
{
"icon_id": "24813790",
"name": "checkbox",
"font_class": "checkbox",
"unicode": "e62b",
"unicode_decimal": 58923 },
{
"icon_id": "24813791",
"name": "checkbox-filled",
"font_class": "checkbox-filled",
"unicode": "e62c",
"unicode_decimal": 58924 },
{
"icon_id": "24813794",
"name": "shop",
"font_class": "shop",
"unicode": "e62f",
"unicode_decimal": 58927 },
{
"icon_id": "24813795",
"name": "headphones",
"font_class": "headphones",
"unicode": "e630",
"unicode_decimal": 58928 },
{
"icon_id": "24813796",
"name": "cart",
"font_class": "cart",
"unicode": "e631",
"unicode_decimal": 58929 }] };exports.default = _default;
/***/ }),
/***/ 2:
/*!***********************************!*\
!*** (webpack)/buildin/global.js ***!
\***********************************/
/*! no static exports found */
/***/ (function(module, exports) {
var g;
// This works in non-strict mode
g = (function() {
return this;
})();
try {
// This works if eval is allowed (see CSP)
g = g || new Function("return this")();
} catch (e) {
// This works if the window reference is available
if (typeof window === "object") g = window;
3 years ago
}
3 years ago
// g can still be undefined, but nothing to do about it...
// We return undefined, instead of nothing here, so it's
// easier to handle this case. if(!global) { ...}
module.exports = g;
/***/ }),
/***/ 20:
/*!**************************************!*\
!*** ./node_modules/qs/lib/utils.js ***!
\**************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var has = Object.prototype.hasOwnProperty;
var hexTable = (function () {
var array = [];
for (var i = 0; i < 256; ++i) {
array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase());
3 years ago
}
3 years ago
return array;
}());
var compactQueue = function compactQueue(queue) {
var obj;
while (queue.length) {
var item = queue.pop();
obj = item.obj[item.prop];
if (Array.isArray(obj)) {
var compacted = [];
for (var j = 0; j < obj.length; ++j) {
if (typeof obj[j] !== 'undefined') {
compacted.push(obj[j]);
}
}
item.obj[item.prop] = compacted;
3 years ago
}
}
3 years ago
return obj;
};
var arrayToObject = function arrayToObject(source, options) {
var obj = options && options.plainObjects ? Object.create(null) : {};
for (var i = 0; i < source.length; ++i) {
if (typeof source[i] !== 'undefined') {
obj[i] = source[i];
}
3 years ago
}
3 years ago
return obj;
};
3 years ago
3 years ago
var merge = function merge(target, source, options) {
if (!source) {
return target;
3 years ago
}
3 years ago
if (typeof source !== 'object') {
if (Array.isArray(target)) {
target.push(source);
} else if (typeof target === 'object') {
if (options.plainObjects || options.allowPrototypes || !has.call(Object.prototype, source)) {
target[source] = true;
}
} else {
return [target, source];
}
return target;
3 years ago
}
3 years ago
if (typeof target !== 'object') {
return [target].concat(source);
3 years ago
}
3 years ago
var mergeTarget = target;
if (Array.isArray(target) && !Array.isArray(source)) {
mergeTarget = arrayToObject(target, options);
3 years ago
}
3 years ago
if (Array.isArray(target) && Array.isArray(source)) {
source.forEach(function (item, i) {
if (has.call(target, i)) {
if (target[i] && typeof target[i] === 'object') {
target[i] = merge(target[i], item, options);
} else {
target.push(item);
}
} else {
target[i] = item;
}
});
return target;
3 years ago
}
3 years ago
return Object.keys(source).reduce(function (acc, key) {
var value = source[key];
if (has.call(acc, key)) {
acc[key] = merge(acc[key], value, options);
} else {
acc[key] = value;
}
return acc;
}, mergeTarget);
};
var assign = function assignSingleSource(target, source) {
return Object.keys(source).reduce(function (acc, key) {
acc[key] = source[key];
return acc;
}, target);
};
var decode = function (str) {
try {
return decodeURIComponent(str.replace(/\+/g, ' '));
} catch (e) {
return str;
3 years ago
}
3 years ago
};
var encode = function encode(str) {
// This code was originally written by Brian White (mscdex) for the io.js core querystring library.
// It has been adapted here for stricter adherence to RFC 3986
if (str.length === 0) {
return str;
3 years ago
}
3 years ago
var string = typeof str === 'string' ? str : String(str);
var out = '';
for (var i = 0; i < string.length; ++i) {
var c = string.charCodeAt(i);
if (
c === 0x2D // -
|| c === 0x2E // .
|| c === 0x5F // _
|| c === 0x7E // ~
|| (c >= 0x30 && c <= 0x39) // 0-9
|| (c >= 0x41 && c <= 0x5A) // a-z
|| (c >= 0x61 && c <= 0x7A) // A-Z
) {
out += string.charAt(i);
continue;
}
if (c < 0x80) {
out = out + hexTable[c];
continue;
}
if (c < 0x800) {
out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]);
continue;
}
if (c < 0xD800 || c >= 0xE000) {
out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]);
continue;
}
i += 1;
c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF));
out += hexTable[0xF0 | (c >> 18)]
+ hexTable[0x80 | ((c >> 12) & 0x3F)]
+ hexTable[0x80 | ((c >> 6) & 0x3F)]
+ hexTable[0x80 | (c & 0x3F)];
3 years ago
}
3 years ago
return out;
};
var compact = function compact(value) {
var queue = [{ obj: { o: value }, prop: 'o' }];
var refs = [];
for (var i = 0; i < queue.length; ++i) {
var item = queue[i];
var obj = item.obj[item.prop];
var keys = Object.keys(obj);
for (var j = 0; j < keys.length; ++j) {
var key = keys[j];
var val = obj[key];
if (typeof val === 'object' && val !== null && refs.indexOf(val) === -1) {
queue.push({ obj: obj, prop: key });
refs.push(val);
}
}
3 years ago
}
3 years ago
return compactQueue(queue);
};
var isRegExp = function isRegExp(obj) {
return Object.prototype.toString.call(obj) === '[object RegExp]';
};
var isBuffer = function isBuffer(obj) {
if (obj === null || typeof obj === 'undefined') {
return false;
3 years ago
}
3 years ago
return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj));
};
module.exports = {
arrayToObject: arrayToObject,
assign: assign,
compact: compact,
decode: decode,
encode: encode,
isBuffer: isBuffer,
isRegExp: isRegExp,
merge: merge
};
/***/ }),
/***/ 21:
/*!****************************************!*\
!*** ./node_modules/qs/lib/formats.js ***!
\****************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var replace = String.prototype.replace;
var percentTwenties = /%20/g;
module.exports = {
'default': 'RFC3986',
formatters: {
RFC1738: function (value) {
return replace.call(value, percentTwenties, '+');
},
RFC3986: function (value) {
return value;
}
},
RFC1738: 'RFC1738',
RFC3986: 'RFC3986'
};
/***/ }),
/***/ 22:
/*!**************************************!*\
!*** ./node_modules/qs/lib/parse.js ***!
\**************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var utils = __webpack_require__(/*! ./utils */ 20);
var has = Object.prototype.hasOwnProperty;
var defaults = {
allowDots: false,
allowPrototypes: false,
arrayLimit: 20,
decoder: utils.decode,
delimiter: '&',
depth: 5,
parameterLimit: 1000,
plainObjects: false,
strictNullHandling: false
};
var parseValues = function parseQueryStringValues(str, options) {
var obj = {};
var cleanStr = options.ignoreQueryPrefix ? str.replace(/^\?/, '') : str;
var limit = options.parameterLimit === Infinity ? undefined : options.parameterLimit;
var parts = cleanStr.split(options.delimiter, limit);
for (var i = 0; i < parts.length; ++i) {
var part = parts[i];
var bracketEqualsPos = part.indexOf(']=');
var pos = bracketEqualsPos === -1 ? part.indexOf('=') : bracketEqualsPos + 1;
var key, val;
if (pos === -1) {
key = options.decoder(part, defaults.decoder);
val = options.strictNullHandling ? null : '';
} else {
key = options.decoder(part.slice(0, pos), defaults.decoder);
val = options.decoder(part.slice(pos + 1), defaults.decoder);
}
if (has.call(obj, key)) {
obj[key] = [].concat(obj[key]).concat(val);
} else {
obj[key] = val;
}
}
return obj;
};
var parseObject = function (chain, val, options) {
var leaf = val;
for (var i = chain.length - 1; i >= 0; --i) {
var obj;
var root = chain[i];
if (root === '[]') {
obj = [];
obj = obj.concat(leaf);
} else {
obj = options.plainObjects ? Object.create(null) : {};
var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;
var index = parseInt(cleanRoot, 10);
if (
!isNaN(index)
&& root !== cleanRoot
&& String(index) === cleanRoot
&& index >= 0
&& (options.parseArrays && index <= options.arrayLimit)
) {
obj = [];
obj[index] = leaf;
} else {
obj[cleanRoot] = leaf;
}
}
leaf = obj;
3 years ago
}
3 years ago
return leaf;
};
var parseKeys = function parseQueryStringKeys(givenKey, val, options) {
if (!givenKey) {
return;
3 years ago
}
3 years ago
// Transform dot notation to bracket notation
var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, '[$1]') : givenKey;
// The regex chunks
var brackets = /(\[[^[\]]*])/;
var child = /(\[[^[\]]*])/g;
// Get the parent
var segment = brackets.exec(key);
var parent = segment ? key.slice(0, segment.index) : key;
// Stash the parent if it exists
var keys = [];
if (parent) {
// If we aren't using plain objects, optionally prefix keys
// that would overwrite object prototype properties
if (!options.plainObjects && has.call(Object.prototype, parent)) {
if (!options.allowPrototypes) {
return;
}
}
keys.push(parent);
3 years ago
}
3 years ago
// Loop through children appending to the array until we hit depth
var i = 0;
while ((segment = child.exec(key)) !== null && i < options.depth) {
i += 1;
if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) {
if (!options.allowPrototypes) {
return;
}
}
keys.push(segment[1]);
3 years ago
}
3 years ago
// If there's a remainder, just add whatever is left
if (segment) {
keys.push('[' + key.slice(segment.index) + ']');
3 years ago
}
3 years ago
return parseObject(keys, val, options);
};
module.exports = function (str, opts) {
var options = opts ? utils.assign({}, opts) : {};
if (options.decoder !== null && options.decoder !== undefined && typeof options.decoder !== 'function') {
throw new TypeError('Decoder has to be a function.');
3 years ago
}
3 years ago
options.ignoreQueryPrefix = options.ignoreQueryPrefix === true;
options.delimiter = typeof options.delimiter === 'string' || utils.isRegExp(options.delimiter) ? options.delimiter : defaults.delimiter;
options.depth = typeof options.depth === 'number' ? options.depth : defaults.depth;
options.arrayLimit = typeof options.arrayLimit === 'number' ? options.arrayLimit : defaults.arrayLimit;
options.parseArrays = options.parseArrays !== false;
options.decoder = typeof options.decoder === 'function' ? options.decoder : defaults.decoder;
options.allowDots = typeof options.allowDots === 'boolean' ? options.allowDots : defaults.allowDots;
options.plainObjects = typeof options.plainObjects === 'boolean' ? options.plainObjects : defaults.plainObjects;
options.allowPrototypes = typeof options.allowPrototypes === 'boolean' ? options.allowPrototypes : defaults.allowPrototypes;
options.parameterLimit = typeof options.parameterLimit === 'number' ? options.parameterLimit : defaults.parameterLimit;
options.strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling;
if (str === '' || str === null || typeof str === 'undefined') {
return options.plainObjects ? Object.create(null) : {};
3 years ago
}
3 years ago
var tempObj = typeof str === 'string' ? parseValues(str, options) : str;
var obj = options.plainObjects ? Object.create(null) : {};
// Iterate over the keys and setup the new object
var keys = Object.keys(tempObj);
for (var i = 0; i < keys.length; ++i) {
var key = keys[i];
var newObj = parseKeys(key, tempObj[key], options);
obj = utils.merge(obj, newObj, options);
3 years ago
}
3 years ago
return utils.compact(obj);
};
/***/ }),
/***/ 23:
/*!*****************************************************************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/node_modules/@escook/request-miniprogram/miniprogram_dist/index.js ***!
\*****************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.$http = void 0;function _classCallCheck(instance, Constructor) {if (!(instance instanceof Constructor)) {throw new TypeError("Cannot call a class as a function");}}function _defineProperties(target, props) {for (var i = 0; i < props.length; i++) {var descriptor = props[i];descriptor.enumerable = descriptor.enumerable || false;descriptor.configurable = true;if ("value" in descriptor) descriptor.writable = true;Object.defineProperty(target, descriptor.key, descriptor);}}function _createClass(Constructor, protoProps, staticProps) {if (protoProps) _defineProperties(Constructor.prototype, protoProps);if (staticProps) _defineProperties(Constructor, staticProps);return Constructor;}var Request = /*#__PURE__*/function () {
function Request() {var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};_classCallCheck(this, Request);
// 请求的根路径
this.baseUrl = options.baseUrl || '';
// 请求的 url 地址
this.url = options.url || '';
// 请求方式
this.method = 'GET';
// 请求的参数对象
this.data = null;
// header 请求头
this.header = options.header || {};
this.beforeRequest = null;
this.afterRequest = null;
}_createClass(Request, [{ key: "get", value: function get(
url) {var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
this.method = 'GET';
this.url = this.baseUrl + url;
this.data = data;
return this._();
} }, { key: "post", value: function post(
url) {var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
this.method = 'POST';
this.url = this.baseUrl + url;
this.data = data;
return this._();
} }, { key: "put", value: function put(
url) {var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
this.method = 'PUT';
this.url = this.baseUrl + url;
this.data = data;
return this._();
} }, { key: "delete", value: function _delete(
url) {var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
this.method = 'DELETE';
this.url = this.baseUrl + url;
this.data = data;
return this._();
} }, { key: "_", value: function _()
{var _this = this;
// 清空 header 对象
this.header = {};
// 请求之前做一些事
this.beforeRequest && typeof this.beforeRequest === 'function' && this.beforeRequest(this);
// 发起请求
return new Promise(function (resolve, reject) {
var weixin = wx;
// 适配 uniapp
if ('undefined' !== typeof uni) {
weixin = uni;
}
weixin.request({
url: _this.url,
method: _this.method,
data: _this.data,
header: _this.header,
success: function success(res) {resolve(res);},
fail: function fail(err) {reject(err);},
complete: function complete(res) {
// 请求完成以后做一些事情
_this.afterRequest && typeof _this.afterRequest === 'function' && _this.afterRequest(res);
} });
3 years ago
});
3 years ago
} }]);return Request;}();
var $http = new Request();exports.$http = $http;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
/***/ }),
/***/ 28:
/*!**********************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/static/login/banner.jpg ***!
\**********************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = "/static/login/banner.jpg";
/***/ }),
/***/ 29:
/*!*********************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/static/login/title.png ***!
\*********************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
module.exports = "/static/login/title.png";
/***/ }),
/***/ 3:
/*!*************************************************************!*\
!*** ./node_modules/@dcloudio/uni-i18n/dist/uni-i18n.es.js ***!
\*************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni, global) {Object.defineProperty(exports, "__esModule", { value: true });exports.compileI18nJsonStr = compileI18nJsonStr;exports.hasI18nJson = hasI18nJson;exports.initVueI18n = initVueI18n;exports.isI18nStr = isI18nStr;exports.normalizeLocale = normalizeLocale;exports.parseI18nJson = parseI18nJson;exports.resolveLocale = resolveLocale;exports.isString = exports.LOCALE_ZH_HANT = exports.LOCALE_ZH_HANS = exports.LOCALE_FR = exports.LOCALE_ES = exports.LOCALE_EN = exports.I18n = exports.Formatter = void 0;function _slicedToArray(arr, i) {return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();}function _nonIterableRest() {throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");}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;}function _iterableToArrayLimit(arr, i) {if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;var _arr = [];var _n = true;var _d = false;var _e = undefined;try {for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {_arr.push(_s.value);if (i && _arr.length === i) break;}} catch (err) {_d = true;_e = err;} finally {try {if (!_n && _i["return"] != null) _i["return"]();} finally {if (_d) throw _e;}}return _arr;}function _arrayWithHoles(arr) {if (Array.isArray(arr)) return arr;}function _classCallCheck(instance, Constructor) {if (!(instance instanceof Constructor)) {throw new TypeError("Cannot call a class as a function");}}function _defineProperties(target, props) {for (var i = 0; i < props.length; i++) {var descriptor = props[i];descriptor.enumerable = descriptor.enumerable || false;descriptor.configurable = true;if ("value" in descriptor) descriptor.writable = true;Object.defineProperty(target, descriptor.key, descriptor);}}function _createClass(Constructor, protoProps, staticProps) {if (protoProps) _defineProperties(Constructor.prototype, protoProps);if (staticProps) _defineProperties(Constructor, staticProps);return Constructor;}var isArray = Array.isArray;
var isObject = function isObject(val) {return val !== null && typeof val === 'object';};
var defaultDelimiters = ['{', '}'];var
BaseFormatter = /*#__PURE__*/function () {
function BaseFormatter() {_classCallCheck(this, BaseFormatter);
this._caches = Object.create(null);
}_createClass(BaseFormatter, [{ key: "interpolate", value: function interpolate(
message, values) {var delimiters = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : defaultDelimiters;
if (!values) {
return [message];
}
var tokens = this._caches[message];
if (!tokens) {
tokens = parse(message, delimiters);
this._caches[message] = tokens;
}
return compile(tokens, values);
} }]);return BaseFormatter;}();exports.Formatter = BaseFormatter;
var RE_TOKEN_LIST_VALUE = /^(?:\d)+/;
var RE_TOKEN_NAMED_VALUE = /^(?:\w)+/;
function parse(format, _ref) {var _ref2 = _slicedToArray(_ref, 2),startDelimiter = _ref2[0],endDelimiter = _ref2[1];
var tokens = [];
var position = 0;
var text = '';
while (position < format.length) {
var char = format[position++];
if (char === startDelimiter) {
if (text) {
tokens.push({ type: 'text', value: text });
}
text = '';
var sub = '';
char = format[position++];
while (char !== undefined && char !== endDelimiter) {
sub += char;
char = format[position++];
}
var isClosed = char === endDelimiter;
var type = RE_TOKEN_LIST_VALUE.test(sub) ?
'list' :
isClosed && RE_TOKEN_NAMED_VALUE.test(sub) ?
'named' :
'unknown';
tokens.push({ value: sub, type: type });
3 years ago
}
3 years ago
// else if (char === '%') {
// // when found rails i18n syntax, skip text capture
// if (format[position] !== '{') {
// text += char
// }
// }
else {
text += char;
}
}
text && tokens.push({ type: 'text', value: text });
return tokens;
3 years ago
}
3 years ago
function compile(tokens, values) {
var compiled = [];
var index = 0;
var mode = isArray(values) ?
'list' :
isObject(values) ?
'named' :
'unknown';
if (mode === 'unknown') {
return compiled;
3 years ago
}
3 years ago
while (index < tokens.length) {
var token = tokens[index];
switch (token.type) {
case 'text':
compiled.push(token.value);
break;
case 'list':
compiled.push(values[parseInt(token.value, 10)]);
break;
case 'named':
if (mode === 'named') {
compiled.push(values[token.value]);
} else
{
if (true) {
console.warn("Type of token '".concat(token.type, "' and format of value '").concat(mode, "' don't match!"));
3 years ago
}
}
3 years ago
break;
case 'unknown':
if (true) {
console.warn("Detect 'unknown' type of token!");
}
break;}
3 years ago
3 years ago
index++;
}
return compiled;
3 years ago
}
3 years ago
var LOCALE_ZH_HANS = 'zh-Hans';exports.LOCALE_ZH_HANS = LOCALE_ZH_HANS;
var LOCALE_ZH_HANT = 'zh-Hant';exports.LOCALE_ZH_HANT = LOCALE_ZH_HANT;
var LOCALE_EN = 'en';exports.LOCALE_EN = LOCALE_EN;
var LOCALE_FR = 'fr';exports.LOCALE_FR = LOCALE_FR;
var LOCALE_ES = 'es';exports.LOCALE_ES = LOCALE_ES;
var hasOwnProperty = Object.prototype.hasOwnProperty;
var hasOwn = function hasOwn(val, key) {return hasOwnProperty.call(val, key);};
var defaultFormatter = new BaseFormatter();
function include(str, parts) {
return !!parts.find(function (part) {return str.indexOf(part) !== -1;});
3 years ago
}
3 years ago
function startsWith(str, parts) {
return parts.find(function (part) {return str.indexOf(part) === 0;});
3 years ago
}
3 years ago
function normalizeLocale(locale, messages) {
if (!locale) {
return;
}
locale = locale.trim().replace(/_/g, '-');
if (messages && messages[locale]) {
return locale;
}
locale = locale.toLowerCase();
if (locale.indexOf('zh') === 0) {
if (locale.indexOf('-hans') > -1) {
return LOCALE_ZH_HANS;
3 years ago
}
3 years ago
if (locale.indexOf('-hant') > -1) {
return LOCALE_ZH_HANT;
}
if (include(locale, ['-tw', '-hk', '-mo', '-cht'])) {
return LOCALE_ZH_HANT;
}
return LOCALE_ZH_HANS;
3 years ago
}
3 years ago
var lang = startsWith(locale, [LOCALE_EN, LOCALE_FR, LOCALE_ES]);
if (lang) {
return lang;
}
}var
I18n = /*#__PURE__*/function () {
function I18n(_ref3) {var locale = _ref3.locale,fallbackLocale = _ref3.fallbackLocale,messages = _ref3.messages,watcher = _ref3.watcher,formater = _ref3.formater;_classCallCheck(this, I18n);
this.locale = LOCALE_EN;
this.fallbackLocale = LOCALE_EN;
this.message = {};
this.messages = {};
this.watchers = [];
if (fallbackLocale) {
this.fallbackLocale = fallbackLocale;
3 years ago
}
3 years ago
this.formater = formater || defaultFormatter;
this.messages = messages || {};
this.setLocale(locale || LOCALE_EN);
if (watcher) {
this.watchLocale(watcher);
}
}_createClass(I18n, [{ key: "setLocale", value: function setLocale(
locale) {var _this = this;
var oldLocale = this.locale;
this.locale = normalizeLocale(locale, this.messages) || this.fallbackLocale;
if (!this.messages[this.locale]) {
// 可能初始化时不存在
this.messages[this.locale] = {};
}
this.message = this.messages[this.locale];
// 仅发生变化时,通知
if (oldLocale !== this.locale) {
this.watchers.forEach(function (watcher) {
watcher(_this.locale, oldLocale);
});
}
} }, { key: "getLocale", value: function getLocale()
{
return this.locale;
} }, { key: "watchLocale", value: function watchLocale(
fn) {var _this2 = this;
var index = this.watchers.push(fn) - 1;
return function () {
_this2.watchers.splice(index, 1);
};
} }, { key: "add", value: function add(
locale, message) {var override = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
var curMessages = this.messages[locale];
if (curMessages) {
if (override) {
Object.assign(curMessages, message);
} else
{
Object.keys(message).forEach(function (key) {
if (!hasOwn(curMessages, key)) {
curMessages[key] = message[key];
}
3 years ago
});
}
3 years ago
} else
{
this.messages[locale] = message;
3 years ago
}
3 years ago
} }, { key: "f", value: function f(
message, values, delimiters) {
return this.formater.interpolate(message, values, delimiters).join('');
} }, { key: "t", value: function t(
key, locale, values) {
var message = this.message;
if (typeof locale === 'string') {
locale = normalizeLocale(locale, this.messages);
locale && (message = this.messages[locale]);
} else
{
values = locale;
}
if (!hasOwn(message, key)) {
console.warn("Cannot translate the value of keypath ".concat(key, ". Use the value of keypath as default."));
return key;
}
return this.formater.interpolate(message[key], values).join('');
} }]);return I18n;}();exports.I18n = I18n;
function watchAppLocale(appVm, i18n) {
// 需要保证 watch 的触发在组件渲染之前
if (appVm.$watchLocale) {
// vue2
appVm.$watchLocale(function (newLocale) {
i18n.setLocale(newLocale);
});
} else
{
appVm.$watch(function () {return appVm.$locale;}, function (newLocale) {
i18n.setLocale(newLocale);
});
3 years ago
}
3 years ago
}
function getDefaultLocale() {
if (typeof uni !== 'undefined' && uni.getLocale) {
return uni.getLocale();
3 years ago
}
3 years ago
// 小程序平台,uni 和 uni-i18n 互相引用,导致访问不到 uni,故在 global 上挂了 getLocale
if (typeof global !== 'undefined' && global.getLocale) {
return global.getLocale();
3 years ago
}
3 years ago
return LOCALE_EN;
3 years ago
}
3 years ago
function initVueI18n(locale) {var messages = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};var fallbackLocale = arguments.length > 2 ? arguments[2] : undefined;var watcher = arguments.length > 3 ? arguments[3] : undefined;
// 兼容旧版本入参
if (typeof locale !== 'string') {var _ref4 =
[
messages,
locale];locale = _ref4[0];messages = _ref4[1];
3 years ago
3 years ago
}
if (typeof locale !== 'string') {
// 因为小程序平台,uni-i18n 和 uni 互相引用,导致此时访问 uni 时,为 undefined
locale = getDefaultLocale();
}
if (typeof fallbackLocale !== 'string') {
fallbackLocale =
typeof __uniConfig !== 'undefined' && __uniConfig.fallbackLocale ||
LOCALE_EN;
}
var i18n = new I18n({
locale: locale,
fallbackLocale: fallbackLocale,
messages: messages,
watcher: watcher });
3 years ago
3 years ago
var _t = function t(key, values) {
if (typeof getApp !== 'function') {
// app view
/* eslint-disable no-func-assign */
_t = function t(key, values) {
return i18n.t(key, values);
};
} else
{
var isWatchedAppLocale = false;
_t = function t(key, values) {
var appVm = getApp().$vm;
// 可能$vm还不存在,比如在支付宝小程序中,组件定义较早,在props的default里使用了t()函数(如uni-goods-nav),此时app还未初始化
// options: {
// type: Array,
// default () {
// return [{
// icon: 'shop',
// text: t("uni-goods-nav.options.shop"),
// }, {
// icon: 'cart',
// text: t("uni-goods-nav.options.cart")
// }]
// }
// },
if (appVm) {
// 触发响应式
appVm.$locale;
if (!isWatchedAppLocale) {
isWatchedAppLocale = true;
watchAppLocale(appVm, i18n);
}
3 years ago
}
3 years ago
return i18n.t(key, values);
};
3 years ago
}
3 years ago
return _t(key, values);
};
return {
i18n: i18n,
f: function f(message, values, delimiters) {
return i18n.f(message, values, delimiters);
},
t: function t(key, values) {
return _t(key, values);
},
add: function add(locale, message) {var override = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
return i18n.add(locale, message, override);
},
watch: function watch(fn) {
return i18n.watchLocale(fn);
},
getLocale: function getLocale() {
return i18n.getLocale();
},
setLocale: function setLocale(newLocale) {
return i18n.setLocale(newLocale);
} };
3 years ago
3 years ago
}
3 years ago
3 years ago
var isString = function isString(val) {return typeof val === 'string';};exports.isString = isString;
var formater;
function hasI18nJson(jsonObj, delimiters) {
if (!formater) {
formater = new BaseFormatter();
}
return walkJsonObj(jsonObj, function (jsonObj, key) {
var value = jsonObj[key];
if (isString(value)) {
if (isI18nStr(value, delimiters)) {
return true;
3 years ago
}
3 years ago
} else
{
return hasI18nJson(value, delimiters);
3 years ago
}
3 years ago
});
3 years ago
}
3 years ago
function parseI18nJson(jsonObj, values, delimiters) {
if (!formater) {
formater = new BaseFormatter();
3 years ago
}
3 years ago
walkJsonObj(jsonObj, function (jsonObj, key) {
var value = jsonObj[key];
if (isString(value)) {
if (isI18nStr(value, delimiters)) {
jsonObj[key] = compileStr(value, values, delimiters);
}
} else
{
parseI18nJson(value, values, delimiters);
}
});
return jsonObj;
3 years ago
}
3 years ago
function compileI18nJsonStr(jsonStr, _ref5) {var locale = _ref5.locale,locales = _ref5.locales,delimiters = _ref5.delimiters;
if (!isI18nStr(jsonStr, delimiters)) {
return jsonStr;
3 years ago
}
3 years ago
if (!formater) {
formater = new BaseFormatter();
3 years ago
}
3 years ago
var localeValues = [];
Object.keys(locales).forEach(function (name) {
if (name !== locale) {
localeValues.push({
locale: name,
values: locales[name] });
3 years ago
3 years ago
}
});
localeValues.unshift({ locale: locale, values: locales[locale] });
try {
return JSON.stringify(compileJsonObj(JSON.parse(jsonStr), localeValues, delimiters), null, 2);
3 years ago
}
3 years ago
catch (e) {}
return jsonStr;
}
function isI18nStr(value, delimiters) {
return value.indexOf(delimiters[0]) > -1;
}
function compileStr(value, values, delimiters) {
return formater.interpolate(value, values, delimiters).join('');
}
function compileValue(jsonObj, key, localeValues, delimiters) {
var value = jsonObj[key];
if (isString(value)) {
// 存在国际化
if (isI18nStr(value, delimiters)) {
jsonObj[key] = compileStr(value, localeValues[0].values, delimiters);
if (localeValues.length > 1) {
// 格式化国际化语言
var valueLocales = jsonObj[key + 'Locales'] = {};
localeValues.forEach(function (localValue) {
valueLocales[localValue.locale] = compileStr(value, localValue.values, delimiters);
});
3 years ago
}
3 years ago
}
} else
{
compileJsonObj(value, localeValues, delimiters);
}
}
function compileJsonObj(jsonObj, localeValues, delimiters) {
walkJsonObj(jsonObj, function (jsonObj, key) {
compileValue(jsonObj, key, localeValues, delimiters);
});
return jsonObj;
}
function walkJsonObj(jsonObj, walk) {
if (isArray(jsonObj)) {
for (var i = 0; i < jsonObj.length; i++) {
if (walk(jsonObj, i)) {
return true;
3 years ago
}
3 years ago
}
} else
if (isObject(jsonObj)) {
for (var key in jsonObj) {
if (walk(jsonObj, key)) {
return true;
3 years ago
}
3 years ago
}
3 years ago
}
3 years ago
return false;
3 years ago
}
3 years ago
function resolveLocale(locales) {
return function (locale) {
if (!locale) {
return locale;
3 years ago
}
3 years ago
locale = normalizeLocale(locale) || locale;
return resolveLocaleChain(locale).find(function (locale) {return locales.indexOf(locale) > -1;});
};
}
function resolveLocaleChain(locale) {
var chain = [];
var tokens = locale.split('-');
while (tokens.length) {
chain.push(tokens.join('-'));
tokens.pop();
3 years ago
}
3 years ago
return chain;
}
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"], __webpack_require__(/*! ./../../../webpack/buildin/global.js */ 2)))
/***/ }),
/***/ 4:
/*!******************************************************************************************!*\
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/mp-vue/dist/mp.runtime.esm.js ***!
\******************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* WEBPACK VAR INJECTION */(function(global) {/*!
* Vue.js v2.6.11
* (c) 2014-2022 Evan You
* Released under the MIT License.
*/
/* */
var emptyObject = Object.freeze({});
// These helpers produce better VM code in JS engines due to their
// explicitness and function inlining.
function isUndef (v) {
return v === undefined || v === null
}
function isDef (v) {
return v !== undefined && v !== null
}
function isTrue (v) {
return v === true
3 years ago
}
3 years ago
function isFalse (v) {
return v === false
3 years ago
}
3 years ago
/**
* Check if value is primitive.
*/
function isPrimitive (value) {
return (
typeof value === 'string' ||
typeof value === 'number' ||
// $flow-disable-line
typeof value === 'symbol' ||
typeof value === 'boolean'
)
3 years ago
}
3 years ago
/**
* Quick object check - this is primarily used to tell
* Objects from primitive values when we know the value
* is a JSON-compliant type.
*/
function isObject (obj) {
return obj !== null && typeof obj === 'object'
3 years ago
}
3 years ago
/**
* Get the raw type string of a value, e.g., [object Object].
*/
var _toString = Object.prototype.toString;
3 years ago
3 years ago
function toRawType (value) {
return _toString.call(value).slice(8, -1)
3 years ago
}
3 years ago
/**
* Strict object type check. Only returns true
* for plain JavaScript objects.
*/
function isPlainObject (obj) {
return _toString.call(obj) === '[object Object]'
}
3 years ago
3 years ago
function isRegExp (v) {
return _toString.call(v) === '[object RegExp]'
}
3 years ago
3 years ago
/**
* Check if val is a valid array index.
*/
function isValidArrayIndex (val) {
var n = parseFloat(String(val));
return n >= 0 && Math.floor(n) === n && isFinite(val)
3 years ago
}
3 years ago
function isPromise (val) {
return (
isDef(val) &&
typeof val.then === 'function' &&
typeof val.catch === 'function'
)
}
3 years ago
3 years ago
/**
* Convert a value to a string that is actually rendered.
*/
function toString (val) {
return val == null
? ''
: Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)
? JSON.stringify(val, null, 2)
: String(val)
}
3 years ago
3 years ago
/**
* Convert an input value to a number for persistence.
* If the conversion fails, return original string.
*/
function toNumber (val) {
var n = parseFloat(val);
return isNaN(n) ? val : n
}
3 years ago
3 years ago
/**
* Make a map and return a function for checking if a key
* is in that map.
*/
function makeMap (
str,
expectsLowerCase
) {
var map = Object.create(null);
var list = str.split(',');
for (var i = 0; i < list.length; i++) {
map[list[i]] = true;
}
return expectsLowerCase
? function (val) { return map[val.toLowerCase()]; }
: function (val) { return map[val]; }
}
3 years ago
3 years ago
/**
* Check if a tag is a built-in tag.
*/
var isBuiltInTag = makeMap('slot,component', true);
3 years ago
3 years ago
/**
* Check if an attribute is a reserved attribute.
*/
var isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');
/**
* Remove an item from an array.
*/
function remove (arr, item) {
if (arr.length) {
var index = arr.indexOf(item);
if (index > -1) {
return arr.splice(index, 1)
3 years ago
}
}
}
3 years ago
/**
* Check whether an object has the property.
*/
var hasOwnProperty = Object.prototype.hasOwnProperty;
function hasOwn (obj, key) {
return hasOwnProperty.call(obj, key)
}
/**
* Create a cached version of a pure function.
*/
function cached (fn) {
var cache = Object.create(null);
return (function cachedFn (str) {
var hit = cache[str];
return hit || (cache[str] = fn(str))
})
}
/**
* Camelize a hyphen-delimited string.
*/
var camelizeRE = /-(\w)/g;
var camelize = cached(function (str) {
return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })
});
/**
* Capitalize a string.
*/
var capitalize = cached(function (str) {
return str.charAt(0).toUpperCase() + str.slice(1)
});
/**
* Hyphenate a camelCase string.
*/
var hyphenateRE = /\B([A-Z])/g;
var hyphenate = cached(function (str) {
return str.replace(hyphenateRE, '-$1').toLowerCase()
});
/**
* Simple bind polyfill for environments that do not support it,
* e.g., PhantomJS 1.x. Technically, we don't need this anymore
* since native bind is now performant enough in most browsers.
* But removing it would mean breaking code that was able to run in
* PhantomJS 1.x, so this must be kept for backward compatibility.
*/
/* istanbul ignore next */
function polyfillBind (fn, ctx) {
function boundFn (a) {
var l = arguments.length;
return l
? l > 1
? fn.apply(ctx, arguments)
: fn.call(ctx, a)
: fn.call(ctx)
3 years ago
}
3 years ago
boundFn._length = fn.length;
return boundFn
}
function nativeBind (fn, ctx) {
return fn.bind(ctx)
}
var bind = Function.prototype.bind
? nativeBind
: polyfillBind;
/**
* Convert an Array-like object to a real Array.
*/
function toArray (list, start) {
start = start || 0;
var i = list.length - start;
var ret = new Array(i);
while (i--) {
ret[i] = list[i + start];
3 years ago
}
3 years ago
return ret
3 years ago
}
3 years ago
/**
* Mix properties into target object.
*/
function extend (to, _from) {
for (var key in _from) {
to[key] = _from[key];
3 years ago
}
3 years ago
return to
3 years ago
}
3 years ago
/**
* Merge an Array of Objects into a single Object.
*/
function toObject (arr) {
var res = {};
for (var i = 0; i < arr.length; i++) {
if (arr[i]) {
extend(res, arr[i]);
}
3 years ago
}
3 years ago
return res
}
/* eslint-disable no-unused-vars */
/**
* Perform no operation.
* Stubbing args to make Flow happy without leaving useless transpiled code
* with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/).
*/
function noop (a, b, c) {}
/**
* Always return false.
*/
var no = function (a, b, c) { return false; };
/* eslint-enable no-unused-vars */
/**
* Return the same value.
*/
var identity = function (_) { return _; };
/**
* Check if two values are loosely equal - that is,
* if they are plain objects, do they have the same shape?
*/
function looseEqual (a, b) {
if (a === b) { return true }
var isObjectA = isObject(a);
var isObjectB = isObject(b);
if (isObjectA && isObjectB) {
try {
var isArrayA = Array.isArray(a);
var isArrayB = Array.isArray(b);
if (isArrayA && isArrayB) {
return a.length === b.length && a.every(function (e, i) {
return looseEqual(e, b[i])
})
} else if (a instanceof Date && b instanceof Date) {
return a.getTime() === b.getTime()
} else if (!isArrayA && !isArrayB) {
var keysA = Object.keys(a);
var keysB = Object.keys(b);
return keysA.length === keysB.length && keysA.every(function (key) {
return looseEqual(a[key], b[key])
})
3 years ago
} else {
3 years ago
/* istanbul ignore next */
return false
3 years ago
}
3 years ago
} catch (e) {
/* istanbul ignore next */
return false
}
} else if (!isObjectA && !isObjectB) {
return String(a) === String(b)
} else {
return false
}
}
/**
* Return the first index at which a loosely equal value can be
* found in the array (if value is a plain object, the array must
* contain an object of the same shape), or -1 if it is not present.
*/
function looseIndexOf (arr, val) {
for (var i = 0; i < arr.length; i++) {
if (looseEqual(arr[i], val)) { return i }
}
return -1
}
/**
* Ensure a function is called only once.
*/
function once (fn) {
var called = false;
return function () {
if (!called) {
called = true;
fn.apply(this, arguments);
3 years ago
}
}
}
3 years ago
var ASSET_TYPES = [
'component',
'directive',
'filter'
];
var LIFECYCLE_HOOKS = [
'beforeCreate',
'created',
'beforeMount',
'mounted',
'beforeUpdate',
'updated',
'beforeDestroy',
'destroyed',
'activated',
'deactivated',
'errorCaptured',
'serverPrefetch'
];
/* */
var config = ({
/**
* Option merge strategies (used in core/util/options)
*/
// $flow-disable-line
optionMergeStrategies: Object.create(null),
/**
* Whether to suppress warnings.
*/
silent: false,
/**
* Show production mode tip message on boot?
*/
productionTip: "development" !== 'production',
/**
* Whether to enable devtools
*/
devtools: "development" !== 'production',
/**
* Whether to record perf
*/
performance: false,
/**
* Error handler for watcher errors
*/
errorHandler: null,
/**
* Warn handler for watcher warns
*/
warnHandler: null,
/**
* Ignore certain custom elements
*/
ignoredElements: [],
/**
* Custom user key aliases for v-on
*/
// $flow-disable-line
keyCodes: Object.create(null),
/**
* Check if a tag is reserved so that it cannot be registered as a
* component. This is platform-dependent and may be overwritten.
*/
isReservedTag: no,
/**
* Check if an attribute is reserved so that it cannot be used as a component
* prop. This is platform-dependent and may be overwritten.
*/
isReservedAttr: no,
/**
* Check if a tag is an unknown element.
* Platform-dependent.
*/
isUnknownElement: no,
/**
* Get the namespace of an element
*/
getTagNamespace: noop,
/**
* Parse the real tag name for the specific platform.
*/
parsePlatformTagName: identity,
/**
* Check if an attribute must be bound using property, e.g. value
* Platform-dependent.
*/
mustUseProp: no,
/**
* Perform updates asynchronously. Intended to be used by Vue Test Utils
* This will significantly reduce performance if set to false.
*/
async: true,
/**
* Exposed for legacy reasons
*/
_lifecycleHooks: LIFECYCLE_HOOKS
});
3 years ago
3 years ago
/* */
/**
* unicode letters used for parsing html tags, component names and property paths.
* using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname
* skipping \u10000-\uEFFFF due to it freezing up PhantomJS
*/
var unicodeRegExp = /a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;
/**
* Check if a string starts with $ or _
*/
function isReserved (str) {
var c = (str + '').charCodeAt(0);
return c === 0x24 || c === 0x5F
3 years ago
}
3 years ago
/**
* Define a property.
*/
function def (obj, key, val, enumerable) {
Object.defineProperty(obj, key, {
value: val,
enumerable: !!enumerable,
writable: true,
configurable: true
});
}
3 years ago
3 years ago
/**
* Parse simple path.
*/
var bailRE = new RegExp(("[^" + (unicodeRegExp.source) + ".$_\\d]"));
function parsePath (path) {
if (bailRE.test(path)) {
return
3 years ago
}
3 years ago
var segments = path.split('.');
return function (obj) {
for (var i = 0; i < segments.length; i++) {
if (!obj) { return }
obj = obj[segments[i]];
3 years ago
}
3 years ago
return obj
3 years ago
}
3 years ago
}
/* */
// can we use __proto__?
var hasProto = '__proto__' in {};
// Browser environment sniffing
var inBrowser = typeof window !== 'undefined';
var inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;
var weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();
var UA = inBrowser && window.navigator.userAgent.toLowerCase();
var isIE = UA && /msie|trident/.test(UA);
var isIE9 = UA && UA.indexOf('msie 9.0') > 0;
var isEdge = UA && UA.indexOf('edge/') > 0;
var isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');
var isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');
var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
var isPhantomJS = UA && /phantomjs/.test(UA);
var isFF = UA && UA.match(/firefox\/(\d+)/);
// Firefox has a "watch" function on Object.prototype...
var nativeWatch = ({}).watch;
if (inBrowser) {
try {
var opts = {};
Object.defineProperty(opts, 'passive', ({
get: function get () {
}
})); // https://github.com/facebook/flow/issues/285
window.addEventListener('test-passive', null, opts);
} catch (e) {}
}
// this needs to be lazy-evaled because vue may be required before
// vue-server-renderer can set VUE_ENV
var _isServer;
var isServerRendering = function () {
if (_isServer === undefined) {
/* istanbul ignore if */
if (!inBrowser && !inWeex && typeof global !== 'undefined') {
// detect presence of vue-server-renderer and avoid
// Webpack shimming the process
_isServer = global['process'] && global['process'].env.VUE_ENV === 'server';
} else {
_isServer = false;
3 years ago
}
3 years ago
}
return _isServer
};
// detect devtools
var devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;
/* istanbul ignore next */
function isNative (Ctor) {
return typeof Ctor === 'function' && /native code/.test(Ctor.toString())
}
var hasSymbol =
typeof Symbol !== 'undefined' && isNative(Symbol) &&
typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);
var _Set;
/* istanbul ignore if */ // $flow-disable-line
if (typeof Set !== 'undefined' && isNative(Set)) {
// use native Set when available.
_Set = Set;
} else {
// a non-standard Set polyfill that only works with primitive keys.
_Set = /*@__PURE__*/(function () {
function Set () {
this.set = Object.create(null);
3 years ago
}
3 years ago
Set.prototype.has = function has (key) {
return this.set[key] === true
};
Set.prototype.add = function add (key) {
this.set[key] = true;
};
Set.prototype.clear = function clear () {
this.set = Object.create(null);
};
return Set;
}());
}
/* */
var warn = noop;
var tip = noop;
var generateComponentTrace = (noop); // work around flow check
var formatComponentName = (noop);
if (true) {
var hasConsole = typeof console !== 'undefined';
var classifyRE = /(?:^|[-_])(\w)/g;
var classify = function (str) { return str
.replace(classifyRE, function (c) { return c.toUpperCase(); })
.replace(/[-_]/g, ''); };
warn = function (msg, vm) {
var trace = vm ? generateComponentTrace(vm) : '';
if (config.warnHandler) {
config.warnHandler.call(null, msg, vm, trace);
} else if (hasConsole && (!config.silent)) {
console.error(("[Vue warn]: " + msg + trace));
3 years ago
}
3 years ago
};
tip = function (msg, vm) {
if (hasConsole && (!config.silent)) {
console.warn("[Vue tip]: " + msg + (
vm ? generateComponentTrace(vm) : ''
));
}
};
formatComponentName = function (vm, includeFile) {
if (vm.$root === vm) {
if (vm.$options && vm.$options.__file) { // fixed by xxxxxx
return ('') + vm.$options.__file
3 years ago
}
3 years ago
return '<Root>'
3 years ago
}
3 years ago
var options = typeof vm === 'function' && vm.cid != null
? vm.options
: vm._isVue
? vm.$options || vm.constructor.options
: vm;
var name = options.name || options._componentTag;
var file = options.__file;
if (!name && file) {
var match = file.match(/([^/\\]+)\.vue$/);
name = match && match[1];
3 years ago
}
3 years ago
return (
(name ? ("<" + (classify(name)) + ">") : "<Anonymous>") +
(file && includeFile !== false ? (" at " + file) : '')
)
};
var repeat = function (str, n) {
var res = '';
while (n) {
if (n % 2 === 1) { res += str; }
if (n > 1) { str += str; }
n >>= 1;
}
return res
};
generateComponentTrace = function (vm) {
if (vm._isVue && vm.$parent) {
var tree = [];
var currentRecursiveSequence = 0;
while (vm && vm.$options.name !== 'PageBody') {
if (tree.length > 0) {
var last = tree[tree.length - 1];
if (last.constructor === vm.constructor) {
currentRecursiveSequence++;
vm = vm.$parent;
continue
} else if (currentRecursiveSequence > 0) {
tree[tree.length - 1] = [last, currentRecursiveSequence];
currentRecursiveSequence = 0;
3 years ago
}
}
3 years ago
!vm.$options.isReserved && tree.push(vm);
vm = vm.$parent;
}
return '\n\nfound in\n\n' + tree
.map(function (vm, i) { return ("" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)
? ((formatComponentName(vm[0])) + "... (" + (vm[1]) + " recursive calls)")
: formatComponentName(vm))); })
.join('\n')
} else {
return ("\n\n(found in " + (formatComponentName(vm)) + ")")
}
};
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
var uid = 0;
3 years ago
3 years ago
/**
* A dep is an observable that can have multiple
* directives subscribing to it.
*/
var Dep = function Dep () {
this.id = uid++;
this.subs = [];
};
Dep.prototype.addSub = function addSub (sub) {
this.subs.push(sub);
};
Dep.prototype.removeSub = function removeSub (sub) {
remove(this.subs, sub);
};
Dep.prototype.depend = function depend () {
if (Dep.SharedObject.target) {
Dep.SharedObject.target.addDep(this);
3 years ago
}
3 years ago
};
Dep.prototype.notify = function notify () {
// stabilize the subscriber list first
var subs = this.subs.slice();
if ( true && !config.async) {
// subs aren't sorted in scheduler if not running async
// we need to sort them now to make sure they fire in correct
// order
subs.sort(function (a, b) { return a.id - b.id; });
}
for (var i = 0, l = subs.length; i < l; i++) {
subs[i].update();
}
};
// The current target watcher being evaluated.
// This is globally unique because only one watcher
// can be evaluated at a time.
// fixed by xxxxxx (nvue shared vuex)
/* eslint-disable no-undef */
Dep.SharedObject = {};
Dep.SharedObject.target = null;
Dep.SharedObject.targetStack = [];
function pushTarget (target) {
Dep.SharedObject.targetStack.push(target);
Dep.SharedObject.target = target;
Dep.target = target;
}
function popTarget () {
Dep.SharedObject.targetStack.pop();
Dep.SharedObject.target = Dep.SharedObject.targetStack[Dep.SharedObject.targetStack.length - 1];
Dep.target = Dep.SharedObject.target;
}
/* */
var VNode = function VNode (
tag,
data,
children,
text,
elm,
context,
componentOptions,
asyncFactory
) {
this.tag = tag;
this.data = data;
this.children = children;
this.text = text;
this.elm = elm;
this.ns = undefined;
this.context = context;
this.fnContext = undefined;
this.fnOptions = undefined;
this.fnScopeId = undefined;
this.key = data && data.key;
this.componentOptions = componentOptions;
this.componentInstance = undefined;
this.parent = undefined;
this.raw = false;
this.isStatic = false;
this.isRootInsert = true;
this.isComment = false;
this.isCloned = false;
this.isOnce = false;
this.asyncFactory = asyncFactory;
this.asyncMeta = undefined;
this.isAsyncPlaceholder = false;
};
var prototypeAccessors = { child: { configurable: true } };
// DEPRECATED: alias for componentInstance for backwards compat.
/* istanbul ignore next */
prototypeAccessors.child.get = function () {
return this.componentInstance
};
Object.defineProperties( VNode.prototype, prototypeAccessors );
var createEmptyVNode = function (text) {
if ( text === void 0 ) text = '';
var node = new VNode();
node.text = text;
node.isComment = true;
return node
};
function createTextVNode (val) {
return new VNode(undefined, undefined, undefined, String(val))
}
// optimized shallow clone
// used for static nodes and slot nodes because they may be reused across
// multiple renders, cloning them avoids errors when DOM manipulations rely
// on their elm reference.
function cloneVNode (vnode) {
var cloned = new VNode(
vnode.tag,
vnode.data,
// #7975
// clone children array to avoid mutating original in case of cloning
// a child.
vnode.children && vnode.children.slice(),
vnode.text,
vnode.elm,
vnode.context,
vnode.componentOptions,
vnode.asyncFactory
);
cloned.ns = vnode.ns;
cloned.isStatic = vnode.isStatic;
cloned.key = vnode.key;
cloned.isComment = vnode.isComment;
cloned.fnContext = vnode.fnContext;
cloned.fnOptions = vnode.fnOptions;
cloned.fnScopeId = vnode.fnScopeId;
cloned.asyncMeta = vnode.asyncMeta;
cloned.isCloned = true;
return cloned
}
/*
* not type checking this file because flow doesn't play well with
* dynamically accessing methods on Array prototype
*/
var arrayProto = Array.prototype;
var arrayMethods = Object.create(arrayProto);
var methodsToPatch = [
'push',
'pop',
'shift',
'unshift',
'splice',
'sort',
'reverse'
];
/**
* Intercept mutating methods and emit events
*/
methodsToPatch.forEach(function (method) {
// cache original method
var original = arrayProto[method];
def(arrayMethods, method, function mutator () {
var args = [], len = arguments.length;
while ( len-- ) args[ len ] = arguments[ len ];
var result = original.apply(this, args);
var ob = this.__ob__;
var inserted;
switch (method) {
case 'push':
case 'unshift':
inserted = args;
break
case 'splice':
inserted = args.slice(2);
break
}
if (inserted) { ob.observeArray(inserted); }
// notify change
ob.dep.notify();
return result
});
});
/* */
3 years ago
3 years ago
var arrayKeys = Object.getOwnPropertyNames(arrayMethods);
/**
* In some cases we may want to disable observation inside a component's
* update computation.
*/
var shouldObserve = true;
function toggleObserving (value) {
shouldObserve = value;
3 years ago
}
3 years ago
/**
* Observer class that is attached to each observed
* object. Once attached, the observer converts the target
* object's property keys into getter/setters that
* collect dependencies and dispatch updates.
*/
var Observer = function Observer (value) {
this.value = value;
this.dep = new Dep();
this.vmCount = 0;
def(value, '__ob__', this);
if (Array.isArray(value)) {
if (hasProto) {
{// fixed by xxxxxx 微信小程序使用 plugins 之后,数组方法被直接挂载到了数组对象上,需要执行 copyAugment 逻辑
if(value.push !== value.__proto__.push){
copyAugment(value, arrayMethods, arrayKeys);
} else {
protoAugment(value, arrayMethods);
3 years ago
}
3 years ago
}
} else {
copyAugment(value, arrayMethods, arrayKeys);
}
this.observeArray(value);
} else {
this.walk(value);
}
};
/**
* Walk through all properties and convert them into
* getter/setters. This method should only be called when
* value type is Object.
*/
Observer.prototype.walk = function walk (obj) {
var keys = Object.keys(obj);
for (var i = 0; i < keys.length; i++) {
defineReactive$$1(obj, keys[i]);
}
};
/**
* Observe a list of Array items.
*/
Observer.prototype.observeArray = function observeArray (items) {
for (var i = 0, l = items.length; i < l; i++) {
observe(items[i]);
}
};
3 years ago
3 years ago
// helpers
3 years ago
3 years ago
/**
* Augment a target Object or Array by intercepting
* the prototype chain using __proto__
*/
function protoAugment (target, src) {
/* eslint-disable no-proto */
target.__proto__ = src;
/* eslint-enable no-proto */
}
3 years ago
3 years ago
/**
* Augment a target Object or Array by defining
* hidden properties.
*/
/* istanbul ignore next */
function copyAugment (target, src, keys) {
for (var i = 0, l = keys.length; i < l; i++) {
var key = keys[i];
def(target, key, src[key]);
}
3 years ago
}
3 years ago
/**
* Attempt to create an observer instance for a value,
* returns the new observer if successfully observed,
* or the existing observer if the value already has one.
*/
function observe (value, asRootData) {
if (!isObject(value) || value instanceof VNode) {
return
3 years ago
}
3 years ago
var ob;
if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {
ob = value.__ob__;
} else if (
shouldObserve &&
!isServerRendering() &&
(Array.isArray(value) || isPlainObject(value)) &&
Object.isExtensible(value) &&
!value._isVue
) {
ob = new Observer(value);
3 years ago
}
3 years ago
if (asRootData && ob) {
ob.vmCount++;
}
return ob
}
3 years ago
3 years ago
/**
* Define a reactive property on an Object.
*/
function defineReactive$$1 (
obj,
key,
val,
customSetter,
shallow
) {
var dep = new Dep();
3 years ago
3 years ago
var property = Object.getOwnPropertyDescriptor(obj, key);
if (property && property.configurable === false) {
return
}
3 years ago
3 years ago
// cater for pre-defined getter/setters
var getter = property && property.get;
var setter = property && property.set;
if ((!getter || setter) && arguments.length === 2) {
val = obj[key];
}
var childOb = !shallow && observe(val);
Object.defineProperty(obj, key, {
enumerable: true,
configurable: true,
get: function reactiveGetter () {
var value = getter ? getter.call(obj) : val;
if (Dep.SharedObject.target) { // fixed by xxxxxx
dep.depend();
if (childOb) {
childOb.dep.depend();
if (Array.isArray(value)) {
dependArray(value);
}
}
}
return value
},
set: function reactiveSetter (newVal) {
var value = getter ? getter.call(obj) : val;
/* eslint-disable no-self-compare */
if (newVal === value || (newVal !== newVal && value !== value)) {
return
}
/* eslint-enable no-self-compare */
if ( true && customSetter) {
customSetter();
}
// #7981: for accessor properties without setter
if (getter && !setter) { return }
if (setter) {
setter.call(obj, newVal);
} else {
val = newVal;
}
childOb = !shallow && observe(newVal);
dep.notify();
}
});
}
3 years ago
3 years ago
/**
* Set a property on an object. Adds the new property and
* triggers change notification if the property doesn't
* already exist.
*/
function set (target, key, val) {
if ( true &&
(isUndef(target) || isPrimitive(target))
) {
warn(("Cannot set reactive property on undefined, null, or primitive value: " + ((target))));
3 years ago
}
3 years ago
if (Array.isArray(target) && isValidArrayIndex(key)) {
target.length = Math.max(target.length, key);
target.splice(key, 1, val);
return val
}
if (key in target && !(key in Object.prototype)) {
target[key] = val;
return val
}
var ob = (target).__ob__;
if (target._isVue || (ob && ob.vmCount)) {
true && warn(
'Avoid adding reactive properties to a Vue instance or its root $data ' +
'at runtime - declare it upfront in the data option.'
);
return val
}
if (!ob) {
target[key] = val;
return val
}
defineReactive$$1(ob.value, key, val);
ob.dep.notify();
return val
3 years ago
}
3 years ago
/**
* Delete a property and trigger change if necessary.
*/
function del (target, key) {
if ( true &&
(isUndef(target) || isPrimitive(target))
) {
warn(("Cannot delete reactive property on undefined, null, or primitive value: " + ((target))));
3 years ago
}
3 years ago
if (Array.isArray(target) && isValidArrayIndex(key)) {
target.splice(key, 1);
return
3 years ago
}
3 years ago
var ob = (target).__ob__;
if (target._isVue || (ob && ob.vmCount)) {
true && warn(
'Avoid deleting properties on a Vue instance or its root $data ' +
'- just set it to null.'
);
return
}
if (!hasOwn(target, key)) {
return
}
delete target[key];
if (!ob) {
return
}
ob.dep.notify();
}
/**
* Collect dependencies on array elements when the array is touched, since
* we cannot intercept array element access like property getters.
*/
function dependArray (value) {
for (var e = (void 0), i = 0, l = value.length; i < l; i++) {
e = value[i];
e && e.__ob__ && e.__ob__.dep.depend();
if (Array.isArray(e)) {
dependArray(e);
}
}
}
/* */
/**
* Option overwriting strategies are functions that handle
* how to merge a parent option value and a child option
* value into the final value.
*/
var strats = config.optionMergeStrategies;
/**
* Options with restrictions
*/
if (true) {
strats.el = strats.propsData = function (parent, child, vm, key) {
if (!vm) {
warn(
"option \"" + key + "\" can only be used during instance " +
'creation with the `new` keyword.'
);
}
return defaultStrat(parent, child)
};
}
/**
* Helper that recursively merges two data objects together.
*/
function mergeData (to, from) {
if (!from) { return to }
var key, toVal, fromVal;
var keys = hasSymbol
? Reflect.ownKeys(from)
: Object.keys(from);
for (var i = 0; i < keys.length; i++) {
key = keys[i];
// in case the object is already observed...
if (key === '__ob__') { continue }
toVal = to[key];
fromVal = from[key];
if (!hasOwn(to, key)) {
set(to, key, fromVal);
} else if (
toVal !== fromVal &&
isPlainObject(toVal) &&
isPlainObject(fromVal)
) {
mergeData(toVal, fromVal);
3 years ago
}
3 years ago
}
return to
3 years ago
}
3 years ago
/**
* Data
*/
function mergeDataOrFn (
parentVal,
childVal,
vm
) {
if (!vm) {
// in a Vue.extend merge, both should be functions
if (!childVal) {
return parentVal
}
if (!parentVal) {
return childVal
}
// when parentVal & childVal are both present,
// we need to return a function that returns the
// merged result of both functions... no need to
// check if parentVal is a function here because
// it has to be a function to pass previous merges.
return function mergedDataFn () {
return mergeData(
typeof childVal === 'function' ? childVal.call(this, this) : childVal,
typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal
)
}
} else {
return function mergedInstanceDataFn () {
// instance merge
var instanceData = typeof childVal === 'function'
? childVal.call(vm, vm)
: childVal;
var defaultData = typeof parentVal === 'function'
? parentVal.call(vm, vm)
: parentVal;
if (instanceData) {
return mergeData(instanceData, defaultData)
3 years ago
} else {
3 years ago
return defaultData
3 years ago
}
}
3 years ago
}
}
strats.data = function (
parentVal,
childVal,
vm
) {
if (!vm) {
if (childVal && typeof childVal !== 'function') {
true && warn(
'The "data" option should be a function ' +
'that returns a per-instance value in component ' +
'definitions.',
vm
);
return parentVal
}
return mergeDataOrFn(parentVal, childVal)
}
return mergeDataOrFn(parentVal, childVal, vm)
};
/**
* Hooks and props are merged as arrays.
*/
function mergeHook (
parentVal,
childVal
) {
var res = childVal
? parentVal
? parentVal.concat(childVal)
: Array.isArray(childVal)
? childVal
: [childVal]
: parentVal;
return res
? dedupeHooks(res)
: res
}
function dedupeHooks (hooks) {
var res = [];
for (var i = 0; i < hooks.length; i++) {
if (res.indexOf(hooks[i]) === -1) {
res.push(hooks[i]);
}
}
return res
}
LIFECYCLE_HOOKS.forEach(function (hook) {
strats[hook] = mergeHook;
});
/**
* Assets
*
* When a vm is present (instance creation), we need to do
* a three-way merge between constructor options, instance
* options and parent options.
*/
function mergeAssets (
parentVal,
childVal,
vm,
key
) {
var res = Object.create(parentVal || null);
if (childVal) {
true && assertObjectType(key, childVal, vm);
return extend(res, childVal)
} else {
return res
}
}
ASSET_TYPES.forEach(function (type) {
strats[type + 's'] = mergeAssets;
});
/**
* Watchers.
*
* Watchers hashes should not overwrite one
* another, so we merge them as arrays.
*/
strats.watch = function (
parentVal,
childVal,
vm,
key
) {
// work around Firefox's Object.prototype.watch...
if (parentVal === nativeWatch) { parentVal = undefined; }
if (childVal === nativeWatch) { childVal = undefined; }
/* istanbul ignore if */
if (!childVal) { return Object.create(parentVal || null) }
if (true) {
assertObjectType(key, childVal, vm);
}
if (!parentVal) { return childVal }
var ret = {};
extend(ret, parentVal);
for (var key$1 in childVal) {
var parent = ret[key$1];
var child = childVal[key$1];
if (parent && !Array.isArray(parent)) {
parent = [parent];
3 years ago
}
3 years ago
ret[key$1] = parent
? parent.concat(child)
: Array.isArray(child) ? child : [child];
}
return ret
};
3 years ago
3 years ago
/**
* Other object hashes.
*/
strats.props =
strats.methods =
strats.inject =
strats.computed = function (
parentVal,
childVal,
vm,
key
) {
if (childVal && "development" !== 'production') {
assertObjectType(key, childVal, vm);
3 years ago
}
3 years ago
if (!parentVal) { return childVal }
var ret = Object.create(null);
extend(ret, parentVal);
if (childVal) { extend(ret, childVal); }
return ret
};
strats.provide = mergeDataOrFn;
/**
* Default strategy.
*/
var defaultStrat = function (parentVal, childVal) {
return childVal === undefined
? parentVal
: childVal
};
3 years ago
3 years ago
/**
* Validate component names
*/
function checkComponents (options) {
for (var key in options.components) {
validateComponentName(key);
}
3 years ago
}
3 years ago
function validateComponentName (name) {
if (!new RegExp(("^[a-zA-Z][\\-\\.0-9_" + (unicodeRegExp.source) + "]*$")).test(name)) {
warn(
'Invalid component name: "' + name + '". Component names ' +
'should conform to valid custom element name in html5 specification.'
);
3 years ago
}
3 years ago
if (isBuiltInTag(name) || config.isReservedTag(name)) {
warn(
'Do not use built-in or reserved HTML elements as component ' +
'id: ' + name
);
}
}
/**
* Ensure all props option syntax are normalized into the
* Object-based format.
*/
function normalizeProps (options, vm) {
var props = options.props;
if (!props) { return }
var res = {};
var i, val, name;
if (Array.isArray(props)) {
i = props.length;
while (i--) {
val = props[i];
if (typeof val === 'string') {
name = camelize(val);
res[name] = { type: null };
} else if (true) {
warn('props must be strings when using array syntax.');
}
}
} else if (isPlainObject(props)) {
for (var key in props) {
val = props[key];
name = camelize(key);
res[name] = isPlainObject(val)
? val
: { type: val };
}
} else if (true) {
warn(
"Invalid value for option \"props\": expected an Array or an Object, " +
"but got " + (toRawType(props)) + ".",
vm
);
}
options.props = res;
}
/**
* Normalize all injections into Object-based format
*/
function normalizeInject (options, vm) {
var inject = options.inject;
if (!inject) { return }
var normalized = options.inject = {};
if (Array.isArray(inject)) {
for (var i = 0; i < inject.length; i++) {
normalized[inject[i]] = { from: inject[i] };
}
} else if (isPlainObject(inject)) {
for (var key in inject) {
var val = inject[key];
normalized[key] = isPlainObject(val)
? extend({ from: key }, val)
: { from: val };
3 years ago
}
3 years ago
} else if (true) {
warn(
"Invalid value for option \"inject\": expected an Array or an Object, " +
"but got " + (toRawType(inject)) + ".",
vm
);
3 years ago
}
3 years ago
}
3 years ago
3 years ago
/**
* Normalize raw function directives into object format.
*/
function normalizeDirectives (options) {
var dirs = options.directives;
if (dirs) {
for (var key in dirs) {
var def$$1 = dirs[key];
if (typeof def$$1 === 'function') {
dirs[key] = { bind: def$$1, update: def$$1 };
}
}
}
3 years ago
}
3 years ago
function assertObjectType (name, value, vm) {
if (!isPlainObject(value)) {
warn(
"Invalid value for option \"" + name + "\": expected an Object, " +
"but got " + (toRawType(value)) + ".",
vm
);
3 years ago
}
3 years ago
}
3 years ago
3 years ago
/**
* Merge two option objects into a new one.
* Core utility used in both instantiation and inheritance.
*/
function mergeOptions (
parent,
child,
vm
) {
if (true) {
checkComponents(child);
}
if (typeof child === 'function') {
child = child.options;
}
normalizeProps(child, vm);
normalizeInject(child, vm);
normalizeDirectives(child);
// Apply extends and mixins on the child options,
// but only if it is a raw options object that isn't
// the result of another mergeOptions call.
// Only merged options has the _base property.
if (!child._base) {
if (child.extends) {
parent = mergeOptions(parent, child.extends, vm);
3 years ago
}
3 years ago
if (child.mixins) {
for (var i = 0, l = child.mixins.length; i < l; i++) {
parent = mergeOptions(parent, child.mixins[i], vm);
}
}
}
3 years ago
3 years ago
var options = {};
var key;
for (key in parent) {
mergeField(key);
}
for (key in child) {
if (!hasOwn(parent, key)) {
mergeField(key);
}
}
function mergeField (key) {
var strat = strats[key] || defaultStrat;
options[key] = strat(parent[key], child[key], vm, key);
}
return options
3 years ago
}
3 years ago
/**
* Resolve an asset.
* This function is used because child instances need access
* to assets defined in its ancestor chain.
*/
function resolveAsset (
options,
type,
id,
warnMissing
) {
/* istanbul ignore if */
if (typeof id !== 'string') {
return
3 years ago
}
3 years ago
var assets = options[type];
// check local registration variations first
if (hasOwn(assets, id)) { return assets[id] }
var camelizedId = camelize(id);
if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }
var PascalCaseId = capitalize(camelizedId);
if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }
// fallback to prototype chain
var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];
if ( true && warnMissing && !res) {
warn(
'Failed to resolve ' + type.slice(0, -1) + ': ' + id,
options
);
}
return res
}
/* */
function validateProp (
key,
propOptions,
propsData,
vm
) {
var prop = propOptions[key];
var absent = !hasOwn(propsData, key);
var value = propsData[key];
// boolean casting
var booleanIndex = getTypeIndex(Boolean, prop.type);
if (booleanIndex > -1) {
if (absent && !hasOwn(prop, 'default')) {
value = false;
} else if (value === '' || value === hyphenate(key)) {
// only cast empty string / same name to boolean if
// boolean has higher priority
var stringIndex = getTypeIndex(String, prop.type);
if (stringIndex < 0 || booleanIndex < stringIndex) {
value = true;
3 years ago
}
}
}
3 years ago
// check default value
if (value === undefined) {
value = getPropDefaultValue(vm, prop, key);
// since the default value is a fresh copy,
// make sure to observe it.
var prevShouldObserve = shouldObserve;
toggleObserving(true);
observe(value);
toggleObserving(prevShouldObserve);
}
if (
true
) {
assertProp(prop, key, value, vm, absent);
}
return value
3 years ago
}
3 years ago
/**
* Get the default value of a prop.
*/
function getPropDefaultValue (vm, prop, key) {
// no default, return undefined
if (!hasOwn(prop, 'default')) {
return undefined
3 years ago
}
3 years ago
var def = prop.default;
// warn against non-factory defaults for Object & Array
if ( true && isObject(def)) {
warn(
'Invalid default value for prop "' + key + '": ' +
'Props with type Object/Array must use a factory function ' +
'to return the default value.',
vm
);
}
// the raw prop value was also undefined from previous render,
// return previous default value to avoid unnecessary watcher trigger
if (vm && vm.$options.propsData &&
vm.$options.propsData[key] === undefined &&
vm._props[key] !== undefined
) {
return vm._props[key]
}
// call factory function for non-Function types
// a value is Function if its prototype is function even across different execution context
return typeof def === 'function' && getType(prop.type) !== 'Function'
? def.call(vm)
: def
}
/**
* Assert whether a prop is valid.
*/
function assertProp (
prop,
name,
value,
vm,
absent
) {
if (prop.required && absent) {
warn(
'Missing required prop: "' + name + '"',
vm
);
return
}
if (value == null && !prop.required) {
return
}
var type = prop.type;
var valid = !type || type === true;
var expectedTypes = [];
if (type) {
if (!Array.isArray(type)) {
type = [type];
3 years ago
}
3 years ago
for (var i = 0; i < type.length && !valid; i++) {
var assertedType = assertType(value, type[i]);
expectedTypes.push(assertedType.expectedType || '');
valid = assertedType.valid;
3 years ago
}
3 years ago
}
if (!valid) {
warn(
getInvalidTypeMessage(name, value, expectedTypes),
vm
);
return
}
var validator = prop.validator;
if (validator) {
if (!validator(value)) {
warn(
'Invalid prop: custom validator check failed for prop "' + name + '".',
vm
);
3 years ago
}
3 years ago
}
}
var simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;
function assertType (value, type) {
var valid;
var expectedType = getType(type);
if (simpleCheckRE.test(expectedType)) {
var t = typeof value;
valid = t === expectedType.toLowerCase();
// for primitive wrapper objects
if (!valid && t === 'object') {
valid = value instanceof type;
3 years ago
}
3 years ago
} else if (expectedType === 'Object') {
valid = isPlainObject(value);
} else if (expectedType === 'Array') {
valid = Array.isArray(value);
} else {
valid = value instanceof type;
3 years ago
}
return {
3 years ago
valid: valid,
expectedType: expectedType
}
}
/**
* Use function string name to check built-in types,
* because a simple equality check will fail when running
* across different vms / iframes.
*/
function getType (fn) {
var match = fn && fn.toString().match(/^\s*function (\w+)/);
return match ? match[1] : ''
}
function isSameType (a, b) {
return getType(a) === getType(b)
}
function getTypeIndex (type, expectedTypes) {
if (!Array.isArray(expectedTypes)) {
return isSameType(expectedTypes, type) ? 0 : -1
}
for (var i = 0, len = expectedTypes.length; i < len; i++) {
if (isSameType(expectedTypes[i], type)) {
return i
}
}
return -1
}
function getInvalidTypeMessage (name, value, expectedTypes) {
var message = "Invalid prop: type check failed for prop \"" + name + "\"." +
" Expected " + (expectedTypes.map(capitalize).join(', '));
var expectedType = expectedTypes[0];
var receivedType = toRawType(value);
var expectedValue = styleValue(value, expectedType);
var receivedValue = styleValue(value, receivedType);
// check if we need to specify expected value
if (expectedTypes.length === 1 &&
isExplicable(expectedType) &&
!isBoolean(expectedType, receivedType)) {
message += " with value " + expectedValue;
}
message += ", got " + receivedType + " ";
// check if we need to specify received value
if (isExplicable(receivedType)) {
message += "with value " + receivedValue + ".";
}
return message
}
function styleValue (value, type) {
if (type === 'String') {
return ("\"" + value + "\"")
} else if (type === 'Number') {
return ("" + (Number(value)))
} else {
return ("" + value)
}
}
function isExplicable (value) {
var explicitTypes = ['string', 'number', 'boolean'];
return explicitTypes.some(function (elem) { return value.toLowerCase() === elem; })
}
function isBoolean () {
var args = [], len = arguments.length;
while ( len-- ) args[ len ] = arguments[ len ];
return args.some(function (elem) { return elem.toLowerCase() === 'boolean'; })
}
3 years ago
3 years ago
/* */
function handleError (err, vm, info) {
// Deactivate deps tracking while processing error handler to avoid possible infinite rendering.
// See: https://github.com/vuejs/vuex/issues/1505
pushTarget();
try {
if (vm) {
var cur = vm;
while ((cur = cur.$parent)) {
var hooks = cur.$options.errorCaptured;
if (hooks) {
for (var i = 0; i < hooks.length; i++) {
try {
var capture = hooks[i].call(cur, err, vm, info) === false;
if (capture) { return }
} catch (e) {
globalHandleError(e, cur, 'errorCaptured hook');
}
}
}
}
}
globalHandleError(err, vm, info);
} finally {
popTarget();
}
3 years ago
}
3 years ago
function invokeWithErrorHandling (
handler,
context,
args,
vm,
info
) {
var res;
try {
res = args ? handler.apply(context, args) : handler.call(context);
if (res && !res._isVue && isPromise(res) && !res._handled) {
res.catch(function (e) { return handleError(e, vm, info + " (Promise/async)"); });
// issue #9511
// avoid catch triggering multiple times when nested calls
res._handled = true;
}
} catch (e) {
handleError(e, vm, info);
}
return res
}
3 years ago
3 years ago
function globalHandleError (err, vm, info) {
if (config.errorHandler) {
try {
return config.errorHandler.call(null, err, vm, info)
} catch (e) {
// if the user intentionally throws the original error in the handler,
// do not log it twice
if (e !== err) {
logError(e, null, 'config.errorHandler');
}
}
3 years ago
}
3 years ago
logError(err, vm, info);
}
function logError (err, vm, info) {
if (true) {
warn(("Error in " + info + ": \"" + (err.toString()) + "\""), vm);
3 years ago
}
3 years ago
/* istanbul ignore else */
if ((inBrowser || inWeex) && typeof console !== 'undefined') {
console.error(err);
} else {
throw err
3 years ago
}
}
3 years ago
/* */
3 years ago
3 years ago
var callbacks = [];
var pending = false;
function flushCallbacks () {
pending = false;
var copies = callbacks.slice(0);
callbacks.length = 0;
for (var i = 0; i < copies.length; i++) {
copies[i]();
3 years ago
}
3 years ago
}
3 years ago
3 years ago
// Here we have async deferring wrappers using microtasks.
// In 2.5 we used (macro) tasks (in combination with microtasks).
// However, it has subtle problems when state is changed right before repaint
// (e.g. #6813, out-in transitions).
// Also, using (macro) tasks in event handler would cause some weird behaviors
// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).
// So we now use microtasks everywhere, again.
// A major drawback of this tradeoff is that there are some scenarios
// where microtasks have too high a priority and fire in between supposedly
// sequential events (e.g. #4521, #6690, which have workarounds)
// or even between bubbling of the same event (#6566).
var timerFunc;
// The nextTick behavior leverages the microtask queue, which can be accessed
// via either native Promise.then or MutationObserver.
// MutationObserver has wider support, however it is seriously bugged in
// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It
// completely stops working after triggering a few times... so, if native
// Promise is available, we will use it:
/* istanbul ignore next, $flow-disable-line */
if (typeof Promise !== 'undefined' && isNative(Promise)) {
var p = Promise.resolve();
timerFunc = function () {
p.then(flushCallbacks);
// In problematic UIWebViews, Promise.then doesn't completely break, but
// it can get stuck in a weird state where callbacks are pushed into the
// microtask queue but the queue isn't being flushed, until the browser
// needs to do some other work, e.g. handle a timer. Therefore we can
// "force" the microtask queue to be flushed by adding an empty timer.
if (isIOS) { setTimeout(noop); }
};
} else if (!isIE && typeof MutationObserver !== 'undefined' && (
isNative(MutationObserver) ||
// PhantomJS and iOS 7.x
MutationObserver.toString() === '[object MutationObserverConstructor]'
)) {
// Use MutationObserver where native Promise is not available,
// e.g. PhantomJS, iOS7, Android 4.4
// (#6466 MutationObserver is unreliable in IE11)
var counter = 1;
var observer = new MutationObserver(flushCallbacks);
var textNode = document.createTextNode(String(counter));
observer.observe(textNode, {
characterData: true
});
timerFunc = function () {
counter = (counter + 1) % 2;
textNode.data = String(counter);
};
} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
// Fallback to setImmediate.
// Technically it leverages the (macro) task queue,
// but it is still a better choice than setTimeout.
timerFunc = function () {
setImmediate(flushCallbacks);
};
} else {
// Fallback to setTimeout.
timerFunc = function () {
setTimeout(flushCallbacks, 0);
};
}
function nextTick (cb, ctx) {
var _resolve;
callbacks.push(function () {
if (cb) {
try {
cb.call(ctx);
} catch (e) {
handleError(e, ctx, 'nextTick');
}
} else if (_resolve) {
_resolve(ctx);
3 years ago
}
3 years ago
});
if (!pending) {
pending = true;
timerFunc();
3 years ago
}
3 years ago
// $flow-disable-line
if (!cb && typeof Promise !== 'undefined') {
return new Promise(function (resolve) {
_resolve = resolve;
})
3 years ago
}
3 years ago
}
/* */
/* not type checking this file because flow doesn't play well with Proxy */
var initProxy;
if (true) {
var allowedGlobals = makeMap(
'Infinity,undefined,NaN,isFinite,isNaN,' +
'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +
'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +
'require' // for Webpack/Browserify
);
var warnNonPresent = function (target, key) {
warn(
"Property or method \"" + key + "\" is not defined on the instance but " +
'referenced during render. Make sure that this property is reactive, ' +
'either in the data option, or for class-based components, by ' +
'initializing the property. ' +
'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',
target
);
};
var warnReservedPrefix = function (target, key) {
warn(
"Property \"" + key + "\" must be accessed with \"$data." + key + "\" because " +
'properties starting with "$" or "_" are not proxied in the Vue instance to ' +
'prevent conflicts with Vue internals. ' +
'See: https://vuejs.org/v2/api/#data',
target
);
};
var hasProxy =
typeof Proxy !== 'undefined' && isNative(Proxy);
if (hasProxy) {
var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');
config.keyCodes = new Proxy(config.keyCodes, {
set: function set (target, key, value) {
if (isBuiltInModifier(key)) {
warn(("Avoid overwriting built-in modifier in config.keyCodes: ." + key));
return false
} else {
target[key] = value;
return true
}
3 years ago
}
});
}
3 years ago
var hasHandler = {
has: function has (target, key) {
var has = key in target;
var isAllowed = allowedGlobals(key) ||
(typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data));
if (!has && !isAllowed) {
if (key in target.$data) { warnReservedPrefix(target, key); }
else { warnNonPresent(target, key); }
3 years ago
}
3 years ago
return has || !isAllowed
3 years ago
}
3 years ago
};
3 years ago
3 years ago
var getHandler = {
get: function get (target, key) {
if (typeof key === 'string' && !(key in target)) {
if (key in target.$data) { warnReservedPrefix(target, key); }
else { warnNonPresent(target, key); }
3 years ago
}
3 years ago
return target[key]
3 years ago
}
3 years ago
};
initProxy = function initProxy (vm) {
if (hasProxy) {
// determine which proxy handler to use
var options = vm.$options;
var handlers = options.render && options.render._withStripped
? getHandler
: hasHandler;
vm._renderProxy = new Proxy(vm, handlers);
3 years ago
} else {
3 years ago
vm._renderProxy = vm;
3 years ago
}
3 years ago
};
3 years ago
}
3 years ago
/* */
var seenObjects = new _Set();
/**
* Recursively traverse an object to evoke all converted
* getters, so that every nested property inside the object
* is collected as a "deep" dependency.
*/
function traverse (val) {
_traverse(val, seenObjects);
seenObjects.clear();
}
function _traverse (val, seen) {
var i, keys;
var isA = Array.isArray(val);
if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {
return
3 years ago
}
3 years ago
if (val.__ob__) {
var depId = val.__ob__.dep.id;
if (seen.has(depId)) {
return
}
seen.add(depId);
3 years ago
}
3 years ago
if (isA) {
i = val.length;
while (i--) { _traverse(val[i], seen); }
} else {
keys = Object.keys(val);
i = keys.length;
while (i--) { _traverse(val[keys[i]], seen); }
3 years ago
}
}
3 years ago
var mark;
var measure;
if (true) {
var perf = inBrowser && window.performance;
/* istanbul ignore if */
if (
perf &&
perf.mark &&
perf.measure &&
perf.clearMarks &&
perf.clearMeasures
) {
mark = function (tag) { return perf.mark(tag); };
measure = function (name, startTag, endTag) {
perf.measure(name, startTag, endTag);
perf.clearMarks(startTag);
perf.clearMarks(endTag);
// perf.clearMeasures(name)
};
3 years ago
}
3 years ago
}
/* */
var normalizeEvent = cached(function (name) {
var passive = name.charAt(0) === '&';
name = passive ? name.slice(1) : name;
var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first
name = once$$1 ? name.slice(1) : name;
var capture = name.charAt(0) === '!';
name = capture ? name.slice(1) : name;
return {
name: name,
once: once$$1,
capture: capture,
passive: passive
3 years ago
}
3 years ago
});
function createFnInvoker (fns, vm) {
function invoker () {
var arguments$1 = arguments;
var fns = invoker.fns;
if (Array.isArray(fns)) {
var cloned = fns.slice();
for (var i = 0; i < cloned.length; i++) {
invokeWithErrorHandling(cloned[i], null, arguments$1, vm, "v-on handler");
}
} else {
// return handler return value for single handlers
return invokeWithErrorHandling(fns, null, arguments, vm, "v-on handler")
}
3 years ago
}
3 years ago
invoker.fns = fns;
return invoker
}
3 years ago
3 years ago
function updateListeners (
on,
oldOn,
add,
remove$$1,
createOnceHandler,
vm
) {
var name, def$$1, cur, old, event;
for (name in on) {
def$$1 = cur = on[name];
old = oldOn[name];
event = normalizeEvent(name);
if (isUndef(cur)) {
true && warn(
"Invalid handler for event \"" + (event.name) + "\": got " + String(cur),
vm
);
} else if (isUndef(old)) {
if (isUndef(cur.fns)) {
cur = on[name] = createFnInvoker(cur, vm);
3 years ago
}
3 years ago
if (isTrue(event.once)) {
cur = on[name] = createOnceHandler(event.name, cur, event.capture);
}
add(event.name, cur, event.capture, event.passive, event.params);
} else if (cur !== old) {
old.fns = cur;
on[name] = old;
}
}
for (name in oldOn) {
if (isUndef(on[name])) {
event = normalizeEvent(name);
remove$$1(event.name, oldOn[name], event.capture);
}
}
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
/* */
3 years ago
3 years ago
// fixed by xxxxxx (mp properties)
function extractPropertiesFromVNodeData(data, Ctor, res, context) {
var propOptions = Ctor.options.mpOptions && Ctor.options.mpOptions.properties;
if (isUndef(propOptions)) {
return res
}
var externalClasses = Ctor.options.mpOptions.externalClasses || [];
var attrs = data.attrs;
var props = data.props;
if (isDef(attrs) || isDef(props)) {
for (var key in propOptions) {
var altKey = hyphenate(key);
var result = checkProp(res, props, key, altKey, true) ||
checkProp(res, attrs, key, altKey, false);
// externalClass
if (
result &&
res[key] &&
externalClasses.indexOf(altKey) !== -1 &&
context[camelize(res[key])]
) {
// 赋值 externalClass 真正的值(模板里 externalClass 的值可能是字符串)
res[key] = context[camelize(res[key])];
}
}
}
return res
}
3 years ago
3 years ago
function extractPropsFromVNodeData (
data,
Ctor,
tag,
context// fixed by xxxxxx
) {
// we are only extracting raw values here.
// validation and default values are handled in the child
// component itself.
var propOptions = Ctor.options.props;
if (isUndef(propOptions)) {
// fixed by xxxxxx
return extractPropertiesFromVNodeData(data, Ctor, {}, context)
}
var res = {};
var attrs = data.attrs;
var props = data.props;
if (isDef(attrs) || isDef(props)) {
for (var key in propOptions) {
var altKey = hyphenate(key);
if (true) {
var keyInLowerCase = key.toLowerCase();
if (
key !== keyInLowerCase &&
attrs && hasOwn(attrs, keyInLowerCase)
) {
tip(
"Prop \"" + keyInLowerCase + "\" is passed to component " +
(formatComponentName(tag || Ctor)) + ", but the declared prop name is" +
" \"" + key + "\". " +
"Note that HTML attributes are case-insensitive and camelCased " +
"props need to use their kebab-case equivalents when using in-DOM " +
"templates. You should probably use \"" + altKey + "\" instead of \"" + key + "\"."
);
3 years ago
}
3 years ago
}
checkProp(res, props, key, altKey, true) ||
checkProp(res, attrs, key, altKey, false);
3 years ago
}
}
3 years ago
// fixed by xxxxxx
return extractPropertiesFromVNodeData(data, Ctor, res, context)
}
3 years ago
3 years ago
function checkProp (
res,
hash,
key,
altKey,
preserve
) {
if (isDef(hash)) {
if (hasOwn(hash, key)) {
res[key] = hash[key];
if (!preserve) {
delete hash[key];
}
return true
} else if (hasOwn(hash, altKey)) {
res[key] = hash[altKey];
if (!preserve) {
delete hash[altKey];
}
return true
}
}
return false
3 years ago
}
3 years ago
/* */
// The template compiler attempts to minimize the need for normalization by
// statically analyzing the template at compile time.
//
// For plain HTML markup, normalization can be completely skipped because the
// generated render function is guaranteed to return Array<VNode>. There are
// two cases where extra normalization is needed:
// 1. When the children contains components - because a functional component
// may return an Array instead of a single root. In this case, just a simple
// normalization is needed - if any child is an Array, we flatten the whole
// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep
// because functional components already normalize their own children.
function simpleNormalizeChildren (children) {
for (var i = 0; i < children.length; i++) {
if (Array.isArray(children[i])) {
return Array.prototype.concat.apply([], children)
}
3 years ago
}
3 years ago
return children
}
3 years ago
3 years ago
// 2. When the children contains constructs that always generated nested Arrays,
// e.g. <template>, <slot>, v-for, or when the children is provided by user
// with hand-written render functions / JSX. In such cases a full normalization
// is needed to cater to all possible types of children values.
function normalizeChildren (children) {
return isPrimitive(children)
? [createTextVNode(children)]
: Array.isArray(children)
? normalizeArrayChildren(children)
: undefined
}
function isTextNode (node) {
return isDef(node) && isDef(node.text) && isFalse(node.isComment)
}
function normalizeArrayChildren (children, nestedIndex) {
var res = [];
var i, c, lastIndex, last;
for (i = 0; i < children.length; i++) {
c = children[i];
if (isUndef(c) || typeof c === 'boolean') { continue }
lastIndex = res.length - 1;
last = res[lastIndex];
// nested
if (Array.isArray(c)) {
if (c.length > 0) {
c = normalizeArrayChildren(c, ((nestedIndex || '') + "_" + i));
// merge adjacent text nodes
if (isTextNode(c[0]) && isTextNode(last)) {
res[lastIndex] = createTextVNode(last.text + (c[0]).text);
c.shift();
}
res.push.apply(res, c);
}
} else if (isPrimitive(c)) {
if (isTextNode(last)) {
// merge adjacent text nodes
// this is necessary for SSR hydration because text nodes are
// essentially merged when rendered to HTML strings
res[lastIndex] = createTextVNode(last.text + c);
} else if (c !== '') {
// convert primitive to vnode
res.push(createTextVNode(c));
}
3 years ago
} else {
3 years ago
if (isTextNode(c) && isTextNode(last)) {
// merge adjacent text nodes
res[lastIndex] = createTextVNode(last.text + c.text);
3 years ago
} else {
3 years ago
// default key for nested array children (likely generated by v-for)
if (isTrue(children._isVList) &&
isDef(c.tag) &&
isUndef(c.key) &&
isDef(nestedIndex)) {
c.key = "__vlist" + nestedIndex + "_" + i + "__";
}
res.push(c);
3 years ago
}
}
3 years ago
}
return res
}
3 years ago
3 years ago
/* */
function initProvide (vm) {
var provide = vm.$options.provide;
if (provide) {
vm._provided = typeof provide === 'function'
? provide.call(vm)
: provide;
}
}
function initInjections (vm) {
var result = resolveInject(vm.$options.inject, vm);
if (result) {
toggleObserving(false);
Object.keys(result).forEach(function (key) {
/* istanbul ignore else */
if (true) {
defineReactive$$1(vm, key, result[key], function () {
warn(
"Avoid mutating an injected value directly since the changes will be " +
"overwritten whenever the provided component re-renders. " +
"injection being mutated: \"" + key + "\"",
vm
);
});
} else {}
});
toggleObserving(true);
}
}
function resolveInject (inject, vm) {
if (inject) {
// inject is :any because flow is not smart enough to figure out cached
var result = Object.create(null);
var keys = hasSymbol
? Reflect.ownKeys(inject)
: Object.keys(inject);
for (var i = 0; i < keys.length; i++) {
var key = keys[i];
// #6574 in case the inject object is observed...
if (key === '__ob__') { continue }
var provideKey = inject[key].from;
var source = vm;
while (source) {
if (source._provided && hasOwn(source._provided, provideKey)) {
result[key] = source._provided[provideKey];
break
}
source = source.$parent;
}
if (!source) {
if ('default' in inject[key]) {
var provideDefault = inject[key].default;
result[key] = typeof provideDefault === 'function'
? provideDefault.call(vm)
: provideDefault;
} else if (true) {
warn(("Injection \"" + key + "\" not found"), vm);
}
3 years ago
}
}
3 years ago
return result
}
3 years ago
}
3 years ago
/* */
3 years ago
3 years ago
/**
* Runtime helper for resolving raw children VNodes into a slot object.
*/
function resolveSlots (
children,
context
) {
if (!children || !children.length) {
return {}
3 years ago
}
3 years ago
var slots = {};
for (var i = 0, l = children.length; i < l; i++) {
var child = children[i];
var data = child.data;
// remove slot attribute if the node is resolved as a Vue slot node
if (data && data.attrs && data.attrs.slot) {
delete data.attrs.slot;
3 years ago
}
3 years ago
// named slots should only be respected if the vnode was rendered in the
// same context.
if ((child.context === context || child.fnContext === context) &&
data && data.slot != null
) {
var name = data.slot;
var slot = (slots[name] || (slots[name] = []));
if (child.tag === 'template') {
slot.push.apply(slot, child.children || []);
3 years ago
} else {
3 years ago
slot.push(child);
}
} else {
// fixed by xxxxxx 临时 hack 掉 uni-app 中的异步 name slot page
if(child.asyncMeta && child.asyncMeta.data && child.asyncMeta.data.slot === 'page'){
(slots['page'] || (slots['page'] = [])).push(child);
}else{
(slots.default || (slots.default = [])).push(child);
3 years ago
}
}
3 years ago
}
// ignore slots that contains only whitespace
for (var name$1 in slots) {
if (slots[name$1].every(isWhitespace)) {
delete slots[name$1];
3 years ago
}
3 years ago
}
return slots
}
function isWhitespace (node) {
return (node.isComment && !node.asyncFactory) || node.text === ' '
}
/* */
function normalizeScopedSlots (
slots,
normalSlots,
prevSlots
) {
var res;
var hasNormalSlots = Object.keys(normalSlots).length > 0;
var isStable = slots ? !!slots.$stable : !hasNormalSlots;
var key = slots && slots.$key;
if (!slots) {
res = {};
} else if (slots._normalized) {
// fast path 1: child component re-render only, parent did not change
return slots._normalized
} else if (
isStable &&
prevSlots &&
prevSlots !== emptyObject &&
key === prevSlots.$key &&
!hasNormalSlots &&
!prevSlots.$hasNormal
) {
// fast path 2: stable scoped slots w/ no normal slots to proxy,
// only need to normalize once
return prevSlots
} else {
res = {};
for (var key$1 in slots) {
if (slots[key$1] && key$1[0] !== '$') {
res[key$1] = normalizeScopedSlot(normalSlots, key$1, slots[key$1]);
}
}
}
// expose normal slots on scopedSlots
for (var key$2 in normalSlots) {
if (!(key$2 in res)) {
res[key$2] = proxyNormalSlot(normalSlots, key$2);
}
}
// avoriaz seems to mock a non-extensible $scopedSlots object
// and when that is passed down this would cause an error
if (slots && Object.isExtensible(slots)) {
(slots)._normalized = res;
}
def(res, '$stable', isStable);
def(res, '$key', key);
def(res, '$hasNormal', hasNormalSlots);
return res
}
function normalizeScopedSlot(normalSlots, key, fn) {
var normalized = function () {
var res = arguments.length ? fn.apply(null, arguments) : fn({});
res = res && typeof res === 'object' && !Array.isArray(res)
? [res] // single vnode
: normalizeChildren(res);
return res && (
res.length === 0 ||
(res.length === 1 && res[0].isComment) // #9658
) ? undefined
: res
};
// this is a slot using the new v-slot syntax without scope. although it is
// compiled as a scoped slot, render fn users would expect it to be present
// on this.$slots because the usage is semantically a normal slot.
if (fn.proxy) {
Object.defineProperty(normalSlots, key, {
get: normalized,
enumerable: true,
configurable: true
});
}
return normalized
}
function proxyNormalSlot(slots, key) {
return function () { return slots[key]; }
}
/* */
/**
* Runtime helper for rendering v-for lists.
*/
function renderList (
val,
render
) {
var ret, i, l, keys, key;
if (Array.isArray(val) || typeof val === 'string') {
ret = new Array(val.length);
for (i = 0, l = val.length; i < l; i++) {
ret[i] = render(val[i], i, i, i); // fixed by xxxxxx
}
} else if (typeof val === 'number') {
ret = new Array(val);
for (i = 0; i < val; i++) {
ret[i] = render(i + 1, i, i, i); // fixed by xxxxxx
}
} else if (isObject(val)) {
if (hasSymbol && val[Symbol.iterator]) {
ret = [];
var iterator = val[Symbol.iterator]();
var result = iterator.next();
while (!result.done) {
ret.push(render(result.value, ret.length, i, i++)); // fixed by xxxxxx
result = iterator.next();
}
} else {
keys = Object.keys(val);
ret = new Array(keys.length);
for (i = 0, l = keys.length; i < l; i++) {
key = keys[i];
ret[i] = render(val[key], key, i, i); // fixed by xxxxxx
}
3 years ago
}
}
3 years ago
if (!isDef(ret)) {
ret = [];
3 years ago
}
3 years ago
(ret)._isVList = true;
return ret
3 years ago
}
3 years ago
/* */
3 years ago
3 years ago
/**
* Runtime helper for rendering <slot>
*/
function renderSlot (
name,
fallback,
props,
bindObject
) {
var scopedSlotFn = this.$scopedSlots[name];
var nodes;
if (scopedSlotFn) { // scoped slot
props = props || {};
if (bindObject) {
if ( true && !isObject(bindObject)) {
warn(
'slot v-bind without argument expects an Object',
this
);
3 years ago
}
3 years ago
props = extend(extend({}, bindObject), props);
3 years ago
}
3 years ago
// fixed by xxxxxx app-plus scopedSlot
nodes = scopedSlotFn(props, this, props._i) || fallback;
} else {
nodes = this.$slots[name] || fallback;
}
3 years ago
3 years ago
var target = props && props.slot;
if (target) {
return this.$createElement('template', { slot: target }, nodes)
} else {
return nodes
3 years ago
}
3 years ago
}
/* */
3 years ago
3 years ago
/**
* Runtime helper for resolving filters
*/
function resolveFilter (id) {
return resolveAsset(this.$options, 'filters', id, true) || identity
3 years ago
}
3 years ago
/* */
3 years ago
3 years ago
function isKeyNotMatch (expect, actual) {
if (Array.isArray(expect)) {
return expect.indexOf(actual) === -1
3 years ago
} else {
3 years ago
return expect !== actual
3 years ago
}
3 years ago
}
/**
* Runtime helper for checking keyCodes from config.
* exposed as Vue.prototype._k
* passing in eventKeyName as last argument separately for backwards compat
*/
function checkKeyCodes (
eventKeyCode,
key,
builtInKeyCode,
eventKeyName,
builtInKeyName
) {
var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;
if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {
return isKeyNotMatch(builtInKeyName, eventKeyName)
} else if (mappedKeyCode) {
return isKeyNotMatch(mappedKeyCode, eventKeyCode)
} else if (eventKeyName) {
return hyphenate(eventKeyName) !== key
3 years ago
}
3 years ago
}
3 years ago
3 years ago
/* */
/**
* Runtime helper for merging v-bind="object" into a VNode's data.
*/
function bindObjectProps (
data,
tag,
value,
asProp,
isSync
) {
if (value) {
if (!isObject(value)) {
true && warn(
'v-bind without argument expects an Object or Array value',
this
);
3 years ago
} else {
3 years ago
if (Array.isArray(value)) {
value = toObject(value);
}
var hash;
var loop = function ( key ) {
if (
key === 'class' ||
key === 'style' ||
isReservedAttribute(key)
) {
hash = data;
} else {
var type = data.attrs && data.attrs.type;
hash = asProp || config.mustUseProp(tag, type, key)
? data.domProps || (data.domProps = {})
: data.attrs || (data.attrs = {});
}
var camelizedKey = camelize(key);
var hyphenatedKey = hyphenate(key);
if (!(camelizedKey in hash) && !(hyphenatedKey in hash)) {
hash[key] = value[key];
if (isSync) {
var on = data.on || (data.on = {});
on[("update:" + key)] = function ($event) {
value[key] = $event;
};
}
}
};
for (var key in value) loop( key );
3 years ago
}
}
3 years ago
return data
3 years ago
}
3 years ago
/* */
3 years ago
3 years ago
/**
* Runtime helper for rendering static trees.
*/
function renderStatic (
index,
isInFor
) {
var cached = this._staticTrees || (this._staticTrees = []);
var tree = cached[index];
// if has already-rendered static tree and not inside v-for,
// we can reuse the same tree.
if (tree && !isInFor) {
return tree
3 years ago
}
3 years ago
// otherwise, render a fresh tree.
tree = cached[index] = this.$options.staticRenderFns[index].call(
this._renderProxy,
null,
this // for render fns generated for functional component templates
);
markStatic(tree, ("__static__" + index), false);
return tree
}
3 years ago
3 years ago
/**
* Runtime helper for v-once.
* Effectively it means marking the node as static with a unique key.
*/
function markOnce (
tree,
index,
key
) {
markStatic(tree, ("__once__" + index + (key ? ("_" + key) : "")), true);
return tree
}
function markStatic (
tree,
key,
isOnce
) {
if (Array.isArray(tree)) {
for (var i = 0; i < tree.length; i++) {
if (tree[i] && typeof tree[i] !== 'string') {
markStaticNode(tree[i], (key + "_" + i), isOnce);
3 years ago
}
}
} else {
3 years ago
markStaticNode(tree, key, isOnce);
}
}
function markStaticNode (node, key, isOnce) {
node.isStatic = true;
node.key = key;
node.isOnce = isOnce;
}
/* */
function bindObjectListeners (data, value) {
if (value) {
if (!isPlainObject(value)) {
true && warn(
'v-on without argument expects an Object value',
this
);
} else {
var on = data.on = data.on ? extend({}, data.on) : {};
for (var key in value) {
var existing = on[key];
var ours = value[key];
on[key] = existing ? [].concat(existing, ours) : ours;
}
3 years ago
}
3 years ago
}
return data
}
/* */
function resolveScopedSlots (
fns, // see flow/vnode
res,
// the following are added in 2.6
hasDynamicKeys,
contentHashKey
) {
res = res || { $stable: !hasDynamicKeys };
for (var i = 0; i < fns.length; i++) {
var slot = fns[i];
if (Array.isArray(slot)) {
resolveScopedSlots(slot, res, hasDynamicKeys);
} else if (slot) {
// marker for reverse proxying v-slot without scope on this.$slots
if (slot.proxy) {
slot.fn.proxy = true;
}
res[slot.key] = slot.fn;
3 years ago
}
3 years ago
}
if (contentHashKey) {
(res).$key = contentHashKey;
}
return res
}
/* */
function bindDynamicKeys (baseObj, values) {
for (var i = 0; i < values.length; i += 2) {
var key = values[i];
if (typeof key === 'string' && key) {
baseObj[values[i]] = values[i + 1];
} else if ( true && key !== '' && key !== null) {
// null is a special value for explicitly removing a binding
warn(
("Invalid value for dynamic directive argument (expected string or null): " + key),
this
);
3 years ago
}
3 years ago
}
return baseObj
}
// helper to dynamically append modifier runtime markers to event names.
// ensure only append when value is already string, otherwise it will be cast
// to string and cause the type check to miss.
function prependModifier (value, symbol) {
return typeof value === 'string' ? symbol + value : value
}
/* */
function installRenderHelpers (target) {
target._o = markOnce;
target._n = toNumber;
target._s = toString;
target._l = renderList;
target._t = renderSlot;
target._q = looseEqual;
target._i = looseIndexOf;
target._m = renderStatic;
target._f = resolveFilter;
target._k = checkKeyCodes;
target._b = bindObjectProps;
target._v = createTextVNode;
target._e = createEmptyVNode;
target._u = resolveScopedSlots;
target._g = bindObjectListeners;
target._d = bindDynamicKeys;
target._p = prependModifier;
}
/* */
function FunctionalRenderContext (
data,
props,
children,
parent,
Ctor
) {
var this$1 = this;
var options = Ctor.options;
// ensure the createElement function in functional components
// gets a unique context - this is necessary for correct named slot check
var contextVm;
if (hasOwn(parent, '_uid')) {
contextVm = Object.create(parent);
// $flow-disable-line
contextVm._original = parent;
} else {
// the context vm passed in is a functional context as well.
// in this case we want to make sure we are able to get a hold to the
// real context instance.
contextVm = parent;
// $flow-disable-line
parent = parent._original;
}
var isCompiled = isTrue(options._compiled);
var needNormalization = !isCompiled;
this.data = data;
this.props = props;
this.children = children;
this.parent = parent;
this.listeners = data.on || emptyObject;
this.injections = resolveInject(options.inject, parent);
this.slots = function () {
if (!this$1.$slots) {
normalizeScopedSlots(
data.scopedSlots,
this$1.$slots = resolveSlots(children, parent)
);
3 years ago
}
3 years ago
return this$1.$slots
};
Object.defineProperty(this, 'scopedSlots', ({
enumerable: true,
get: function get () {
return normalizeScopedSlots(data.scopedSlots, this.slots())
3 years ago
}
3 years ago
}));
// support for compiled functional template
if (isCompiled) {
// exposing $options for renderStatic()
this.$options = options;
// pre-resolve slots for renderSlot()
this.$slots = this.slots();
this.$scopedSlots = normalizeScopedSlots(data.scopedSlots, this.$slots);
3 years ago
}
3 years ago
if (options._scopeId) {
this._c = function (a, b, c, d) {
var vnode = createElement(contextVm, a, b, c, d, needNormalization);
if (vnode && !Array.isArray(vnode)) {
vnode.fnScopeId = options._scopeId;
vnode.fnContext = parent;
}
return vnode
};
} else {
this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };
3 years ago
}
3 years ago
}
installRenderHelpers(FunctionalRenderContext.prototype);
function createFunctionalComponent (
Ctor,
propsData,
data,
contextVm,
children
) {
var options = Ctor.options;
var props = {};
var propOptions = options.props;
if (isDef(propOptions)) {
for (var key in propOptions) {
props[key] = validateProp(key, propOptions, propsData || emptyObject);
}
} else {
if (isDef(data.attrs)) { mergeProps(props, data.attrs); }
if (isDef(data.props)) { mergeProps(props, data.props); }
}
var renderContext = new FunctionalRenderContext(
data,
props,
children,
contextVm,
Ctor
);
var vnode = options.render.call(null, renderContext._c, renderContext);
3 years ago
3 years ago
if (vnode instanceof VNode) {
return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options, renderContext)
} else if (Array.isArray(vnode)) {
var vnodes = normalizeChildren(vnode) || [];
var res = new Array(vnodes.length);
for (var i = 0; i < vnodes.length; i++) {
res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options, renderContext);
}
return res
}
3 years ago
}
3 years ago
function cloneAndMarkFunctionalResult (vnode, data, contextVm, options, renderContext) {
// #7817 clone node before setting fnContext, otherwise if the node is reused
// (e.g. it was from a cached normal slot) the fnContext causes named slots
// that should not be matched to match.
var clone = cloneVNode(vnode);
clone.fnContext = contextVm;
clone.fnOptions = options;
if (true) {
(clone.devtoolsMeta = clone.devtoolsMeta || {}).renderContext = renderContext;
}
if (data.slot) {
(clone.data || (clone.data = {})).slot = data.slot;
}
return clone
}
function mergeProps (to, from) {
for (var key in from) {
to[camelize(key)] = from[key];
}
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
/* */
/* */
/* */
// inline hooks to be invoked on component VNodes during patch
var componentVNodeHooks = {
init: function init (vnode, hydrating) {
if (
vnode.componentInstance &&
!vnode.componentInstance._isDestroyed &&
vnode.data.keepAlive
) {
// kept-alive components, treat as a patch
var mountedNode = vnode; // work around flow
componentVNodeHooks.prepatch(mountedNode, mountedNode);
3 years ago
} else {
3 years ago
var child = vnode.componentInstance = createComponentInstanceForVnode(
vnode,
activeInstance
);
child.$mount(hydrating ? vnode.elm : undefined, hydrating);
3 years ago
}
3 years ago
},
3 years ago
3 years ago
prepatch: function prepatch (oldVnode, vnode) {
var options = vnode.componentOptions;
var child = vnode.componentInstance = oldVnode.componentInstance;
updateChildComponent(
child,
options.propsData, // updated props
options.listeners, // updated listeners
vnode, // new parent vnode
options.children // new children
);
},
insert: function insert (vnode) {
var context = vnode.context;
var componentInstance = vnode.componentInstance;
if (!componentInstance._isMounted) {
callHook(componentInstance, 'onServiceCreated');
callHook(componentInstance, 'onServiceAttached');
componentInstance._isMounted = true;
callHook(componentInstance, 'mounted');
}
if (vnode.data.keepAlive) {
if (context._isMounted) {
// vue-router#1212
// During updates, a kept-alive component's child components may
// change, so directly walking the tree here may call activated hooks
// on incorrect children. Instead we push them into a queue which will
// be processed after the whole patch process ended.
queueActivatedComponent(componentInstance);
3 years ago
} else {
3 years ago
activateChildComponent(componentInstance, true /* direct */);
3 years ago
}
}
3 years ago
},
3 years ago
3 years ago
destroy: function destroy (vnode) {
var componentInstance = vnode.componentInstance;
if (!componentInstance._isDestroyed) {
if (!vnode.data.keepAlive) {
componentInstance.$destroy();
3 years ago
} else {
3 years ago
deactivateChildComponent(componentInstance, true /* direct */);
3 years ago
}
}
3 years ago
}
};
var hooksToMerge = Object.keys(componentVNodeHooks);
function createComponent (
Ctor,
data,
context,
children,
tag
) {
if (isUndef(Ctor)) {
return
}
var baseCtor = context.$options._base;
// plain options object: turn it into a constructor
if (isObject(Ctor)) {
Ctor = baseCtor.extend(Ctor);
}
// if at this stage it's not a constructor or an async component factory,
// reject.
if (typeof Ctor !== 'function') {
if (true) {
warn(("Invalid Component definition: " + (String(Ctor))), context);
3 years ago
}
3 years ago
return
}
// async component
var asyncFactory;
if (isUndef(Ctor.cid)) {
asyncFactory = Ctor;
Ctor = resolveAsyncComponent(asyncFactory, baseCtor);
if (Ctor === undefined) {
// return a placeholder node for async component, which is rendered
// as a comment node but preserves all the raw information for the node.
// the information will be used for async server-rendering and hydration.
return createAsyncPlaceholder(
asyncFactory,
data,
context,
children,
tag
)
3 years ago
}
}
3 years ago
data = data || {};
3 years ago
3 years ago
// resolve constructor options in case global mixins are applied after
// component constructor creation
resolveConstructorOptions(Ctor);
// transform component v-model data into props & events
if (isDef(data.model)) {
transformModel(Ctor.options, data);
}
// extract props
var propsData = extractPropsFromVNodeData(data, Ctor, tag, context); // fixed by xxxxxx
// functional component
if (isTrue(Ctor.options.functional)) {
return createFunctionalComponent(Ctor, propsData, data, context, children)
}
// extract listeners, since these needs to be treated as
// child component listeners instead of DOM listeners
var listeners = data.on;
// replace with listeners with .native modifier
// so it gets processed during parent component patch.
data.on = data.nativeOn;
if (isTrue(Ctor.options.abstract)) {
// abstract components do not keep anything
// other than props & listeners & slot
// work around flow
var slot = data.slot;
data = {};
if (slot) {
data.slot = slot;
}
3 years ago
}
3 years ago
// install component management hooks onto the placeholder node
installComponentHooks(data);
3 years ago
3 years ago
// return a placeholder vnode
var name = Ctor.options.name || tag;
var vnode = new VNode(
("vue-component-" + (Ctor.cid) + (name ? ("-" + name) : '')),
data, undefined, undefined, undefined, context,
{ Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },
asyncFactory
);
3 years ago
3 years ago
return vnode
3 years ago
}
3 years ago
function createComponentInstanceForVnode (
vnode, // we know it's MountedComponentVNode but flow doesn't
parent // activeInstance in lifecycle state
) {
var options = {
_isComponent: true,
_parentVnode: vnode,
parent: parent
};
// check inline-template render functions
var inlineTemplate = vnode.data.inlineTemplate;
if (isDef(inlineTemplate)) {
options.render = inlineTemplate.render;
options.staticRenderFns = inlineTemplate.staticRenderFns;
}
return new vnode.componentOptions.Ctor(options)
3 years ago
}
3 years ago
function installComponentHooks (data) {
var hooks = data.hook || (data.hook = {});
for (var i = 0; i < hooksToMerge.length; i++) {
var key = hooksToMerge[i];
var existing = hooks[key];
var toMerge = componentVNodeHooks[key];
if (existing !== toMerge && !(existing && existing._merged)) {
hooks[key] = existing ? mergeHook$1(toMerge, existing) : toMerge;
3 years ago
}
}
}
3 years ago
function mergeHook$1 (f1, f2) {
var merged = function (a, b) {
// flow complains about extra args which is why we use any
f1(a, b);
f2(a, b);
};
merged._merged = true;
return merged
}
3 years ago
3 years ago
// transform component v-model info (value and callback) into
// prop and event handler respectively.
function transformModel (options, data) {
var prop = (options.model && options.model.prop) || 'value';
var event = (options.model && options.model.event) || 'input'
;(data.attrs || (data.attrs = {}))[prop] = data.model.value;
var on = data.on || (data.on = {});
var existing = on[event];
var callback = data.model.callback;
if (isDef(existing)) {
if (
Array.isArray(existing)
? existing.indexOf(callback) === -1
: existing !== callback
) {
on[event] = [callback].concat(existing);
}
} else {
on[event] = callback;
}
3 years ago
}
3 years ago
/* */
3 years ago
3 years ago
var SIMPLE_NORMALIZE = 1;
var ALWAYS_NORMALIZE = 2;
3 years ago
3 years ago
// wrapper function for providing a more flexible interface
// without getting yelled at by flow
function createElement (
context,
tag,
data,
children,
normalizationType,
alwaysNormalize
) {
if (Array.isArray(data) || isPrimitive(data)) {
normalizationType = children;
children = data;
data = undefined;
3 years ago
}
3 years ago
if (isTrue(alwaysNormalize)) {
normalizationType = ALWAYS_NORMALIZE;
3 years ago
}
3 years ago
return _createElement(context, tag, data, children, normalizationType)
}
function _createElement (
context,
tag,
data,
children,
normalizationType
) {
if (isDef(data) && isDef((data).__ob__)) {
true && warn(
"Avoid using observed data object as vnode data: " + (JSON.stringify(data)) + "\n" +
'Always create fresh vnode data objects in each render!',
context
);
return createEmptyVNode()
3 years ago
}
3 years ago
// object syntax in v-bind
if (isDef(data) && isDef(data.is)) {
tag = data.is;
3 years ago
}
3 years ago
if (!tag) {
// in case of component :is set to falsy value
return createEmptyVNode()
3 years ago
}
3 years ago
// warn against non-primitive key
if ( true &&
isDef(data) && isDef(data.key) && !isPrimitive(data.key)
) {
{
warn(
'Avoid using non-primitive value as key, ' +
'use string/number value instead.',
context
);
}
3 years ago
}
3 years ago
// support single function children as default scoped slot
if (Array.isArray(children) &&
typeof children[0] === 'function'
) {
data = data || {};
data.scopedSlots = { default: children[0] };
children.length = 0;
3 years ago
}
3 years ago
if (normalizationType === ALWAYS_NORMALIZE) {
children = normalizeChildren(children);
} else if (normalizationType === SIMPLE_NORMALIZE) {
children = simpleNormalizeChildren(children);
}
var vnode, ns;
if (typeof tag === 'string') {
var Ctor;
ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);
if (config.isReservedTag(tag)) {
// platform built-in elements
if ( true && isDef(data) && isDef(data.nativeOn)) {
warn(
("The .native modifier for v-on is only valid on components but it was used on <" + tag + ">."),
context
);
3 years ago
}
3 years ago
vnode = new VNode(
config.parsePlatformTagName(tag), data, children,
undefined, undefined, context
);
} else if ((!data || !data.pre) && isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {
// component
vnode = createComponent(Ctor, data, context, children, tag);
} else {
// unknown or unlisted namespaced elements
// check at runtime because it may get assigned a namespace when its
// parent normalizes children
vnode = new VNode(
tag, data, children,
undefined, undefined, context
);
3 years ago
}
3 years ago
} else {
// direct component options / constructor
vnode = createComponent(tag, data, context, children);
3 years ago
}
3 years ago
if (Array.isArray(vnode)) {
return vnode
} else if (isDef(vnode)) {
if (isDef(ns)) { applyNS(vnode, ns); }
if (isDef(data)) { registerDeepBindings(data); }
return vnode
3 years ago
} else {
3 years ago
return createEmptyVNode()
3 years ago
}
}
3 years ago
function applyNS (vnode, ns, force) {
vnode.ns = ns;
if (vnode.tag === 'foreignObject') {
// use default namespace inside foreignObject
ns = undefined;
force = true;
3 years ago
}
3 years ago
if (isDef(vnode.children)) {
for (var i = 0, l = vnode.children.length; i < l; i++) {
var child = vnode.children[i];
if (isDef(child.tag) && (
isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {
applyNS(child, ns, force);
3 years ago
}
}
}
}
3 years ago
// ref #5318
// necessary to ensure parent re-render when deep bindings like :style and
// :class are used on slot nodes
function registerDeepBindings (data) {
if (isObject(data.style)) {
traverse(data.style);
3 years ago
}
3 years ago
if (isObject(data.class)) {
traverse(data.class);
}
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
function initRender (vm) {
vm._vnode = null; // the root of the child tree
vm._staticTrees = null; // v-once cached trees
var options = vm.$options;
var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree
var renderContext = parentVnode && parentVnode.context;
vm.$slots = resolveSlots(options._renderChildren, renderContext);
vm.$scopedSlots = emptyObject;
// bind the createElement fn to this instance
// so that we get proper render context inside it.
// args order: tag, data, children, normalizationType, alwaysNormalize
// internal version is used by render functions compiled from templates
vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };
// normalization is always applied for the public version, used in
// user-written render functions.
vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };
3 years ago
3 years ago
// $attrs & $listeners are exposed for easier HOC creation.
// they need to be reactive so that HOCs using them are always updated
var parentData = parentVnode && parentVnode.data;
/* istanbul ignore else */
if (true) {
defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {
!isUpdatingChildComponent && warn("$attrs is readonly.", vm);
}, true);
defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, function () {
!isUpdatingChildComponent && warn("$listeners is readonly.", vm);
}, true);
} else {}
3 years ago
}
3 years ago
var currentRenderingInstance = null;
function renderMixin (Vue) {
// install runtime convenience helpers
installRenderHelpers(Vue.prototype);
Vue.prototype.$nextTick = function (fn) {
return nextTick(fn, this)
};
Vue.prototype._render = function () {
var vm = this;
var ref = vm.$options;
var render = ref.render;
var _parentVnode = ref._parentVnode;
if (_parentVnode) {
vm.$scopedSlots = normalizeScopedSlots(
_parentVnode.data.scopedSlots,
vm.$slots,
vm.$scopedSlots
);
3 years ago
}
3 years ago
// set parent vnode. this allows render functions to have access
// to the data on the placeholder node.
vm.$vnode = _parentVnode;
// render self
var vnode;
try {
// There's no need to maintain a stack because all render fns are called
// separately from one another. Nested component's render fns are called
// when parent component is patched.
currentRenderingInstance = vm;
vnode = render.call(vm._renderProxy, vm.$createElement);
} catch (e) {
handleError(e, vm, "render");
// return error render result,
// or previous vnode to prevent render error causing blank component
/* istanbul ignore else */
if ( true && vm.$options.renderError) {
try {
vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);
} catch (e) {
handleError(e, vm, "renderError");
vnode = vm._vnode;
3 years ago
}
3 years ago
} else {
vnode = vm._vnode;
3 years ago
}
3 years ago
} finally {
currentRenderingInstance = null;
}
// if the returned array contains only a single node, allow it
if (Array.isArray(vnode) && vnode.length === 1) {
vnode = vnode[0];
}
// return empty vnode in case the render function errored out
if (!(vnode instanceof VNode)) {
if ( true && Array.isArray(vnode)) {
warn(
'Multiple root nodes returned from render function. Render function ' +
'should return a single root node.',
vm
);
3 years ago
}
3 years ago
vnode = createEmptyVNode();
3 years ago
}
3 years ago
// set parent
vnode.parent = _parentVnode;
return vnode
};
}
/* */
function ensureCtor (comp, base) {
if (
comp.__esModule ||
(hasSymbol && comp[Symbol.toStringTag] === 'Module')
) {
comp = comp.default;
3 years ago
}
3 years ago
return isObject(comp)
? base.extend(comp)
: comp
3 years ago
}
3 years ago
function createAsyncPlaceholder (
factory,
data,
context,
children,
tag
) {
var node = createEmptyVNode();
node.asyncFactory = factory;
node.asyncMeta = { data: data, context: context, children: children, tag: tag };
return node
}
3 years ago
3 years ago
function resolveAsyncComponent (
factory,
baseCtor
) {
if (isTrue(factory.error) && isDef(factory.errorComp)) {
return factory.errorComp
}
if (isDef(factory.resolved)) {
return factory.resolved
}
var owner = currentRenderingInstance;
if (owner && isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {
// already pending
factory.owners.push(owner);
}
if (isTrue(factory.loading) && isDef(factory.loadingComp)) {
return factory.loadingComp
}
if (owner && !isDef(factory.owners)) {
var owners = factory.owners = [owner];
var sync = true;
var timerLoading = null;
var timerTimeout = null
;(owner).$on('hook:destroyed', function () { return remove(owners, owner); });
var forceRender = function (renderCompleted) {
for (var i = 0, l = owners.length; i < l; i++) {
(owners[i]).$forceUpdate();
}
if (renderCompleted) {
owners.length = 0;
if (timerLoading !== null) {
clearTimeout(timerLoading);
timerLoading = null;
3 years ago
}
3 years ago
if (timerTimeout !== null) {
clearTimeout(timerTimeout);
timerTimeout = null;
3 years ago
}
}
3 years ago
};
var resolve = once(function (res) {
// cache resolved
factory.resolved = ensureCtor(res, baseCtor);
// invoke callbacks only if this is not a synchronous resolve
// (async resolves are shimmed as synchronous during SSR)
if (!sync) {
forceRender(true);
} else {
owners.length = 0;
}
});
var reject = once(function (reason) {
true && warn(
"Failed to resolve async component: " + (String(factory)) +
(reason ? ("\nReason: " + reason) : '')
);
if (isDef(factory.errorComp)) {
factory.error = true;
forceRender(true);
}
});
var res = factory(resolve, reject);
if (isObject(res)) {
if (isPromise(res)) {
// () => Promise
if (isUndef(factory.resolved)) {
res.then(resolve, reject);
3 years ago
}
3 years ago
} else if (isPromise(res.component)) {
res.component.then(resolve, reject);
if (isDef(res.error)) {
factory.errorComp = ensureCtor(res.error, baseCtor);
3 years ago
}
3 years ago
if (isDef(res.loading)) {
factory.loadingComp = ensureCtor(res.loading, baseCtor);
if (res.delay === 0) {
factory.loading = true;
} else {
timerLoading = setTimeout(function () {
timerLoading = null;
if (isUndef(factory.resolved) && isUndef(factory.error)) {
factory.loading = true;
forceRender(false);
}
}, res.delay || 200);
3 years ago
}
}
3 years ago
if (isDef(res.timeout)) {
timerTimeout = setTimeout(function () {
timerTimeout = null;
if (isUndef(factory.resolved)) {
reject(
true
? ("timeout (" + (res.timeout) + "ms)")
: undefined
);
}
}, res.timeout);
3 years ago
}
}
}
3 years ago
sync = false;
// return in case resolved synchronously
return factory.loading
? factory.loadingComp
: factory.resolved
}
}
/* */
function isAsyncPlaceholder (node) {
return node.isComment && node.asyncFactory
}
/* */
function getFirstComponentChild (children) {
if (Array.isArray(children)) {
for (var i = 0; i < children.length; i++) {
var c = children[i];
if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {
return c
}
}
}
}
/* */
/* */
function initEvents (vm) {
vm._events = Object.create(null);
vm._hasHookEvent = false;
// init parent attached events
var listeners = vm.$options._parentListeners;
if (listeners) {
updateComponentListeners(vm, listeners);
}
}
var target;
function add (event, fn) {
target.$on(event, fn);
}
function remove$1 (event, fn) {
target.$off(event, fn);
}
function createOnceHandler (event, fn) {
var _target = target;
return function onceHandler () {
var res = fn.apply(null, arguments);
if (res !== null) {
_target.$off(event, onceHandler);
}
}
}
function updateComponentListeners (
vm,
listeners,
oldListeners
) {
target = vm;
updateListeners(listeners, oldListeners || {}, add, remove$1, createOnceHandler, vm);
target = undefined;
}
function eventsMixin (Vue) {
var hookRE = /^hook:/;
Vue.prototype.$on = function (event, fn) {
var vm = this;
if (Array.isArray(event)) {
for (var i = 0, l = event.length; i < l; i++) {
vm.$on(event[i], fn);
}
} else {
(vm._events[event] || (vm._events[event] = [])).push(fn);
// optimize hook:event cost by using a boolean flag marked at registration
// instead of a hash lookup
if (hookRE.test(event)) {
vm._hasHookEvent = true;
}
}
return vm
};
Vue.prototype.$once = function (event, fn) {
var vm = this;
function on () {
vm.$off(event, on);
fn.apply(vm, arguments);
}
on.fn = fn;
vm.$on(event, on);
return vm
};
3 years ago
3 years ago
Vue.prototype.$off = function (event, fn) {
var vm = this;
// all
if (!arguments.length) {
vm._events = Object.create(null);
return vm
3 years ago
}
3 years ago
// array of events
if (Array.isArray(event)) {
for (var i$1 = 0, l = event.length; i$1 < l; i$1++) {
vm.$off(event[i$1], fn);
3 years ago
}
3 years ago
return vm
}
// specific event
var cbs = vm._events[event];
if (!cbs) {
return vm
}
if (!fn) {
vm._events[event] = null;
return vm
}
// specific handler
var cb;
var i = cbs.length;
while (i--) {
cb = cbs[i];
if (cb === fn || cb.fn === fn) {
cbs.splice(i, 1);
break
3 years ago
}
}
3 years ago
return vm
};
3 years ago
3 years ago
Vue.prototype.$emit = function (event) {
var vm = this;
if (true) {
var lowerCaseEvent = event.toLowerCase();
if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {
tip(
"Event \"" + lowerCaseEvent + "\" is emitted in component " +
(formatComponentName(vm)) + " but the handler is registered for \"" + event + "\". " +
"Note that HTML attributes are case-insensitive and you cannot use " +
"v-on to listen to camelCase events when using in-DOM templates. " +
"You should probably use \"" + (hyphenate(event)) + "\" instead of \"" + event + "\"."
);
}
}
var cbs = vm._events[event];
if (cbs) {
cbs = cbs.length > 1 ? toArray(cbs) : cbs;
var args = toArray(arguments, 1);
var info = "event handler for \"" + event + "\"";
for (var i = 0, l = cbs.length; i < l; i++) {
invokeWithErrorHandling(cbs[i], vm, args, vm, info);
}
}
return vm
};
3 years ago
}
3 years ago
/* */
3 years ago
3 years ago
var activeInstance = null;
var isUpdatingChildComponent = false;
function setActiveInstance(vm) {
var prevActiveInstance = activeInstance;
activeInstance = vm;
return function () {
activeInstance = prevActiveInstance;
}
3 years ago
}
3 years ago
function initLifecycle (vm) {
var options = vm.$options;
// locate first non-abstract parent
var parent = options.parent;
if (parent && !options.abstract) {
while (parent.$options.abstract && parent.$parent) {
parent = parent.$parent;
3 years ago
}
3 years ago
parent.$children.push(vm);
}
3 years ago
3 years ago
vm.$parent = parent;
vm.$root = parent ? parent.$root : vm;
3 years ago
3 years ago
vm.$children = [];
vm.$refs = {};
vm._watcher = null;
vm._inactive = null;
vm._directInactive = false;
vm._isMounted = false;
vm._isDestroyed = false;
vm._isBeingDestroyed = false;
}
function lifecycleMixin (Vue) {
Vue.prototype._update = function (vnode, hydrating) {
var vm = this;
var prevEl = vm.$el;
var prevVnode = vm._vnode;
var restoreActiveInstance = setActiveInstance(vm);
vm._vnode = vnode;
// Vue.prototype.__patch__ is injected in entry points
// based on the rendering backend used.
if (!prevVnode) {
// initial render
vm.$el = vm.__patch__(vm.$el, vnode, hydrating, false /* removeOnly */);
3 years ago
} else {
3 years ago
// updates
vm.$el = vm.__patch__(prevVnode, vnode);
3 years ago
}
3 years ago
restoreActiveInstance();
// update __vue__ reference
if (prevEl) {
prevEl.__vue__ = null;
3 years ago
}
3 years ago
if (vm.$el) {
vm.$el.__vue__ = vm;
}
// if parent is an HOC, update its $el as well
if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {
vm.$parent.$el = vm.$el;
3 years ago
}
3 years ago
// updated hook is called by the scheduler to ensure that children are
// updated in a parent's updated hook.
3 years ago
};
3 years ago
Vue.prototype.$forceUpdate = function () {
var vm = this;
if (vm._watcher) {
vm._watcher.update();
}
};
3 years ago
3 years ago
Vue.prototype.$destroy = function () {
var vm = this;
if (vm._isBeingDestroyed) {
return
3 years ago
}
3 years ago
callHook(vm, 'beforeDestroy');
vm._isBeingDestroyed = true;
// remove self from parent
var parent = vm.$parent;
if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {
remove(parent.$children, vm);
3 years ago
}
3 years ago
// teardown watchers
if (vm._watcher) {
vm._watcher.teardown();
}
var i = vm._watchers.length;
while (i--) {
vm._watchers[i].teardown();
}
// remove reference from data ob
// frozen object may not have observer.
if (vm._data.__ob__) {
vm._data.__ob__.vmCount--;
}
// call the last hook...
vm._isDestroyed = true;
// invoke destroy hooks on current rendered tree
vm.__patch__(vm._vnode, null);
// fire destroyed hook
callHook(vm, 'destroyed');
// turn off all instance listeners.
vm.$off();
// remove __vue__ reference
if (vm.$el) {
vm.$el.__vue__ = null;
}
// release circular reference (#6759)
if (vm.$vnode) {
vm.$vnode.parent = null;
}
};
}
function updateChildComponent (
vm,
propsData,
listeners,
parentVnode,
renderChildren
) {
if (true) {
isUpdatingChildComponent = true;
3 years ago
}
3 years ago
// determine whether component has slot children
// we need to do this before overwriting $options._renderChildren.
3 years ago
3 years ago
// check if there are dynamic scopedSlots (hand-written or compiled but with
// dynamic slot names). Static scoped slots compiled from template has the
// "$stable" marker.
var newScopedSlots = parentVnode.data.scopedSlots;
var oldScopedSlots = vm.$scopedSlots;
var hasDynamicScopedSlot = !!(
(newScopedSlots && !newScopedSlots.$stable) ||
(oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) ||
(newScopedSlots && vm.$scopedSlots.$key !== newScopedSlots.$key)
);
3 years ago
3 years ago
// Any static slot children from the parent may have changed during parent's
// update. Dynamic scoped slots may also have changed. In such cases, a forced
// update is necessary to ensure correctness.
var needsForceUpdate = !!(
renderChildren || // has new static slots
vm.$options._renderChildren || // has old static slots
hasDynamicScopedSlot
);
vm.$options._parentVnode = parentVnode;
vm.$vnode = parentVnode; // update vm's placeholder node without re-render
if (vm._vnode) { // update child tree's parent
vm._vnode.parent = parentVnode;
3 years ago
}
3 years ago
vm.$options._renderChildren = renderChildren;
3 years ago
3 years ago
// update $attrs and $listeners hash
// these are also reactive so they may trigger child update if the child
// used them during render
vm.$attrs = parentVnode.data.attrs || emptyObject;
vm.$listeners = listeners || emptyObject;
// update props
if (propsData && vm.$options.props) {
toggleObserving(false);
var props = vm._props;
var propKeys = vm.$options._propKeys || [];
for (var i = 0; i < propKeys.length; i++) {
var key = propKeys[i];
var propOptions = vm.$options.props; // wtf flow?
props[key] = validateProp(key, propOptions, propsData, vm);
}
toggleObserving(true);
// keep a copy of raw propsData
vm.$options.propsData = propsData;
}
// fixed by xxxxxx update properties(mp runtime)
vm._$updateProperties && vm._$updateProperties(vm);
// update listeners
listeners = listeners || emptyObject;
var oldListeners = vm.$options._parentListeners;
vm.$options._parentListeners = listeners;
updateComponentListeners(vm, listeners, oldListeners);
3 years ago
3 years ago
// resolve slots + force update if has children
if (needsForceUpdate) {
vm.$slots = resolveSlots(renderChildren, parentVnode.context);
vm.$forceUpdate();
3 years ago
}
3 years ago
if (true) {
isUpdatingChildComponent = false;
3 years ago
}
3 years ago
}
3 years ago
3 years ago
function isInInactiveTree (vm) {
while (vm && (vm = vm.$parent)) {
if (vm._inactive) { return true }
3 years ago
}
3 years ago
return false
}
3 years ago
3 years ago
function activateChildComponent (vm, direct) {
if (direct) {
vm._directInactive = false;
if (isInInactiveTree(vm)) {
return
}
} else if (vm._directInactive) {
return
}
if (vm._inactive || vm._inactive === null) {
vm._inactive = false;
for (var i = 0; i < vm.$children.length; i++) {
activateChildComponent(vm.$children[i]);
}
callHook(vm, 'activated');
}
}
3 years ago
3 years ago
function deactivateChildComponent (vm, direct) {
if (direct) {
vm._directInactive = true;
if (isInInactiveTree(vm)) {
return
}
}
if (!vm._inactive) {
vm._inactive = true;
for (var i = 0; i < vm.$children.length; i++) {
deactivateChildComponent(vm.$children[i]);
}
callHook(vm, 'deactivated');
}
}
3 years ago
3 years ago
function callHook (vm, hook) {
// #7573 disable dep collection when invoking lifecycle hooks
pushTarget();
var handlers = vm.$options[hook];
var info = hook + " hook";
if (handlers) {
for (var i = 0, j = handlers.length; i < j; i++) {
invokeWithErrorHandling(handlers[i], vm, null, vm, info);
}
}
if (vm._hasHookEvent) {
vm.$emit('hook:' + hook);
}
popTarget();
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
var MAX_UPDATE_COUNT = 100;
3 years ago
3 years ago
var queue = [];
var activatedChildren = [];
var has = {};
var circular = {};
var waiting = false;
var flushing = false;
var index = 0;
3 years ago
3 years ago
/**
* Reset the scheduler's state.
*/
function resetSchedulerState () {
index = queue.length = activatedChildren.length = 0;
has = {};
if (true) {
circular = {};
}
waiting = flushing = false;
}
3 years ago
3 years ago
// Async edge case #6566 requires saving the timestamp when event listeners are
// attached. However, calling performance.now() has a perf overhead especially
// if the page has thousands of event listeners. Instead, we take a timestamp
// every time the scheduler flushes and use that for all event listeners
// attached during that flush.
var currentFlushTimestamp = 0;
3 years ago
3 years ago
// Async edge case fix requires storing an event listener's attach timestamp.
var getNow = Date.now;
3 years ago
3 years ago
// Determine what event timestamp the browser is using. Annoyingly, the
// timestamp can either be hi-res (relative to page load) or low-res
// (relative to UNIX epoch), so in order to compare time we have to use the
// same timestamp type when saving the flush timestamp.
// All IE versions use low-res event timestamps, and have problematic clock
// implementations (#9632)
if (inBrowser && !isIE) {
var performance = window.performance;
if (
performance &&
typeof performance.now === 'function' &&
getNow() > document.createEvent('Event').timeStamp
) {
// if the event timestamp, although evaluated AFTER the Date.now(), is
// smaller than it, it means the event is using a hi-res timestamp,
// and we need to use the hi-res version for event listener timestamps as
// well.
getNow = function () { return performance.now(); };
}
}
/**
* Flush both queues and run the watchers.
*/
function flushSchedulerQueue () {
currentFlushTimestamp = getNow();
flushing = true;
var watcher, id;
// Sort queue before flush.
// This ensures that:
// 1. Components are updated from parent to child. (because parent is always
// created before the child)
// 2. A component's user watchers are run before its render watcher (because
// user watchers are created before the render watcher)
// 3. If a component is destroyed during a parent component's watcher run,
// its watchers can be skipped.
queue.sort(function (a, b) { return a.id - b.id; });
// do not cache length because more watchers might be pushed
// as we run existing watchers
for (index = 0; index < queue.length; index++) {
watcher = queue[index];
if (watcher.before) {
watcher.before();
}
id = watcher.id;
has[id] = null;
watcher.run();
// in dev build, check and stop circular updates.
if ( true && has[id] != null) {
circular[id] = (circular[id] || 0) + 1;
if (circular[id] > MAX_UPDATE_COUNT) {
warn(
'You may have an infinite update loop ' + (
watcher.user
? ("in watcher with expression \"" + (watcher.expression) + "\"")
: "in a component render function."
),
watcher.vm
);
break
}
}
}
3 years ago
3 years ago
// keep copies of post queues before resetting state
var activatedQueue = activatedChildren.slice();
var updatedQueue = queue.slice();
3 years ago
3 years ago
resetSchedulerState();
3 years ago
3 years ago
// call component updated and activated hooks
callActivatedHooks(activatedQueue);
callUpdatedHooks(updatedQueue);
3 years ago
3 years ago
// devtool hook
/* istanbul ignore if */
if (devtools && config.devtools) {
devtools.emit('flush');
}
}
3 years ago
3 years ago
function callUpdatedHooks (queue) {
var i = queue.length;
while (i--) {
var watcher = queue[i];
var vm = watcher.vm;
if (vm._watcher === watcher && vm._isMounted && !vm._isDestroyed) {
callHook(vm, 'updated');
}
}
3 years ago
}
3 years ago
/**
* Queue a kept-alive component that was activated during patch.
* The queue will be processed after the entire tree has been patched.
*/
function queueActivatedComponent (vm) {
// setting _inactive to false here so that a render function can
// rely on checking whether it's in an inactive tree (e.g. router-view)
vm._inactive = false;
activatedChildren.push(vm);
3 years ago
}
3 years ago
function callActivatedHooks (queue) {
for (var i = 0; i < queue.length; i++) {
queue[i]._inactive = true;
activateChildComponent(queue[i], true /* true */);
}
}
3 years ago
3 years ago
/**
* Push a watcher into the watcher queue.
* Jobs with duplicate IDs will be skipped unless it's
* pushed when the queue is being flushed.
*/
function queueWatcher (watcher) {
var id = watcher.id;
if (has[id] == null) {
has[id] = true;
if (!flushing) {
queue.push(watcher);
} else {
// if already flushing, splice the watcher based on its id
// if already past its id, it will be run next immediately.
var i = queue.length - 1;
while (i > index && queue[i].id > watcher.id) {
i--;
}
queue.splice(i + 1, 0, watcher);
}
// queue the flush
if (!waiting) {
waiting = true;
3 years ago
3 years ago
if ( true && !config.async) {
flushSchedulerQueue();
return
3 years ago
}
3 years ago
nextTick(flushSchedulerQueue);
}
3 years ago
}
3 years ago
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
var uid$2 = 0;
/**
* A watcher parses an expression, collects dependencies,
* and fires callback when the expression value changes.
* This is used for both the $watch() api and directives.
*/
var Watcher = function Watcher (
vm,
expOrFn,
cb,
options,
isRenderWatcher
) {
this.vm = vm;
if (isRenderWatcher) {
vm._watcher = this;
3 years ago
}
3 years ago
vm._watchers.push(this);
// options
if (options) {
this.deep = !!options.deep;
this.user = !!options.user;
this.lazy = !!options.lazy;
this.sync = !!options.sync;
this.before = options.before;
} else {
this.deep = this.user = this.lazy = this.sync = false;
3 years ago
}
3 years ago
this.cb = cb;
this.id = ++uid$2; // uid for batching
this.active = true;
this.dirty = this.lazy; // for lazy watchers
this.deps = [];
this.newDeps = [];
this.depIds = new _Set();
this.newDepIds = new _Set();
this.expression = true
? expOrFn.toString()
: undefined;
// parse expression for getter
if (typeof expOrFn === 'function') {
this.getter = expOrFn;
} else {
this.getter = parsePath(expOrFn);
if (!this.getter) {
this.getter = noop;
true && warn(
"Failed watching path: \"" + expOrFn + "\" " +
'Watcher only accepts simple dot-delimited paths. ' +
'For full control, use a function instead.',
vm
);
}
3 years ago
}
3 years ago
this.value = this.lazy
? undefined
: this.get();
};
3 years ago
3 years ago
/**
* Evaluate the getter, and re-collect dependencies.
*/
Watcher.prototype.get = function get () {
pushTarget(this);
var value;
var vm = this.vm;
try {
value = this.getter.call(vm, vm);
} catch (e) {
if (this.user) {
handleError(e, vm, ("getter for watcher \"" + (this.expression) + "\""));
} else {
throw e
}
} finally {
// "touch" every property so they are all tracked as
// dependencies for deep watching
if (this.deep) {
traverse(value);
}
popTarget();
this.cleanupDeps();
3 years ago
}
3 years ago
return value
};
3 years ago
3 years ago
/**
* Add a dependency to this directive.
*/
Watcher.prototype.addDep = function addDep (dep) {
var id = dep.id;
if (!this.newDepIds.has(id)) {
this.newDepIds.add(id);
this.newDeps.push(dep);
if (!this.depIds.has(id)) {
dep.addSub(this);
}
3 years ago
}
3 years ago
};
/**
* Clean up for dependency collection.
*/
Watcher.prototype.cleanupDeps = function cleanupDeps () {
var i = this.deps.length;
while (i--) {
var dep = this.deps[i];
if (!this.newDepIds.has(dep.id)) {
dep.removeSub(this);
}
3 years ago
}
3 years ago
var tmp = this.depIds;
this.depIds = this.newDepIds;
this.newDepIds = tmp;
this.newDepIds.clear();
tmp = this.deps;
this.deps = this.newDeps;
this.newDeps = tmp;
this.newDeps.length = 0;
};
/**
* Subscriber interface.
* Will be called when a dependency changes.
*/
Watcher.prototype.update = function update () {
/* istanbul ignore else */
if (this.lazy) {
this.dirty = true;
} else if (this.sync) {
this.run();
} else {
queueWatcher(this);
3 years ago
}
3 years ago
};
/**
* Scheduler job interface.
* Will be called by the scheduler.
*/
Watcher.prototype.run = function run () {
if (this.active) {
var value = this.get();
if (
value !== this.value ||
// Deep watchers and watchers on Object/Arrays should fire even
// when the value is the same, because the value may
// have mutated.
isObject(value) ||
this.deep
) {
// set new value
var oldValue = this.value;
this.value = value;
if (this.user) {
try {
this.cb.call(this.vm, value, oldValue);
} catch (e) {
handleError(e, this.vm, ("callback for watcher \"" + (this.expression) + "\""));
}
} else {
this.cb.call(this.vm, value, oldValue);
}
}
3 years ago
}
3 years ago
};
3 years ago
3 years ago
/**
* Evaluate the value of the watcher.
* This only gets called for lazy watchers.
*/
Watcher.prototype.evaluate = function evaluate () {
this.value = this.get();
this.dirty = false;
3 years ago
};
3 years ago
/**
* Depend on all deps collected by this watcher.
*/
Watcher.prototype.depend = function depend () {
var i = this.deps.length;
while (i--) {
this.deps[i].depend();
}
};
3 years ago
3 years ago
/**
* Remove self from all dependencies' subscriber list.
*/
Watcher.prototype.teardown = function teardown () {
if (this.active) {
// remove self from vm's watcher list
// this is a somewhat expensive operation so we skip it
// if the vm is being destroyed.
if (!this.vm._isBeingDestroyed) {
remove(this.vm._watchers, this);
}
var i = this.deps.length;
while (i--) {
this.deps[i].removeSub(this);
}
this.active = false;
}
};
3 years ago
3 years ago
/* */
3 years ago
3 years ago
var sharedPropertyDefinition = {
enumerable: true,
configurable: true,
get: noop,
set: noop
3 years ago
};
3 years ago
function proxy (target, sourceKey, key) {
sharedPropertyDefinition.get = function proxyGetter () {
return this[sourceKey][key]
};
sharedPropertyDefinition.set = function proxySetter (val) {
this[sourceKey][key] = val;
};
Object.defineProperty(target, key, sharedPropertyDefinition);
}
function initState (vm) {
vm._watchers = [];
var opts = vm.$options;
if (opts.props) { initProps(vm, opts.props); }
if (opts.methods) { initMethods(vm, opts.methods); }
if (opts.data) {
initData(vm);
} else {
observe(vm._data = {}, true /* asRootData */);
3 years ago
}
3 years ago
if (opts.computed) { initComputed(vm, opts.computed); }
if (opts.watch && opts.watch !== nativeWatch) {
initWatch(vm, opts.watch);
3 years ago
}
3 years ago
}
function initProps (vm, propsOptions) {
var propsData = vm.$options.propsData || {};
var props = vm._props = {};
// cache prop keys so that future props updates can iterate using Array
// instead of dynamic object key enumeration.
var keys = vm.$options._propKeys = [];
var isRoot = !vm.$parent;
// root instance props should be converted
if (!isRoot) {
toggleObserving(false);
3 years ago
}
3 years ago
var loop = function ( key ) {
keys.push(key);
var value = validateProp(key, propsOptions, propsData, vm);
/* istanbul ignore else */
if (true) {
var hyphenatedKey = hyphenate(key);
if (isReservedAttribute(hyphenatedKey) ||
config.isReservedAttr(hyphenatedKey)) {
warn(
("\"" + hyphenatedKey + "\" is a reserved attribute and cannot be used as component prop."),
vm
);
}
defineReactive$$1(props, key, value, function () {
if (!isRoot && !isUpdatingChildComponent) {
{
if(vm.mpHost === 'mp-baidu' || vm.mpHost === 'mp-kuaishou' || vm.mpHost === 'mp-xhs'){//百度、快手、小红书 observer 在 setData callback 之后触发,直接忽略该 warn
return
}
//fixed by xxxxxx __next_tick_pending,uni://form-field 时不告警
if(
key === 'value' &&
Array.isArray(vm.$options.behaviors) &&
vm.$options.behaviors.indexOf('uni://form-field') !== -1
){
return
}
if(vm._getFormData){
return
}
var $parent = vm.$parent;
while($parent){
if($parent.__next_tick_pending){
return
}
$parent = $parent.$parent;
}
}
warn(
"Avoid mutating a prop directly since the value will be " +
"overwritten whenever the parent component re-renders. " +
"Instead, use a data or computed property based on the prop's " +
"value. Prop being mutated: \"" + key + "\"",
vm
);
}
});
} else {}
// static props are already proxied on the component's prototype
// during Vue.extend(). We only need to proxy props defined at
// instantiation here.
if (!(key in vm)) {
proxy(vm, "_props", key);
}
};
3 years ago
3 years ago
for (var key in propsOptions) loop( key );
toggleObserving(true);
}
3 years ago
3 years ago
function initData (vm) {
var data = vm.$options.data;
data = vm._data = typeof data === 'function'
? getData(data, vm)
: data || {};
if (!isPlainObject(data)) {
data = {};
true && warn(
'data functions should return an object:\n' +
'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',
vm
);
3 years ago
}
3 years ago
// proxy data on instance
var keys = Object.keys(data);
var props = vm.$options.props;
var methods = vm.$options.methods;
var i = keys.length;
while (i--) {
var key = keys[i];
if (true) {
if (methods && hasOwn(methods, key)) {
warn(
("Method \"" + key + "\" has already been defined as a data property."),
vm
);
}
}
if (props && hasOwn(props, key)) {
true && warn(
"The data property \"" + key + "\" is already declared as a prop. " +
"Use prop default value instead.",
vm
);
} else if (!isReserved(key)) {
proxy(vm, "_data", key);
3 years ago
}
}
3 years ago
// observe data
observe(data, true /* asRootData */);
}
3 years ago
3 years ago
function getData (data, vm) {
// #7573 disable dep collection when invoking data getters
pushTarget();
try {
return data.call(vm, vm)
} catch (e) {
handleError(e, vm, "data()");
return {}
} finally {
popTarget();
3 years ago
}
3 years ago
}
3 years ago
3 years ago
var computedWatcherOptions = { lazy: true };
function initComputed (vm, computed) {
// $flow-disable-line
var watchers = vm._computedWatchers = Object.create(null);
// computed properties are just getters during SSR
var isSSR = isServerRendering();
3 years ago
3 years ago
for (var key in computed) {
var userDef = computed[key];
var getter = typeof userDef === 'function' ? userDef : userDef.get;
if ( true && getter == null) {
warn(
("Getter is missing for computed property \"" + key + "\"."),
vm
);
}
3 years ago
3 years ago
if (!isSSR) {
// create internal watcher for the computed property.
watchers[key] = new Watcher(
vm,
getter || noop,
noop,
computedWatcherOptions
);
}
3 years ago
3 years ago
// component-defined computed properties are already defined on the
// component prototype. We only need to define computed properties defined
// at instantiation here.
if (!(key in vm)) {
defineComputed(vm, key, userDef);
} else if (true) {
if (key in vm.$data) {
warn(("The computed property \"" + key + "\" is already defined in data."), vm);
} else if (vm.$options.props && key in vm.$options.props) {
warn(("The computed property \"" + key + "\" is already defined as a prop."), vm);
}
3 years ago
}
}
3 years ago
}
3 years ago
3 years ago
function defineComputed (
target,
key,
userDef
) {
var shouldCache = !isServerRendering();
if (typeof userDef === 'function') {
sharedPropertyDefinition.get = shouldCache
? createComputedGetter(key)
: createGetterInvoker(userDef);
sharedPropertyDefinition.set = noop;
3 years ago
} else {
3 years ago
sharedPropertyDefinition.get = userDef.get
? shouldCache && userDef.cache !== false
? createComputedGetter(key)
: createGetterInvoker(userDef.get)
: noop;
sharedPropertyDefinition.set = userDef.set || noop;
3 years ago
}
3 years ago
if ( true &&
sharedPropertyDefinition.set === noop) {
sharedPropertyDefinition.set = function () {
warn(
("Computed property \"" + key + "\" was assigned to but it has no setter."),
this
);
};
3 years ago
}
3 years ago
Object.defineProperty(target, key, sharedPropertyDefinition);
}
3 years ago
3 years ago
function createComputedGetter (key) {
return function computedGetter () {
var watcher = this._computedWatchers && this._computedWatchers[key];
if (watcher) {
if (watcher.dirty) {
watcher.evaluate();
}
if (Dep.SharedObject.target) {// fixed by xxxxxx
watcher.depend();
}
return watcher.value
}
3 years ago
}
3 years ago
}
function createGetterInvoker(fn) {
return function computedGetter () {
return fn.call(this, this)
}
}
function initMethods (vm, methods) {
var props = vm.$options.props;
for (var key in methods) {
if (true) {
if (typeof methods[key] !== 'function') {
warn(
"Method \"" + key + "\" has type \"" + (typeof methods[key]) + "\" in the component definition. " +
"Did you reference the function correctly?",
vm
);
}
if (props && hasOwn(props, key)) {
warn(
("Method \"" + key + "\" has already been defined as a prop."),
vm
);
}
if ((key in vm) && isReserved(key)) {
warn(
"Method \"" + key + "\" conflicts with an existing Vue instance method. " +
"Avoid defining component methods that start with _ or $."
);
3 years ago
}
}
3 years ago
vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm);
3 years ago
}
3 years ago
}
3 years ago
3 years ago
function initWatch (vm, watch) {
for (var key in watch) {
var handler = watch[key];
if (Array.isArray(handler)) {
for (var i = 0; i < handler.length; i++) {
createWatcher(vm, key, handler[i]);
}
} else {
createWatcher(vm, key, handler);
}
}
}
3 years ago
3 years ago
function createWatcher (
vm,
expOrFn,
handler,
options
) {
if (isPlainObject(handler)) {
options = handler;
handler = handler.handler;
3 years ago
}
3 years ago
if (typeof handler === 'string') {
handler = vm[handler];
3 years ago
}
3 years ago
return vm.$watch(expOrFn, handler, options)
}
3 years ago
3 years ago
function stateMixin (Vue) {
// flow somehow has problems with directly declared definition object
// when using Object.defineProperty, so we have to procedurally build up
// the object here.
var dataDef = {};
dataDef.get = function () { return this._data };
var propsDef = {};
propsDef.get = function () { return this._props };
if (true) {
dataDef.set = function () {
warn(
'Avoid replacing instance root $data. ' +
'Use nested data properties instead.',
this
);
};
propsDef.set = function () {
warn("$props is readonly.", this);
};
}
Object.defineProperty(Vue.prototype, '$data', dataDef);
Object.defineProperty(Vue.prototype, '$props', propsDef);
Vue.prototype.$set = set;
Vue.prototype.$delete = del;
3 years ago
3 years ago
Vue.prototype.$watch = function (
expOrFn,
cb,
options
) {
var vm = this;
if (isPlainObject(cb)) {
return createWatcher(vm, expOrFn, cb, options)
}
options = options || {};
options.user = true;
var watcher = new Watcher(vm, expOrFn, cb, options);
if (options.immediate) {
try {
cb.call(vm, watcher.value);
} catch (error) {
handleError(error, vm, ("callback for immediate watcher \"" + (watcher.expression) + "\""));
3 years ago
}
}
3 years ago
return function unwatchFn () {
watcher.teardown();
}
};
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
var uid$3 = 0;
3 years ago
3 years ago
function initMixin (Vue) {
Vue.prototype._init = function (options) {
var vm = this;
// a uid
vm._uid = uid$3++;
3 years ago
3 years ago
var startTag, endTag;
/* istanbul ignore if */
if ( true && config.performance && mark) {
startTag = "vue-perf-start:" + (vm._uid);
endTag = "vue-perf-end:" + (vm._uid);
mark(startTag);
3 years ago
}
3 years ago
// a flag to avoid this being observed
vm._isVue = true;
// merge options
if (options && options._isComponent) {
// optimize internal component instantiation
// since dynamic options merging is pretty slow, and none of the
// internal component options needs special treatment.
initInternalComponent(vm, options);
} else {
vm.$options = mergeOptions(
resolveConstructorOptions(vm.constructor),
options || {},
vm
);
3 years ago
}
3 years ago
/* istanbul ignore else */
if (true) {
initProxy(vm);
} else {}
// expose real self
vm._self = vm;
initLifecycle(vm);
initEvents(vm);
initRender(vm);
callHook(vm, 'beforeCreate');
!vm._$fallback && initInjections(vm); // resolve injections before data/props
initState(vm);
!vm._$fallback && initProvide(vm); // resolve provide after data/props
!vm._$fallback && callHook(vm, 'created');
3 years ago
3 years ago
/* istanbul ignore if */
if ( true && config.performance && mark) {
vm._name = formatComponentName(vm, false);
mark(endTag);
measure(("vue " + (vm._name) + " init"), startTag, endTag);
}
3 years ago
3 years ago
if (vm.$options.el) {
vm.$mount(vm.$options.el);
3 years ago
}
3 years ago
};
}
3 years ago
3 years ago
function initInternalComponent (vm, options) {
var opts = vm.$options = Object.create(vm.constructor.options);
// doing this because it's faster than dynamic enumeration.
var parentVnode = options._parentVnode;
opts.parent = options.parent;
opts._parentVnode = parentVnode;
3 years ago
3 years ago
var vnodeComponentOptions = parentVnode.componentOptions;
opts.propsData = vnodeComponentOptions.propsData;
opts._parentListeners = vnodeComponentOptions.listeners;
opts._renderChildren = vnodeComponentOptions.children;
opts._componentTag = vnodeComponentOptions.tag;
3 years ago
3 years ago
if (options.render) {
opts.render = options.render;
opts.staticRenderFns = options.staticRenderFns;
3 years ago
}
3 years ago
}
3 years ago
3 years ago
function resolveConstructorOptions (Ctor) {
var options = Ctor.options;
if (Ctor.super) {
var superOptions = resolveConstructorOptions(Ctor.super);
var cachedSuperOptions = Ctor.superOptions;
if (superOptions !== cachedSuperOptions) {
// super option changed,
// need to resolve new options.
Ctor.superOptions = superOptions;
// check if there are any late-modified/attached options (#4976)
var modifiedOptions = resolveModifiedOptions(Ctor);
// update base extend options
if (modifiedOptions) {
extend(Ctor.extendOptions, modifiedOptions);
}
options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);
if (options.name) {
options.components[options.name] = Ctor;
}
}
}
return options
}
3 years ago
3 years ago
function resolveModifiedOptions (Ctor) {
var modified;
var latest = Ctor.options;
var sealed = Ctor.sealedOptions;
for (var key in latest) {
if (latest[key] !== sealed[key]) {
if (!modified) { modified = {}; }
modified[key] = latest[key];
3 years ago
}
}
3 years ago
return modified
}
3 years ago
3 years ago
function Vue (options) {
if ( true &&
!(this instanceof Vue)
) {
warn('Vue is a constructor and should be called with the `new` keyword');
}
this._init(options);
}
3 years ago
3 years ago
initMixin(Vue);
stateMixin(Vue);
eventsMixin(Vue);
lifecycleMixin(Vue);
renderMixin(Vue);
/* */
3 years ago
3 years ago
function initUse (Vue) {
Vue.use = function (plugin) {
var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));
if (installedPlugins.indexOf(plugin) > -1) {
return this
3 years ago
}
3 years ago
// additional parameters
var args = toArray(arguments, 1);
args.unshift(this);
if (typeof plugin.install === 'function') {
plugin.install.apply(plugin, args);
} else if (typeof plugin === 'function') {
plugin.apply(null, args);
}
installedPlugins.push(plugin);
return this
};
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
function initMixin$1 (Vue) {
Vue.mixin = function (mixin) {
this.options = mergeOptions(this.options, mixin);
return this
};
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
function initExtend (Vue) {
/**
* Each instance constructor, including Vue, has a unique
* cid. This enables us to create wrapped "child
* constructors" for prototypal inheritance and cache them.
*/
Vue.cid = 0;
var cid = 1;
3 years ago
3 years ago
/**
* Class inheritance
*/
Vue.extend = function (extendOptions) {
extendOptions = extendOptions || {};
var Super = this;
var SuperId = Super.cid;
var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});
if (cachedCtors[SuperId]) {
return cachedCtors[SuperId]
}
3 years ago
3 years ago
var name = extendOptions.name || Super.options.name;
if ( true && name) {
validateComponentName(name);
}
3 years ago
3 years ago
var Sub = function VueComponent (options) {
this._init(options);
};
Sub.prototype = Object.create(Super.prototype);
Sub.prototype.constructor = Sub;
Sub.cid = cid++;
Sub.options = mergeOptions(
Super.options,
extendOptions
);
Sub['super'] = Super;
3 years ago
3 years ago
// For props and computed properties, we define the proxy getters on
// the Vue instances at extension time, on the extended prototype. This
// avoids Object.defineProperty calls for each instance created.
if (Sub.options.props) {
initProps$1(Sub);
}
if (Sub.options.computed) {
initComputed$1(Sub);
}
3 years ago
3 years ago
// allow further extension/mixin/plugin usage
Sub.extend = Super.extend;
Sub.mixin = Super.mixin;
Sub.use = Super.use;
3 years ago
3 years ago
// create asset registers, so extended classes
// can have their private assets too.
ASSET_TYPES.forEach(function (type) {
Sub[type] = Super[type];
});
// enable recursive self-lookup
if (name) {
Sub.options.components[name] = Sub;
}
3 years ago
3 years ago
// keep a reference to the super options at extension time.
// later at instantiation we can check if Super's options have
// been updated.
Sub.superOptions = Super.options;
Sub.extendOptions = extendOptions;
Sub.sealedOptions = extend({}, Sub.options);
3 years ago
3 years ago
// cache constructor
cachedCtors[SuperId] = Sub;
return Sub
};
}
3 years ago
3 years ago
function initProps$1 (Comp) {
var props = Comp.options.props;
for (var key in props) {
proxy(Comp.prototype, "_props", key);
}
}
function initComputed$1 (Comp) {
var computed = Comp.options.computed;
for (var key in computed) {
defineComputed(Comp.prototype, key, computed[key]);
}
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
function initAssetRegisters (Vue) {
/**
* Create asset registration methods.
*/
ASSET_TYPES.forEach(function (type) {
Vue[type] = function (
id,
definition
) {
if (!definition) {
return this.options[type + 's'][id]
3 years ago
} else {
3 years ago
/* istanbul ignore if */
if ( true && type === 'component') {
validateComponentName(id);
}
if (type === 'component' && isPlainObject(definition)) {
definition.name = definition.name || id;
definition = this.options._base.extend(definition);
}
if (type === 'directive' && typeof definition === 'function') {
definition = { bind: definition, update: definition };
}
this.options[type + 's'][id] = definition;
return definition
3 years ago
}
3 years ago
};
});
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
function getComponentName (opts) {
return opts && (opts.Ctor.options.name || opts.tag)
}
3 years ago
3 years ago
function matches (pattern, name) {
if (Array.isArray(pattern)) {
return pattern.indexOf(name) > -1
} else if (typeof pattern === 'string') {
return pattern.split(',').indexOf(name) > -1
} else if (isRegExp(pattern)) {
return pattern.test(name)
}
/* istanbul ignore next */
return false
}
3 years ago
3 years ago
function pruneCache (keepAliveInstance, filter) {
var cache = keepAliveInstance.cache;
var keys = keepAliveInstance.keys;
var _vnode = keepAliveInstance._vnode;
for (var key in cache) {
var cachedNode = cache[key];
if (cachedNode) {
var name = getComponentName(cachedNode.componentOptions);
if (name && !filter(name)) {
pruneCacheEntry(cache, key, keys, _vnode);
}
}
}
}
3 years ago
3 years ago
function pruneCacheEntry (
cache,
key,
keys,
current
) {
var cached$$1 = cache[key];
if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {
cached$$1.componentInstance.$destroy();
}
cache[key] = null;
remove(keys, key);
}
3 years ago
3 years ago
var patternTypes = [String, RegExp, Array];
3 years ago
3 years ago
var KeepAlive = {
name: 'keep-alive',
abstract: true,
3 years ago
3 years ago
props: {
include: patternTypes,
exclude: patternTypes,
max: [String, Number]
},
3 years ago
3 years ago
created: function created () {
this.cache = Object.create(null);
this.keys = [];
},
3 years ago
3 years ago
destroyed: function destroyed () {
for (var key in this.cache) {
pruneCacheEntry(this.cache, key, this.keys);
}
},
3 years ago
3 years ago
mounted: function mounted () {
var this$1 = this;
this.$watch('include', function (val) {
pruneCache(this$1, function (name) { return matches(val, name); });
});
this.$watch('exclude', function (val) {
pruneCache(this$1, function (name) { return !matches(val, name); });
});
},
render: function render () {
var slot = this.$slots.default;
var vnode = getFirstComponentChild(slot);
var componentOptions = vnode && vnode.componentOptions;
if (componentOptions) {
// check pattern
var name = getComponentName(componentOptions);
var ref = this;
var include = ref.include;
var exclude = ref.exclude;
if (
// not included
(include && (!name || !matches(include, name))) ||
// excluded
(exclude && name && matches(exclude, name))
) {
return vnode
}
var ref$1 = this;
var cache = ref$1.cache;
var keys = ref$1.keys;
var key = vnode.key == null
// same constructor may get registered as different local components
// so cid alone is not enough (#3269)
? componentOptions.Ctor.cid + (componentOptions.tag ? ("::" + (componentOptions.tag)) : '')
: vnode.key;
if (cache[key]) {
vnode.componentInstance = cache[key].componentInstance;
// make current key freshest
remove(keys, key);
keys.push(key);
} else {
cache[key] = vnode;
keys.push(key);
// prune oldest entry
if (this.max && keys.length > parseInt(this.max)) {
pruneCacheEntry(cache, keys[0], keys, this._vnode);
}
}
3 years ago
3 years ago
vnode.data.keepAlive = true;
}
return vnode || (slot && slot[0])
}
};
3 years ago
3 years ago
var builtInComponents = {
KeepAlive: KeepAlive
};
3 years ago
3 years ago
/* */
3 years ago
3 years ago
function initGlobalAPI (Vue) {
// config
var configDef = {};
configDef.get = function () { return config; };
if (true) {
configDef.set = function () {
warn(
'Do not replace the Vue.config object, set individual fields instead.'
);
};
}
Object.defineProperty(Vue, 'config', configDef);
3 years ago
3 years ago
// exposed util methods.
// NOTE: these are not considered part of the public API - avoid relying on
// them unless you are aware of the risk.
Vue.util = {
warn: warn,
extend: extend,
mergeOptions: mergeOptions,
defineReactive: defineReactive$$1
};
3 years ago
3 years ago
Vue.set = set;
Vue.delete = del;
Vue.nextTick = nextTick;
3 years ago
3 years ago
// 2.6 explicit observable API
Vue.observable = function (obj) {
observe(obj);
return obj
};
3 years ago
3 years ago
Vue.options = Object.create(null);
ASSET_TYPES.forEach(function (type) {
Vue.options[type + 's'] = Object.create(null);
});
3 years ago
3 years ago
// this is used to identify the "base" constructor to extend all plain-object
// components with in Weex's multi-instance scenarios.
Vue.options._base = Vue;
3 years ago
3 years ago
extend(Vue.options.components, builtInComponents);
3 years ago
3 years ago
initUse(Vue);
initMixin$1(Vue);
initExtend(Vue);
initAssetRegisters(Vue);
}
3 years ago
3 years ago
initGlobalAPI(Vue);
3 years ago
3 years ago
Object.defineProperty(Vue.prototype, '$isServer', {
get: isServerRendering
});
3 years ago
3 years ago
Object.defineProperty(Vue.prototype, '$ssrContext', {
get: function get () {
/* istanbul ignore next */
return this.$vnode && this.$vnode.ssrContext
}
});
3 years ago
3 years ago
// expose FunctionalRenderContext for ssr runtime helper installation
Object.defineProperty(Vue, 'FunctionalRenderContext', {
value: FunctionalRenderContext
});
3 years ago
3 years ago
Vue.version = '2.6.11';
3 years ago
3 years ago
/**
* https://raw.githubusercontent.com/Tencent/westore/master/packages/westore/utils/diff.js
*/
var ARRAYTYPE = '[object Array]';
var OBJECTTYPE = '[object Object]';
// const FUNCTIONTYPE = '[object Function]'
3 years ago
3 years ago
function diff(current, pre) {
var result = {};
syncKeys(current, pre);
_diff(current, pre, '', result);
return result
}
3 years ago
3 years ago
function syncKeys(current, pre) {
if (current === pre) { return }
var rootCurrentType = type(current);
var rootPreType = type(pre);
if (rootCurrentType == OBJECTTYPE && rootPreType == OBJECTTYPE) {
if(Object.keys(current).length >= Object.keys(pre).length){
for (var key in pre) {
var currentValue = current[key];
if (currentValue === undefined) {
current[key] = null;
} else {
syncKeys(currentValue, pre[key]);
}
}
}
} else if (rootCurrentType == ARRAYTYPE && rootPreType == ARRAYTYPE) {
if (current.length >= pre.length) {
pre.forEach(function (item, index) {
syncKeys(current[index], item);
});
}
}
}
3 years ago
3 years ago
function _diff(current, pre, path, result) {
if (current === pre) { return }
var rootCurrentType = type(current);
var rootPreType = type(pre);
if (rootCurrentType == OBJECTTYPE) {
if (rootPreType != OBJECTTYPE || Object.keys(current).length < Object.keys(pre).length) {
setResult(result, path, current);
} else {
var loop = function ( key ) {
var currentValue = current[key];
var preValue = pre[key];
var currentType = type(currentValue);
var preType = type(preValue);
if (currentType != ARRAYTYPE && currentType != OBJECTTYPE) {
if (currentValue !== pre[key]) {
setResult(result, (path == '' ? '' : path + ".") + key, currentValue);
}
} else if (currentType == ARRAYTYPE) {
if (preType != ARRAYTYPE) {
setResult(result, (path == '' ? '' : path + ".") + key, currentValue);
} else {
if (currentValue.length < preValue.length) {
setResult(result, (path == '' ? '' : path + ".") + key, currentValue);
} else {
currentValue.forEach(function (item, index) {
_diff(item, preValue[index], (path == '' ? '' : path + ".") + key + '[' + index + ']', result);
});
}
}
} else if (currentType == OBJECTTYPE) {
if (preType != OBJECTTYPE || Object.keys(currentValue).length < Object.keys(preValue).length) {
setResult(result, (path == '' ? '' : path + ".") + key, currentValue);
} else {
for (var subKey in currentValue) {
_diff(currentValue[subKey], preValue[subKey], (path == '' ? '' : path + ".") + key + '.' + subKey, result);
}
}
}
};
3 years ago
3 years ago
for (var key in current) loop( key );
}
} else if (rootCurrentType == ARRAYTYPE) {
if (rootPreType != ARRAYTYPE) {
setResult(result, path, current);
} else {
if (current.length < pre.length) {
setResult(result, path, current);
} else {
current.forEach(function (item, index) {
_diff(item, pre[index], path + '[' + index + ']', result);
});
}
}
} else {
setResult(result, path, current);
}
}
3 years ago
3 years ago
function setResult(result, k, v) {
// if (type(v) != FUNCTIONTYPE) {
result[k] = v;
// }
}
3 years ago
3 years ago
function type(obj) {
return Object.prototype.toString.call(obj)
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
function flushCallbacks$1(vm) {
if (vm.__next_tick_callbacks && vm.__next_tick_callbacks.length) {
if (Object({"NODE_ENV":"development","VUE_APP_NAME":"Jinan_app","VUE_APP_PLATFORM":"mp-weixin","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 + ']');
}
var copies = vm.__next_tick_callbacks.slice(0);
vm.__next_tick_callbacks.length = 0;
for (var i = 0; i < copies.length; i++) {
copies[i]();
}
}
}
3 years ago
3 years ago
function hasRenderWatcher(vm) {
return queue.find(function (watcher) { return vm._watcher === watcher; })
}
3 years ago
3 years ago
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_NAME":"Jinan_app","VUE_APP_PLATFORM":"mp-weixin","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_NAME":"Jinan_app","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG){
var mpInstance$1 = vm.$scope;
console.log('[' + (+new Date) + '][' + (mpInstance$1.is || mpInstance$1.route) + '][' + vm._uid +
']:nextMPTick');
}
}
var _resolve;
if (!vm.__next_tick_callbacks) {
vm.__next_tick_callbacks = [];
}
vm.__next_tick_callbacks.push(function () {
if (cb) {
try {
cb.call(vm);
} catch (e) {
handleError(e, vm, 'nextTick');
}
} else if (_resolve) {
_resolve(vm);
}
});
// $flow-disable-line
if (!cb && typeof Promise !== 'undefined') {
return new Promise(function (resolve) {
_resolve = resolve;
})
}
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
function cloneWithData(vm) {
// 确保当前 vm 所有数据被同步
var ret = Object.create(null);
var dataKeys = [].concat(
Object.keys(vm._data || {}),
Object.keys(vm._computedWatchers || {}));
3 years ago
3 years ago
dataKeys.reduce(function(ret, key) {
ret[key] = vm[key];
return ret
}, ret);
3 years ago
3 years ago
// vue-composition-api
var compositionApiState = vm.__composition_api_state__ || vm.__secret_vfa_state__;
var rawBindings = compositionApiState && compositionApiState.rawBindings;
if (rawBindings) {
Object.keys(rawBindings).forEach(function (key) {
ret[key] = vm[key];
});
}
3 years ago
3 years ago
//TODO 需要把无用数据处理掉,比如 list=>l0 则 list 需要移除,否则多传输一份数据
Object.assign(ret, vm.$mp.data || {});
if (
Array.isArray(vm.$options.behaviors) &&
vm.$options.behaviors.indexOf('uni://form-field') !== -1
) { //form-field
ret['name'] = vm.name;
ret['value'] = vm.value;
}
3 years ago
3 years ago
return JSON.parse(JSON.stringify(ret))
}
3 years ago
3 years ago
var patch = function(oldVnode, vnode) {
var this$1 = this;
3 years ago
3 years ago
if (vnode === null) { //destroy
return
}
if (this.mpType === 'page' || this.mpType === 'component') {
var mpInstance = this.$scope;
var data = Object.create(null);
try {
data = cloneWithData(this);
} catch (err) {
console.error(err);
}
data.__webviewId__ = mpInstance.data.__webviewId__;
var mpData = Object.create(null);
Object.keys(data).forEach(function (key) { //仅同步 data 中有的数据
mpData[key] = mpInstance.data[key];
});
var diffData = this.$shouldDiffData === false ? data : diff(data, mpData);
if (Object.keys(diffData).length) {
if (Object({"NODE_ENV":"development","VUE_APP_NAME":"Jinan_app","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + this._uid +
']差量更新',
JSON.stringify(diffData));
}
this.__next_tick_pending = true;
mpInstance.setData(diffData, function () {
this$1.__next_tick_pending = false;
flushCallbacks$1(this$1);
});
} else {
flushCallbacks$1(this);
}
}
};
3 years ago
3 years ago
/* */
3 years ago
3 years ago
function createEmptyRender() {
3 years ago
3 years ago
}
3 years ago
3 years ago
function mountComponent$1(
vm,
el,
hydrating
) {
if (!vm.mpType) {//main.js 中的 new Vue
return vm
}
if (vm.mpType === 'app') {
vm.$options.render = createEmptyRender;
}
if (!vm.$options.render) {
vm.$options.render = createEmptyRender;
if (true) {
/* istanbul ignore if */
if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||
vm.$options.el || el) {
warn(
'You are using the runtime-only build of Vue where the template ' +
'compiler is not available. Either pre-compile the templates into ' +
'render functions, or use the compiler-included build.',
vm
);
} else {
warn(
'Failed to mount component: template or render function not defined.',
vm
);
}
}
}
!vm._$fallback && callHook(vm, 'beforeMount');
3 years ago
3 years ago
var updateComponent = function () {
vm._update(vm._render(), hydrating);
};
3 years ago
3 years ago
// we set this to vm._watcher inside the watcher's constructor
// since the watcher's initial patch may call $forceUpdate (e.g. inside child
// component's mounted hook), which relies on vm._watcher being already defined
new Watcher(vm, updateComponent, noop, {
before: function before() {
if (vm._isMounted && !vm._isDestroyed) {
callHook(vm, 'beforeUpdate');
}
}
}, true /* isRenderWatcher */);
hydrating = false;
return vm
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
function renderClass (
staticClass,
dynamicClass
) {
if (isDef(staticClass) || isDef(dynamicClass)) {
return concat(staticClass, stringifyClass(dynamicClass))
}
/* istanbul ignore next */
return ''
}
3 years ago
3 years ago
function concat (a, b) {
return a ? b ? (a + ' ' + b) : a : (b || '')
}
3 years ago
3 years ago
function stringifyClass (value) {
if (Array.isArray(value)) {
return stringifyArray(value)
}
if (isObject(value)) {
return stringifyObject(value)
}
if (typeof value === 'string') {
return value
}
/* istanbul ignore next */
return ''
}
3 years ago
3 years ago
function stringifyArray (value) {
var res = '';
var stringified;
for (var i = 0, l = value.length; i < l; i++) {
if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {
if (res) { res += ' '; }
res += stringified;
}
}
return res
}
3 years ago
3 years ago
function stringifyObject (value) {
var res = '';
for (var key in value) {
if (value[key]) {
if (res) { res += ' '; }
res += key;
}
}
return res
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
var parseStyleText = cached(function (cssText) {
var res = {};
var listDelimiter = /;(?![^(]*\))/g;
var propertyDelimiter = /:(.+)/;
cssText.split(listDelimiter).forEach(function (item) {
if (item) {
var tmp = item.split(propertyDelimiter);
tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());
}
});
return res
});
3 years ago
3 years ago
// normalize possible array / string values into Object
function normalizeStyleBinding (bindingStyle) {
if (Array.isArray(bindingStyle)) {
return toObject(bindingStyle)
}
if (typeof bindingStyle === 'string') {
return parseStyleText(bindingStyle)
}
return bindingStyle
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
var MP_METHODS = ['createSelectorQuery', 'createIntersectionObserver', 'selectAllComponents', 'selectComponent'];
3 years ago
3 years ago
function getTarget(obj, path) {
var parts = path.split('.');
var key = parts[0];
if (key.indexOf('__$n') === 0) { //number index
key = parseInt(key.replace('__$n', ''));
}
if (parts.length === 1) {
return obj[key]
}
return getTarget(obj[key], parts.slice(1).join('.'))
}
3 years ago
3 years ago
function internalMixin(Vue) {
3 years ago
3 years ago
Vue.config.errorHandler = function(err, vm, info) {
Vue.util.warn(("Error in " + info + ": \"" + (err.toString()) + "\""), vm);
console.error(err);
/* eslint-disable no-undef */
var app = typeof getApp === 'function' && getApp();
if (app && app.onError) {
app.onError(err);
}
};
3 years ago
3 years ago
var oldEmit = Vue.prototype.$emit;
3 years ago
3 years ago
Vue.prototype.$emit = function(event) {
if (this.$scope && event) {
(this.$scope['_triggerEvent'] || this.$scope['triggerEvent']).call(this.$scope, event, {
__args__: toArray(arguments, 1)
});
}
return oldEmit.apply(this, arguments)
};
3 years ago
3 years ago
Vue.prototype.$nextTick = function(fn) {
return nextTick$1(this, fn)
};
3 years ago
3 years ago
MP_METHODS.forEach(function (method) {
Vue.prototype[method] = function(args) {
if (this.$scope && this.$scope[method]) {
return this.$scope[method](args)
}
// mp-alipay
if (typeof my === 'undefined') {
return
}
if (method === 'createSelectorQuery') {
/* eslint-disable no-undef */
return my.createSelectorQuery(args)
} else if (method === 'createIntersectionObserver') {
/* eslint-disable no-undef */
return my.createIntersectionObserver(args)
}
// TODO mp-alipay 暂不支持 selectAllComponents,selectComponent
};
});
3 years ago
3 years ago
Vue.prototype.__init_provide = initProvide;
3 years ago
3 years ago
Vue.prototype.__init_injections = initInjections;
3 years ago
3 years ago
Vue.prototype.__call_hook = function(hook, args) {
var vm = this;
// #7573 disable dep collection when invoking lifecycle hooks
pushTarget();
var handlers = vm.$options[hook];
var info = hook + " hook";
var ret;
if (handlers) {
for (var i = 0, j = handlers.length; i < j; i++) {
ret = invokeWithErrorHandling(handlers[i], vm, args ? [args] : null, vm, info);
}
}
if (vm._hasHookEvent) {
vm.$emit('hook:' + hook, args);
}
popTarget();
return ret
};
3 years ago
3 years ago
Vue.prototype.__set_model = function(target, key, value, modifiers) {
if (Array.isArray(modifiers)) {
if (modifiers.indexOf('trim') !== -1) {
value = value.trim();
}
if (modifiers.indexOf('number') !== -1) {
value = this._n(value);
}
}
if (!target) {
target = this;
}
// 解决动态属性添加
Vue.set(target, key, value);
};
3 years ago
3 years ago
Vue.prototype.__set_sync = function(target, key, value) {
if (!target) {
target = this;
}
// 解决动态属性添加
Vue.set(target, key, value);
};
3 years ago
3 years ago
Vue.prototype.__get_orig = function(item) {
if (isPlainObject(item)) {
return item['$orig'] || item
}
return item
};
3 years ago
3 years ago
Vue.prototype.__get_value = function(dataPath, target) {
return getTarget(target || this, dataPath)
};
3 years ago
3 years ago
Vue.prototype.__get_class = function(dynamicClass, staticClass) {
return renderClass(staticClass, dynamicClass)
};
3 years ago
3 years ago
Vue.prototype.__get_style = function(dynamicStyle, staticStyle) {
if (!dynamicStyle && !staticStyle) {
return ''
}
var dynamicStyleObj = normalizeStyleBinding(dynamicStyle);
var styleObj = staticStyle ? extend(staticStyle, dynamicStyleObj) : dynamicStyleObj;
return Object.keys(styleObj).map(function (name) { return ((hyphenate(name)) + ":" + (styleObj[name])); }).join(';')
};
3 years ago
3 years ago
Vue.prototype.__map = function(val, iteratee) {
//TODO 暂不考虑 string
var ret, i, l, keys, key;
if (Array.isArray(val)) {
ret = new Array(val.length);
for (i = 0, l = val.length; i < l; i++) {
ret[i] = iteratee(val[i], i);
}
return ret
} else if (isObject(val)) {
keys = Object.keys(val);
ret = Object.create(null);
for (i = 0, l = keys.length; i < l; i++) {
key = keys[i];
ret[key] = iteratee(val[key], key, i);
}
return ret
} else if (typeof val === 'number') {
ret = new Array(val);
for (i = 0, l = val; i < l; i++) {
// 第一个参数暂时仍和小程序一致
ret[i] = iteratee(i, i);
}
return ret
}
return []
};
3 years ago
3 years ago
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
var LIFECYCLE_HOOKS$1 = [
//App
'onLaunch',
'onShow',
'onHide',
'onUniNViewMessage',
'onPageNotFound',
'onThemeChange',
'onError',
'onUnhandledRejection',
//Page
'onInit',
'onLoad',
// 'onShow',
'onReady',
// 'onHide',
'onUnload',
'onPullDownRefresh',
'onReachBottom',
'onTabItemTap',
'onAddToFavorites',
'onShareTimeline',
'onShareAppMessage',
'onResize',
'onPageScroll',
'onNavigationBarButtonTap',
'onBackPress',
'onNavigationBarSearchInputChanged',
'onNavigationBarSearchInputConfirmed',
'onNavigationBarSearchInputClicked',
//Component
// 'onReady', // 兼容旧版本,应该移除该事件
'onPageShow',
'onPageHide',
'onPageResize'
];
function lifecycleMixin$1(Vue) {
3 years ago
3 years ago
//fixed vue-class-component
var oldExtend = Vue.extend;
Vue.extend = function(extendOptions) {
extendOptions = extendOptions || {};
3 years ago
3 years ago
var methods = extendOptions.methods;
if (methods) {
Object.keys(methods).forEach(function (methodName) {
if (LIFECYCLE_HOOKS$1.indexOf(methodName)!==-1) {
extendOptions[methodName] = methods[methodName];
delete methods[methodName];
}
});
}
3 years ago
3 years ago
return oldExtend.call(this, extendOptions)
};
3 years ago
3 years ago
var strategies = Vue.config.optionMergeStrategies;
var mergeHook = strategies.created;
LIFECYCLE_HOOKS$1.forEach(function (hook) {
strategies[hook] = mergeHook;
});
3 years ago
3 years ago
Vue.prototype.__lifecycle_hooks__ = LIFECYCLE_HOOKS$1;
}
3 years ago
3 years ago
/* */
3 years ago
3 years ago
// install platform patch function
Vue.prototype.__patch__ = patch;
3 years ago
3 years ago
// public mount method
Vue.prototype.$mount = function(
el ,
hydrating
) {
return mountComponent$1(this, el, hydrating)
};
3 years ago
3 years ago
lifecycleMixin$1(Vue);
internalMixin(Vue);
3 years ago
3 years ago
/* */
3 years ago
3 years ago
/* harmony default export */ __webpack_exports__["default"] = (Vue);
3 years ago
3 years ago
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../webpack/buildin/global.js */ 2)))
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 5:
/*!*********************************************!*\
!*** F:/2/Jinan_app/Jinan_app/pages.json ***!
\*********************************************/
/*! no static exports found */
/***/ (function(module, exports) {
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 54:
/*!**************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/static/down.png ***!
\**************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
3 years ago
3 years ago
module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAAAPFBMVEUAAABmZmZnZ2dnZ2dlZWVmZmZlZWVlZWVmZmZmZmZmZmZlZWVkZGRlZWVlZWVlZWVmZmZmZmZlZWVmZmZ2HvaHAAAAE3RSTlMA1ioi57MblmtIDF413MbBpYd0XJLcVQAAAS1JREFUeNrtkMuuwjAQxRKapLS8mf//16uLEGyySOVKbOz1HNmaJCIiIiIiIiIiIl3W01yfS9qN8+NWj+uG+xz/zG0ffbvHi+Po4BRv8mEP/1QiNhWsJfYsmHJ8WLc84FvA/dteMEe/gPujDm1q9Au4P25Do2f0C7g/HkOrJfoF3B/nsd3cL+D+++Cw5V4B95c2Oj10Crg/TymxAu5nBdwPC7AfF1A/L6B+XkD9vID6eQH18wLq5wXUzwuonxdQPy+gfl5A/byA+nkB9fMC6ucF1M8LqJ8XUD8voH5eQP28gPp5AfXzAubnBZcL8/MC4AcFyM8LqJ8XUD8voH5eQP28gPp5AfXzAurnBdTPC6CfF5R4U4Cf0K7x4trSr1hqKXVJIiIiIiIiIiIiQvgDv3di66a/wEQAAAAASUVORK5CYII="
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 55:
/*!**************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/static/4412.png ***!
\**************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
3 years ago
3 years ago
module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEEAAABACAYAAABFqxrgAAAAAXNSR0IArs4c6QAADhxJREFUeF7tm3+MXFd1xz/nvje/dmb29+xmba/XdkKCbAIUJ3EbIuFUUIpCo6rFQVQVlIBSBCURbWmaUDXOH61EqVrRQqtSJFBa0TaRGiGIohSpTVQR4oBrEmo7Ddj12l7b61nv7O7M7Px4791T3Tc7zv50fux6N5X2Sfau9t13373fd+6533Pu9wibF7KJAW8UBBUQffMB+MbG9SqWoIKb6sPIQeDobqR4rAVcYXd8hz3H0IMPtX5fAGkborln24C5fniN7Vds6/pYNC73p/lji8fVflc84pU/2sogqLqJy9MPYy7uxozkkFoGKRSRegmZ6EFTVbSQxRYL2EIR00zyUTXsEcvRZJNHgOhkCVPrQfY4EIFMCd3Vg53ppCvT4DdUGDHwjF/nSTeJ8hDSbn9yF8phcO1rsNWk+KgIXUb4V7/G88VCPB5TrGIaWaS/hKR70GIBzdTQi2ew7tnLH0qWB2J5EA6qObAbObkLc2MZ71QR3+/B6ynh1TMYh2s6gQ1qWGuIUg3CZorHgffPWyJPTE/yoXw/ppFEmtNIsgtNNVGx5AWeAW643F750nSJP3bty7XWO9rtTcQOhO8D3XPtQ4Xf0gs8LtfgGYsnihcmED9AZ0M0giiEiCphuUnkwHjsAJZlgFgKgqoceCwehJuw74UkpYOkRCSDkIR7WWyNQpTwCcKAwBNutsp3lvgI5Y56k+cMeGkfqYeohSid5G6ELy1qH0bCtUGSiptUut5qbzoIfcvfonx4fnsRRgPDz3kRSVGSYUTC8zEmgdIgCn2CyKOZq9CsZwhO1Aj3QLQcEItAUDmoyHcO4205TyJdI12DDBk6jCVjLGkV/HiFeYTWUreGmqd8EOUvloAg3Ifl8dAnkTBIYFE/JDCGe63y+4vbW+EWhXE1+K59FGId0FHAvwC3xj5nnjv2QoY1TQeWjEJKI3zjoaES+oaaGmqmxmwjRd0ojXPnCA6fJ+Kg2AWALhiIqux/GK+wm0SQIBUGZFMZ8hF0AnkrZB3qc5bQNOqMjbJ6vBflT+b7RjdWhftVeCLpkwwCvESCqBnSNHAPyr3t9u15WWG/NVxKWZKhxtYYeR51G/ENhH2uwxiHNhjKHmvo9JV8KHQYIUHkbJiGChUiyl7EjCjlmYjZRI56rkL42F3Y+Y5yoSUcVLP3g3j5k6R6uugImnR5Eb1Rky0XX+azwSy3AYn5wKV7+PPB66kr/NHiL4Xw0KUTXKoW+Ur7mWyB3ylcy41W+e0llmO4Y/wYtzam+UL7Xvd2fj0/xAMCNy3+ehJx67njfLpZ5TcX9CVUEx382+Bu/l4Mxchj0s5SjrqYvXSK5uF7COf7hgUgHHhUvUoOP9Ugo0LeePRGloHzL/JgWGP/kkEDHX38Xf9bmEX53OIvi/DFqdNMz5zjT9vP5rbwYN8IN6jlYwssR0ANHym+xM/XJ7mv3b7vOu7O9nEvwjvbljBnic4s7hg/yicaM/zacmNLdfPNgd084kExmKUU5SjzMxpPThLMXxLzQFA58CjmLCSv8elQoVuUATyGTh3inxdbQPul+UG+1bOTWYFP6lL69NXpMSrTZ7m/3b5rG1/s3souFQ7MX9/OilT59KUT7J2d4BPt9v038Hsd3dztKMkyjvdjEz/lI7Mlfnk5EEyCkyPv4nOBcB6YsIapapFaIUvw2F3iFk58vQKC8wdP4+UrJP2AXGjp9TyuwWN49Ll4z1/2yg7wZN9ORhE+dXlSc72K8uXSGJ0zZ/n4ZRCG+Xr3VnpVF3291jOfv3SCd1eL/Gq7/cD1/Fm6h3dD/O/yJVARw0MXjvPh+hS3LDs4j8kd+/iMDRmLPC4IlNI1qkBzvl9YAkKyScoPyUuD/oSwRQwjpw7xtZVASGQ4PfQOviVwF7ArNtWWAzuhwiPjR/lQo8yN7edTnRwZ3M1TKJ9xzlacBbRu/kCVp87/mE+GDba12+cK/HvvtTHPugdIxY0daYdvW8vLY4f5lI3ILzc+MZS238LvRnDahpxPZrkUNqmUD9N8+qBzoS3ytACEvYfxd50k1UjFu0G/EbaqZefp5/nqSiC4v+eHeKZ7hCNCPNleYBI4Uj7PDZOj3CG0yE8MENi+nXw7fw1jKHsV0sBZRyinTrNv5hy3L3iXEAzs5p/SORoivMMtS1VOIJwqvsz7a5OvALx4jOIxNXITf4DPqTDinHQw0XWOyplhGk/ffgUQto7Fg8p7EQXx2GYtu0Z/yF9dCQR3L93F/+QGeSGZphw0yVbH2V0t8bb5AMwHItvHC7kCx70EtaBOZ+Uib69Pz2OQC20/yBY4nOvnp55Ps16lr3yBdwVVtl9pXHMgPBDBKVHGkgmKVKkUC9RfFYR47w3nQIBdp5/jy68GwpvxvgNh+0086KxGPc56HhPeDOXXBYIKwxh2/j8GYXr4Zh4U+F+rjPkpipsgbIKwaQlXdzlkCxzv3sqP/AwX1QVU0BAlVHFBytzeqPO2YonD6dblwhhB1d2f20TjH+32rbxW3JFRxApGhIRGuKxGrl5m++RJbgtr9C/LE3ymhm/iC1fVJ6S7OT14A/9hYUKEElAWqKsQqMWKWUCMV7WBSCuq9FCSQhw6d1roc8Hd+Rf4FbULA7uYBK0HCL07ebZzkJ+oUFSNCVLZCDXVtQdBLYKHR0RKhQ6XZkPoExi4cJT3NWbYsoQs+Uxtv4UHsZy6artD1zA/6trCEaMUVZhEKAM1qwRGsFbXzhKMxEvKZbVSCh0GOlXoRxk4/9/8UrPC4IaA4KWYGbqRJ8Rj3BNKkVIRoW7cctC1XQ42xGDwBJJoHOp3itJbLXF98WV+sRVOLLzWZTm4V3pJZjp6OSqGabU0FAKBSJ0VzDm2VTmDtqM0cbjj/IKPISFCOqwzVCvxVrWtlN8yscMmWRKPTRA2QWhlxDctYd1A8FNMZgu86CUZt0pdlCZCGDvGNd4i1RFQd+4hpAx01CuMzBZ5p+oGOsZEmtLQ2/muCEUMJZSKQs04srSWPMEDmdsi3emcS3Kr0inQW5viLcWXeB8tHrHgWpctsmeYH3Zu5QjKxZgsWcrqGKMQ+IYwupzPXfUmiSNLbisUQ9Iq2ZgxcpksfSCoUtgQstS7kx/kBnlRhIsok1aZiWmzJXCnR+KY/hpd1mI88NxxG0IHSrdCvxgGxo/y3voMWzcEhFSescE9fA+l6NLZLnZgzhLEYu2Ck8PVoeG4UuwP2suhdTTY5zLTGxpAuWmluzjZtY3n0zlO484CoG6FMLaENQLBBU8qbsfDsxKzxUwU0js7yXXTZ/mFqHH5yH79fcLqvu3Vf3rdtsirP5U3/oZNEDYZY8t61s0SXNicyHFGhNk4jFasO2qLM4VrtkHGB4YuMBdxnNGF05CwAb1BnYGVFsy6kCXxaA68laeSOUaNY4xQweUU2kmVtcontA55jWcwtqWUyWDpFEPPpVPsq1yIzyiX5hPWI8eYH+InvSM8r1A0wmTkcoxK3aXXPI9orRkjimchaUxMmx1j7HPptXM/5s6wsfRk2lnCVc8x9l3Hf+b7OaZzOUaBGUebjW3FDrKGC8K6rJIXS/WSLniKnJxP6XOM8eJxbq9NLT2cXRcQsgO81H8tzzoViCglK5RF51LuTkO4QCP2xrc696RjjOLhRQ4EGytpulyO0cLA2BHutE2yV402i8+O0WeXP5oXIerZyfc7BziuwrQ7fHGJViEOpV2S3P2/+su0fIJLaYqSsJARIaeWvomfcVttsiUOWQKCO5Xet8qUu9MnKOwcfe7K+gQvwYz4VOambNt0eS3m356YQ2BOwSciGBVMVKdPbUtSuBIII7fwQPvcIdlFkeJr1CfEmsWIQtJjWwg7zxzir1f/Ode/B6dPGN7LH8ZKlSZjHSkm0j7lM8lXUao4uU7kkY88+kXZhmHH6CH+Zv2nsPo3ikdp+818Xi2jwDmTYaI6TrV5JbmOU68lz5Dy0+Q9Q18izZC1jIw+x9dXP6T172FOuHWf+Jy
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 56:
/*!******************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/static/dadui/10.png ***!
\******************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
3 years ago
3 years ago
module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA5wAAAGOCAMAAADM7fxaAAAA21BMVEUAAABZyupFvuRq1u9Ux+lGvuRPxedOyOlq1e5q1e5FvuRXyupXyelq1u9GvuRczepYyelfzutby+pUx+hRxedi0OxOw+Zm0u1WyOhLwuVn0+1k0exo1O5hz+xSxudezetJwOVMs+pq1e5NwuZHv+RPxOZLsupXyelQxOdKsepZy+pOtepQtupTuets1+9Txuhr1u5JwORSt+tRt+pl0e1FveRRt+tUuetVuuxKsulJselGu+VLtOlHt+Zm0uxItehIs+lHueZJvOZLtulKuedOvudJt+hSvOlOuuiMFw8DAAAADnRSTlMAf+CpGPaUCvTmr1Y60as10JAAAEmhSURBVHja7N2JTttAEAZgQ0tP6oSUHhQKEjQChRwIUlKpqFIPRN//ibp2bH7Ha++sdzbrMeVv7aYP8Gn2mF1HK3m+vfHkzcuLqZaLiwv1LHN8fKye+hwcHKinMp+IfCCyv78/nyev/eq8I/K5LjsWOapJzyKD6oxK6dvmtJSPHz+qpz5vDZnNZupJc1iV3d1d9dTn7OxMPWmGw2H6Ug/ynsjJfe6+1WVRzKQ2l3murq7UQ2QcC8rW5uarje3nUV2ebrwERwNOIrC4JpyIL5w7AXD2DDgHffVn0G+Es6/hdLOZwiRwmpLDBE7EF87FenD+iqVlc+NpNc0nL6amXDBw+uM5B04Hnr4LJ3DSMVbOwSD1idrpUDxdcQKmejviRGTgXPpUbwLnl1hatp5V8Hz9gmAJnFTWSlPFd+Xc4RRO/rB2kMhM/9jTJFnSNBHgVA9D57oq58LGJnAC5GXnKmfK83XZ5rPp9BFnOzgVz1Gm80HgNOjk4ATNxcPGGcfPVheCntAD2ilkOo9qWTQBM+RqELK+MW0Ks+3KCZlNaGrDWceyaY9zQY5pIdNsUyzO+NVzO5uIPU632vnBGufcD06Ei5OOEedyytmodp565UngPCRw7pbGtGclnEM3nEhpTLuox4l0GWf8Cjif0CzVi1k5aZyhKyffJh/nIJtxZu+Rpcy120QCLNVSOAETNEmcV13GiZHta6ua6WcnhcvTKNQss56nJU0OT+OUMy2Z2asVnKBZibQRTxUnnjROuKR4giZ+aTRF44xfZ4PalxY0YZOJk7MeBJg+cTKXg1g4YXNZOVsf086cSidwskrnHTXlnDTHeWXA+SeWm83nWKilBrX2NNe5WJvTnEvB2bONYcqZw1R/bNsQtAYEogPBCBS7nC7dQas4nWgCJynT4LNmUNtVnMuB7VNscNKLtbzVID5PQHSadopbrM2nnHn1dF+sPWVUTsQNJ8LHyS+b4FlvdJzmbyw4W0kzwobNQi27rxYy64HabXHOgy4H0etBR244taVaVM7Ak84Sy5lDXy1k6n21QwLne0ucE8w5G63VXhtwymsQKmRD4XzJWA0K2IIwzyNpl/OIVTjTf5Yqc5vidjkbtiDwKuetRpNROJFanKI637VsRtG2XdWcPuL0jjOBOYLP5DV6xFnCiYXahS+c4/t8jyVnO9qwwckf1WK5ltnzrp6aEDTV09Z6UHXdTP4mMjGsDVc5ARPrQc6nxRCHUe0Kzruiy4Z1U+t6r3Z5j1P6Xkr8dQMNCMbVWtYeJ+LrQMqcjxMJvFgLnLnO/gC1M9RZTuB8C5wtHUgBzgVsrg3nuCs4VZvQG9vVoKkgnEg4nDsMnHWVMx3X0nNOejXoYeDEihBUesGJAKf0vZQvW5vRi6nXSad5SCvvRIrbpBM4mZPOQXGXE+NaPk7+pNM/Txrngjglxpt0jrPi2Q2ccQychE4GzRDtQc1ZIkFb9yAzn3YSNvk6bXdR5FRODGkdGvcMDXvqWcm56I3OL1vRVBDOT/8ZzgRmL4EJna3inInBqddNBk4ELruwlxJTOBl7nEG6g4Bz3wln0KVapHzI2n611tuYFjghk0GTL3NvT+EETS7OS3o96Pxc9l4KhZNxzjoATn71DNK6VwG0iNNyYAub/RLOU/cJJ9G6d0jY9I4zpak17S3sdSK1tRM2z2Uv1zIqZ+irvdxtfm7jKCc94xzkMLFY29pRTvVi4hz6wLnQ5psTu5BttXAJm+Nz2StC0ZSOpEsx1cvzpJN9KSadKpz5Yu1K63sjnoinw5zuPEETv5ryxEbnYiVuOPXhrGZTpfs4Ly4k4fS9ItTGOWucFRuRhZO2ySudoMk5MAacQxZO18pZTxM41b8rNpPndyw5EQkzfcTgZOxyhm1AQEwLQspkr1A2B47dQafuNFOcrV8nXcTpVDgBUxvUwmW5cEqfdNrglLPPaaibdIOQ/8XaI+42Zwoz++sy5QRMHs7EZxsbnRpOiqb9Te+XNd0HyIPAqSJpI2UuozsI+BjbnOgPwpST+xkG+1sQZmneeukOAsszl6qJFSE+ThXTWhCGteInnfScU8YuJ0gybPpcDWLZxB0IAQ5zhukPGiI8nN88rwZBp143hU86H3G2hDMDOiroHDziROXk4aRp5jgltyGYcRYbEFqdcGI4O5fy5b8jduXs37cgoP8gxKgWwVyTsMm5d4++ngS5m3iacoJl+tTj/PU1FhsCZ5apHJytHLSuFOpKEx3vI1xYC54hWxDyhdr0kYDztglO0JwAZ1HoGM3uVTjF73TSOANUTnqllsAZ8DMMCKtuLv8U2mohMzROSZXTBae5NUjxrLbZgUlntN4OBMTHcbG5JJyMQS0WanvaUm1QnrMkQo6LMXEi2jExI07JB1Miu/ukj+mE2EUR85EUVgdCVjl7K9eTtHjO2ufFXoi9TGRPw8nTCZhXJZqdmHRa4Jz+5zh31oOzn805Me8cScN52BDnGRvnyZ1XnEBZrpudmHRG3Gv3kLXhhExHnMI+w6Be2Z2Ydkc5kUDfFrMvncDJn3PuqRRxTlxo6pcfVC7VdmPSacaJ85weOmulff3PHmcFUQbObDmo9JEU+11O/zhnIiade0luJw44JyWcl/V1Ezyx0yl2XGvGKeRICtdm8C/m0kdSsspJX1DCx0kPaYN1vYOlehE4J9zKCZnEuLaLOFd4ttpXC5oMnB55uslEsjmn8og5p2vb+6lzfxDCLZuc5SDIVC8NJ2fSOTbj7ECTEImz/brp+7QYEvhGTNDMtznxGQb1J+yZFODk102POE+A07F0YkgLnxrNboxrI093lDCv3SNwfiBw7htgsnD6v3YPn2HooXCmPsN/XAzdQa0f5bzHeTfxcND6MsFpqJvjboxriSYEIYu1eROCn88wIC19hmGAKSdxJoXiyf1OCmC68OR/+U83qnAirjiTqmnAWcrvr0J1RqRMCYc5i5POOQ8nXHJuQWD31eKGktQnY5fzlLnFOZNyJCUJJp0T62hXYgKmHc6bn53FybTJh5km4C4nXTnZU84++oN460H8OzGJwunWH0TZ9Imz1Fm7tEmtBnWjD+ERZ3icSmc65Sztcz4gnODZAk66cHZlSSiqdbkyqhWwyTn3c3cQ0tKotvyJFO6o1ukgJ64nmbHv3WteOitpZjxPJolOXCTt8nGxMY2zE1udZpySDlrX4dwPdmEtaB5xP5FS0JnQBE+HwsnBmWXmhBM604fVugecd01wlpLvb16adXZlSciAU9g3UiTh5J0Wy9eD8AeLteFxEpUzRAsCcKrcsnEi1jhlLglFphmnpHv36medYk+kwKd20jqzSR9J4Xcg8Nv3/ONkTDppnvY4kT8iS2dE7KL4/4IRjfPHjx/qIb7DgAS6EhPh0czLJpaDRlYNQlXzTYZMfCRFRsd7GlROxH/l7MySEB8nrZOg2RSnprRjOLUbSnDZeys4W/8q573L5a+7CQenCoWzM0tCxJzTEierajIrZ9eu3cu+mDty2+YETu6c09O1ewgT573Rv/Y4HWV2ZUnI7rA1E+cBiZPe6CwKnVM4Ed5qEPduL8NpzgwmdAbvrMWYdsa8ooRTOxFiXEvyhE2iBaEzpTPyYpNdOen1oCyGvc4AOBk2EeVypT1IZRTWJsa04Y6k0DaB07p0Okw4u1Q6o3q
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 57:
/*!*************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/static/447.png ***!
\*************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
3 years ago
3 years ago
module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAByRJREFUaEPVmn+MVFcVxz/nvpnZbQvstlQL2kb/4MdmW2AWFEWUNm0jpU1NU/yRWETapmoNWKl12Zmtdo1lF2xVKpAqDSUlW03EmkZjESJsi4XaKOyu2Aq0Go02EEW6/Co7O/PeMfe92d1hd2fmzQxO7U0mm50575zzvefe8z3nzAgVrjlf0CjjqctEaBCHTwpcqTBJYBIwOav+qMIxgWMK/1SXn0UyHOI0J/dvknQlLki5D89s1iuNwyLgWoTrIjW8V11QBXT4r69fQKyl7F9xIJPiDaALZY8anutdLfb/kldZAOIJTQqsQLgcIWIdLmtZ60oG5TjwWHeHrClVT2gAn/qpOod7uM5ROk2MSV5FgR/tpomCO8AbCHdOfY3d27aJGwZMKABzVmmd67DORFhmj0nZO17EI/+YGfAybKGG+3vapK8YiKIAmhLaCOxC/EtZvaUcNREW7v+2HCxkNC8Am10y72aJ8Xiyel6PtuQpd0X+Q2e+bJUXQLxFW02MhzXzdroPEgEvTWtPh7SP5cmYAGav0lvV4Rdvr+vnWxeXTxxYK78c6dMoADObdbqJ8HuB8eUAsDxgL+P4WjjV76f+C7IUTrvK3IMdcihX4Xn6563Ui/preQHDB8vJNAMZmD4ZbonDtY2wfgds74VxNRcgcQWcsa8uxg3Pt0n/IIjzAMSTusyJsqWcHG93vuE9sHEZXDYuUJ92YXMXfHd7EJFKl7H3YYDPdq+Rn+QDkBIhVs7uW4X9aVg4Ax68DSbmHMDHfwNP/RZS6WxJUS6SIAonuttl4igA8VZdawzNPlFVsFIZmHIFtNwK86YOK+p6FR56Bk6fqwyEjYKb5js9HbLKavePUPzrOlWi7AXeVYHvQ4/6BR2w9V6YcdWwxpf/Aksfh0tqKrbyb00zv+cRec0H0NSiX8KwAXAKqbaOTaoHEzK1nDgLz66EK+rg+Bn45jb467/AMWNb8WzN3RcqQi4ey7vXyA/FMq57OU+KsKTY2T+bgsOPVrx7BRVMfyBEhMQv1zud49wlcxM6MS3sB95XzDULoLsdLo4Vkyzv87cGoCkZAkCg/u9RZY7MTOrsaIz93kBxozbLbL4HLrZ5vUAPYD+aXBccN7vssTh6sjCpWfJ7KwV3PwG10eK+mBrwTnG1xJPa5kR4yAtR89ijfyZVXLnrwX03wYqPB7Lrd8Jjv85/9nM1hiU9v39Ik5SmFn1KoiytNH3mOuF5cO+N8MUbgnd/tAssF5g8l7f4loyWsG2pumyVpoTuEofr1StHTZ5sUg0Axgew2wI4jGFasQxUCrxqRMBnMI8j0pTUc8AFqFSGIVYFQGCu3wJ4E6G+lAhYJp1wUf6YWEJaMh/umB/IPL0XOvcWJsDT/XBmqMYMEe+gLuqzR+iP4jAj7B2wzi1bAF+9KYSREkS27IF128NlKqtWgjtw0EbgOTEsKgWA3d0HbinBuxCiT3TBxp3hM5UPwGO7xFt1kzHcEzaNWgKzVebN8fzEZIls2mSYlp1jHDkGR47ml7cktuuV4BW2zrJp1HPZJPGENjsx1pbSxGTcoFnJR8b2En9lISzPEtmGnfCDHYV3N+qAfYVdlsgyA3zN3oFGE+WVMEwcVnk1spAFoOdolBktemnEsA+hoZRMVAjM/xxAkIEOZTw+4pfT3kQ2Y/jcOwmAKlvrY9w93NAIG5DCDc3/0REabmisU9ckdWYUdgNDzfJIZ22JO74AeY0s5j7/MVjy0eDdzheDpj5sMWcJ7Vzh8v64GBYceFj+PNQcxhO61onSPNZltuR18yxoW1xCprBfZmRR+dkq5HcIVuzRX8GP942dUv2mPsMjPe3S7BNa7s7lKyssADus+tZiiJSQ6sIeuVy5QQC2/BjFCcHlPdndLtlWaQSAWQm9PRLlmZFRsACub4SVi6oAQGFTFzz7h9EA7O5n0izu7ZCfD4I+LwLvb9PaSwfYgbBgZMgtcdmWshqrJgKxyAhLwe7veTPGwr/lGy3aR+YktMEVf7ibHRBWw+XiNuxwV5UP9HbIkVzpd8Z43SaETMjx+iC6eKt+2Rg2hi3yiu9heRK2aHM9VvSuFjt4G7Xyz9hUJZ7kPjF8P2wKLM/FAk8JeMr9ve2sAxkzERcdEsYTepvlIjFcUjUgdvLmcdbA0gM5Gae0CORIz/qGXi0unU6E+IWsWsdyKEtUPaLc0d0hrxaLatEIDCr40AqdkBrHchFWZ2cyxXSX9PmgTvV4sOYs619eL6fCKAgNYEhZm0aaUnwP+AzCZSJESikVhvQM1xmWXU54Hp29s1nFp8N9Qz8mkYVBPChzTate5XjcKMKHgbliiNvw4434wYetV6yzgz/4CL6Jt2e8B3hJ4HdpoetPq+UfpdivGEBOREy8jwnUUi8wz3NoEGUKMEVgmpVTsOTzugqvG5dDCi/RT19PPadok4pmgv8FX+Oah4/M5jEAAAAASUVORK5CYII="
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 58:
/*!*************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/static/446.png ***!
\*************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
3 years ago
3 years ago
module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAC6ZJREFUaEPNWgl0VNUZ/u6dN29msieThBBACJsxcUGFsDYCQVEI1IqKVgWBCopr0QYItuZYzYJHqlIrsRVbTKUHAQMJm0BSAhhkky0QFgGFBDCZJCRgZn23579ZmkAmeQNae8+Zc5J5d/m/+///9y9vGK53ZGcbo6PPBdcr5ljuxoPgoisTiAJYFCA6N2zPzgHivGA4D42d1RQst7jtpeXlnS9ixgzX9YjArnVx2IqsrlwV9wkm7mJgw5mfqQvcHghNAKLxQ3/T4AxgDR9GfysGiB8cZYKhkGkoEnCvtY17texaZLkmANb89FQG/jyAcHCmNAjs4/F0MoHShBtApdDwrm38nEwfd4F+AMuWGayW48MZM+QwkzFKOK5L81fJyUxGCIezTGN8StXlmAI8/LBHDxhdAEI3ZgZzh3iHG41PCo+Hbk3P3r7P4QzMYIDmdH/sCbDPqhmRVtPRJh0CCFubHsc9bDM4i/LZTDo63dtzBvKlcxpno6vHzjnY3jbeAWRPN4ZF93qcM7H4WuX4MdZpTJta1cmag/5ts5VXANbVGfO4WX1DuFy+O+iPIblkXwamGKC53PNsyXPS29q2TQDhazPHQWC1XPATmbtujCQhycAxvnLMnLwr110FIHxV1o2Ca7sYY4HeDvE3GBFoNMnHdS4HLnvaZyQP0SxdqAwJHbpdm8cKiDoIkWAbl1rackKr3bouW2Cp93duYWADJLe3MTQhMCOmP/4YlySf/v7wZmSf2u1VMD+DEVO63w5/RcVFlx3vfbMDJq7oVkDzRMYghPgy0N+edHpEmr3p+1YArKsznuQW9eP2OL4BwAC8Gd8AYF4JAdjlFUC46oftd/0GYaoF5fY69Fi/AMFGs+8ASIOqEcLu+XXl+JSlbQPIy3AwzlVvt0+LrgXA1sRpCDf54Wx9LXpueAfBjebnMwrOIDRU2ZJnW68CYF2TmcUVJUW4KLJ7Hz8rAKkFBZrLOd82NnV2k18hKG9+H5Vp2wFEdHQrPzeARvkqnIIPrR2Xclz6QHhextNg7M8ADN4ACAhpWRoEno4ZgPT4UXJqaskmLCIfAJNs19USBEMLpiHb/yxhovSBc/Y6/KJoMQIVtdUxtK7ScRkOTVf6Q2s9EOK5ynFzFzFkZxutXaoXM84e95bjkPBxgZGID4oAUeKIiBg80vVmKcS/zh5CYcUpMDAUVZ5G8fCnEHINTvqrHUtRVPmtPpqllFwTOZVRoVNZ4Mp0q6qyPYyx7t6CFgmd0ncoftdnGDxCk4cojEsAbqFJx6ZbfOnAOsy7MVFqwZdxye3Eo7uW40vbd/oAUK4kxLdOs7iTha+efwfzN+4R9Q6vZxKA1Bt/gVf6DG1XrlkH16OXfxgiVP/meUZuQFJkDIIUEy67Xfi8/AhUbpBmNtjaDdHmQPgMgJzZzwSPvT6eha/JSGOq+lp73E/3O8zaHcOsN0gT6h8ajZERPaWQBRUnsbu6XEbZwspT2PT9SZDQTTlIJ1MADiU9B3/FiP0XL6DfpoWwGE0IVsxYN+QJ9AuJagTwGYptZ8B0RmqqHzS7M5VZ8zL/wVVlUkf0SSCoDNCEhmd6JrRy4g9O7gRnHE7Ng+SovvisrAQWgwKzwYjO5gDsT3oWZHBfVZfhrqKPEKiYpEZWDnoEtwVHyfjQbf3bUJlBrmu4gPYHMypUNywhAJuZwkfCo3W0Rj73RqN0cfGBkfhi2CSZKmy1fYfJu1cgQDHhQNJMuZY0NGZ7DgIUVQL4fNCjuDW4k/SjKpcdkaofUks2Y+E3O2A2dJBuGDiEWytg1vyMo4zzvnqrLG8ASMDxnWOx6PZkCWDJd/vwysENSIrsiaUDHpIASDOTd6+UeRHR6qZhk9HNEiwB1LodCDNaJKON3v5Jx9FaRmXtGAvPz6gHmO7kxBsAMrGZPRPwRlyS1FJKyUaQaX3SfwIeiL5JAkg/WoSMo1vl7VKO1JRi1LmdOFJXgYTQLrjguIShWz5Cjcuuo2AXdjKhasZZSHv5T0vb8gaAEjSy6X7BUSCBJu5choKKU9J8+gY0pC5DtvwNpXUVMDDeCsDpH2rwl5M7Mf/me1DvcWPa3lxsuHCifUql7FQTNcyan3mAcX4LtOvzgVDVjNK7X5DxYW/NOdxZuAg9/EJwavRvpfBElaH5Gc1BrqUGztRfxGtHCvHX28fLgJhy6Ass/vbrVhH9KgflnEzoIAvPy1gLo3IfNaX0jLY0sODEdnxy5wQ81DVebvHW8e2Yc2gjMuJHIaXvMPndjqqzGLXt77AYjPJ/AlCUOA0RJj/sr72A1EMbsXzgRPl86dmDmHVgvfQNr0MxAC73Ohael/khU5WnOqLRpo2uBEC3dfySDbmDHpVTiErNq16XTEMCkknRmLo3F7nlR6T50IgyB+Drkc9IjRVXncWk3SuwY/h0WFULDtdVYHzxp7IA8jaIRoXL8yH5QAo3q1nC4dSjgKtolAAcratEZvzdiAuKkMzz4ek9uCeyF3IGTICZK9J8yKSqnPXNZzTFBwqAFB8GbXofB0a/hFuCIuUl3FGwSDq0VwAmFR6782UWlpsex/1NJdDZaWvLhMgBoy2BmNbjDumMDo8H7/cbi192jpXnL/zmK7xe+u9WspAG9o+cKR11Z3UZBhZ8gM2J0zDEegO2VJzGs/vzcNHlPb2B7OS541hwfkaoEfgSjMfqYaL26gG6OcpxbgnqhC2JU6XAds2NGXvzkH/+aCtW6WIJwr6Rz8g5lNES85A2KFUhszIZFO80SlFTaKUuYAhD9nSjNTrmI2bgT+gJZu0BcGke9A0MR97gx9DJ1JDQ7aouQ3LxP6XpNQ0S8t5OvfHpgAflV8vLDksfoACna1AQE2KJzc8+TXdB482Jm4p6SsKoDlia8BAGhETL6S6hofv6t6VJtWynODQ3Ft42FpNv6CfnvVG6BVnHtnWcPvwXXYuCBkDkqjdv9RgMBQxoLpa93URbGlh0aqfk79TYRLzce0jzUnJo4nMq4uvcDqlgithkIntGPo0bLMFy7pQ9uVhZflim2foGqxRAoi159pHmtoo1LzOLm5QU4fStqJ9bsgkry0vwbM+BeLHXoObzl545KAscShvSbhohAdg9blkQDQzrhpERMXIuGZbh89dgVf10yU5Fvcfheqtq3NwUWtC6L5SfVU2W4EtbhQJOjH8IXmgh/K6acozetqTRbASm96AauqGPdOUgB57+9Sp9zS5KHyAu2sbOCWna5woA6Q9w1bRCOL23Cps6c5S00Xj1cAHeOr4Nf4gdjnmxidhTcw4JhdmIUP3k7dL8+6J6491bxzQLSYfaNQ+2VhJdrpG8r2fIIsbhmGBLTl3ZJoAeH6eZL0WYN4CxRG9aIBsmmhwc1k3uUVx1Bgdrv5fGcG+nPlh3/rik0paNSWKXuMCI5ihMAKiIOVT7PYKMJh1ZZ+N7Nk0UBVTYR5+e4qW1SAJZN6THwsmouRvg7VaaWizSBundXaMIdNvemrct1zSsa1ql5+5lEV/HuOhfOTb1WMsV3tvrGlZLuf4f2uskCBP62utN6ELzs2YqCn9fvhP7OUFQ0uZxPW8bM5cab1cN7816IVjYmvkvcoY/6Ukx9BmCj7MYgwZtVtWYue80Nv58ANA41ZqXfj8Yz2GM+f/PgDTUu5cBPsmWPLuZcXzTQIvZYesz47mb5TBV6feTvjMjUzcaIZyufRrXHqsak3q4I53pf9+z9r0gq/bDcwx4k34qoLeC60iA5udGhSosCLBXbbx+Icak1epZqx9A026FaYq1Tl3AGJ8IhjBw3vhTAx89vYF/KdJR1KwCRE7l2F6zwfS9oW8zkOlB3DQnLPftbjA4RnHGBgEsAQbej14BUYNMUC3b0MZrmN74Yw/GOUANKYr0Hm2fAIohsEOoxsKq0S+f8eX86wbQfJhI4yG5CILZFMI0DDYIFisEegPy07cx2B0TAicYwwkPE6WCoxh2R03N/agFS9PXDvGC7j/R60MPxR0oSAA
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 67:
/*!********************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/static/zeren/4508.png ***!
\********************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
3 years ago
3 years ago
module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALQAAAC0CAMAAAAKE/YAAAAAn1BMVEUAAABis0pYpzlis0piskpis0ljs0pYrkFis0tis0tisklis0lgskhgskhisklesERbsURis0pgskdis0pesEZis0lis0pgskhis0phsklis0pfsUdis0pis0piskpis0pis0pis0pis0pis0pis0phs0lhsklhskhjs0pis0pis0pis0pis0pis0pisklis0pis0pjs0phsklhs0ljs0skK+OrAAAANHRSTlMAgAb4piXICvPmZok0KkgTD7wgtxxxky/RU9YX4Zhr68xir6qyWT863J12e47AXsSh70ROX0/pQwAAIcpJREFUeNrMmAeT4jgQhWUJJxxwzgkb25jgAO///7az4fZuZmdhwoa7ryhDUSC9br1uWSa/FJHSdns8rcphUDtP6foy9bIwdmKDkv8hlDTbbpemZ26SpAQAw0KAGSFgibDiQt8g/x9E53AMXGlvsz5DnoBNACa8Qdql3EUk/z2idd2kSqIASEtMDEya5H0h7MqZnVDs5Vxi/8oGmO1a/6lwUT0WEuR6hLkoiuzMvbb8hr7yzYZXr65nFy9SH5ya/0q3xkVcgpk8kParrLFuljW0S5hlyt+4Wdjw4t1DbTZG+Bs2cj7544jqGUAKgMllZt2MorvpkGMhwivkVMkuzhKTs64ShnudCv2G/Em0k3mVMMMKpREJtXSuqxiQr+7OlbDAltc3WFIpR2OWSVtOkHAj+YPp9pWpkGQGREd/VnxRhBzIb3I7zAxJUJjZbleei0hmkCJpCYMlLNDX27qZdWuH4B7UVLbkD0D9HUsACfk4T2/oXY6/YdPZ9NyrH4vGJo5j3povG0N0nDDzSmFiiKphl+S2TsmM2skAsyWkFiW/Gb9imDlf3c2sOE3+doAUrNwLz7f1Ma12O9s8n+3Var6a9q6svEOoWpp+OF3k1DYTpuu1x1MSu4UUsD2TlN+c7fWEGWZqhDhcxHAj6GprdrUdmN2xbi1nI/6TOypuHL7tlZUZVIdLbF0zU4Ygy0IkcA4RLzZTZEgJx5PfhahZ6U2ySqg23jPMkpMqzqWVVJlGn9qqdcvEPKqidkoZZMbARp8S1bw3k+Pvadz0Ggy3Ha0htNnle4AhOjbadnUee+2D9bCuzLHmW4U77zFjhyJp7oZLf4eznZGdZGB1oTSs2hxAoVytrX3m2k+1281FGaraaVZReVu1kFJdADBV3K9PcwJ48uRSYpVybgO5Z/mnfarSLwx2GSNFo2GOBaGlNMslgG3JL8123DEArHOIRqt9hiA48qFt9gZ5gvUs3+tzebUOERYq/z4B446bX9jnIjAg0ImoJMWeJcnWcgXvvSRz/XzR40dV3Y7DOt7eZE+KQfUACMy1+quskTEgSTyD+BxbAfkxXu9PFnmPkPX+uSSP4dOg3hxkAPnYUtGboiFXs19ikU2HGUElcd2bnimnWn/2rI+sD2MMDXmG1p1D3pOAabFe3AFydCQ/j1ZgppqHLGyV80r1cu74D9WBwoDo3chWZuvbAKQqJk4FnK4/f/OnybfWT0W9K6R8p1vV0L4wZn27/shTaxlgjHHvrnZTdE6455SuyAx6ZOUh4hryU4QjgORKxE7Zg5XaVnjlOWq6xMiUH4nmm9pmO2/1fmWJh6F2tKLKy1IjesdlctKTr0MPkwQUPqH1kCfT2re/d4bH0kJ6ZPC20IlBP7KcVcn3Ary66Al/kFZFZJAvc2AAbIP0e2Cq+Tq6ku9wAXgPU+g+UxySF/TR1RLAICnU2Mko1vVX86xISFhKjcsAMI/vdtabKmIAViJ5gEOeoHQiab3Nt2TbJ0dhRYIqph4DJI5+STPHECUKdUw2Yerbwf1enKXYAUMQlV8av8ZqlFzyDYMztVpJgLM1zyyEUyqSz3MCwA7EiYApaeug+VFg1Ewu/PZLon0AsvHSL9FF2wMYCHGZhPTy6WFpiHPCXMKXAASNO1sPpt69+ecmtjQ9XM9cdVWzNj+c21gv+qL49Zbg8gMg8bPqSeK8T28z7iDtcaC3vl86XfqonNXX7eSiVIf18Vhvm2sYhuuMU9KxXHH19weEDXfeS5iS8pXqzeq0qYBq/rhNALjkU8RKHpgHYgwMbLTOCn24Iv980Nwy9cP2TWKpGDduV1SZRV9/zeWu78av+01abjqwy70v5cGWfALD3LH6QPzl8J9q9oG8w6ZR7LH/5iCraevLwXWtftsammPc136tlFwrvqzjMSZvUCqrY8LyM44B0uUThnbP4chRfo/yrPDDe/GqSqk0izRRjMW+58wqADAWgZRPCpMj0+tV8XZoOXmc9W9af6jINWOO6YsID0CukQ+yKSO19qgTJQIb+aB/2nBpfe4acbHH8ZRM0j5n07k/csftNuxDrisDiQFgcre2FqEN5zr0m+ofV5MQp+V9PxZupfoxlEk2z7N05MmoDbNmsuPnKa4/8r5rc0tELWcCLC9St30zi6W7Y5ADUsEteeO5tN483YdNK+VvQQ0AVvRj5rBRHn06MqC0zJs3xoLPVv5b6x/spZKsrGRA4F35hxOIfJ0GwHTcxoQ4mWI9k+JW8d0Vt7Z9IB9Ao96uuxAOgOAMLllYnwPm0TfGKDKDEJ+TgITT6PsPELjZO+Oix8hS/9n9Q0WIxRNKLgXAdPIucWCcwZEawF4buXul7YRIXpPX+KUXE9qUtjyV+ocP9aUsBZ1PieNmT2qs85x9zh9r4i4ynHeH7XCwS+rvgLzlbtnlxwIDK6LmlTOUSr0/2dt97pmWpeRI3CXosRcfuqnK1DylgUpWH7H1dVZROeLAwPreNG4jxFo4mGvXftnlhLVINl4O6RiTT+IoTBq2lIj9YzWxcAknbRSMOGJg9TsDJsDYkhMArw3+XZcsEF+dz22N0DCTilNMvoCTRlKlUqJW/SPZWqQp9sb2iD4Bk/XUHGNy6uol3Si0oXkxzeVlHx8VkfAZ5J1PvkhrRoJnzGvlGQ/uC0LTEXQjCokCoHpmEF3GNIhLuid+lT1yJdcsY0IOKfkytM9htvOb8F0We31xpEMI51k7UZAtMcBTg4jlmjGddgBbbx9F5x8pIXVXeA75KXibJa5IGlslL2mmRuyDeLn/0fvaw0gbBkSPt6Pa4zASnQGVGj3QdDkYxDq45ZWSn4S6EsqYaKb+ah1zqcDx/jCOP7YTu1IPkDjyAOMv2s1suVUciqIHCQyY2ZgZDJ4wAY/x/v9v68KAh5iku7qS9XKvywGWpH2EBEms4DK3UyBvzzRKtJfJ2IRbm36BUr2EEiXO8XkgVUDt+nW6nml7pHaiIhe/3fJr53xxC/5ykdEox5qoPHy4Cf0K8xPUkuzNPbJG93i2f7iy2kZHFT4tvt/z7+JDJTJjAzjSabxhy4yI7fd7m36JZA3VJOtubdb+hKebw7Vrwinx97gE7PTd0pqt4cwMWgOKvlmO33k+ZCJZ9Bj9GuwDypWspzSWqcDmfUHVvtFUWLNPDmzGrmooUBraAcgi55t7gkyRcKrpV9G4YpLl6NQjPy0L5FBvaqBsaxFjXZ254GU7EHlwCr6b6z5Xv+1MTGtzbbize0yf5ypH8g6YMJ07E2ck0VyFQxEAb7of3zcGpKthQ79Mm5BUovIgj21o1pG35NiSu3ZGnnWvFA697ehqPhmrQtbYlKyqjH4ftkaY0DIbDa1jHcVVIesccN/GXgGc26Jj6WmjNx6TSNRcmf4A64SVzPwjjXDeBtNFtSUXUPSRh2AmeRyVNL6XjGSST5OE/oSZioYsRxrr6tBqsoPDSgDZl7amQCHPV0DTCGN94UvExHBGf0Sp8JJ2ztg4itNjkHNdPgHqa59tAXgkALlRWPROfSSaVlf6M2qkc6qbsa6ezBYNX9PWAV5vHxMgT+Yc8I9jidZFxqb5mdGfITs4k7wxxlJ9FWqFzxIVhfMiBY4zNQA3nJHj2CagSK0S+kOMC79SeR5bXqzmmxM0ygA8l2KjADu5yLHabcaWHBolp9CkP2WK2GYf5tggGNkijW39SynuXIQkxxd
/***/ }),
3 years ago
3 years ago
/***/ 84:
/*!******************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/static/dadui/11.png ***!
\******************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
3 years ago
3 years ago
module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA5wAAAGOCAMAAADM7fxaAAABGlBMVEUAAAB6cfGTifdnXfFnXvBwZ/KTiviSifiSifd9c/R8dPNnXvCQh/aVjPaUi/aMg/aHffV5cPN2bfODevWRh/ePhvdsY/GJgPWLgfZ4b/N7cvRwZ/KFfPWAd/R8c/OTifeBePR/dvR9c/RzavJnXvCIf/ZuZfF+dfSOhPdyafJrYvFqYfFpYPCCefR0a/N1bPNvZvKCefVmXfBlgOxnhO1he+2JgPaFfPRmgu1geOxjfO1heu2Ui/dkf+1nhex+dfNfd+xzbvFjfuxng+2GffRlgO1ohuxfdu1oh+xmg+1ngu1geO1lgexedu1qZPFifOxide1raPBlbu9maO9jce5kd+5ua/Fpc+9ofO5rbvBpeO5te+5vdfBxcfHJYoRYAAAAD3RSTlMAFo6l6H/zr+ZWOtDR0dCgddC9AABt9klEQVR42uydaW9SURCGqfsS9624i4qNVmlSoo1pMTekjTZ88QvS2v7/vyEMXF7Oes9h7lmofS33It+fvDNzZuY0RN24cPX2tSu7gl656aGrHum1odMdd63r9OTJk8kHL7Pey7rrrud6PSB9+/Zt+qIvqj4b9VqjFzq90emDRi9fvmyNP3iZ9VSne+5q6nTfouLvzwodCOr1evRw1S9JO3+e2bQlqa3XY1d91OnTXJuXbl68fKNh1NqFa7ta8eBU5QnnBgtOfLVLZZNHJ/AEowY5sQk4NYBWswk4ZwKGrTRwjv9DPwHOg58+ePb89EvW/nFNcLbrgHP69dLlNT2aV+GYYdmM65x4BDBOkMmA08c4CUwmnOUjqHM2q+FsTh70WgbOHh/OoY3NuM4JSC9q8LwONGVx0VThjIOn7JlWSN+rqtc26cGAE2LEtSQACEid8WTBCTxhn/ilCk45qGXiuTMauqMJPFXVjOel6zKbF8BiZN+EGGySqtCkzDM7OH1STn7SCRqrM0+WdTqwCfnDOck3c4DzsYfc2Nzc3Lwssnl1N0s473hJC6YxqOXDCbnCafDNB7HgJBydI9s49SDoxBHO3nLG2VXi2uRwAkkBzk8XzWxGLtZCDDhJJjhdGH0fwDqBp0WfzfIIarV4muEkVeIZHs7FXzqA08U7vdnsdmU4j5xyTogBJ8kNzokuCmxy4azBOfVB7QYzpJUj2/XIxgnr9K0IMTJOkj7b/CBh2XLiEnA+5deDoKYPnBKYrnR2zRWhP15sMjJOcKnAqQN0kc7rWbAJOAVx8k2AGTSqfc6Ek5tyvtFLm3FyTjn5xVoFTeGXU3c4fXzTG84tvRhsAk5FJu+cVYXWrp19ONfP4cwNzubsnz+cvSXU1cC5c5wxnJfW5oXaDOpBjKiWZOsPwhdGwsmo1k645ES1AJMd1SKctTcgvAxXqgWdhfBTcVB3vglRwqnAOfSAk9GAQPKKasuS7dqVXTadgU45mbVatCAEgRNoWrwTcPJPOQGmC562FgSByhRwNuGd94sJlwTnYRDj7JI0cA5GwzTVIMCpR5P0eA3GmWMLQj1wkgLCCaWC840XnKTgcOoAlStBom/GhnNnYDpL2coBTrLOa3nAyck4+Umnnk0+nFA9GSfHOPlJ5z0PORRrkXMW1Z3vMy7p4cElPfRs7uyYzlL4Gacqr4yTdGk8hxInpoVCoGnmkp6ROxDUqRTuQQrQ5KScOEVxIDNKexAKQgWaazVcLmGb4NMC559hyFMUyFwMstF5o3EhBzg3osC5fg6neMSZBs751yZZ54xMK5zo2fMDswrO46zhvNy4mkM1aAziowATKVUCmyFPUmZkukW1EA9Olc4fP34AzGVyzvpiWoJSyTkN/XtSQ61v80G3lEgmaX/kDucWE07n9iDoYuPWbh6nnI/CVYPWw8AJ2eGEvFprGTmnCc7ZQMpynbX3fGSEE4bZpHdBVNLDCCcSTv90E5LYJO0NmTMpjIKQ2TVLRG82ruRxyvkoYKk2CzZNQW2kkRTA6VUQ4sNZnXCiIKTvQlhwTgacalBrrAhtBS0IVcOJitCVLIq1AUY5oTDlIMgFzYkYGSfIZExa69rdW8l2lKgdQs2ib4Gz51enFaWSSdI38AWyTX88Gxw2gWaWC4QcU89QvgkurQuEQse0ENDMYg0C/ZtXanHQGRPO46EGzRWB0zGofcVAMyicjrNiT4LDSY/0cCLhjA7nApelbRZIObHiy957cOCFJiSCOadzMMoLTko4oUa2xdqxPNAEnq7znIAzeLHWWg/ywpPT9o55TjDqUqyFmMXaJrqDpJAWZykqmSWeTlAKcJq8E3QOto+WKNZCSxVrIQc40w9aB+kOKqmkb9DXuMOc1Yhym/c8R1KUpDPOSIq+GgQV9KfACS3lmpA2qN0fbKtJZ7zuoJVxzrPWHyRSSa/MWhCC9wdV12qbaHonFScHC1yWf56V2go2YZz7Ex0Pc2rdk3PODEq1Y53D+X/BKc5ZE6IlnJAhpuXDuQM4Rwqc6XZ7qXBmYJzEZqCe9+Xg5E6LAUzUg7gNCJyJFES1k0/6QeuZcRKQtl0IB/WxCS7B5mAw2D+KfchZHdUCzixaEAJUg5R5Tp9qbT2LvQCmGU6WcZL84ETFNs1ICtDUeSfOUmCazsWgSjh3KKKdi+DkxLXtAHBuZgfnBgtOaKkmoUBb954z4AzVgqDOc6ZpQYBxwjtRrhX69sAmA041pAWco2E+LQgrA2cdGScp5bgYsk1GqRbiwLm4DjMT45QGxhbgpCdx+dPZOC1aAHOxVktZ597RlghnNhlnFnAGO0hxLAlx0GTs9uKhCbmPWZNz0hNKdpBSCNNi9EZFSN6DyaJTNE2wOXXOPfkwJV2tVnXO9DMp53AmgrOVBs5ms/RNgUy0vpNfQox4VgxqtXAirvWGsx0czuQxbbBJazcFCWoXwawLTk41CNcXMU5SePlmU/ZNBUx69HGC8pPvnOoZCjSYCXFtjGoQFAnOVww4w9/+V73bK4B3ahLOIDMpnq17rYD35gJOI6CAEw0IUrn2L9JNiJFvCmj+kuAk79z+MxTgTNhZq8AZOKSFIrPJucCID2eGXe+AE0px9Z/cWFsAUQOczqZZbZvQ/hzO0TCPrnc2nKryXorpFOCGgxOEJj1JgW06NQkx0CRVo4nmPaiYwalquTLQ+NNXyETGCe0dtZ9BOSzFrAvOTOes53AyUk4GnLw5ax84PWNaoJn2kLMQrZM+9DzpmXzTH86+ZJu/tHAOthf7EHIZ5awBzoe5LkEQY9p1TzjZXQjMaxg+M+tBb2wJJ75GhxPGSY9yeRDU6Zz2qRYkwrmMdxKU3T6BabJOCm0ncW1ZEspnzjoWnFC0Yi0YDeucjGItKWKxtjWRdEdKK07bu1qsnREKxyxTz05xOCUTctoTVDnAqfAJOMcloTyKtQqeDW496BWDy7DHnHBN6zwnZ8qaNZLyOdZWTByk6OY54x9zEpqQ4JyVSWc1nKCTACXztDgnzY0BzmfpV717wsk3z8hsAslVa0Fg3MNgMU4gmGIkRXsLQ7OQWvemdJ44ggks7cbZn5impSIkHHVGM85P53CuIpyvzyCcwFPe7AUs6d0ZN/D1neCEZ+qrQf3++I/QRERrgJOOOlcIzjF0u45RbZZ79xDO8hoQ+ClnbXv3XnNSToSz6Yu1zUIT1xZlWDtOOntuztm1qg80NWyOgUTKOaCSUPJ60GbtcGY8kvIEWo+8TVqa5+SfclbDCdnhJFkpDXdJCna9F7BO8ElsjpNOghPy8U2g+YvgBJomOIXu9yBLEM4anLWsxMxg1XuucFoVMKglMMtHofQHFTXC2a2Cs9yEAOuMB+cnVziT35ISZkOJ60RKmBUlEHNFCcReWUt8JoITbNLDsHuP4lqnpLNrF2E5jWn7gNOWdJJ1RmveM7CpNr4nWokJMdAkmWtBHmjy4YQ0XPJXlPAuSanYVQuFXx6EkZQCz0XrPLXDCQSrjbM/oVNnm+CypPN4uOUK52M/eYxZ/39wrq8YnJ8Dw9lKDqdwZy62lVDOaa0IIZq1FmpnVPanr0MnOPe
3 years ago
3 years ago
/***/ }),
3 years ago
3 years ago
/***/ 85:
/*!*****************************************************!*\
!*** F:/2/Jinan_app/Jinan_app/static/dadui/9.png ***!
\*****************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
3 years ago
3 years ago
module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA5wAAAGOCAMAAADM7fxaAAAA4VBMVEUAAABShf1ll/5dkf9zpP5Shf5zpP9zpP5zpP5ShP1ShP1hlP9fk/9ilP9ThP1tn/5xo/5hk/1gkf1Uh/1llv1voP5ajP1cjv1snf5omf5jlP1pmv5klf1nmP5rnP5wof5ekP1dj/1WiP1ml/5zpP5Shf1Yiv1Xif1Zi/10pf5qm/1Rl/ZVnfVqm/5SmfZUm/VRg/1QlfZWn/VPlPZTmvVXofVWnfVWoPVTmvZPk/dQk/dllv5QlPdTkvhZjfxTi/tVmfdRjvlVnPZWi/xVlvhVjvpbkvtXkfpZlvlYmPhYnPfog3e3AAAAD3RSTlMAfnAK8NCwhNio8SMUTOfMasnuAABMw0lEQVR42uydi05TQRCGK96v9YYRCoKFIDWtTU6wNSFpiCKtvv8DuZy2/pzu2Z3dmbPbKfrHPdIH+DL3mVZVT7cePHh0rxei4+Nj80i9jNSBT9u02hy9d+uDT59LDQbmM3/QoNPpmFevnZ0d82q1v79vPm4d1ent27fm+bW3t2devXZ3d82r1atIvQ7V4VK/vsZo7FNxU/1+37w6DS/fVXV6emperU4IfXKp2+2aR+rNQk/u33+89bTl1LOHj8BeIKCZ8IQywknjOVhoCSl+GHXc2iHEgJNk06ddn9LAefhXs69xCoSzb/65dDGx4HQrFk4oFE7o/p1ntWjefXivx2AzC58AMyOcNJ0AEsYTvzteyeC0lQBOKCmcV18jFcYmzKatiynAFPLJYhNgmlfVkzt3bTa3YtGM4fI4ksuXQjijESXIdPAJID+Xwu8OIS+X5kvAuU+geR6GJkRwuRsJ5ysaTehqFE2mg0+AWX7cGs5C0ASXpwScJxSZNJzQi61VNh/2GGbTfBIYTV1u7QevBoBz/gcDTkHMKbebgDNVzEnD+VtqNqEFm0BT4tfKY85PIYDaulN1aR/0WApAk4knz3TCaDZGphdPQ+KHOZjwbRe/CTA7XJ92n5kPIsDcc6EZ69OWHxrNm3j+iiEzIOaEQ0v6tcgHcX1a4Cn1a6Hu45uuLdiME82mgXMjskHtejgJAcZqLkgOZz2i7niTcmzPWXC+ioUTioBzNg6HM8hwBpjOy0g4TwmzyYTTpcdcnxZKkAuSspnVqx1AwLTktCykDJrOBx05xS+k0PmgRMla6GrcZCUF4eZI7NcCz0xs2p7t8wVryuso29u64FzyCJt5E05CHi7TwOmTjEw5nKNxo3WUfoC+Twk4wSUDTjaa0PNFwHmPDad5AY5tJJyeQkoa4/meiDrdcJafOZr4mLdsQBiw8kH77HzQ0YpHe+6xmxBhNqMA5fi1V7+j4PxaDybgHIXQeTkhwASc0fkgZIQIOD2Evrj716m9HbaTbTaZfm19gdOI1R0EPOPonDN5xO4OIiQ3nXRGSOjXAs4+0CRTQhOgya9xCuuclGP77B4XzFsDZ1sIJ/7DH53UcMpTtWjdyw5nVTMxnHBoSzhDAJ0BzndNwgkwZXA+eQbDyYBTW2dtmw8nN1drBDgrv3llzhguoXRwcrmk4WQEnXQNpfwHOINLnQSZyTr3SNP5iMfmbYLTIQLMCo+V34xskAhOJX21DDajgk4PmUSBk+gSOm0ezq4czvtmDoVpODXSaZSr6x1RZrXvPThVywSUC6eqbC2wjA46vXCOYDcDTSfgbBjQbgN0Pm1t9fQUOV8K7SYTTfMR2c5K53tAyOkppLC6g8yHlA9MN52RWL4KAxN0Iujk5mkLoIlc0GgUwudwugDTS2f2bBC01XrABHMdcB6kgZPt2DrnORlWUwAnLcpq5oXT1lXBhLO4CWd/VMBshprOU0Ips0EEoI9bDzbEqd3eVuTUojuofp6z4xMFp6JhzlROLTPo9MJ5bS1HsJrBjQj5nVpUOamg89Et8WqTdCAQcDrnOTuEBGwmCDqTs0nzyc0IFdBo0Ro0Mgo2nSinNNyBIDGcgPOelkJK1lQQJNlPEjvPibZ3RnuQk0ui7V0ykxKjGC4ZQacj3gSfS8NZ8hlqOidzLt8x4EzVugc9aalJ1hoEzUcEJ4dQ3rgY/NjYec4dQt6Ycz9vzJlkXMwRdI6jx8UKoFnCCatpXrDpFMWcJynghFqSZG3OztpUAWdbEnPWjIwtwBwQqVqx6YRkZFIx526innd5pXOJJuAMJhMJ2wl8Wp7p5OKpAk7VMynAsCk4jbxwSkqc8Y4t4Dxn99WmgfM1q9Jpt9NCfcAZU+ucUHWUDYRzDWzSgGZjEzsQauc50+z1cuGpo5IitJ2zcRSbxarhNFyO/irKdK5vB0I3EZy3YWMtB03ACcFmcuCUm01auuoogDOuvbamggItbCbglEadtNlMnxFqbUrAGdSAsB0JJ7lAiLSbNfOcYFO4TtpuQKBmUs5r5zn5Rc7ojFAInGTQSXchAE1Mo5RMgs1ADc1cZ+ycNfA8EdhNHpw0mOm2vcvgzFDnBJxWgVPeWEt1B6VorN1V0IMQ6tcuwXTAGWU2MdfZdMg57w76tE44tTUhtJmKsJvQALLmOZENYsJJ8ynfHgTl6t4DnKxiCuxmUdh0jqDghC1WIrDgdNpNgClPCGnpQaCCTkWde0s46+c5vXAKcrVcMks4teRqAWOsX+tY7C6HczjVOMxZqqWETS+Yyjr3rr1a9zwnSGwSzqSTnDn7g6CoYsq4IptNqB+p4cWEAac4G/QfTlpcOL3znIpOpAgAzVJFgWaBcDq9WiiSTqdju3FwllcY9B0XA55pu4Pg2DrmOb0La+PJhPhomg9vd1BG20kXU6waSh2faK0V54ROCMmvMNBwar8sxhi0FsAJMAMGrQEnfnO8WlRSPGBy4fTZzHzZIIjl18JsEmiCS4HpRCXFA6YIzlDLqcKp1bbqPeQMgz3P+d+pTeXXllxadIqDTuSENLYgGDj/1f6ga0mytZ55TvHuILlXC2mqcaIDIdavLeGkLSfoFDu2J4RUwlmS17sFh/+oQgpvnhMzKYyte8xCCt32/lZHV60bzo9GjonrlSmUej7ZZMKxlaMJLpsaGdsApzYZnGy/duCe5+x41SycOjZ7SVbWAk6jWTH2x5shbm1fTqcczn8n5izpO8h1y5rOB9Xf4zQv6LaYg8+IW9YQ8wwD1NylecYZBgtQ+LV1E9ZA00smo9A5HNphJ3nLWuTT/oczKZwfHHAyDKcETsKxzbKw9nUEnD59RL7WMYnigbOA2eTBefEzK5xhHUL6RzlTzYvx73ICS2ueU8Dmzs4/t0wauo45Dy2/1l5RS9pOpoZnl5MVNjevCeG2bHpnDHPi7p99jzPRxlqIG28qmrP2m81rrfTXWg17KeEcnk0nkqATXK4Vzl7YKKfmY/PLBoR2BJqAc3V+E3+SASexdo91bP7Ic2yeWiDE2B0k6Q3y5IPMg1+LgBNsuvkcyfNB1/o2JRsQAKZknXTCmDPDnLUcTXnrns92Ogqc5KQ1rzsIyuDWAs5sDQiA0/Jrb5RQ/DVOiAPmHE50wAPOJA0I64dzA84wxO+she0EnwCThpM7aK358p+0dQ98VvO1Y8poAs6iGThRT0l8IyW4lKL+8p+qGylzEudwQtUjDMqGOZVEnHTQCb82KuIEnH22hqWQFBJsQehqh1N7Xy0vGwQ4HfOcwDBPfxAlZWwShrOUMZ0AMzYbJGVznhSStyDkd2uhze8P4sGJQopnnlMTnNfSBOfrADh/x8IJOiWVTtAZCqe+JoQwq9n4bq8D8goDQ4wrDKilIMgU7g6CQhbWyncHQfmuMIBM2q+dFTaYoJMa5OSBWaXzBxlyyq+LrRFOBpqZp8WiqyhQdX4T4sFJZ2slqVqf3WwQTmHXO7K1pV/rsJrJ4IRgO9e7Owhwbn4LQt6JlJsZWmvPl6Js0ALQDVjtBad2nhKCMjq10MU0wRkGplurfgvCwYHao7lglFXjhHgnczcqI0R7tTCdMXwK2ISqdP6UrCjp0koDZ/Ak5wa3vZcEhuRrkbJlXLMWtr0z7nGSaMrb3uVolimhwuZyHACnhMsqnZc
3 years ago
/***/ })
3 years ago
}]);
3 years ago
//# sourceMappingURL=../../.sourcemap/mp-weixin/common/vendor.js.map