snow 1 year ago
parent
commit
c8439b064b

+ 1 - 0
.gitignore

@@ -1 +1,2 @@
 node_modules
+.history

File diff suppressed because it is too large
+ 22 - 0
dist/app.js


File diff suppressed because it is too large
+ 9 - 0
dist/chunk-elementUI.js


File diff suppressed because it is too large
+ 34 - 0
dist/chunk-libs.js


File diff suppressed because it is too large
+ 22 - 5
dist/index.html


+ 926 - 0
dist/runtime.js

@@ -0,0 +1,926 @@
+/******/ (function(modules) { // webpackBootstrap
+/******/ 	// install a JSONP callback for chunk loading
+/******/ 	function webpackJsonpCallback(data) {
+/******/ 		var chunkIds = data[0];
+/******/ 		var moreModules = data[1];
+/******/ 		var executeModules = data[2];
+/******/
+/******/ 		// add "moreModules" to the modules object,
+/******/ 		// then flag all "chunkIds" as loaded and fire callback
+/******/ 		var moduleId, chunkId, i = 0, resolves = [];
+/******/ 		for(;i < chunkIds.length; i++) {
+/******/ 			chunkId = chunkIds[i];
+/******/ 			if(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {
+/******/ 				resolves.push(installedChunks[chunkId][0]);
+/******/ 			}
+/******/ 			installedChunks[chunkId] = 0;
+/******/ 		}
+/******/ 		for(moduleId in moreModules) {
+/******/ 			if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
+/******/ 				modules[moduleId] = moreModules[moduleId];
+/******/ 			}
+/******/ 		}
+/******/ 		if(parentJsonpFunction) parentJsonpFunction(data);
+/******/
+/******/ 		while(resolves.length) {
+/******/ 			resolves.shift()();
+/******/ 		}
+/******/
+/******/ 		// add entry modules from loaded chunk to deferred list
+/******/ 		deferredModules.push.apply(deferredModules, executeModules || []);
+/******/
+/******/ 		// run deferred modules when all chunks ready
+/******/ 		return checkDeferredModules();
+/******/ 	};
+/******/ 	function checkDeferredModules() {
+/******/ 		var result;
+/******/ 		for(var i = 0; i < deferredModules.length; i++) {
+/******/ 			var deferredModule = deferredModules[i];
+/******/ 			var fulfilled = true;
+/******/ 			for(var j = 1; j < deferredModule.length; j++) {
+/******/ 				var depId = deferredModule[j];
+/******/ 				if(installedChunks[depId] !== 0) fulfilled = false;
+/******/ 			}
+/******/ 			if(fulfilled) {
+/******/ 				deferredModules.splice(i--, 1);
+/******/ 				result = __webpack_require__(__webpack_require__.s = deferredModule[0]);
+/******/ 			}
+/******/ 		}
+/******/
+/******/ 		return result;
+/******/ 	}
+/******/ 	function hotDisposeChunk(chunkId) {
+/******/ 		delete installedChunks[chunkId];
+/******/ 	}
+/******/ 	var parentHotUpdateCallback = (typeof self !== 'undefined' ? self : this)["webpackHotUpdate"];
+/******/ 	(typeof self !== 'undefined' ? self : this)["webpackHotUpdate"] = // eslint-disable-next-line no-unused-vars
+/******/ 	function webpackHotUpdateCallback(chunkId, moreModules) {
+/******/ 		hotAddUpdateChunk(chunkId, moreModules);
+/******/ 		if (parentHotUpdateCallback) parentHotUpdateCallback(chunkId, moreModules);
+/******/ 	} ;
+/******/
+/******/ 	// eslint-disable-next-line no-unused-vars
+/******/ 	function hotDownloadUpdateChunk(chunkId) {
+/******/ 		var script = document.createElement("script");
+/******/ 		script.charset = "utf-8";
+/******/ 		script.src = __webpack_require__.p + "" + chunkId + "." + hotCurrentHash + ".hot-update.js";
+/******/ 		if (null) script.crossOrigin = null;
+/******/ 		document.head.appendChild(script);
+/******/ 	}
+/******/
+/******/ 	// eslint-disable-next-line no-unused-vars
+/******/ 	function hotDownloadManifest(requestTimeout) {
+/******/ 		requestTimeout = requestTimeout || 10000;
+/******/ 		return new Promise(function(resolve, reject) {
+/******/ 			if (typeof XMLHttpRequest === "undefined") {
+/******/ 				return reject(new Error("No browser support"));
+/******/ 			}
+/******/ 			try {
+/******/ 				var request = new XMLHttpRequest();
+/******/ 				var requestPath = __webpack_require__.p + "" + hotCurrentHash + ".hot-update.json";
+/******/ 				request.open("GET", requestPath, true);
+/******/ 				request.timeout = requestTimeout;
+/******/ 				request.send(null);
+/******/ 			} catch (err) {
+/******/ 				return reject(err);
+/******/ 			}
+/******/ 			request.onreadystatechange = function() {
+/******/ 				if (request.readyState !== 4) return;
+/******/ 				if (request.status === 0) {
+/******/ 					// timeout
+/******/ 					reject(
+/******/ 						new Error("Manifest request to " + requestPath + " timed out.")
+/******/ 					);
+/******/ 				} else if (request.status === 404) {
+/******/ 					// no update available
+/******/ 					resolve();
+/******/ 				} else if (request.status !== 200 && request.status !== 304) {
+/******/ 					// other failure
+/******/ 					reject(new Error("Manifest request to " + requestPath + " failed."));
+/******/ 				} else {
+/******/ 					// success
+/******/ 					try {
+/******/ 						var update = JSON.parse(request.responseText);
+/******/ 					} catch (e) {
+/******/ 						reject(e);
+/******/ 						return;
+/******/ 					}
+/******/ 					resolve(update);
+/******/ 				}
+/******/ 			};
+/******/ 		});
+/******/ 	}
+/******/
+/******/ 	var hotApplyOnUpdate = true;
+/******/ 	// eslint-disable-next-line no-unused-vars
+/******/ 	var hotCurrentHash = "64d87f4867b0a312506a";
+/******/ 	var hotRequestTimeout = 10000;
+/******/ 	var hotCurrentModuleData = {};
+/******/ 	var hotCurrentChildModule;
+/******/ 	// eslint-disable-next-line no-unused-vars
+/******/ 	var hotCurrentParents = [];
+/******/ 	// eslint-disable-next-line no-unused-vars
+/******/ 	var hotCurrentParentsTemp = [];
+/******/
+/******/ 	// eslint-disable-next-line no-unused-vars
+/******/ 	function hotCreateRequire(moduleId) {
+/******/ 		var me = installedModules[moduleId];
+/******/ 		if (!me) return __webpack_require__;
+/******/ 		var fn = function(request) {
+/******/ 			if (me.hot.active) {
+/******/ 				if (installedModules[request]) {
+/******/ 					if (installedModules[request].parents.indexOf(moduleId) === -1) {
+/******/ 						installedModules[request].parents.push(moduleId);
+/******/ 					}
+/******/ 				} else {
+/******/ 					hotCurrentParents = [moduleId];
+/******/ 					hotCurrentChildModule = request;
+/******/ 				}
+/******/ 				if (me.children.indexOf(request) === -1) {
+/******/ 					me.children.push(request);
+/******/ 				}
+/******/ 			} else {
+/******/ 				console.warn(
+/******/ 					"[HMR] unexpected require(" +
+/******/ 						request +
+/******/ 						") from disposed module " +
+/******/ 						moduleId
+/******/ 				);
+/******/ 				hotCurrentParents = [];
+/******/ 			}
+/******/ 			return __webpack_require__(request);
+/******/ 		};
+/******/ 		var ObjectFactory = function ObjectFactory(name) {
+/******/ 			return {
+/******/ 				configurable: true,
+/******/ 				enumerable: true,
+/******/ 				get: function() {
+/******/ 					return __webpack_require__[name];
+/******/ 				},
+/******/ 				set: function(value) {
+/******/ 					__webpack_require__[name] = value;
+/******/ 				}
+/******/ 			};
+/******/ 		};
+/******/ 		for (var name in __webpack_require__) {
+/******/ 			if (
+/******/ 				Object.prototype.hasOwnProperty.call(__webpack_require__, name) &&
+/******/ 				name !== "e" &&
+/******/ 				name !== "t"
+/******/ 			) {
+/******/ 				Object.defineProperty(fn, name, ObjectFactory(name));
+/******/ 			}
+/******/ 		}
+/******/ 		fn.e = function(chunkId) {
+/******/ 			if (hotStatus === "ready") hotSetStatus("prepare");
+/******/ 			hotChunksLoading++;
+/******/ 			return __webpack_require__.e(chunkId).then(finishChunkLoading, function(err) {
+/******/ 				finishChunkLoading();
+/******/ 				throw err;
+/******/ 			});
+/******/
+/******/ 			function finishChunkLoading() {
+/******/ 				hotChunksLoading--;
+/******/ 				if (hotStatus === "prepare") {
+/******/ 					if (!hotWaitingFilesMap[chunkId]) {
+/******/ 						hotEnsureUpdateChunk(chunkId);
+/******/ 					}
+/******/ 					if (hotChunksLoading === 0 && hotWaitingFiles === 0) {
+/******/ 						hotUpdateDownloaded();
+/******/ 					}
+/******/ 				}
+/******/ 			}
+/******/ 		};
+/******/ 		fn.t = function(value, mode) {
+/******/ 			if (mode & 1) value = fn(value);
+/******/ 			return __webpack_require__.t(value, mode & ~1);
+/******/ 		};
+/******/ 		return fn;
+/******/ 	}
+/******/
+/******/ 	// eslint-disable-next-line no-unused-vars
+/******/ 	function hotCreateModule(moduleId) {
+/******/ 		var hot = {
+/******/ 			// private stuff
+/******/ 			_acceptedDependencies: {},
+/******/ 			_declinedDependencies: {},
+/******/ 			_selfAccepted: false,
+/******/ 			_selfDeclined: false,
+/******/ 			_selfInvalidated: false,
+/******/ 			_disposeHandlers: [],
+/******/ 			_main: hotCurrentChildModule !== moduleId,
+/******/
+/******/ 			// Module API
+/******/ 			active: true,
+/******/ 			accept: function(dep, callback) {
+/******/ 				if (dep === undefined) hot._selfAccepted = true;
+/******/ 				else if (typeof dep === "function") hot._selfAccepted = dep;
+/******/ 				else if (typeof dep === "object")
+/******/ 					for (var i = 0; i < dep.length; i++)
+/******/ 						hot._acceptedDependencies[dep[i]] = callback || function() {};
+/******/ 				else hot._acceptedDependencies[dep] = callback || function() {};
+/******/ 			},
+/******/ 			decline: function(dep) {
+/******/ 				if (dep === undefined) hot._selfDeclined = true;
+/******/ 				else if (typeof dep === "object")
+/******/ 					for (var i = 0; i < dep.length; i++)
+/******/ 						hot._declinedDependencies[dep[i]] = true;
+/******/ 				else hot._declinedDependencies[dep] = true;
+/******/ 			},
+/******/ 			dispose: function(callback) {
+/******/ 				hot._disposeHandlers.push(callback);
+/******/ 			},
+/******/ 			addDisposeHandler: function(callback) {
+/******/ 				hot._disposeHandlers.push(callback);
+/******/ 			},
+/******/ 			removeDisposeHandler: function(callback) {
+/******/ 				var idx = hot._disposeHandlers.indexOf(callback);
+/******/ 				if (idx >= 0) hot._disposeHandlers.splice(idx, 1);
+/******/ 			},
+/******/ 			invalidate: function() {
+/******/ 				this._selfInvalidated = true;
+/******/ 				switch (hotStatus) {
+/******/ 					case "idle":
+/******/ 						hotUpdate = {};
+/******/ 						hotUpdate[moduleId] = modules[moduleId];
+/******/ 						hotSetStatus("ready");
+/******/ 						break;
+/******/ 					case "ready":
+/******/ 						hotApplyInvalidatedModule(moduleId);
+/******/ 						break;
+/******/ 					case "prepare":
+/******/ 					case "check":
+/******/ 					case "dispose":
+/******/ 					case "apply":
+/******/ 						(hotQueuedInvalidatedModules =
+/******/ 							hotQueuedInvalidatedModules || []).push(moduleId);
+/******/ 						break;
+/******/ 					default:
+/******/ 						// ignore requests in error states
+/******/ 						break;
+/******/ 				}
+/******/ 			},
+/******/
+/******/ 			// Management API
+/******/ 			check: hotCheck,
+/******/ 			apply: hotApply,
+/******/ 			status: function(l) {
+/******/ 				if (!l) return hotStatus;
+/******/ 				hotStatusHandlers.push(l);
+/******/ 			},
+/******/ 			addStatusHandler: function(l) {
+/******/ 				hotStatusHandlers.push(l);
+/******/ 			},
+/******/ 			removeStatusHandler: function(l) {
+/******/ 				var idx = hotStatusHandlers.indexOf(l);
+/******/ 				if (idx >= 0) hotStatusHandlers.splice(idx, 1);
+/******/ 			},
+/******/
+/******/ 			//inherit from previous dispose call
+/******/ 			data: hotCurrentModuleData[moduleId]
+/******/ 		};
+/******/ 		hotCurrentChildModule = undefined;
+/******/ 		return hot;
+/******/ 	}
+/******/
+/******/ 	var hotStatusHandlers = [];
+/******/ 	var hotStatus = "idle";
+/******/
+/******/ 	function hotSetStatus(newStatus) {
+/******/ 		hotStatus = newStatus;
+/******/ 		for (var i = 0; i < hotStatusHandlers.length; i++)
+/******/ 			hotStatusHandlers[i].call(null, newStatus);
+/******/ 	}
+/******/
+/******/ 	// while downloading
+/******/ 	var hotWaitingFiles = 0;
+/******/ 	var hotChunksLoading = 0;
+/******/ 	var hotWaitingFilesMap = {};
+/******/ 	var hotRequestedFilesMap = {};
+/******/ 	var hotAvailableFilesMap = {};
+/******/ 	var hotDeferred;
+/******/
+/******/ 	// The update info
+/******/ 	var hotUpdate, hotUpdateNewHash, hotQueuedInvalidatedModules;
+/******/
+/******/ 	function toModuleId(id) {
+/******/ 		var isNumber = +id + "" === id;
+/******/ 		return isNumber ? +id : id;
+/******/ 	}
+/******/
+/******/ 	function hotCheck(apply) {
+/******/ 		if (hotStatus !== "idle") {
+/******/ 			throw new Error("check() is only allowed in idle status");
+/******/ 		}
+/******/ 		hotApplyOnUpdate = apply;
+/******/ 		hotSetStatus("check");
+/******/ 		return hotDownloadManifest(hotRequestTimeout).then(function(update) {
+/******/ 			if (!update) {
+/******/ 				hotSetStatus(hotApplyInvalidatedModules() ? "ready" : "idle");
+/******/ 				return null;
+/******/ 			}
+/******/ 			hotRequestedFilesMap = {};
+/******/ 			hotWaitingFilesMap = {};
+/******/ 			hotAvailableFilesMap = update.c;
+/******/ 			hotUpdateNewHash = update.h;
+/******/
+/******/ 			hotSetStatus("prepare");
+/******/ 			var promise = new Promise(function(resolve, reject) {
+/******/ 				hotDeferred = {
+/******/ 					resolve: resolve,
+/******/ 					reject: reject
+/******/ 				};
+/******/ 			});
+/******/ 			hotUpdate = {};
+/******/ 			for(var chunkId in installedChunks)
+/******/ 			// eslint-disable-next-line no-lone-blocks
+/******/ 			{
+/******/ 				hotEnsureUpdateChunk(chunkId);
+/******/ 			}
+/******/ 			if (
+/******/ 				hotStatus === "prepare" &&
+/******/ 				hotChunksLoading === 0 &&
+/******/ 				hotWaitingFiles === 0
+/******/ 			) {
+/******/ 				hotUpdateDownloaded();
+/******/ 			}
+/******/ 			return promise;
+/******/ 		});
+/******/ 	}
+/******/
+/******/ 	// eslint-disable-next-line no-unused-vars
+/******/ 	function hotAddUpdateChunk(chunkId, moreModules) {
+/******/ 		if (!hotAvailableFilesMap[chunkId] || !hotRequestedFilesMap[chunkId])
+/******/ 			return;
+/******/ 		hotRequestedFilesMap[chunkId] = false;
+/******/ 		for (var moduleId in moreModules) {
+/******/ 			if (Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
+/******/ 				hotUpdate[moduleId] = moreModules[moduleId];
+/******/ 			}
+/******/ 		}
+/******/ 		if (--hotWaitingFiles === 0 && hotChunksLoading === 0) {
+/******/ 			hotUpdateDownloaded();
+/******/ 		}
+/******/ 	}
+/******/
+/******/ 	function hotEnsureUpdateChunk(chunkId) {
+/******/ 		if (!hotAvailableFilesMap[chunkId]) {
+/******/ 			hotWaitingFilesMap[chunkId] = true;
+/******/ 		} else {
+/******/ 			hotRequestedFilesMap[chunkId] = true;
+/******/ 			hotWaitingFiles++;
+/******/ 			hotDownloadUpdateChunk(chunkId);
+/******/ 		}
+/******/ 	}
+/******/
+/******/ 	function hotUpdateDownloaded() {
+/******/ 		hotSetStatus("ready");
+/******/ 		var deferred = hotDeferred;
+/******/ 		hotDeferred = null;
+/******/ 		if (!deferred) return;
+/******/ 		if (hotApplyOnUpdate) {
+/******/ 			// Wrap deferred object in Promise to mark it as a well-handled Promise to
+/******/ 			// avoid triggering uncaught exception warning in Chrome.
+/******/ 			// See https://bugs.chromium.org/p/chromium/issues/detail?id=465666
+/******/ 			Promise.resolve()
+/******/ 				.then(function() {
+/******/ 					return hotApply(hotApplyOnUpdate);
+/******/ 				})
+/******/ 				.then(
+/******/ 					function(result) {
+/******/ 						deferred.resolve(result);
+/******/ 					},
+/******/ 					function(err) {
+/******/ 						deferred.reject(err);
+/******/ 					}
+/******/ 				);
+/******/ 		} else {
+/******/ 			var outdatedModules = [];
+/******/ 			for (var id in hotUpdate) {
+/******/ 				if (Object.prototype.hasOwnProperty.call(hotUpdate, id)) {
+/******/ 					outdatedModules.push(toModuleId(id));
+/******/ 				}
+/******/ 			}
+/******/ 			deferred.resolve(outdatedModules);
+/******/ 		}
+/******/ 	}
+/******/
+/******/ 	function hotApply(options) {
+/******/ 		if (hotStatus !== "ready")
+/******/ 			throw new Error("apply() is only allowed in ready status");
+/******/ 		options = options || {};
+/******/ 		return hotApplyInternal(options);
+/******/ 	}
+/******/
+/******/ 	function hotApplyInternal(options) {
+/******/ 		hotApplyInvalidatedModules();
+/******/
+/******/ 		var cb;
+/******/ 		var i;
+/******/ 		var j;
+/******/ 		var module;
+/******/ 		var moduleId;
+/******/
+/******/ 		function getAffectedStuff(updateModuleId) {
+/******/ 			var outdatedModules = [updateModuleId];
+/******/ 			var outdatedDependencies = {};
+/******/
+/******/ 			var queue = outdatedModules.map(function(id) {
+/******/ 				return {
+/******/ 					chain: [id],
+/******/ 					id: id
+/******/ 				};
+/******/ 			});
+/******/ 			while (queue.length > 0) {
+/******/ 				var queueItem = queue.pop();
+/******/ 				var moduleId = queueItem.id;
+/******/ 				var chain = queueItem.chain;
+/******/ 				module = installedModules[moduleId];
+/******/ 				if (
+/******/ 					!module ||
+/******/ 					(module.hot._selfAccepted && !module.hot._selfInvalidated)
+/******/ 				)
+/******/ 					continue;
+/******/ 				if (module.hot._selfDeclined) {
+/******/ 					return {
+/******/ 						type: "self-declined",
+/******/ 						chain: chain,
+/******/ 						moduleId: moduleId
+/******/ 					};
+/******/ 				}
+/******/ 				if (module.hot._main) {
+/******/ 					return {
+/******/ 						type: "unaccepted",
+/******/ 						chain: chain,
+/******/ 						moduleId: moduleId
+/******/ 					};
+/******/ 				}
+/******/ 				for (var i = 0; i < module.parents.length; i++) {
+/******/ 					var parentId = module.parents[i];
+/******/ 					var parent = installedModules[parentId];
+/******/ 					if (!parent) continue;
+/******/ 					if (parent.hot._declinedDependencies[moduleId]) {
+/******/ 						return {
+/******/ 							type: "declined",
+/******/ 							chain: chain.concat([parentId]),
+/******/ 							moduleId: moduleId,
+/******/ 							parentId: parentId
+/******/ 						};
+/******/ 					}
+/******/ 					if (outdatedModules.indexOf(parentId) !== -1) continue;
+/******/ 					if (parent.hot._acceptedDependencies[moduleId]) {
+/******/ 						if (!outdatedDependencies[parentId])
+/******/ 							outdatedDependencies[parentId] = [];
+/******/ 						addAllToSet(outdatedDependencies[parentId], [moduleId]);
+/******/ 						continue;
+/******/ 					}
+/******/ 					delete outdatedDependencies[parentId];
+/******/ 					outdatedModules.push(parentId);
+/******/ 					queue.push({
+/******/ 						chain: chain.concat([parentId]),
+/******/ 						id: parentId
+/******/ 					});
+/******/ 				}
+/******/ 			}
+/******/
+/******/ 			return {
+/******/ 				type: "accepted",
+/******/ 				moduleId: updateModuleId,
+/******/ 				outdatedModules: outdatedModules,
+/******/ 				outdatedDependencies: outdatedDependencies
+/******/ 			};
+/******/ 		}
+/******/
+/******/ 		function addAllToSet(a, b) {
+/******/ 			for (var i = 0; i < b.length; i++) {
+/******/ 				var item = b[i];
+/******/ 				if (a.indexOf(item) === -1) a.push(item);
+/******/ 			}
+/******/ 		}
+/******/
+/******/ 		// at begin all updates modules are outdated
+/******/ 		// the "outdated" status can propagate to parents if they don't accept the children
+/******/ 		var outdatedDependencies = {};
+/******/ 		var outdatedModules = [];
+/******/ 		var appliedUpdate = {};
+/******/
+/******/ 		var warnUnexpectedRequire = function warnUnexpectedRequire() {
+/******/ 			console.warn(
+/******/ 				"[HMR] unexpected require(" + result.moduleId + ") to disposed module"
+/******/ 			);
+/******/ 		};
+/******/
+/******/ 		for (var id in hotUpdate) {
+/******/ 			if (Object.prototype.hasOwnProperty.call(hotUpdate, id)) {
+/******/ 				moduleId = toModuleId(id);
+/******/ 				/** @type {TODO} */
+/******/ 				var result;
+/******/ 				if (hotUpdate[id]) {
+/******/ 					result = getAffectedStuff(moduleId);
+/******/ 				} else {
+/******/ 					result = {
+/******/ 						type: "disposed",
+/******/ 						moduleId: id
+/******/ 					};
+/******/ 				}
+/******/ 				/** @type {Error|false} */
+/******/ 				var abortError = false;
+/******/ 				var doApply = false;
+/******/ 				var doDispose = false;
+/******/ 				var chainInfo = "";
+/******/ 				if (result.chain) {
+/******/ 					chainInfo = "\nUpdate propagation: " + result.chain.join(" -> ");
+/******/ 				}
+/******/ 				switch (result.type) {
+/******/ 					case "self-declined":
+/******/ 						if (options.onDeclined) options.onDeclined(result);
+/******/ 						if (!options.ignoreDeclined)
+/******/ 							abortError = new Error(
+/******/ 								"Aborted because of self decline: " +
+/******/ 									result.moduleId +
+/******/ 									chainInfo
+/******/ 							);
+/******/ 						break;
+/******/ 					case "declined":
+/******/ 						if (options.onDeclined) options.onDeclined(result);
+/******/ 						if (!options.ignoreDeclined)
+/******/ 							abortError = new Error(
+/******/ 								"Aborted because of declined dependency: " +
+/******/ 									result.moduleId +
+/******/ 									" in " +
+/******/ 									result.parentId +
+/******/ 									chainInfo
+/******/ 							);
+/******/ 						break;
+/******/ 					case "unaccepted":
+/******/ 						if (options.onUnaccepted) options.onUnaccepted(result);
+/******/ 						if (!options.ignoreUnaccepted)
+/******/ 							abortError = new Error(
+/******/ 								"Aborted because " + moduleId + " is not accepted" + chainInfo
+/******/ 							);
+/******/ 						break;
+/******/ 					case "accepted":
+/******/ 						if (options.onAccepted) options.onAccepted(result);
+/******/ 						doApply = true;
+/******/ 						break;
+/******/ 					case "disposed":
+/******/ 						if (options.onDisposed) options.onDisposed(result);
+/******/ 						doDispose = true;
+/******/ 						break;
+/******/ 					default:
+/******/ 						throw new Error("Unexception type " + result.type);
+/******/ 				}
+/******/ 				if (abortError) {
+/******/ 					hotSetStatus("abort");
+/******/ 					return Promise.reject(abortError);
+/******/ 				}
+/******/ 				if (doApply) {
+/******/ 					appliedUpdate[moduleId] = hotUpdate[moduleId];
+/******/ 					addAllToSet(outdatedModules, result.outdatedModules);
+/******/ 					for (moduleId in result.outdatedDependencies) {
+/******/ 						if (
+/******/ 							Object.prototype.hasOwnProperty.call(
+/******/ 								result.outdatedDependencies,
+/******/ 								moduleId
+/******/ 							)
+/******/ 						) {
+/******/ 							if (!outdatedDependencies[moduleId])
+/******/ 								outdatedDependencies[moduleId] = [];
+/******/ 							addAllToSet(
+/******/ 								outdatedDependencies[moduleId],
+/******/ 								result.outdatedDependencies[moduleId]
+/******/ 							);
+/******/ 						}
+/******/ 					}
+/******/ 				}
+/******/ 				if (doDispose) {
+/******/ 					addAllToSet(outdatedModules, [result.moduleId]);
+/******/ 					appliedUpdate[moduleId] = warnUnexpectedRequire;
+/******/ 				}
+/******/ 			}
+/******/ 		}
+/******/
+/******/ 		// Store self accepted outdated modules to require them later by the module system
+/******/ 		var outdatedSelfAcceptedModules = [];
+/******/ 		for (i = 0; i < outdatedModules.length; i++) {
+/******/ 			moduleId = outdatedModules[i];
+/******/ 			if (
+/******/ 				installedModules[moduleId] &&
+/******/ 				installedModules[moduleId].hot._selfAccepted &&
+/******/ 				// removed self-accepted modules should not be required
+/******/ 				appliedUpdate[moduleId] !== warnUnexpectedRequire &&
+/******/ 				// when called invalidate self-accepting is not possible
+/******/ 				!installedModules[moduleId].hot._selfInvalidated
+/******/ 			) {
+/******/ 				outdatedSelfAcceptedModules.push({
+/******/ 					module: moduleId,
+/******/ 					parents: installedModules[moduleId].parents.slice(),
+/******/ 					errorHandler: installedModules[moduleId].hot._selfAccepted
+/******/ 				});
+/******/ 			}
+/******/ 		}
+/******/
+/******/ 		// Now in "dispose" phase
+/******/ 		hotSetStatus("dispose");
+/******/ 		Object.keys(hotAvailableFilesMap).forEach(function(chunkId) {
+/******/ 			if (hotAvailableFilesMap[chunkId] === false) {
+/******/ 				hotDisposeChunk(chunkId);
+/******/ 			}
+/******/ 		});
+/******/
+/******/ 		var idx;
+/******/ 		var queue = outdatedModules.slice();
+/******/ 		while (queue.length > 0) {
+/******/ 			moduleId = queue.pop();
+/******/ 			module = installedModules[moduleId];
+/******/ 			if (!module) continue;
+/******/
+/******/ 			var data = {};
+/******/
+/******/ 			// Call dispose handlers
+/******/ 			var disposeHandlers = module.hot._disposeHandlers;
+/******/ 			for (j = 0; j < disposeHandlers.length; j++) {
+/******/ 				cb = disposeHandlers[j];
+/******/ 				cb(data);
+/******/ 			}
+/******/ 			hotCurrentModuleData[moduleId] = data;
+/******/
+/******/ 			// disable module (this disables requires from this module)
+/******/ 			module.hot.active = false;
+/******/
+/******/ 			// remove module from cache
+/******/ 			delete installedModules[moduleId];
+/******/
+/******/ 			// when disposing there is no need to call dispose handler
+/******/ 			delete outdatedDependencies[moduleId];
+/******/
+/******/ 			// remove "parents" references from all children
+/******/ 			for (j = 0; j < module.children.length; j++) {
+/******/ 				var child = installedModules[module.children[j]];
+/******/ 				if (!child) continue;
+/******/ 				idx = child.parents.indexOf(moduleId);
+/******/ 				if (idx >= 0) {
+/******/ 					child.parents.splice(idx, 1);
+/******/ 				}
+/******/ 			}
+/******/ 		}
+/******/
+/******/ 		// remove outdated dependency from module children
+/******/ 		var dependency;
+/******/ 		var moduleOutdatedDependencies;
+/******/ 		for (moduleId in outdatedDependencies) {
+/******/ 			if (
+/******/ 				Object.prototype.hasOwnProperty.call(outdatedDependencies, moduleId)
+/******/ 			) {
+/******/ 				module = installedModules[moduleId];
+/******/ 				if (module) {
+/******/ 					moduleOutdatedDependencies = outdatedDependencies[moduleId];
+/******/ 					for (j = 0; j < moduleOutdatedDependencies.length; j++) {
+/******/ 						dependency = moduleOutdatedDependencies[j];
+/******/ 						idx = module.children.indexOf(dependency);
+/******/ 						if (idx >= 0) module.children.splice(idx, 1);
+/******/ 					}
+/******/ 				}
+/******/ 			}
+/******/ 		}
+/******/
+/******/ 		// Now in "apply" phase
+/******/ 		hotSetStatus("apply");
+/******/
+/******/ 		if (hotUpdateNewHash !== undefined) {
+/******/ 			hotCurrentHash = hotUpdateNewHash;
+/******/ 			hotUpdateNewHash = undefined;
+/******/ 		}
+/******/ 		hotUpdate = undefined;
+/******/
+/******/ 		// insert new code
+/******/ 		for (moduleId in appliedUpdate) {
+/******/ 			if (Object.prototype.hasOwnProperty.call(appliedUpdate, moduleId)) {
+/******/ 				modules[moduleId] = appliedUpdate[moduleId];
+/******/ 			}
+/******/ 		}
+/******/
+/******/ 		// call accept handlers
+/******/ 		var error = null;
+/******/ 		for (moduleId in outdatedDependencies) {
+/******/ 			if (
+/******/ 				Object.prototype.hasOwnProperty.call(outdatedDependencies, moduleId)
+/******/ 			) {
+/******/ 				module = installedModules[moduleId];
+/******/ 				if (module) {
+/******/ 					moduleOutdatedDependencies = outdatedDependencies[moduleId];
+/******/ 					var callbacks = [];
+/******/ 					for (i = 0; i < moduleOutdatedDependencies.length; i++) {
+/******/ 						dependency = moduleOutdatedDependencies[i];
+/******/ 						cb = module.hot._acceptedDependencies[dependency];
+/******/ 						if (cb) {
+/******/ 							if (callbacks.indexOf(cb) !== -1) continue;
+/******/ 							callbacks.push(cb);
+/******/ 						}
+/******/ 					}
+/******/ 					for (i = 0; i < callbacks.length; i++) {
+/******/ 						cb = callbacks[i];
+/******/ 						try {
+/******/ 							cb(moduleOutdatedDependencies);
+/******/ 						} catch (err) {
+/******/ 							if (options.onErrored) {
+/******/ 								options.onErrored({
+/******/ 									type: "accept-errored",
+/******/ 									moduleId: moduleId,
+/******/ 									dependencyId: moduleOutdatedDependencies[i],
+/******/ 									error: err
+/******/ 								});
+/******/ 							}
+/******/ 							if (!options.ignoreErrored) {
+/******/ 								if (!error) error = err;
+/******/ 							}
+/******/ 						}
+/******/ 					}
+/******/ 				}
+/******/ 			}
+/******/ 		}
+/******/
+/******/ 		// Load self accepted modules
+/******/ 		for (i = 0; i < outdatedSelfAcceptedModules.length; i++) {
+/******/ 			var item = outdatedSelfAcceptedModules[i];
+/******/ 			moduleId = item.module;
+/******/ 			hotCurrentParents = item.parents;
+/******/ 			hotCurrentChildModule = moduleId;
+/******/ 			try {
+/******/ 				__webpack_require__(moduleId);
+/******/ 			} catch (err) {
+/******/ 				if (typeof item.errorHandler === "function") {
+/******/ 					try {
+/******/ 						item.errorHandler(err);
+/******/ 					} catch (err2) {
+/******/ 						if (options.onErrored) {
+/******/ 							options.onErrored({
+/******/ 								type: "self-accept-error-handler-errored",
+/******/ 								moduleId: moduleId,
+/******/ 								error: err2,
+/******/ 								originalError: err
+/******/ 							});
+/******/ 						}
+/******/ 						if (!options.ignoreErrored) {
+/******/ 							if (!error) error = err2;
+/******/ 						}
+/******/ 						if (!error) error = err;
+/******/ 					}
+/******/ 				} else {
+/******/ 					if (options.onErrored) {
+/******/ 						options.onErrored({
+/******/ 							type: "self-accept-errored",
+/******/ 							moduleId: moduleId,
+/******/ 							error: err
+/******/ 						});
+/******/ 					}
+/******/ 					if (!options.ignoreErrored) {
+/******/ 						if (!error) error = err;
+/******/ 					}
+/******/ 				}
+/******/ 			}
+/******/ 		}
+/******/
+/******/ 		// handle errors in accept handlers and self accepted module load
+/******/ 		if (error) {
+/******/ 			hotSetStatus("fail");
+/******/ 			return Promise.reject(error);
+/******/ 		}
+/******/
+/******/ 		if (hotQueuedInvalidatedModules) {
+/******/ 			return hotApplyInternal(options).then(function(list) {
+/******/ 				outdatedModules.forEach(function(moduleId) {
+/******/ 					if (list.indexOf(moduleId) < 0) list.push(moduleId);
+/******/ 				});
+/******/ 				return list;
+/******/ 			});
+/******/ 		}
+/******/
+/******/ 		hotSetStatus("idle");
+/******/ 		return new Promise(function(resolve) {
+/******/ 			resolve(outdatedModules);
+/******/ 		});
+/******/ 	}
+/******/
+/******/ 	function hotApplyInvalidatedModules() {
+/******/ 		if (hotQueuedInvalidatedModules) {
+/******/ 			if (!hotUpdate) hotUpdate = {};
+/******/ 			hotQueuedInvalidatedModules.forEach(hotApplyInvalidatedModule);
+/******/ 			hotQueuedInvalidatedModules = undefined;
+/******/ 			return true;
+/******/ 		}
+/******/ 	}
+/******/
+/******/ 	function hotApplyInvalidatedModule(moduleId) {
+/******/ 		if (!Object.prototype.hasOwnProperty.call(hotUpdate, moduleId))
+/******/ 			hotUpdate[moduleId] = modules[moduleId];
+/******/ 	}
+/******/
+/******/ 	// The module cache
+/******/ 	var installedModules = {};
+/******/
+/******/ 	// object to store loaded and loading chunks
+/******/ 	// undefined = chunk not loaded, null = chunk preloaded/prefetched
+/******/ 	// Promise = chunk loading, 0 = chunk loaded
+/******/ 	var installedChunks = {
+/******/ 		"runtime": 0
+/******/ 	};
+/******/
+/******/ 	var deferredModules = [];
+/******/
+/******/ 	// The require function
+/******/ 	function __webpack_require__(moduleId) {
+/******/
+/******/ 		// Check if module is in cache
+/******/ 		if(installedModules[moduleId]) {
+/******/ 			return installedModules[moduleId].exports;
+/******/ 		}
+/******/ 		// Create a new module (and put it into the cache)
+/******/ 		var module = installedModules[moduleId] = {
+/******/ 			i: moduleId,
+/******/ 			l: false,
+/******/ 			exports: {},
+/******/ 			hot: hotCreateModule(moduleId),
+/******/ 			parents: (hotCurrentParentsTemp = hotCurrentParents, hotCurrentParents = [], hotCurrentParentsTemp),
+/******/ 			children: []
+/******/ 		};
+/******/
+/******/ 		// Execute the module function
+/******/ 		modules[moduleId].call(module.exports, module, module.exports, hotCreateRequire(moduleId));
+/******/
+/******/ 		// Flag the module as loaded
+/******/ 		module.l = true;
+/******/
+/******/ 		// Return the exports of the module
+/******/ 		return module.exports;
+/******/ 	}
+/******/
+/******/
+/******/ 	// expose the modules object (__webpack_modules__)
+/******/ 	__webpack_require__.m = modules;
+/******/
+/******/ 	// expose the module cache
+/******/ 	__webpack_require__.c = installedModules;
+/******/
+/******/ 	// define getter function for harmony exports
+/******/ 	__webpack_require__.d = function(exports, name, getter) {
+/******/ 		if(!__webpack_require__.o(exports, name)) {
+/******/ 			Object.defineProperty(exports, name, { enumerable: true, get: getter });
+/******/ 		}
+/******/ 	};
+/******/
+/******/ 	// define __esModule on exports
+/******/ 	__webpack_require__.r = function(exports) {
+/******/ 		if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
+/******/ 			Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
+/******/ 		}
+/******/ 		Object.defineProperty(exports, '__esModule', { value: true });
+/******/ 	};
+/******/
+/******/ 	// create a fake namespace object
+/******/ 	// mode & 1: value is a module id, require it
+/******/ 	// mode & 2: merge all properties of value into the ns
+/******/ 	// mode & 4: return value when already ns object
+/******/ 	// mode & 8|1: behave like require
+/******/ 	__webpack_require__.t = function(value, mode) {
+/******/ 		if(mode & 1) value = __webpack_require__(value);
+/******/ 		if(mode & 8) return value;
+/******/ 		if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
+/******/ 		var ns = Object.create(null);
+/******/ 		__webpack_require__.r(ns);
+/******/ 		Object.defineProperty(ns, 'default', { enumerable: true, value: value });
+/******/ 		if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
+/******/ 		return ns;
+/******/ 	};
+/******/
+/******/ 	// getDefaultExport function for compatibility with non-harmony modules
+/******/ 	__webpack_require__.n = function(module) {
+/******/ 		var getter = module && module.__esModule ?
+/******/ 			function getDefault() { return module['default']; } :
+/******/ 			function getModuleExports() { return module; };
+/******/ 		__webpack_require__.d(getter, 'a', getter);
+/******/ 		return getter;
+/******/ 	};
+/******/
+/******/ 	// Object.prototype.hasOwnProperty.call
+/******/ 	__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
+/******/
+/******/ 	// __webpack_public_path__
+/******/ 	__webpack_require__.p = "/";
+/******/
+/******/ 	// __webpack_hash__
+/******/ 	__webpack_require__.h = function() { return hotCurrentHash; };
+/******/
+/******/ 	var jsonpArray = (typeof self !== 'undefined' ? self : this)["webpackJsonp"] = (typeof self !== 'undefined' ? self : this)["webpackJsonp"] || [];
+/******/ 	var oldJsonpFunction = jsonpArray.push.bind(jsonpArray);
+/******/ 	jsonpArray.push = webpackJsonpCallback;
+/******/ 	jsonpArray = jsonpArray.slice();
+/******/ 	for(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);
+/******/ 	var parentJsonpFunction = oldJsonpFunction;
+/******/
+/******/
+/******/ 	// run deferred modules from other chunks
+/******/ 	checkDeferredModules();
+/******/ })
+/************************************************************************/
+/******/ ([]);

BIN
dist/static/axios@0.21.0.min.js.gz


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.57351978.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/chunk-elementUI.ea413eac.css


BIN
dist/static/css/chunk-elementUI.ea413eac.css.gz


BIN
dist/static/img/bg-phone.e07669d9.jpg


BIN
dist/static/img/purch.bce458ee.png


BIN
dist/static/img/wechat.42e0fefc.png


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.f50918a4.js


BIN
dist/static/js/app.f50918a4.js.gz


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-elementUI.66e094f1.js


BIN
dist/static/js/chunk-elementUI.66e094f1.js.gz


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-libs.9ab6fb22.js


BIN
dist/static/js/chunk-libs.9ab6fb22.js.gz


BIN
dist/static/vue-router.min.js.gz


BIN
dist/static/vue.min.js.gz


+ 40 - 3
package-lock.json

@@ -4558,6 +4558,12 @@
       "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==",
       "dev": true
     },
+    "copy-text-to-clipboard": {
+      "version": "3.2.0",
+      "resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz",
+      "integrity": "sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==",
+      "dev": true
+    },
     "copy-webpack-plugin": {
       "version": "4.6.0",
       "resolved": "https://registry.npmmirror.com/copy-webpack-plugin/-/copy-webpack-plugin-4.6.0.tgz",
@@ -4934,6 +4940,11 @@
         "randomfill": "^1.0.3"
       }
     },
+    "crypto-js": {
+      "version": "4.1.1",
+      "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz",
+      "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw=="
+    },
     "css-color-names": {
       "version": "0.0.4",
       "resolved": "https://registry.npmmirror.com/css-color-names/-/css-color-names-0.0.4.tgz",
@@ -5659,9 +5670,9 @@
       }
     },
     "dayjs": {
-      "version": "1.11.7",
-      "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz",
-      "integrity": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ=="
+      "version": "1.11.9",
+      "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz",
+      "integrity": "sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA=="
     },
     "de-indent": {
       "version": "1.0.2",
@@ -10649,6 +10660,12 @@
       "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==",
       "dev": true
     },
+    "mutation-observer": {
+      "version": "1.0.3",
+      "resolved": "https://registry.npmjs.org/mutation-observer/-/mutation-observer-1.0.3.tgz",
+      "integrity": "sha512-M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA==",
+      "dev": true
+    },
     "mute-stream": {
       "version": "0.0.7",
       "resolved": "https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.7.tgz",
@@ -18076,6 +18093,26 @@
       "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
       "dev": true
     },
+    "vconsole": {
+      "version": "3.15.1",
+      "resolved": "https://registry.npmjs.org/vconsole/-/vconsole-3.15.1.tgz",
+      "integrity": "sha512-KH8XLdrq9T5YHJO/ixrjivHfmF2PC2CdVoK6RWZB4yftMykYIaXY1mxZYAic70vADM54kpMQF+dYmvl5NRNy1g==",
+      "dev": true,
+      "requires": {
+        "@babel/runtime": "^7.17.2",
+        "copy-text-to-clipboard": "^3.0.1",
+        "core-js": "^3.11.0",
+        "mutation-observer": "^1.0.3"
+      },
+      "dependencies": {
+        "core-js": {
+          "version": "3.32.1",
+          "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.32.1.tgz",
+          "integrity": "sha512-lqufgNn9NLnESg5mQeYsxQP5w7wrViSj0jr/kv6ECQiByzQkrn1MKvV0L3acttpDqfQrHLwr2KCMgX5b8X+lyQ==",
+          "dev": true
+        }
+      }
+    },
     "vendors": {
       "version": "1.0.4",
       "resolved": "https://registry.npmmirror.com/vendors/-/vendors-1.0.4.tgz",

+ 3 - 0
package.json

@@ -14,6 +14,8 @@
   "dependencies": {
     "compression-webpack-plugin": "^6.1.1",
     "core-js": "^2.6.5",
+    "crypto-js": "^4.1.1",
+    "dayjs": "^1.11.9",
     "element-ui": "^2.13.2",
     "exif-js": "^2.3.0",
     "http-server": "^0.12.3",
@@ -48,6 +50,7 @@
     "sass-loader": "^7.1.0",
     "script-ext-html-webpack-plugin": "2.1.3",
     "uglifyjs-webpack-plugin": "^2.1.2",
+    "vconsole": "^3.15.1",
     "vue-template-compiler": "^2.6.10"
   }
 }

+ 3 - 5
public/index.html

@@ -9,8 +9,8 @@
     <script src="./static/vue-router.min.js" rel="preload" as="script"></script>
     <script src="./static/axios@0.21.0.min.js" rel="preload" as="script"></script>
     <!-- <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script> -->
-    <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
-    <title>报表</title>
+    <script src="http://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
+    <title>登录方式选择</title>
     <style>
         [v-cloak] {
             display: none;
@@ -26,9 +26,7 @@
 
         // 安卓的解决方案是通过 WeixinJSBridge 对象将网页的字体大小设置为默认大小,并且重写设置字体大小的方法,让用户不能在该网页下设置字体大小:
         (function() {
-            // title
-
-            document.title = "业绩报表";
+            document.title = "登录方式选择";
 
             if (
                 typeof WeixinJSBridge == "object" &&

+ 2 - 0
src/api/axios.js

@@ -1,6 +1,8 @@
 
 const header = {
+  // "sign": true
 }
+
 window.ajaxTimeout = 20000
 export default async (
   url = '',

+ 10 - 5
src/api/index.js

@@ -1,9 +1,14 @@
 // 物业管理员
 import http from "@/api/axios";
-import { baseApi, reportApi } from "@/config";
-const api = "admin/";
+import { baseApi, baseReportApi } from "@/config";
+// const api = "WeChat/";
 export default {
-  // 获取微信授权信息...
-  signature: (data, params) => http(reportApi + api + "wechat_getconfig", data, "post", params),
-  userinfo: (data, params) => http(reportApi + api + "wechat_getinfo", data, "post", params),
+  // 获取微信授权配置信息...
+  config: (data, params) => http(baseApi + "getConfig", data, "post", params),
+  userinfo: (data, params) => http(baseApi + "WebAuth", data, "post", params),
+  login: (data, params) => http(baseApi + "login", data, "post", params),
+  accountQuery: (data, params) => http(baseApi + "accountquery", data, "post", params),
+  template: (data, params) => http(baseReportApi + "admin/WeTemplate/getTemplate", data, "post", params),
+  bindwx: (data, params) => http(baseApi + "bindwx", data, "post", params),
+
 };

BIN
src/assets/bg-phone.jpg


BIN
src/assets/purch.png


BIN
src/assets/wechat.png


+ 193 - 0
src/components/binding/index.vue

@@ -0,0 +1,193 @@
+<template>
+  <div class="binding-container">
+    <el-alert title="您的微信号未绑定过系统,请先绑定一个账号" :closable="false" type="warning" center show-icon />
+    <el-form label-width="80px" size="mini" style="margin-top:10px" ref="formRef" :model="formData" :rules="rules">
+      <el-form-item label="用户名:" prop="id">
+        <el-select
+          remote 
+          style="width:100%" 
+          v-model="formData.id" 
+          :loading="ol" 
+          :filterable="true" 
+          :remote-method="requestUserList"
+          @change="handleChange"
+          >
+          <!-- Number(item.is_wx) === 1 || -->
+          <el-option 
+            v-for="item in accounts" 
+            :key="item.value" 
+            :value="item.value" 
+            :disabled="Number(item.status) === 0"
+            :label="item.label">
+            <span style="float: left;">{{item.label}}</span>
+            <span v-if="Number(item.is_wx) === 1 || Number(item.status) === 0" style="float: right;color:#F56C6C">{{Number(item.is_wx) === 1 ? '已绑定' : '已禁用'}}</span>
+          </el-option>
+        </el-select>
+      </el-form-item>
+
+      <el-form-item label="手机号:" prop="phone">
+        <el-input :disabled="true" v-model="formData.phone" placeholder="手机号" />
+      </el-form-item>
+
+      <el-form-item label-width="140px" label="验证手机号后四位:" prop="lastCode">
+        <el-input :disabled="!formData.id" placeholder="手机号后四位" maxlength="4" v-model="formData.lastCode" @input="handleLastValue" />
+      </el-form-item>
+
+      <el-form-item style="display: flex;justify-content: flex-end;">
+        <!-- <el-button type="primary" @click="submit">绑定</el-button> -->
+        <wx-open-subscribe 
+          :template="template"
+          id="subscribe-btn" 
+          @success="handleSuccess" 
+          @error="handleError" 
+        >
+        <script type="text/wxtag-template">
+          <button>绑 定</button>
+        </script>
+      </wx-open-subscribe>
+      </el-form-item>
+    </el-form>
+  </div>
+</template>
+
+<script>
+import asyncRequest from "@/api"
+export default {
+  props: ["openid","template"],
+  data() {
+    const validate_num = (rule, value, callback) => {
+      if (!value) {
+        callback(new Error('请输入手机号后四位'))
+      } else if(value.length !== 4){
+        callback(new Error('输入号码不足四位'))
+      }else {
+        callback()
+      }
+    }
+
+    return {
+      visible:false,
+      template:"",
+      ol:false,
+      maxHeight: null,
+      loading_wx:true,
+      loading: false,
+      currentAccount: {},
+      formData: {
+        id: "",
+        phone: "",
+        lastCode: ""
+      },
+      rules:{
+        id:[{required:true,trigger:'change',message:'请选择用户'}],
+        phone:[{required:true,trigger:'change',message:'请输入手机号'}],
+        lastCode:[{required:true,trigger:'change',validator:validate_num}],
+      }
+    }
+  },
+  created() {
+    document.title = "绑定采销账号"
+  },
+  beforeDestory() {
+    document.title = ""
+  },
+  // mounted() {},
+  methods: {
+    handleSuccess(res){
+      const { detail } = res || {};
+      const { subscribeDetails } = detail || {};
+      const subscribes = JSON.parse(subscribeDetails)
+      let isAllSub = true;
+      const keys = Object.keys(subscribes)
+
+
+      console.log(subscribes)
+
+      for(const key of keys){
+        const { status } = JSON.parse(subscribes[key])
+        if(status !== "accept"){
+          isAllSub = false
+          break
+        }
+      }
+
+      if(!isAllSub){
+        this.$message.warning("请订阅全部消息后,再进行绑定")
+      }else{
+        this.submit();
+      }
+    },
+    handleError(){
+      this.$message.warning("订阅失败,请重试!")
+    },
+    handleLastValue(value){
+      this.formData.lastCode = value.replace(/[^\d]/g,'');
+      let { lastCode = "", phone } = this.formData
+      let phoneLastCode = []
+      for(let i = 0;i < 4;i ++){ phoneLastCode[i] = lastCode[i] || "*" }
+      const phonePreCode = phone.slice(0, 7) 
+      console.log(phonePreCode)
+      this.formData.phone= phonePreCode + phoneLastCode.join("");
+    },
+    handleChange(value) {
+      const item = this.accounts.find(({ value: oV }) => oV === value)
+
+      this.formData = {
+        id: item.value,
+        phone: item.mobile,
+        lastCode: ""
+      }
+    },
+    async submit(){
+      try{
+        await this.$refs.formRef.validate();
+        const { id,lastCode } = this.formData;
+        this.loading = true
+        const result = await asyncRequest.bindwx({ id, lastCode, openId:this.openid })
+        this.loading = false;
+        if(result.code === 0){
+          this.$emit("bind",result.data.token);
+        }else{
+          this.$message.error(result.message)
+        }
+
+      }catch(err){
+        console.log(err)
+      }
+    },
+    async requestUserList(qs) {
+      this.ol = true
+      const result = await asyncRequest.accountQuery({ openId: this.openid, nickname: qs })
+      this.ol = false;
+
+      const { code, data } = result;
+      if (code === 0) {
+        const { list } = data;
+        this.accounts = list.map(({ id, nickname, mobile,is_wx,status }) => ({
+          value: id,
+          label: nickname,
+          mobile,
+          is_wx,
+          status
+        }))
+
+      } else {
+        this.accounts = []
+      }
+    },
+  }
+}
+</script>
+
+
+<style lang="scss" scoped>
+.binding-container {
+  display: flex;
+  flex-direction: column;
+  align-items:center;
+  /deep/.el-form {
+    width:95%;
+    max-width:500px;
+  }
+}
+</style>

+ 6 - 3
src/components/unusual/index.vue

@@ -1,18 +1,21 @@
 <template>
   <div>
-    <el-empty description="未获取到用户数据" image="/static/warning.png">
-      <el-button type="primary" @click="toLogin">重新登录</el-button>
+    <el-empty :description="message" image="/static/warning.png">
+      <el-button type="primary" @click="toLogin">重新获取微信授权</el-button>
     </el-empty>
   </div>
 </template>
 
 <script>
+import { getParameterByName } from "@/utils/auth"
 export default {
   name:'UnusualState',
   props:['message'],
   methods:{
     toLogin(){
-      this.$router.push('/login')
+      const name = getParameterByName("name")
+      const back = getParameterByName("back")
+      this.$router.push('/login?' + "name=" + name + "&back=" + back )
     }
   }
 }

+ 5 - 2
src/config/env.development.js

@@ -2,12 +2,15 @@
 
 module.exports = {
   title: "业绩报表",
-  baseApi: "http://inv.sitw.wanyuhengtong.com/",
+  baseApi: "http://user.test241.wanyuhengtong.com/",
+  baseReportApi: "http://report.test241.wanyuhengtong.com/",
   cxApi: "http://stock.api.wanyuhengtong.com/",
   fileURL: `https://api2.edu.futurelab.tv`,
   reportApi: "http://cxinv.api.caixiao365.com/",
-  appId: "wxfa1f1a0211edf630",
+  appId: "wx975a4b5b19681d8b",
   redirect:'http://depart.test241.wanyuhengtong.com/',
+  authUrl: 'http://rep.caixiao365.com',
+  wechatEnv: 'micromessenger',
   ding: {
     //企业id
     CorpId: "dingc78fa4301e1a424a35c2f4657eb6378f",

+ 2 - 0
src/config/env.prod.js

@@ -8,6 +8,8 @@ module.exports = {
   reportApi: "http://cxinv.api.caixiao365.com/",
   appId: "wxfa1f1a0211edf630",
   redirect:'http://cxinv.api.caixiao365.com/',
+  authUrl: 'http://rep.caixiao365.com',
+  wechatEnv: 'micromessenger',
   ding: {
     //企业id
     CorpId: "dingc78fa4301e1a424a35c2f4657eb6378f",

+ 3 - 0
src/main.js

@@ -11,11 +11,14 @@ import {
 } from 'element-ui';
 import 'element-ui/lib/theme-chalk/index.css';
 
+
 Vue.component(Table.name, Table);
 Vue.component(Select.name, Select);
 Vue.component(Option.name, Option);
 Vue.component(DatePicker.name, DatePicker);
 
+// Vue.config.ignoreElements = ['wx-open-subscribe']
+
 Vue.use(router)
 Vue.use(Components);
 

+ 5 - 1
src/pages/login.vue

@@ -4,10 +4,14 @@
 
 <script>
 import config from "@/config"
+import { getParameterByName } from "@/utils/auth"
+
 export default {
   name:'login',
   async mounted () {
-      const redirect_url = encodeURIComponent('http://rep.caixiao365.com/')
+      const name = getParameterByName("name")
+      const back = getParameterByName("back")
+      const redirect_url = encodeURIComponent(`http://rep.test241.wanyuhengtong.com/#/wechat?name=${name}&back=${back}`)
       var state = 'wx_' + Math.random().toString(36).substr(2, 15)
       const scope = 'snsapi_userinfo'
       const url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${config.appId}&redirect_uri=${redirect_url}&response_type=code&scope=${scope}&state=${state}#wechat_redirect`

+ 71 - 0
src/pages/nav.vue

@@ -0,0 +1,71 @@
+<template>
+  <div class="nav-container">
+    <div class="nav-main">
+      <div style="background-color: #07c160;border-color: #07c160" @click="toWechatLogin">
+        <img style="height:25px;width:25px" src="~@/assets/wechat.png" />
+        <span style="font-weight: 600;">微信授权登录</span>
+      </div>
+      <div style="background-color: #087af5;;border-color:#087af5" @click="toPath">
+        <img style="height:30px;width:30px;margin:0 2px 0 5px;" src="~@/assets/purch.png" />
+        <span style="font-weight: 600;">采销平台登录</span>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script>
+import { getParameterByName } from "@/utils/auth"
+export default {
+  methods:{
+    toWechatLogin(){
+      const name = getParameterByName("name");
+      const back = getParameterByName("back");
+      this.$router.push('/login?name=' + name + "&" + "back=" + back)
+    },
+    toPath(){
+      const back = getParameterByName("back")
+      window.location.href = back + "/?from=authorization";
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.nav-container{
+  background: url("~@/assets/bg-phone.jpg") no-repeat;
+  background-size: cover;
+  position: relative;
+  height:100vh;
+
+  .nav-main{
+    position: fixed;
+    width:100%;
+    bottom: 120px;
+    height: 60px;
+    display: flex;
+    flex-direction: column;
+    padding: 10px;
+    align-items:center;
+    gap:20px;
+
+    div{
+      height: 40px;
+      width:80%;
+      display: flex;
+      flex-direction: row;
+      align-items:center;
+      justify-content: center;
+      line-height: 40px;
+      color: #fff;
+      border-radius: 80px;
+      cursor: pointer;
+      user-select: none;
+
+
+      img {
+        margin:0 5px 0 10px;
+      }
+    }
+  }
+}
+</style>

+ 0 - 56
src/pages/report.vue

@@ -1,56 +0,0 @@
-<template>
-  <div id="app" v-cloak v-loading="state.loading">
-    <template v-if="!state.error">
-      <control-display :companyArr="companyArr" :hasPlatformDimension="hasPlatformDimension"  />
-    </template>
-    <template v-else>
-      <unusual-state :message="state.message" />
-    </template>
-  </div>
-</template>
-<script>
-import asyncRequest from "@/api/index"
-import UnusualState from "@/components/unusual/index.vue"
-import { getParameterByName ,getOpenid, setOpenid, removeOpenid } from "../utils/auth"
-
-export default {
-  name:'report',
-  components:{ UnusualState },
-  data() {
-    return {
-      companyArr:[],
-      hasPlatformDimension: false,
-      state:{
-        error:false,
-        loading:false,
-        message:'',
-      }
-    }
-  },
-  async mounted(){
-    this.requestUserinfo()
-  },
-  methods:{
-    async requestUserinfo(){
-      this.state.loading = true;
-      const openid = getOpenid()
-
-      const result = {"code":0,"message":"获取成功","data":{"id":"1","openid":"oOpc26KiZFBKIm7SB8knFGvov1qg","mobile":"","gender":"0","nickname":"雪寒","avatar":"","subscribe_time":"2022-12-21 15:52:14","addr":"\/\/","status":"1","is_show":"1","companyArr":[{"companyNo":"GS2302231125079621","companyName":"北京百辰荣达国际科贸有限公司"},{"companyNo":"GS2302231323386950","companyName":"北京泓源广诚国际商贸有限公司"},{"companyNo":"GS2304031312553746","companyName":"北京锦兴弘昌科技有限公司"},{"companyNo":"GS2302231124114965","companyName":"北京普润心堂商贸有限公司"},{"companyNo":"GS2203161855277894","companyName":"北京万宇恒通国际科贸有限公司"}],"addtime":"2023-04-10 18:11:07","updatetime":"2023-04-19 17:19:07"}}
-
-      this.state.loading = false
-      switch(Number(result.code)){
-        case 0:
-          this.companyArr = result.data.companyArr
-          this.hasPlatformDimension = result.data.is_show === "1"
-          setOpenid(result.data.openid)
-          break
-        default:
-          this.state.error = true
-          this.state.message = result.message
-          openid && removeOpenid()
-          break
-      }
-    }
-  }
-};
-</script>

+ 109 - 0
src/pages/wechat.vue

@@ -0,0 +1,109 @@
+<template>
+  <div id="app" v-cloak v-loading="loading">
+    <!-- 未绑定账号 -->
+    <div v-if="!isError && !isBound && !loading && template && isReady">
+        <Binding :openid="openid" :template="template" @bind="jumpToSystem" />
+    </div>
+
+    <!-- 已绑定账号 -->
+    <div 
+      v-if="!isError && isBound && !loading" 
+      v-loading="true" 
+      style="height:100vh" 
+      :element-loading-text="` 正在登录至 ${name} 系统...`"
+      />
+
+    <!-- 登陆时出错 -->
+    <UnusualState v-if="isError && !loading" :message="message" />
+  </div>
+</template>
+<script>
+import asyncRequest from "@/api"
+import { getParameterByName } from "@/utils/auth"
+import UnusualState from "@/components/unusual/index.vue"
+import Binding from "@/components/binding/index.vue"
+import CryptoJS from "crypto-js"
+
+export default {
+  name: 'report',
+  components: { UnusualState, Binding },
+  data() {
+    return {
+      loading: false,
+      isBound: false,
+      isReady:false,
+      back:"",
+      name:"",
+      openid: "",
+      isError: "",
+      message: "",
+      template:""
+    }
+  },
+  async mounted() {
+    this.back = getParameterByName("back")
+    this.name = getParameterByName("name")
+    await this.requestUserinfo()
+    await this.initialTemplate()
+    this.initialWechatConfig()
+  },
+  methods: {
+    async initialTemplate(){
+      this.loading = true
+      const result = await asyncRequest.template();
+      this.loading = false;
+      this.template = result.data.map(({priTmplId}) => priTmplId).join(",")
+    },
+    async initialWechatConfig(){
+      const url = window.location.href.split("#")[0]
+      const result = await asyncRequest.config({ url })
+      const { appid, noncestr, signature, timestamp } = result.data;
+
+      wx.config({
+        appId:appid,
+        timestamp,
+        nonceStr:noncestr,
+        signature,
+        jsApiList:['chooseImage'],
+        openTagList:['wx-open-subscribe']
+      })
+
+      wx.ready(() => {
+        this.isReady = true;
+      })
+
+      wx.error(function(err){ console.log(err,'---') })
+    },
+    async requestUserinfo() {
+      const code = getParameterByName("code")
+      this.loading = true
+      const result = await asyncRequest.userinfo({ code })
+      this.loading = false
+
+      if (result.data === null) {
+        this.isError = true;
+        this.message = result.message;
+      }
+
+      const { wxinfo, isLogin, userinfo } = (result.data || {})
+      this.isBound = false;
+      this.openid = wxinfo.openid;
+
+      console.log(wxinfo,'000')
+
+      if (!this.isBound) return;
+      this.jumpToSystem(userinfo.token)
+    },
+    jumpToSystem(token = "") {
+      // this.getTemplate();
+      const encJson = CryptoJS.AES.encrypt(JSON.stringify({ token }), "key123")
+      const encData = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(encJson))
+      window.location.href = this.back + "/#/accept/?t=" + encData
+    },
+    async getTemplate(){
+      const result = await asyncRequest.template()
+      console.log(result)
+    }
+  }
+};
+</script>

+ 5 - 6
src/router/index.js

@@ -1,14 +1,13 @@
-import Report from "./../pages/report.vue"
+import Wechat from "./../pages/wechat.vue"
 import Login from "./../pages/login.vue"
-import { getParameterByName } from "../utils/auth"
+import Nav from "./../pages/nav.vue"
 
 const routes = [
-  { path: '/', component: Report},
-  { path:'/login', component: Login}
+  { path: '/wechat', component: Wechat },
+  { path: '/login', component: Login },
+  { path: '/', component: Nav }
 ]
 
 const router = new VueRouter({routes ,mode:'hash'})
 
-
-
 export default router

+ 604 - 0
src/utils/validate.js

@@ -0,0 +1,604 @@
+import * as dayjs from "dayjs";
+/**
+ * Created by PanJiaChen on 16/11/18.
+ */
+function accMulIn(arg1, arg2) {
+  let m = 0,
+    s1 = arg1.toString(),
+    s2 = arg2.toString();
+
+  try {
+    m += s1.split(".")[1].length;
+  } catch (e) { }
+
+  try {
+    m += s2.split(".")[1].length;
+  } catch (e) { }
+
+  return (
+    (Number(s1.replace(".", "")) * Number(s2.replace(".", ""))) /
+    Math.pow(10, m)
+  );
+}
+/** https
+ * @param {string} path
+ * @returns {Boolean}
+ */
+export function isExternal(path) {
+  return /^(https?:|mailto:|tel:)/.test(path);
+}
+//区-座-分
+export function isqzf(s) {
+  let type = true;
+  let arr = s.split("-");
+  if (arr.length === 3) {
+    type = setqj(arr[0]) && setzj(arr[1]) && setfj(arr[2]);
+  } else {
+    type = false;
+  }
+  console.log("console区-座-分 " + type);
+  return type;
+}
+// //区-座
+export function isqz(s) {
+  let type = true;
+  let arr = s.split("-");
+  if (arr.length === 2) {
+    type = setqj(arr[0]) && setzj(arr[1]);
+  } else {
+    type = false;
+  }
+  console.log("console区-座 " + type);
+  return type;
+}
+//座-分
+export function iszf(s) {
+  let type = true;
+  let arr = s.split("-");
+  if (arr.length === 2) {
+    type = setzj(arr[0]) && setfj(arr[1]);
+  } else {
+    type = false;
+  }
+  console.log("console座-分" + type);
+  return type;
+}
+
+//座
+export function isz(s) {
+  let type = true;
+  let arr = s.split("-");
+  if (arr.length === 1) {
+    type = setzj(arr[0]);
+  } else {
+    type = false;
+  }
+  console.log("console座" + type);
+  return type;
+}
+function setqj(s) {
+  return /0\d{2,3}?$/.test(s) && (s.length == 3 || s.length == 4);
+}
+function setzj(s) {
+  return /\d{7,8}$/.test(s) && (s.length == 7 || s.length == 8);
+}
+function setfj(s) {
+  return /\d{1,6}$/.test(s) && s.length > 0 && s.length < 7;
+}
+
+/** 用户名
+ * @param {string} str
+ * @returns {Boolean}
+ */
+export function validUsername(str) {
+  const valid_map = ["admin", "editor"];
+  return valid_map.indexOf(str.trim()) >= 0;
+}
+
+/** url
+ * @param {string} url
+ * @returns {Boolean}
+ */
+export function validURL(url) {
+  const reg =
+    /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/;
+  return reg.test(url);
+}
+
+/** 小写字母
+ * @param {string} str
+ * @returns {Boolean}
+ */
+export function validLowerCase(str) {
+  const reg = /^[a-z]+$/;
+  return reg.test(str);
+}
+
+/** 大写字母
+ * @param {string} str
+ * @returns {Boolean}
+ */
+export function validUpperCase(str) {
+  const reg = /^[A-Z]+$/;
+  return reg.test(str);
+}
+
+/** 字母
+ * @param {string} str
+ * @returns {Boolean}
+ */
+export function validAlphabets(str) {
+  const reg = /^[A-Za-z]+$/;
+  return reg.test(str);
+}
+
+/** 邮箱
+ * @param {string} email
+ * @returns {Boolean}
+ */
+export function validEmail(email) {
+  const reg =
+    /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
+  return reg.test(email);
+}
+
+/** 字符串
+ * @param {string} str
+ * @returns {Boolean}
+ */
+export function isString(str) {
+  if (typeof str === "string" || str instanceof String) {
+    return true;
+  }
+  return false;
+}
+
+/** 数组
+ * @param {Array} arg
+ * @returns {Boolean}
+ */
+export function isArray(arg) {
+  if (typeof Array.isArray === "undefined") {
+    return Object.prototype.toString.call(arg) === "[object Array]";
+  }
+  return Array.isArray(arg);
+}
+
+/**
+ * 邮箱
+ * @param {*} s
+ */
+export function isEmail(s) {
+  return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(
+    s
+  );
+}
+
+/**
+ * 手机号码
+ * @param {*} s
+ */
+export function isMobile(s) {
+  return isM(s) || isHK(s);
+}
+// 手机号码
+function isM(s) {
+  return /^1[3|4|5|6|7|8|9][0-9]\d{8}$/.test(s);
+}
+// 香港手机号码
+function isHK(s) {
+  return /^852[3|5|6|8|9]\d{7}$/.test(s);
+}
+
+/**
+ * 电话号码
+ * @param {*} s
+ */
+export function isPhone(s) {
+  return /^([0-9]{3,4}-)?[0-9]{7,8}$/.test(s);
+}
+
+/**
+ * 微信号
+ * @param {*} s
+ */
+export function isWeixin(s) {
+  return /^[a-zA-Z]([-_a-zA-Z0-9]{5,19})+$/.test(s);
+}
+/**
+ * qq号
+ * @param {*} s
+ */
+export function isQQ(s) {
+  return /^[1-9][0-9]{4,14}$/.test(s);
+}
+
+/**
+ * 固定电话(支持分机)
+ * @param {*} s
+ */
+export function isExtension(s) {
+  let type = true;
+  let arr = s.split("-");
+  // console.log(arr);
+  if (arr.length === 2 || arr.length === 3) {
+    type = setF(arr);
+  } else {
+    type = false;
+  }
+  // console.log('console' + type);
+  return type;
+  ///0\d{2,3}-\d{7,8}(-\d{1,6})?/.test(s)
+}
+function setF(arr) {
+  let type1 = true,
+    type2 = true,
+    type3 = true;
+  type1 = /0\d{2,3}?$/.test(arr[0]);
+  type2 =
+    arr[1].length === 7 || arr[1].length === 8
+      ? /\d{7,8}$/.test(arr[1])
+      : false;
+  if (arr.length === 3) {
+    type3 =
+      arr[2].length === 0 || arr[2].length > 6
+        ? false
+        : /\d{1,6}$/.test(arr[2]);
+  }
+  // console.log(type1, type2, type3);
+  if (arr.length === 2) {
+    return type1 && type2;
+  } else {
+    return type1 && type2 && type3;
+  }
+}
+
+// (^(\d{11})$|^((\d{3}-)?\d{8}(-\d{1,4})?)$|^((\d{4}-)?\d{7}(-\d{1,4})?)$|^(\d{7,8})$)
+/**
+ * 纳税人识别号
+ * @param {*} s
+ */
+export function isLicense(s) {
+  return /[0-9A-HJ-NPQRTUWXY]{2}\d{6}[0-9A-HJ-NPQRTUWXY]{10}/.test(s);
+}
+
+/**
+ * 身份证号码
+ * @param {*} s
+ */
+export function isIDentityCard(s) {
+  return /^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/.test(
+    s
+  );
+}
+
+/**
+ * URL地址
+ * @param {*} s
+ */
+export function isURL(s) {
+  return /^http[s]?:\/\/.*/.test(s);
+}
+
+/**
+ * 汉语
+ * @param {*} s
+ */
+export function isChinese(s) {
+  return /[\u4e00-\u9fa5]$/.test(s);
+}
+
+/**
+ * 数字
+ * @param {*} s
+ */
+export function isnumber(s) {
+  return /^[0-9]*$/.test(s);
+}
+/**
+ * 数字或者带小数点的数字
+ * @param {*} s
+ */
+export function isnumber2(s) {
+  return /(^[0-9]{1,2}$)|(^[0-9]{1,2}[\.]{1}[0-9]{1,2}$)/.test(s);
+}
+/**
+ * 数字或者带小数点的数字 1,2,3位小数
+ * @param {*} s
+ */
+export function isnumber3(s) {
+  return /^(([^0][0-9]+|0)\.([0-9]{1,3})$)|^([^0][0-9]+|0)$/.test(s);
+}
+/**
+ * 数字字母
+ * @param {*} s
+ */
+export function isAlphanumeric(s) {
+  return /^[0-9A-Za-z]*$/.test(s);
+}
+/**
+ * 数字大写字母
+ * @param {*} s
+ */
+export function isNumeric(s) {
+  return /^[0-9A-Z]*$/.test(s);
+}
+
+/**
+ * 表情包
+ * @param {*} s
+ */
+export function isEmoticon(s) {
+  const reg =
+    /[^\u0020-\u007E\u00A0-\u00BE\u2E80-\uA4CF\uF900-\uFAFF\uFE30-\uFE4F\uFF00-\uFFEF\u0080-\u009F\u2000-\u201f\u2026\u2022\u20ac\r\n]/g;
+  // console.log(reg.test(s));
+  return reg.test(s);
+}
+
+/**
+ * 判断是否为微信浏览器
+ * @param {*} s
+ */
+export function JudgeEnvironment() {
+  const ua = navigator.userAgent.toLowerCase();
+  let environment = "";
+  const isWeixin = ua.indexOf("micromessenger") != -1;
+  if (isWeixin) {
+    environment = "Weixin";
+  }
+  const isWelink = ua.indexOf("huawei-anyoffice") != -1;
+  if (isWelink) {
+    environment = "Welink";
+  }
+  const isDingDing = ua.indexOf("dingtalk") != -1;
+  if (isDingDing) {
+    environment = "isDingDing";
+  }
+  if (environment === "") {
+    environment = "otherBrowser";
+  }
+  return environment;
+}
+
+export function timestampToTime(timestamp) {
+  const date = new Date(timestamp); // 时间戳为10位需*1000,时间戳为13位的话不需乘1000
+  const Y = date.getFullYear() + "-";
+  const M =
+    (date.getMonth() + 1 < 10
+      ? "0" + (date.getMonth() + 1)
+      : date.getMonth() + 1) + "-";
+  const D = date.getDate() + " ";
+  let h = date.getHours();
+  h = h < 10 ? `0${h}:` : h + ":";
+  let m = date.getMinutes();
+  m = m < 10 ? `0${m}:` : m + ":";
+  let s = date.getSeconds();
+  s = s < 10 ? `0${s}` : s;
+  return Y + M + D + h + m + s;
+}
+export function isCreditCode(s) {
+  const reg = /[^_IOZSVa-z\W]{2}\d{6}[^_IOZSVa-z\W]{10}$/g;
+  return reg.test(s);
+}
+//加法精算
+export function add_sum(arg1, arg2) {
+  let r1, r2, m;
+  try {
+    r1 = arg1.toString().split(".")[1].length;
+  } catch (e) {
+    r1 = 0;
+  }
+
+  try {
+    r2 = arg2.toString().split(".")[1].length;
+  } catch (e) {
+    r2 = 0;
+  }
+
+  m = Math.pow(10, Math.max(r1, r2));
+  const s = (accMulIn(arg1, m) + accMulIn(arg2, m)) / m;
+  return s;
+}
+
+//乘法精算
+export function accMul(arg1, arg2) {
+  const s = accMulIn(arg1, arg2);
+  console.log(`${arg1}*${arg2}=${s}`);
+  return s;
+}
+//除法精度问题
+export function accDiv(arg1, arg2) {
+  let t1 = 0,
+    t2 = 0,
+    c1,
+    c2;
+  try {
+    t1 = arg1.toString().split(".")[1].length;
+  } catch (e) { }
+  try {
+    t2 = arg2.toString().split(".")[1].length;
+  } catch (e) { }
+  // with (Math) {
+  c1 = Number(arg1.toString().replace(".", ""));
+  c2 = Number(arg2.toString().replace(".", ""));
+  const s = (c1 / c2) * Math.pow(10, t2 - t1);
+  console.log(`${arg1}/${arg2}=${s}`);
+  return s;
+}
+//减法精度问题
+// export function accSub(arg1, arg2) {
+//   var r1, r2, m, n;
+//   try {
+//     r1 = arg1.toString().split(".")[1].length;
+//   } catch (e) {
+//     r1 = 0;
+//   }
+//   try {
+//     r2 = arg2.toString().split(".")[1].length;
+//   } catch (e) {
+//     r2 = 0;
+//   }
+//   m = Math.pow(10, Math.max(r1, r2)); //last modify by deeka //动态控制精度长度
+//   n = r1 >= r2 ? r1 : r2;
+//   const s = ((arg1 * m - arg2 * m) / m).toFixed(n);
+//   console.log(`${arg1}-${arg2}=${s}`);
+//   return s;
+// }
+// export function isSpecialSymbol(s) {
+//   // console.log(s);
+//   const str = (s ?? "").replace(
+//     /\\|\/|\"|\'|\<|\>|\{|\}|\[|\]|\:|\^|\$|\!|\~|\`|\|/g,
+//     ""
+//   );
+//   // console.log(str);
+//   const pattern = new RegExp("[`~!@#$^&()=|{}':;',<>/?]");
+//   let specialStr = "";
+//   for (let i = 0; i < str.length; i++) {
+//     specialStr += str.substr(i, 1).replace(pattern, "");
+//   }
+//   return s.length > specialStr.length;
+// }
+
+// export function isAddr(s) {
+//   let isok = false;
+//   const regList = [
+//     "多地",
+//     "另给",
+//     "线下",
+//     "地址",
+//     "单独给",
+//     "内部沟通",
+//     "微信",
+//     "钉钉",
+//     "短信",
+//     "文件",
+//     "另外",
+//     "后面",
+//     "以后",
+//     "晚点",
+//     "后补",
+//     "再给",
+//   ];
+//   for (let i = 0; i < regList.length; i++) {
+//     const is = s.includes(regList[i]);
+//     if (is) {
+//       isok = is;
+//     }
+//   }
+//   const sstr = /^[0-9A-Za-z]*$/;
+
+//   if (sstr.test(s)) {
+//     isok = true;
+//   }
+
+//   if (!isok) {
+//     let reslist = [];
+//     let str = "";
+
+//     for (let i = 0; i < s.length; i++) {
+//       let isa = sstr.test(s[i]);
+//       // console.log(isa);
+//       if (isa) {
+//         str += s[i];
+//       } else {
+//         reslist.push(str);
+//         str = "";
+//       }
+//       if (i === s.length - 1) {
+//         reslist.push(str);
+//         str = "";
+//       }
+//     }
+//     for (let b = 0; b < reslist.length; b++) {
+//       if (reslist[b].length > 5) {
+//         isok = true;
+//       }
+//     }
+//   }
+//   return !isok;
+// }
+export function hasSpace(s) {
+  // const str1 = s.replace(/\s/g, "");
+  //   \a  007   响铃(BEL)
+  //   \b  008   退格(BS) ,将当前位置移到前一列
+  //   \f  012   换页(FF),将当前位置移到下页开头
+  //   \n  010   换行(LF) ,将当前位置移到下一行开头
+  //   \r  013   回车(CR) ,将当前位置移到本行开头
+  //   \t  009   水平制表(HT) (跳到下一个TAB位置)
+  //   \v  011   垂直制表(VT)
+  //   \\  092   代表一个反斜线字符''\'
+  //   \'  039   代表一个单引号(撇号)字符
+  //   \"  034   代表一个双引号字符
+  //   \?  063   代表一个问号
+  //   \0  000   空字符(NUL)
+  //   \ddd 三位八进制  1到3位八进制数所代表的任意字符 会把数字过滤掉
+  //   \xhh 十六进制  十六进制所代表的任意字符 会把部分字母过滤掉
+  //
+  const str2 = s.replace(/[\b\f\n\r\t\v\\\'\"\?\0]/g, "");
+  console.log(s);
+  console.log(str2);
+  return !(str2 === s);
+}
+function com1(str, arr) {
+  let s = (arr.find((si) => si.key === str) || {}).value || str;
+  return s;
+}
+function com2(str, arr) {
+  console.log(str);
+  console.log(arr);
+  let s = "";
+  for (let i = 0; i < str.length; i++) {
+    console.log((arr.find((si) => si.key === str[i]) || {}).value || str[i]);
+    s += (arr.find((si) => si.key === str[i]) || {}).value || str[i];
+  }
+  return s;
+}
+
+//营业执照成立日期大写转小写
+export function invTime(s) {
+  s = s.replace(" 00:00:00", "");
+  //dayjs(s).format('YYYY-MM-DD')
+  const option = [
+    { key: "一", value: "1" },
+    { key: "二", value: "2" },
+    { key: "三", value: "3" },
+    { key: "四", value: "4" },
+    { key: "五", value: "5" },
+    { key: "六", value: "6" },
+    { key: "七", value: "7" },
+    { key: "八", value: "8" },
+    { key: "九", value: "9" },
+  ];
+  const year = [
+    { key: "0", value: "0" },
+    { key: "零", value: "0" },
+  ].concat(option);
+  const day1 = [{ key: "十", value: "10" }].concat(option);
+  const day2 = [{ key: "十", value: "1" }];
+
+  let str = ["年", "月", "日"];
+  let si = s.replace(/[\r\n]/g, "").replace(/\s/g, "");
+  let arr1 = "",
+    arr2 = "",
+    arr3 = "";
+  for (let i = 0; i < str.length; i++) {
+    si = si.replace(str[i], i == 2 ? "" : "-");
+  }
+  let arr = si.split("-");
+  if (arr.length !== 3) {
+    return s;
+  } else {
+    arr1 = com2(arr[0], year);
+    arr2 =
+      arr[1].length > 1 ? com2(arr[1], year.concat(day2)) : com1(arr[1], day1);
+    arr3 =
+      arr[2].length > 1 ? com2(arr[2], year.concat(day2)) : com1(arr[1], day1);
+    return `${arr1 + "-" + arr2 + "-" + arr3}`;
+  }
+}
+// /[\u4e00-\u9fa5]|[^\u3002\u4e00-\u9fa5]*/g
+
+// 要匹配汉字或者汉字加标点符号的字符串,但不匹配标点符号 (中文段落)
+export function ChineseParagraph(s) {
+  return !s == s.replace(/[\u4e00-\u9fa5]|[^\u3002\u4e00-\u9fa5]*/g, "");
+}

+ 3 - 1
vue.config.js

@@ -17,7 +17,7 @@ function resolve(dir) {
 // For example, Mac: sudo npm run
 // You can change the port by the following method:
 // port = 8080 npm run dev OR npm run dev --port = 8080
-const port = process.env.port || process.env.npm_config_port || 8080 // dev port
+const port = process.env.port || process.env.npm_config_port || 80 // dev port
 
 // All configuration item explanations can be find in https://cli.vuejs.org/config/
 module.exports = {
@@ -36,6 +36,8 @@ module.exports = {
   devServer: {
     port: port,
     open: true,
+    allowedHosts: ['rep.test241.wanyuhengtong.com'],
+    // disableHostsCheck: true,
     overlay: {
       warnings: false,
       errors: true

Some files were not shown because too many files changed in this diff