+ // add to parents
+ var parent = bufArray[0] || results;
+
+ if (parent.nodes === undefined) {
+ parent.nodes = [];
+ }
+
+ parent.nodes.push(node);
+ } else {
+ bufArray.unshift(node);
+ }
+ },
+ end: function (tag) {
+ //debug(tag);
+ // merge into parent tag
+ var node = bufArray.shift();
+
+ if (node.tag !== tag) {
+ console.error('invalid state: mismatch end tag');
+ }
+
+ if (bufArray.length === 0) {
+ results.nodes.push(node);
+ } else {
+ var parent = bufArray[0];
+
+ if (parent.nodes === undefined) {
+ parent.nodes = [];
+ }
+
+ parent.nodes.push(node);
+ }
+ },
+ chars: function (text) {
+ //debug(text);
+ var node = {
+ node: 'text',
+ text: text,
+ textArray: transEmojiStr(text)
+ };
+
+ if (bufArray.length === 0) {
+ results.nodes.push(node);
+ } else {
+ var parent = bufArray[0];
+
+ if (parent.nodes === undefined) {
+ parent.nodes = [];
+ }
+
+ parent.nodes.push(node);
+ }
+ },
+ comment: function (text) {
+ //debug(text);
+ var node = {
+ node: 'comment',
+ text: text
+ };
+ var parent = bufArray[0];
+
+ if (parent.nodes === undefined) {
+ parent.nodes = [];
+ }
+
+ parent.nodes.push(node);
+ }
+ });
+ return results;
+}
+
+function transEmojiStr(str) {
+ // var eReg = new RegExp("["+__reg+' '+"]");
+ // str = str.replace(/\[([^\[\]]+)\]/g,':$1:')
+ var emojiObjs = []; //如果正则表达式为空
+
+ if (__emojisReg.length == 0 || !__emojis) {
+ var emojiObj = {};
+ emojiObj.node = 'text';
+ emojiObj.text = str;
+ array = [emojiObj];
+ return array;
+ } //这个地方需要调整
+
+ str = str.replace(/\[([^\[\]]+)\]/g, ':$1:');
+ var eReg = new RegExp('[:]');
+ var array = str.split(eReg);
+
+ for (var i = 0; i < array.length; i++) {
+ var ele = array[i];
+ var emojiObj = {};
+
+ if (__emojis[ele]) {
+ emojiObj.node = 'element';
+ emojiObj.tag = 'emoji';
+ emojiObj.text = __emojis[ele];
+ emojiObj.baseSrc = __emojisBaseSrc;
+ } else {
+ emojiObj.node = 'text';
+ emojiObj.text = ele;
+ }
+
+ emojiObjs.push(emojiObj);
+ }
+
+ return emojiObjs;
+}
+
+function emojisInit(reg = '', baseSrc = '/wxParse/emojis/', emojis) {
+ __emojisReg = reg;
+ __emojisBaseSrc = baseSrc;
+ __emojis = emojis;
+}
+
+module.exports = {
+ html2json: html2json,
+ emojisInit: emojisInit
+};
diff --git a/litemall-wx_uni/lib/wxParse/htmlparser.js b/litemall-wx_uni/lib/wxParse/htmlparser.js
new file mode 100644
index 0000000000000000000000000000000000000000..abb8939a080948d60e829effc97533b39e6c0327
--- /dev/null
+++ b/litemall-wx_uni/lib/wxParse/htmlparser.js
@@ -0,0 +1,188 @@
+var startTag = /^<([-A-Za-z0-9_]+)((?:\s+[a-zA-Z_:][-a-zA-Z0-9_:.]*(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/;
+var endTag = /^<\/([-A-Za-z0-9_]+)[^>]*>/;
+var attr = /([a-zA-Z_:][-a-zA-Z0-9_:.]*)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g; // Empty Elements - HTML 5
+
+/**
+ * author: Di (微信小程序开发工程师)
+ * organization: WeAppDev(微信小程序开发论坛)(http://weappdev.com)
+ * 垂直微信小程序开发交流社区
+ *
+ * github地址: https://github.com/icindy/wxParse
+ *
+ * for: 微信小程序富文本解析
+ * detail : http://weappdev.com/t/wxparse-alpha0-1-html-markdown/184
+ */
+// Regular Expressions for parsing tags and attributes
+var empty = makeMap('area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr'); // Block Elements - HTML 5
+
+var block = makeMap(
+ 'a,address,code,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,ins,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video'
+); // Inline Elements - HTML 5
+
+var inline = makeMap(
+ 'abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var'
+); // Elements that you can, intentionally, leave open
+// (and which close themselves)
+
+var closeSelf = makeMap('colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr'); // Attributes that have their values filled in disabled="disabled"
+
+var fillAttrs = makeMap('checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected'); // Special Elements (can contain anything)
+
+var special = makeMap('wxxxcode-style,script,style,view,scroll-view,block');
+
+function HTMLParser(html, handler) {
+ var index;
+ var chars;
+ var match;
+ var stack = [];
+ var last = html;
+ stack.last = function () {
+ return this[this.length - 1];
+ };
+
+ while (html) {
+ chars = true; // Make sure we're not in a script or style element
+
+ if (!stack.last() || !special[stack.last()]) {
+ // Comment
+ if (html.indexOf('');
+
+ if (index >= 0) {
+ if (handler.comment) {
+ handler.comment(html.substring(4, index));
+ }
+
+ html = html.substring(index + 3);
+ chars = false;
+ } // end tag
+ } else {
+ if (html.indexOf('') == 0) {
+ match = html.match(endTag);
+
+ if (match) {
+ html = html.substring(match[0].length);
+ match[0].replace(endTag, parseEndTag);
+ chars = false;
+ } // start tag
+ } else {
+ if (html.indexOf('<') == 0) {
+ match = html.match(startTag);
+
+ if (match) {
+ html = html.substring(match[0].length);
+ match[0].replace(startTag, parseStartTag);
+ chars = false;
+ }
+ }
+ }
+ }
+
+ if (chars) {
+ index = html.indexOf('<');
+ var text = index < 0 ? html : html.substring(0, index);
+
+ if (index < 0) {
+ html = '';
+ } else {
+ html = html.substring(index);
+ }
+
+ if (handler.chars) {
+ handler.chars(text);
+ }
+ }
+ } else {
+ html = html.replace(new RegExp('([\\s\\S]*?)' + stack.last() + '[^>]*>'), function (all, text) {
+ text = text.replace(/|/g, '$1$2');
+
+ if (handler.chars) {
+ handler.chars(text);
+ }
+
+ return '';
+ });
+ parseEndTag('', stack.last());
+ }
+
+ if (html == last) {
+ throw 'Parse Error: ' + html;
+ }
+
+ last = html;
+ } // Clean up any remaining tags
+
+ parseEndTag();
+
+ function parseStartTag(tag, tagName, rest, unary) {
+ tagName = tagName.toLowerCase();
+
+ if (block[tagName]) {
+ while (stack.last() && inline[stack.last()]) {
+ parseEndTag('', stack.last());
+ }
+ }
+
+ if (closeSelf[tagName] && stack.last() == tagName) {
+ parseEndTag('', tagName);
+ }
+
+ unary = empty[tagName] || !!unary;
+
+ if (!unary) {
+ stack.push(tagName);
+ }
+
+ if (handler.start) {
+ var attrs = [];
+ rest.replace(attr, function (match, name) {
+ var value = arguments[2] ? arguments[2] : arguments[3] ? arguments[3] : arguments[4] ? arguments[4] : fillAttrs[name] ? name : '';
+ attrs.push({
+ name: name,
+ value: value,
+ escaped: value.replace(/(^|[^\\])"/g, '$1\\"') //"
+ });
+ });
+
+ if (handler.start) {
+ handler.start(tagName, attrs, unary);
+ }
+ }
+ }
+
+ function parseEndTag(tag, tagName) {
+ // If no tag name is provided, clean shop
+ if (!tagName) {
+ var pos = 0; // Find the closest opened tag of the same type
+ } else {
+ for (var pos = stack.length - 1; pos >= 0; pos--) {
+ if (stack[pos] == tagName) {
+ break;
+ }
+ }
+ }
+
+ if (pos >= 0) {
+ // Close all the open elements, up the stack
+ for (var i = stack.length - 1; i >= pos; i--) {
+ if (handler.end) {
+ handler.end(stack[i]);
+ }
+ } // Remove the open elements from the stack
+
+ stack.length = pos;
+ }
+ }
+}
+
+function makeMap(str) {
+ var obj = {};
+ var items = str.split(',');
+ for (var i = 0; i < items.length; i++) {
+ obj[items[i]] = true;
+ }
+
+ return obj;
+}
+
+module.exports = HTMLParser;
diff --git a/litemall-wx_uni/lib/wxParse/showdown.js b/litemall-wx_uni/lib/wxParse/showdown.js
new file mode 100644
index 0000000000000000000000000000000000000000..980d39c986350b66dc31eee8d1a2036756db7eb9
--- /dev/null
+++ b/litemall-wx_uni/lib/wxParse/showdown.js
@@ -0,0 +1,2546 @@
+/**
+ * author: Di (微信小程序开发工程师)
+ * organization: WeAppDev(微信小程序开发论坛)(http://weappdev.com)
+ * 垂直微信小程序开发交流社区
+ *
+ * github地址: https://github.com/icindy/wxParse
+ *
+ * for: 微信小程序富文本解析
+ * detail : http://weappdev.com/t/wxparse-alpha0-1-html-markdown/184
+ */
+function getDefaultOpts(simple) {
+ 'use strict';
+
+ var defaultOptions = {
+ omitExtraWLInCodeBlocks: {
+ defaultValue: false,
+ describe: 'Omit the default extra whiteline added to code blocks',
+ type: 'boolean'
+ },
+ noHeaderId: {
+ defaultValue: false,
+ describe: 'Turn on/off generated header id',
+ type: 'boolean'
+ },
+ prefixHeaderId: {
+ defaultValue: false,
+ describe: 'Specify a prefix to generated header ids',
+ type: 'string'
+ },
+ headerLevelStart: {
+ defaultValue: false,
+ describe: 'The header blocks level start',
+ type: 'integer'
+ },
+ parseImgDimensions: {
+ defaultValue: false,
+ describe: 'Turn on/off image dimension parsing',
+ type: 'boolean'
+ },
+ simplifiedAutoLink: {
+ defaultValue: false,
+ describe: 'Turn on/off GFM autolink style',
+ type: 'boolean'
+ },
+ literalMidWordUnderscores: {
+ defaultValue: false,
+ describe: 'Parse midword underscores as literal underscores',
+ type: 'boolean'
+ },
+ strikethrough: {
+ defaultValue: false,
+ describe: 'Turn on/off strikethrough support',
+ type: 'boolean'
+ },
+ tables: {
+ defaultValue: false,
+ describe: 'Turn on/off tables support',
+ type: 'boolean'
+ },
+ tablesHeaderId: {
+ defaultValue: false,
+ describe: 'Add an id to table headers',
+ type: 'boolean'
+ },
+ ghCodeBlocks: {
+ defaultValue: true,
+ describe: 'Turn on/off GFM fenced code blocks support',
+ type: 'boolean'
+ },
+ tasklists: {
+ defaultValue: false,
+ describe: 'Turn on/off GFM tasklist support',
+ type: 'boolean'
+ },
+ smoothLivePreview: {
+ defaultValue: false,
+ describe: 'Prevents weird effects in live previews due to incomplete input',
+ type: 'boolean'
+ },
+ smartIndentationFix: {
+ defaultValue: false,
+ description: 'Tries to smartly fix identation in es6 strings',
+ type: 'boolean'
+ }
+ };
+
+ if (simple === false) {
+ return JSON.parse(JSON.stringify(defaultOptions));
+ }
+
+ var ret = {};
+
+ for (var opt in defaultOptions) {
+ if (defaultOptions.hasOwnProperty(opt)) {
+ ret[opt] = defaultOptions[opt].defaultValue;
+ }
+ }
+
+ return ret;
+}
+/**
+ * Created by Tivie on 06-01-2015.
+ */
+// Private properties
+
+var showdown = {};
+var parsers = {};
+var extensions = {};
+var globalOptions = getDefaultOpts(true);
+var flavor = {
+ github: {
+ omitExtraWLInCodeBlocks: true,
+ prefixHeaderId: 'user-content-',
+ simplifiedAutoLink: true,
+ literalMidWordUnderscores: true,
+ strikethrough: true,
+ tables: true,
+ tablesHeaderId: true,
+ ghCodeBlocks: true,
+ tasklists: true
+ },
+ vanilla: getDefaultOpts(true)
+};
+/**
+ * helper namespace
+ * @type {{}}
+ */
+
+showdown.helper = {};
+/**
+ * TODO LEGACY SUPPORT CODE
+ * @type {{}}
+ */
+
+showdown.extensions = {};
+/**
+ * Set a global option
+ * @static
+ * @param {string} key
+ * @param {*} value
+ * @returns {showdown}
+ */
+
+showdown.setOption = function (key, value) {
+ 'use strict';
+
+ globalOptions[key] = value;
+ return this;
+};
+/**
+ * Get a global option
+ * @static
+ * @param {string} key
+ * @returns {*}
+ */
+
+showdown.getOption = function (key) {
+ 'use strict';
+
+ return globalOptions[key];
+};
+/**
+ * Get the global options
+ * @static
+ * @returns {{}}
+ */
+
+showdown.getOptions = function () {
+ 'use strict';
+
+ return globalOptions;
+};
+/**
+ * Reset global options to the default values
+ * @static
+ */
+
+showdown.resetOptions = function () {
+ 'use strict';
+
+ globalOptions = getDefaultOpts(true);
+};
+/**
+ * Set the flavor showdown should use as default
+ * @param {string} name
+ */
+
+showdown.setFlavor = function (name) {
+ 'use strict';
+
+ if (flavor.hasOwnProperty(name)) {
+ var preset = flavor[name];
+
+ for (var option in preset) {
+ if (preset.hasOwnProperty(option)) {
+ globalOptions[option] = preset[option];
+ }
+ }
+ }
+};
+/**
+ * Get the default options
+ * @static
+ * @param {boolean} [simple=true]
+ * @returns {{}}
+ */
+
+showdown.getDefaultOptions = function (simple) {
+ 'use strict';
+
+ return getDefaultOpts(simple);
+};
+/**
+ * Get or set a subParser
+ *
+ * subParser(name) - Get a registered subParser
+ * subParser(name, func) - Register a subParser
+ * @static
+ * @param {string} name
+ * @param {function} [func]
+ * @returns {*}
+ */
+
+showdown.subParser = function (name, func) {
+ 'use strict';
+
+ if (showdown.helper.isString(name)) {
+ if (typeof func !== 'undefined') {
+ parsers[name] = func;
+ } else {
+ if (parsers.hasOwnProperty(name)) {
+ return parsers[name];
+ } else {
+ throw Error('SubParser named ' + name + ' not registered!');
+ }
+ }
+ }
+};
+/**
+ * Gets or registers an extension
+ * @static
+ * @param {string} name
+ * @param {object|function=} ext
+ * @returns {*}
+ */
+
+showdown.extension = function (name, ext) {
+ 'use strict';
+
+ if (!showdown.helper.isString(name)) {
+ throw Error("Extension 'name' must be a string");
+ }
+
+ name = showdown.helper.stdExtName(name); // Getter
+
+ if (showdown.helper.isUndefined(ext)) {
+ if (!extensions.hasOwnProperty(name)) {
+ throw Error('Extension named ' + name + ' is not registered!');
+ }
+
+ return extensions[name]; // Setter
+ } else {
+ // Expand extension if it's wrapped in a function
+ if (typeof ext === 'function') {
+ ext = ext();
+ } // Ensure extension is an array
+
+ if (!showdown.helper.isArray(ext)) {
+ ext = [ext];
+ }
+
+ var validExtension = validate(ext, name);
+
+ if (validExtension.valid) {
+ extensions[name] = ext;
+ } else {
+ throw Error(validExtension.error);
+ }
+ }
+};
+/**
+ * Gets all extensions registered
+ * @returns {{}}
+ */
+
+showdown.getAllExtensions = function () {
+ 'use strict';
+
+ return extensions;
+};
+/**
+ * Remove an extension
+ * @param {string} name
+ */
+
+showdown.removeExtension = function (name) {
+ 'use strict';
+
+ delete extensions[name];
+};
+/**
+ * Removes all extensions
+ */
+
+showdown.resetExtensions = function () {
+ 'use strict';
+
+ extensions = {};
+};
+/**
+ * Validate extension
+ * @param {array} extension
+ * @param {string} name
+ * @returns {{valid: boolean, error: string}}
+ */
+
+function validate(extension, name) {
+ 'use strict';
+
+ var errMsg = name ? 'Error in ' + name + ' extension->' : 'Error in unnamed extension';
+ var ret = {
+ valid: true,
+ error: ''
+ };
+ if (!showdown.helper.isArray(extension)) {
+ extension = [extension];
+ }
+
+ for (var i = 0; i < extension.length; ++i) {
+ var baseMsg = errMsg + ' sub-extension ' + i + ': ';
+ var ext = extension[i];
+ if (typeof ext !== 'object') {
+ ret.valid = false;
+ ret.error = baseMsg + 'must be an object, but ' + typeof ext + ' given';
+ return ret;
+ }
+
+ if (!showdown.helper.isString(ext.type)) {
+ ret.valid = false;
+ ret.error = baseMsg + 'property "type" must be a string, but ' + typeof ext.type + ' given';
+ return ret;
+ }
+
+ var type = (ext.type = ext.type.toLowerCase()); // normalize extension type
+
+ if (type === 'language') {
+ type = ext.type = 'lang';
+ }
+
+ if (type === 'html') {
+ type = ext.type = 'output';
+ }
+
+ if (type !== 'lang' && type !== 'output' && type !== 'listener') {
+ ret.valid = false;
+ ret.error = baseMsg + 'type ' + type + ' is not recognized. Valid values: "lang/language", "output/html" or "listener"';
+ return ret;
+ }
+
+ if (type === 'listener') {
+ if (showdown.helper.isUndefined(ext.listeners)) {
+ ret.valid = false;
+ ret.error = baseMsg + '. Extensions of type "listener" must have a property called "listeners"';
+ return ret;
+ }
+ } else {
+ if (showdown.helper.isUndefined(ext.filter) && showdown.helper.isUndefined(ext.regex)) {
+ ret.valid = false;
+ ret.error = baseMsg + type + ' extensions must define either a "regex" property or a "filter" method';
+ return ret;
+ }
+ }
+
+ if (ext.listeners) {
+ if (typeof ext.listeners !== 'object') {
+ ret.valid = false;
+ ret.error = baseMsg + '"listeners" property must be an object but ' + typeof ext.listeners + ' given';
+ return ret;
+ }
+
+ for (var ln in ext.listeners) {
+ if (ext.listeners.hasOwnProperty(ln)) {
+ if (typeof ext.listeners[ln] !== 'function') {
+ ret.valid = false;
+ ret.error =
+ baseMsg +
+ '"listeners" property must be an hash of [event name]: [callback]. listeners.' +
+ ln +
+ ' must be a function but ' +
+ typeof ext.listeners[ln] +
+ ' given';
+ return ret;
+ }
+ }
+ }
+ }
+
+ if (ext.filter) {
+ if (typeof ext.filter !== 'function') {
+ ret.valid = false;
+ ret.error = baseMsg + '"filter" must be a function, but ' + typeof ext.filter + ' given';
+ return ret;
+ }
+ } else {
+ if (ext.regex) {
+ if (showdown.helper.isString(ext.regex)) {
+ ext.regex = new RegExp(ext.regex, 'g');
+ }
+
+ if (!ext.regex instanceof RegExp) {
+ ret.valid = false;
+ ret.error = baseMsg + '"regex" property must either be a string or a RegExp object, but ' + typeof ext.regex + ' given';
+ return ret;
+ }
+
+ if (showdown.helper.isUndefined(ext.replace)) {
+ ret.valid = false;
+ ret.error = baseMsg + '"regex" extensions must implement a replace string or function';
+ return ret;
+ }
+ }
+ }
+ }
+
+ return ret;
+}
+/**
+ * Validate extension
+ * @param {object} ext
+ * @returns {boolean}
+ */
+
+showdown.validateExtension = function (ext) {
+ 'use strict';
+
+ var validateExtension = validate(ext, null);
+
+ if (!validateExtension.valid) {
+ console.warn(validateExtension.error);
+ return false;
+ }
+
+ return true;
+};
+/**
+ * showdownjs helper functions
+ */
+
+if (!showdown.hasOwnProperty('helper')) {
+ showdown.helper = {};
+}
+/**
+ * Check if var is string
+ * @static
+ * @param {string} a
+ * @returns {boolean}
+ */
+
+showdown.helper.isString = function isString(a) {
+ 'use strict';
+
+ return typeof a === 'string' || a instanceof String;
+};
+/**
+ * Check if var is a function
+ * @static
+ * @param {string} a
+ * @returns {boolean}
+ */
+
+showdown.helper.isFunction = function isFunction(a) {
+ 'use strict';
+
+ var getType = {};
+ return a && getType.toString.call(a) === '[object Function]';
+};
+/**
+ * ForEach helper function
+ * @static
+ * @param {*} obj
+ * @param {function} callback
+ */
+
+showdown.helper.forEach = function forEach(obj, callback) {
+ 'use strict';
+
+ if (typeof obj.forEach === 'function') {
+ obj.forEach(callback);
+ } else {
+ for (var i = 0; i < obj.length; i++) {
+ callback(obj[i], i, obj);
+ }
+ }
+};
+/**
+ * isArray helper function
+ * @static
+ * @param {*} a
+ * @returns {boolean}
+ */
+
+showdown.helper.isArray = function isArray(a) {
+ 'use strict';
+
+ return a.constructor === Array;
+};
+/**
+ * Check if value is undefined
+ * @static
+ * @param {*} value The value to check.
+ * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`.
+ */
+
+showdown.helper.isUndefined = function isUndefined(value) {
+ 'use strict';
+
+ return typeof value === 'undefined';
+};
+/**
+ * Standardidize extension name
+ * @static
+ * @param {string} s extension name
+ * @returns {string}
+ */
+
+showdown.helper.stdExtName = function (s) {
+ 'use strict';
+
+ return s.replace(/[_-]||\s/g, '').toLowerCase();
+};
+
+function escapeCharactersCallback(wholeMatch, m1) {
+ 'use strict';
+
+ var charCodeToEscape = m1.charCodeAt(0);
+ return '~E' + charCodeToEscape + 'E';
+}
+/**
+ * Callback used to escape characters when passing through String.replace
+ * @static
+ * @param {string} wholeMatch
+ * @param {string} m1
+ * @returns {string}
+ */
+
+showdown.helper.escapeCharactersCallback = escapeCharactersCallback;
+/**
+ * Escape characters in a string
+ * @static
+ * @param {string} text
+ * @param {string} charsToEscape
+ * @param {boolean} afterBackslash
+ * @returns {XML|string|void|*}
+ */
+
+showdown.helper.escapeCharacters = function escapeCharacters(text, charsToEscape, afterBackslash) {
+ 'use strict'; // First we have to escape the escape characters so that
+ // we can build a character class out of them
+
+ var regexString = '([' + charsToEscape.replace(/([\[\]\\])/g, '\\$1') + '])';
+
+ if (afterBackslash) {
+ regexString = '\\\\' + regexString;
+ }
+
+ var regex = new RegExp(regexString, 'g');
+ text = text.replace(regex, escapeCharactersCallback);
+ return text;
+};
+
+var rgxFindMatchPos = function (str, left, right, flags) {
+ 'use strict';
+
+ var f = flags || '';
+ var g = f.indexOf('g') > -1;
+ var x = new RegExp(left + '|' + right, 'g' + f.replace(/g/g, ''));
+ var l = new RegExp(left, f.replace(/g/g, ''));
+ var pos = [];
+ var t;
+ var s;
+ var m;
+ var start;
+ var end;
+ do {
+ t = 0;
+
+ while ((m = x.exec(str))) {
+ if (l.test(m[0])) {
+ if (!t++) {
+ s = x.lastIndex;
+ start = s - m[0].length;
+ }
+ } else {
+ if (t) {
+ if (!--t) {
+ end = m.index + m[0].length;
+ var obj = {
+ left: {
+ start: start,
+ end: s
+ },
+ match: {
+ start: s,
+ end: m.index
+ },
+ right: {
+ start: m.index,
+ end: end
+ },
+ wholeMatch: {
+ start: start,
+ end: end
+ }
+ };
+ pos.push(obj);
+
+ if (!g) {
+ return pos;
+ }
+ }
+ }
+ }
+ }
+ } while (t && (x.lastIndex = s));
+
+ return pos;
+};
+/**
+ * matchRecursiveRegExp
+ *
+ * (c) 2007 Steven Levithan tags around block-level tags. + + text = showdown.subParser('hashHTMLBlocks')(text, options, globals); + text = showdown.subParser('paragraphs')(text, options, globals); + text = globals.converter._dispatch('blockGamut.after', text, options, globals); + return text; +}); +showdown.subParser('blockQuotes', function (text, options, globals) { + 'use strict'; + + text = globals.converter._dispatch('blockQuotes.before', text, options, globals); + /* + text = text.replace(/ + ( // Wrap whole match in $1 + ( + ^[ \t]*>[ \t]? // '>' at the start of a line + .+\n // rest of the first line + (.+\n)* // subsequent consecutive lines + \n* // blanks + )+ + ) + /gm, function(){...}); + */ + + text = text.replace(/((^[ \t]{0,3}>[ \t]?.+\n(.+\n)*\n*)+)/gm, function (wholeMatch, m1) { + var bq = m1; // attacklab: hack around Konqueror 3.5.4 bug: + // "----------bug".replace(/^-/g,"") == "bug" + + bq = bq.replace(/^[ \t]*>[ \t]?/gm, '~0'); // trim one level of quoting + // attacklab: clean up hack + + bq = bq.replace(/~0/g, ''); + bq = bq.replace(/^[ \t]+$/gm, ''); // trim whitespace-only lines + + bq = showdown.subParser('githubCodeBlocks')(bq, options, globals); + bq = showdown.subParser('blockGamut')(bq, options, globals); // recurse + + bq = bq.replace(/(^|\n)/g, '$1 '); // These leading spaces screw with
content, so we need to fix that:
+
+ bq = bq.replace(/(\s*[^\r]+?<\/pre>)/gm, function (wholeMatch, m1) {
+ var pre = m1; // attacklab: hack around Konqueror 3.5.4 bug:
+
+ pre = pre.replace(/^ /gm, '~0');
+ pre = pre.replace(/~0/g, '');
+ return pre;
+ });
+ return showdown.subParser('hashBlock')('\n' + bq + '\n
', options, globals);
+ });
+ text = globals.converter._dispatch('blockQuotes.after', text, options, globals);
+ return text;
+});
+/**
+ * Process Markdown `` blocks.
+ */
+
+showdown.subParser('codeBlocks', function (text, options, globals) {
+ 'use strict';
+
+ text = globals.converter._dispatch('codeBlocks.before', text, options, globals);
+ /*
+ text = text.replace(text,
+ /(?:\n\n|^)
+ ( // $1 = the code block -- one or more lines, starting with a space/tab
+ (?:
+ (?:[ ]{4}|\t) // Lines must start with a tab or a tab-width of spaces - attacklab: g_tab_width
+ .*\n+
+ )+
+ )
+ (\n*[ ]{0,3}[^ \t\n]|(?=~0)) // attacklab: g_tab_width
+ /g,function(){...});
+ */
+ // attacklab: sentinel workarounds for lack of \A and \Z, safari\khtml bug
+
+ text += '~0';
+ var pattern = /(?:\n\n|^)((?:(?:[ ]{4}|\t).*\n+)+)(\n*[ ]{0,3}[^ \t\n]|(?=~0))/g;
+ text = text.replace(pattern, function (wholeMatch, m1, m2) {
+ var codeblock = m1;
+ var nextChar = m2;
+ var end = '\n';
+ codeblock = showdown.subParser('outdent')(codeblock);
+ codeblock = showdown.subParser('encodeCode')(codeblock);
+ codeblock = showdown.subParser('detab')(codeblock);
+ codeblock = codeblock.replace(/^\n+/g, ''); // trim leading newlines
+
+ codeblock = codeblock.replace(/\n+$/g, ''); // trim trailing newlines
+
+ if (options.omitExtraWLInCodeBlocks) {
+ end = '';
+ }
+
+ codeblock = '' + codeblock + end + '
';
+ return showdown.subParser('hashBlock')(codeblock, options, globals) + nextChar;
+ }); // attacklab: strip sentinel
+
+ text = text.replace(/~0/, '');
+ text = globals.converter._dispatch('codeBlocks.after', text, options, globals);
+ return text;
+});
+/**
+ *
+ * * Backtick quotes are used for spans.
+ *
+ * * You can use multiple backticks as the delimiters if you want to
+ * include literal backticks in the code span. So, this input:
+ *
+ * Just type ``foo `bar` baz`` at the prompt.
+ *
+ * Will translate to:
+ *
+ * Just type foo `bar` baz at the prompt.
+ *
+ * There's no arbitrary limit to the number of backticks you
+ * can use as delimters. If you need three consecutive backticks
+ * in your code, use four for delimiters, etc.
+ *
+ * * You can use spaces to get literal backticks at the edges:
+ *
+ * ... type `` `bar` `` ...
+ *
+ * Turns to:
+ *
+ * ... type `bar` ...
+ */
+
+showdown.subParser('codeSpans', function (text, options, globals) {
+ 'use strict';
+
+ text = globals.converter._dispatch('codeSpans.before', text, options, globals);
+ /*
+ text = text.replace(/
+ (^|[^\\]) // Character before opening ` can't be a backslash
+ (`+) // $2 = Opening run of `
+ ( // $3 = The code block
+ [^\r]*?
+ [^`] // attacklab: work around lack of lookbehind
+ )
+ \2 // Matching closer
+ (?!`)
+ /gm, function(){...});
+ */
+
+ if (typeof text === 'undefined') {
+ text = '';
+ }
+
+ text = text.replace(/(^|[^\\])(`+)([^\r]*?[^`])\2(?!`)/gm, function (wholeMatch, m1, m2, m3) {
+ var c = m3;
+ c = c.replace(/^([ \t]*)/g, ''); // leading whitespace
+
+ c = c.replace(/[ \t]*$/g, ''); // trailing whitespace
+
+ c = showdown.subParser('encodeCode')(c);
+ return m1 + '' + c + '';
+ });
+ text = globals.converter._dispatch('codeSpans.after', text, options, globals);
+ return text;
+});
+/**
+ * Convert all tabs to spaces
+ */
+
+showdown.subParser('detab', function (text) {
+ 'use strict'; // expand first n-1 tabs
+
+ text = text.replace(/\t(?=\t)/g, ' '); // g_tab_width
+ // replace the nth with two sentinels
+
+ text = text.replace(/\t/g, '~A~B'); // use the sentinel to anchor our regex so it doesn't explode
+
+ text = text.replace(/~B(.+?)~A/g, function (wholeMatch, m1) {
+ var leadingText = m1;
+ var numSpaces = 4 - (leadingText.length % 4); // g_tab_width
+ // there *must* be a better way to do this:
+
+ for (var i = 0; i < numSpaces; i++) {
+ leadingText += ' ';
+ }
+
+ return leadingText;
+ }); // clean up sentinels
+
+ text = text.replace(/~A/g, ' '); // g_tab_width
+
+ text = text.replace(/~B/g, '');
+ return text;
+});
+/**
+ * Smart processing for ampersands and angle brackets that need to be encoded.
+ */
+
+showdown.subParser('encodeAmpsAndAngles', function (text) {
+ 'use strict'; // Ampersand-encoding based entirely on Nat Irons's Amputator MT plugin:
+ // http://bumppo.net/projects/amputator/
+
+ text = text.replace(/&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)/g, '&'); // Encode naked <'s
+
+ text = text.replace(/<(?![a-z\/?\$!])/gi, '<');
+ return text;
+});
+/**
+ * Returns the string, with after processing the following backslash escape sequences.
+ *
+ * attacklab: The polite way to do this is with the new escapeCharacters() function:
+ *
+ * text = escapeCharacters(text,"\\",true);
+ * text = escapeCharacters(text,"`*_{}[]()>#+-.!",true);
+ *
+ * ...but we're sidestepping its use of the (slow) RegExp constructor
+ * as an optimization for Firefox. This function gets called a LOT.
+ */
+
+showdown.subParser('encodeBackslashEscapes', function (text) {
+ 'use strict';
+
+ text = text.replace(/\\(\\)/g, showdown.helper.escapeCharactersCallback);
+ text = text.replace(/\\([`*_{}\[\]()>#+-.!])/g, showdown.helper.escapeCharactersCallback);
+ return text;
+});
+/**
+ * Encode/escape certain characters inside Markdown code runs.
+ * The point is that in code, these characters are literals,
+ * and lose their special Markdown meanings.
+ */
+
+showdown.subParser('encodeCode', function (text) {
+ 'use strict'; // Encode all ampersands; HTML entities are not
+ // entities within a Markdown code span.
+
+ text = text.replace(/&/g, '&'); // Do the angle bracket song and dance:
+
+ text = text.replace(//g, '>'); // Now, escape characters that are magic in Markdown:
+
+ text = showdown.helper.escapeCharacters(text, '*_{}[]\\', false); // jj the line above breaks this:
+ //---
+ //* Item
+ // 1. Subitem
+ // special char: *
+ // ---
+
+ return text;
+});
+/**
+ * Input: an email address, e.g. "foo@example.com"
+ *
+ * Output: the email address as a mailto link, with each character
+ * of the address encoded as either a decimal or hex entity, in
+ * the hopes of foiling most address harvesting spam bots. E.g.:
+ *
+ * foo
+ * @example.com
+ *
+ * Based on a filter by Matthew Wickline, posted to the BBEdit-Talk
+ * mailing list:
+ *
+ */
+
+showdown.subParser('encodeEmailAddress', function (addr) {
+ 'use strict';
+
+ var encode = [
+ function (ch) {
+ return '' + ch.charCodeAt(0) + ';';
+ },
+ function (ch) {
+ return '' + ch.charCodeAt(0).toString(16) + ';';
+ },
+ function (ch) {
+ return ch;
+ }
+ ];
+ addr = 'mailto:' + addr;
+ addr = addr.replace(/./g, function (ch) {
+ if (ch === '@') {
+ // this *must* be encoded. I insist.
+ ch = encode[Math.floor(Math.random() * 2)](ch);
+ } else {
+ if (ch !== ':') {
+ // leave ':' alone (to spot mailto: later)
+ var r = Math.random(); // roughly 10% raw, 45% hex, 45% dec
+
+ if (r > 0.9) {
+ ch = encode[2](ch);
+ } else {
+ if (r > 0.45) {
+ ch = encode[1](ch);
+ } else {
+ ch = encode[0](ch);
+ }
+ }
+ }
+ }
+
+ return ch;
+ });
+ addr = '' + addr + '';
+ addr = addr.replace(/">.+:/g, '">'); // strip the mailto: from the visible part
+
+ return addr;
+});
+/**
+ * Within tags -- meaning between < and > -- encode [\ ` * _] so they
+ * don't conflict with their use in Markdown for code, italics and strong.
+ */
+
+showdown.subParser('escapeSpecialCharsWithinTagAttributes', function (text) {
+ 'use strict'; // Build a regex to find HTML tags and comments. See Friedl's
+ // "Mastering Regular Expressions", 2nd Ed., pp. 200-201.
+
+ var regex = /(<[a-z\/!$]("[^"]*"|'[^']*'|[^'">])*>|)/gi;
+ text = text.replace(regex, function (wholeMatch) {
+ var tag = wholeMatch.replace(/(.)<\/?code>(?=.)/g, '$1`');
+ tag = showdown.helper.escapeCharacters(tag, '\\`*_', false);
+ return tag;
+ });
+ return text;
+});
+/**
+ * Handle github codeblocks prior to running HashHTML so that
+ * HTML contained within the codeblock gets escaped properly
+ * Example:
+ * ```ruby
+ * def hello_world(x)
+ * puts "Hello, #{x}"
+ * end
+ * ```
+ */
+
+showdown.subParser('githubCodeBlocks', function (text, options, globals) {
+ 'use strict'; // early exit if option is not enabled
+
+ if (!options.ghCodeBlocks) {
+ return text;
+ }
+
+ text = globals.converter._dispatch('githubCodeBlocks.before', text, options, globals);
+ text += '~0';
+ text = text.replace(/(?:^|\n)```(.*)\n([\s\S]*?)\n```/g, function (wholeMatch, language, codeblock) {
+ var end = options.omitExtraWLInCodeBlocks ? '' : '\n'; // First parse the github code block
+
+ codeblock = showdown.subParser('encodeCode')(codeblock);
+ codeblock = showdown.subParser('detab')(codeblock);
+ codeblock = codeblock.replace(/^\n+/g, ''); // trim leading newlines
+
+ codeblock = codeblock.replace(/\n+$/g, ''); // trim trailing whitespace
+
+ codeblock = '' + codeblock + end + '
';
+ codeblock = showdown.subParser('hashBlock')(codeblock, options, globals); // Since GHCodeblocks can be false positives, we need to
+ // store the primitive text and the parsed text in a global var,
+ // and then return a token
+
+ return (
+ '\n\n~G' +
+ (globals.ghCodeBlocks.push({
+ text: wholeMatch,
+ codeblock: codeblock
+ }) -
+ 1) +
+ 'G\n\n'
+ );
+ }); // attacklab: strip sentinel
+
+ text = text.replace(/~0/, '');
+ return globals.converter._dispatch('githubCodeBlocks.after', text, options, globals);
+});
+showdown.subParser('hashBlock', function (text, options, globals) {
+ 'use strict';
+
+ text = text.replace(/(^\n+|\n+$)/g, '');
+ return '\n\n~K' + (globals.gHtmlBlocks.push(text) - 1) + 'K\n\n';
+});
+showdown.subParser('hashElement', function (text, options, globals) {
+ 'use strict';
+
+ return function (wholeMatch, m1) {
+ var blockText = m1; // Undo double lines
+
+ blockText = blockText.replace(/\n\n/g, '\n');
+ blockText = blockText.replace(/^\n/, ''); // strip trailing blank lines
+
+ blockText = blockText.replace(/\n+$/g, ''); // Replace the element text with a marker ("~KxK" where x is its key)
+
+ blockText = '\n\n~K' + (globals.gHtmlBlocks.push(blockText) - 1) + 'K\n\n';
+ return blockText;
+ };
+});
+showdown.subParser('hashHTMLBlocks', function (text, options, globals) {
+ 'use strict';
+
+ var blockTags = [
+ 'pre',
+ 'div',
+ 'h1',
+ 'h2',
+ 'h3',
+ 'h4',
+ 'h5',
+ 'h6',
+ 'blockquote',
+ 'table',
+ 'dl',
+ 'ol',
+ 'ul',
+ 'script',
+ 'noscript',
+ 'form',
+ 'fieldset',
+ 'iframe',
+ 'math',
+ 'style',
+ 'section',
+ 'header',
+ 'footer',
+ 'nav',
+ 'article',
+ 'aside',
+ 'address',
+ 'audio',
+ 'canvas',
+ 'figure',
+ 'hgroup',
+ 'output',
+ 'video',
+ 'p'
+ ];
+
+ var repFunc = function (wholeMatch, match, left, right) {
+ var txt = wholeMatch; // check if this html element is marked as markdown
+ // if so, it's contents should be parsed as markdown
+
+ if (left.search(/\bmarkdown\b/) !== -1) {
+ txt = left + globals.converter.makeHtml(match) + right;
+ }
+
+ return '\n\n~K' + (globals.gHtmlBlocks.push(txt) - 1) + 'K\n\n';
+ };
+
+ for (var i = 0; i < blockTags.length; ++i) {
+ text = showdown.helper.replaceRecursiveRegExp(text, repFunc, '^(?: |\\t){0,3}<' + blockTags[i] + '\\b[^>]*>', '' + blockTags[i] + '>', 'gim');
+ } // HR SPECIAL CASE
+
+ text = text.replace(/(\n[ ]{0,3}(<(hr)\b([^<>])*?\/?>)[ \t]*(?=\n{2,}))/g, showdown.subParser('hashElement')(text, options, globals)); // Special case for standalone HTML comments:
+
+ text = text.replace(/()/g, showdown.subParser('hashElement')(text, options, globals)); // PHP and ASP-style processor instructions (...?> and <%...%>)
+
+ text = text.replace(/(?:\n\n)([ ]{0,3}(?:<([?%])[^\r]*?\2>)[ \t]*(?=\n{2,}))/g, showdown.subParser('hashElement')(text, options, globals));
+ return text;
+});
+/**
+ * Hash span elements that should not be parsed as markdown
+ */
+
+showdown.subParser('hashHTMLSpans', function (text, config, globals) {
+ 'use strict';
+
+ var matches = showdown.helper.matchRecursiveRegExp(text, ']*>', '', 'gi');
+
+ for (var i = 0; i < matches.length; ++i) {
+ text = text.replace(matches[i][0], '~L' + (globals.gHtmlSpans.push(matches[i][0]) - 1) + 'L');
+ }
+
+ return text;
+});
+/**
+ * Unhash HTML spans
+ */
+
+showdown.subParser('unhashHTMLSpans', function (text, config, globals) {
+ 'use strict';
+
+ for (var i = 0; i < globals.gHtmlSpans.length; ++i) {
+ text = text.replace('~L' + i + 'L', globals.gHtmlSpans[i]);
+ }
+
+ return text;
+});
+/**
+ * Hash span elements that should not be parsed as markdown
+ */
+
+showdown.subParser('hashPreCodeTags', function (text, config, globals) {
+ 'use strict';
+
+ var repFunc = function (wholeMatch, match, left, right) {
+ // encode html entities
+ var codeblock = left + showdown.subParser('encodeCode')(match) + right;
+ return (
+ '\n\n~G' +
+ (globals.ghCodeBlocks.push({
+ text: wholeMatch,
+ codeblock: codeblock
+ }) -
+ 1) +
+ 'G\n\n'
+ );
+ };
+
+ text = showdown.helper.replaceRecursiveRegExp(text, repFunc, '^(?: |\\t){0,3}]*>\\s*]*>', '^(?: |\\t){0,3}\\s*
', 'gim');
+ return text;
+});
+showdown.subParser('headers', function (text, options, globals) {
+ 'use strict';
+
+ text = globals.converter._dispatch('headers.before', text, options, globals);
+ var prefixHeader = options.prefixHeaderId;
+ var headerLevelStart = isNaN(parseInt(options.headerLevelStart)) ? 1 : parseInt(options.headerLevelStart);
+ var // Set text-style headers:
+ // Header 1
+ // ========
+ //
+ // Header 2
+ // --------
+ //
+ setextRegexH1 = options.smoothLivePreview ? /^(.+)[ \t]*\n={2,}[ \t]*\n+/gm : /^(.+)[ \t]*\n=+[ \t]*\n+/gm;
+ var setextRegexH2 = options.smoothLivePreview ? /^(.+)[ \t]*\n-{2,}[ \t]*\n+/gm : /^(.+)[ \t]*\n-+[ \t]*\n+/gm;
+ text = text.replace(setextRegexH1, function (wholeMatch, m1) {
+ var spanGamut = showdown.subParser('spanGamut')(m1, options, globals);
+ var hID = options.noHeaderId ? '' : ' id="' + headerId(m1) + '"';
+ var hLevel = headerLevelStart;
+ var hashBlock = '' + spanGamut + ' ';
+ return showdown.subParser('hashBlock')(hashBlock, options, globals);
+ });
+ text = text.replace(setextRegexH2, function (matchFound, m1) {
+ var spanGamut = showdown.subParser('spanGamut')(m1, options, globals);
+ var hID = options.noHeaderId ? '' : ' id="' + headerId(m1) + '"';
+ var hLevel = headerLevelStart + 1;
+ var hashBlock = '' + spanGamut + ' ';
+ return showdown.subParser('hashBlock')(hashBlock, options, globals);
+ }); // atx-style headers:
+ // # Header 1
+ // ## Header 2
+ // ## Header 2 with closing hashes ##
+ // ...
+ // ###### Header 6
+ //
+
+ text = text.replace(/^(#{1,6})[ \t]*(.+?)[ \t]*#*\n+/gm, function (wholeMatch, m1, m2) {
+ var span = showdown.subParser('spanGamut')(m2, options, globals);
+ var hID = options.noHeaderId ? '' : ' id="' + headerId(m2) + '"';
+ var hLevel = headerLevelStart - 1 + m1.length;
+ var header = '' + span + ' ';
+ return showdown.subParser('hashBlock')(header, options, globals);
+ });
+
+ function headerId(m) {
+ var title;
+ var escapedId = m.replace(/[^\w]/g, '').toLowerCase();
+ if (globals.hashLinkCounts[escapedId]) {
+ title = escapedId + '-' + globals.hashLinkCounts[escapedId]++;
+ } else {
+ title = escapedId;
+ globals.hashLinkCounts[escapedId] = 1;
+ } // Prefix id to prevent causing inadvertent pre-existing style matches.
+
+ if (prefixHeader === true) {
+ prefixHeader = 'section';
+ }
+
+ if (showdown.helper.isString(prefixHeader)) {
+ return prefixHeader + title;
+ }
+
+ return title;
+ }
+
+ text = globals.converter._dispatch('headers.after', text, options, globals);
+ return text;
+});
+/**
+ * Turn Markdown image shortcuts into
tags.
+ */
+
+showdown.subParser('images', function (text, options, globals) {
+ 'use strict';
+
+ text = globals.converter._dispatch('images.before', text, options, globals);
+ var inlineRegExp = /!\[(.*?)]\s?\([ \t]*()(\S+?)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(['"])(.*?)\6[ \t]*)?\)/g;
+ var referenceRegExp = /!\[([^\]]*?)] ?(?:\n *)?\[(.*?)]()()()()()/g;
+ function writeImageTag(wholeMatch, altText, linkId, url, width, height, m5, title) {
+ var gUrls = globals.gUrls;
+ var gTitles = globals.gTitles;
+ var gDims = globals.gDimensions;
+ linkId = linkId.toLowerCase();
+
+ if (!title) {
+ title = '';
+ }
+
+ if (url === '' || url === null) {
+ if (linkId === '' || linkId === null) {
+ // lower-case and turn embedded newlines into spaces
+ linkId = altText.toLowerCase().replace(/ ?\n/g, ' ');
+ }
+
+ url = '#' + linkId;
+
+ if (!showdown.helper.isUndefined(gUrls[linkId])) {
+ url = gUrls[linkId];
+
+ if (!showdown.helper.isUndefined(gTitles[linkId])) {
+ title = gTitles[linkId];
+ }
+
+ if (!showdown.helper.isUndefined(gDims[linkId])) {
+ width = gDims[linkId].width;
+ height = gDims[linkId].height;
+ }
+ } else {
+ return wholeMatch;
+ }
+ }
+
+ altText = altText.replace(/"/g, '"');
+ altText = showdown.helper.escapeCharacters(altText, '*_', false);
+ url = showdown.helper.escapeCharacters(url, '*_', false);
+ var result = '
';
+ return result;
+ } // First, handle reference-style labeled images: ![alt text][id]
+
+ text = text.replace(referenceRegExp, writeImageTag); // Next, handle inline images: 
+
+ text = text.replace(inlineRegExp, writeImageTag);
+ text = globals.converter._dispatch('images.after', text, options, globals);
+ return text;
+});
+showdown.subParser('italicsAndBold', function (text, options, globals) {
+ 'use strict';
+
+ text = globals.converter._dispatch('italicsAndBold.before', text, options, globals);
+
+ if (options.literalMidWordUnderscores) {
+ //underscores
+ // Since we are consuming a \s character, we need to add it
+ text = text.replace(/(^|\s|>|\b)__(?=\S)([\s\S]+?)__(?=\b|<|\s|$)/gm, '$1$2');
+ text = text.replace(/(^|\s|>|\b)_(?=\S)([\s\S]+?)_(?=\b|<|\s|$)/gm, '$1$2'); //asterisks
+
+ text = text.replace(/(\*\*)(?=\S)([^\r]*?\S[*]*)\1/g, '$2');
+ text = text.replace(/(\*)(?=\S)([^\r]*?\S)\1/g, '$2');
+ } else {
+ // must go first:
+ text = text.replace(/(\*\*|__)(?=\S)([^\r]*?\S[*_]*)\1/g, '$2');
+ text = text.replace(/(\*|_)(?=\S)([^\r]*?\S)\1/g, '$2');
+ }
+
+ text = globals.converter._dispatch('italicsAndBold.after', text, options, globals);
+ return text;
+});
+/**
+ * Form HTML ordered (numbered) and unordered (bulleted) lists.
+ */
+
+showdown.subParser('lists', function (text, options, globals) {
+ 'use strict';
+
+ text = globals.converter._dispatch('lists.before', text, options, globals);
+ /**
+ * Process the contents of a single ordered or unordered list, splitting it
+ * into individual list items.
+ * @param {string} listStr
+ * @param {boolean} trimTrailing
+ * @returns {string}
+ */
+
+ function processListItems(listStr, trimTrailing) {
+ // The $g_list_level global keeps track of when we're inside a list.
+ // Each time we enter a list, we increment it; when we leave a list,
+ // we decrement. If it's zero, we're not in a list anymore.
+ //
+ // We do this because when we're not inside a list, we want to treat
+ // something like this:
+ //
+ // I recommend upgrading to version
+ // 8. Oops, now this line is treated
+ // as a sub-list.
+ //
+ // As a single paragraph, despite the fact that the second line starts
+ // with a digit-period-space sequence.
+ //
+ // Whereas when we're inside a list (or sub-list), that line will be
+ // treated as the start of a sub-list. What a kludge, huh? This is
+ // an aspect of Markdown's syntax that's hard to parse perfectly
+ // without resorting to mind-reading. Perhaps the solution is to
+ // change the syntax rules such that sub-lists must start with a
+ // starting cardinal number; e.g. "1." or "a.".
+ globals.gListLevel++; // trim trailing blank lines:
+
+ listStr = listStr.replace(/\n{2,}$/, '\n'); // attacklab: add sentinel to emulate \z
+
+ listStr += '~0';
+ var rgx = /(\n)?(^[ \t]*)([*+-]|\d+[.])[ \t]+((\[(x|X| )?])?[ \t]*[^\r]+?(\n{1,2}))(?=\n*(~0|\2([*+-]|\d+[.])[ \t]+))/gm;
+ var isParagraphed = /\n[ \t]*\n(?!~0)/.test(listStr);
+ listStr = listStr.replace(rgx, function (wholeMatch, m1, m2, m3, m4, taskbtn, checked) {
+ checked = checked && checked.trim() !== '';
+ var item = showdown.subParser('outdent')(m4, options, globals);
+ var bulletStyle = ''; // Support for github tasklists
+ if (taskbtn && options.tasklists) {
+ bulletStyle = ' class="task-list-item" style="list-style-type: none;"';
+ item = item.replace(/^[ \t]*\[(x|X| )?]/m, function () {
+ var otp = '';
+ return otp;
+ });
+ } // m1 - Leading line or
+ // Has a double return (multi paragraph) or
+ // Has sublist
+
+ if (m1 || item.search(/\n{2,}/) > -1) {
+ item = showdown.subParser('githubCodeBlocks')(item, options, globals);
+ item = showdown.subParser('blockGamut')(item, options, globals);
+ } else {
+ // Recursion for sub-lists:
+ item = showdown.subParser('lists')(item, options, globals);
+ item = item.replace(/\n$/, ''); // chomp(item)
+
+ if (isParagraphed) {
+ item = showdown.subParser('paragraphs')(item, options, globals);
+ } else {
+ item = showdown.subParser('spanGamut')(item, options, globals);
+ }
+ }
+
+ item = '\n' + item + ' \n';
+ return item;
+ }); // attacklab: strip sentinel
+
+ listStr = listStr.replace(/~0/g, '');
+ globals.gListLevel--;
+
+ if (trimTrailing) {
+ listStr = listStr.replace(/\s+$/, '');
+ }
+
+ return listStr;
+ }
+ /**
+ * Check and parse consecutive lists (better fix for issue #142)
+ * @param {string} list
+ * @param {string} listType
+ * @param {boolean} trimTrailing
+ * @returns {string}
+ */
+
+ function parseConsecutiveLists(list, listType, trimTrailing) {
+ var counterRxg = listType === 'ul' ? /^ {0,2}\d+\.[ \t]/gm : /^ {0,2}[*+-][ \t]/gm;
+ var subLists = [];
+ var result = '';
+ // check if we caught 2 or more consecutive lists by mistake
+ // we use the counterRgx, meaning if listType is UL we look for UL and vice versa
+ if (list.search(counterRxg) !== -1) {
+ (function parseCL(txt) {
+ var pos = txt.search(counterRxg);
+
+ if (pos !== -1) {
+ // slice
+ result += '\n\n<' + listType + '>' + processListItems(txt.slice(0, pos), !!trimTrailing) + '' + listType + '>\n\n'; // invert counterType and listType
+
+ if (listType === 'ul') {
+ listType = 'ol';
+ } else {
+ listType = 'ul';
+ }
+
+ if (listType === 'ul') {
+ counterRxg = /^ {0,2}\d+\.[ \t]/gm;
+ } else {
+ counterRxg = /^ {0,2}[*+-][ \t]/gm;
+ } //recurse
+
+ parseCL(txt.slice(pos));
+ } else {
+ result += '\n\n<' + listType + '>' + processListItems(txt, !!trimTrailing) + '' + listType + '>\n\n';
+ }
+ })(list);
+
+ for (var i = 0; i < subLists.length; ++i) {}
+ } else {
+ result = '\n\n<' + listType + '>' + processListItems(list, !!trimTrailing) + '' + listType + '>\n\n';
+ }
+
+ return result;
+ } // attacklab: add sentinel to hack around khtml/safari bug:
+ // http://bugs.webkit.org/show_bug.cgi?id=11231
+
+ text += '~0'; // Re-usable pattern to match any entire ul or ol list:
+
+ var wholeList = /^(([ ]{0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(~0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm;
+
+ if (globals.gListLevel) {
+ text = text.replace(wholeList, function (wholeMatch, list, m2) {
+ var listType = m2.search(/[*+-]/g) > -1 ? 'ul' : 'ol';
+ return parseConsecutiveLists(list, listType, true);
+ });
+ } else {
+ wholeList = /(\n\n|^\n?)(([ ]{0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(~0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm; //wholeList = /(\n\n|^\n?)( {0,3}([*+-]|\d+\.)[ \t]+[\s\S]+?)(?=(~0)|(\n\n(?!\t| {2,}| {0,3}([*+-]|\d+\.)[ \t])))/g;
+
+ text = text.replace(wholeList, function (wholeMatch, m1, list, m3) {
+ var listType = m3.search(/[*+-]/g) > -1 ? 'ul' : 'ol';
+ return parseConsecutiveLists(list, listType);
+ });
+ } // attacklab: strip sentinel
+
+ text = text.replace(/~0/, '');
+ text = globals.converter._dispatch('lists.after', text, options, globals);
+ return text;
+});
+/**
+ * Remove one level of line-leading tabs or spaces
+ */
+
+showdown.subParser('outdent', function (text) {
+ 'use strict'; // attacklab: hack around Konqueror 3.5.4 bug:
+ // "----------bug".replace(/^-/g,"") == "bug"
+
+ text = text.replace(/^(\t|[ ]{1,4})/gm, '~0'); // attacklab: g_tab_width
+ // attacklab: clean up hack
+
+ text = text.replace(/~0/g, '');
+ return text;
+});
+/**
+ *
+ */
+
+showdown.subParser('paragraphs', function (text, options, globals) {
+ 'use strict';
+
+ text = globals.converter._dispatch('paragraphs.before', text, options, globals); // Strip leading and trailing lines:
+
+ text = text.replace(/^\n+/g, '');
+ text = text.replace(/\n+$/g, '');
+ var grafs = text.split(/\n{2,}/g);
+ var grafsOut = [];
+ var end = grafs.length; // Wrap tags
+ for (var i = 0; i < end; i++) {
+ var str = grafs[i]; // if this is an HTML marker, copy it
+
+ if (str.search(/~(K|G)(\d+)\1/g) >= 0) {
+ grafsOut.push(str);
+ } else {
+ str = showdown.subParser('spanGamut')(str, options, globals);
+ str = str.replace(/^([ \t]*)/g, '
');
+ str += '
';
+ grafsOut.push(str);
+ }
+ }
+ /** Unhashify HTML blocks */
+
+ end = grafsOut.length;
+
+ for (i = 0; i < end; i++) {
+ var blockText = '';
+ var grafsOutIt = grafsOut[i];
+ var codeFlag = false; // if this is a marker for an html block...
+ while (grafsOutIt.search(/~(K|G)(\d+)\1/) >= 0) {
+ var delim = RegExp.$1;
+ var num = RegExp.$2;
+ if (delim === 'K') {
+ blockText = globals.gHtmlBlocks[num];
+ } else {
+ // we need to check if ghBlock is a false positive
+ if (codeFlag) {
+ // use encoded version of all text
+ blockText = showdown.subParser('encodeCode')(globals.ghCodeBlocks[num].text);
+ } else {
+ blockText = globals.ghCodeBlocks[num].codeblock;
+ }
+ }
+
+ blockText = blockText.replace(/\$/g, '$$$$'); // Escape any dollar signs
+
+ grafsOutIt = grafsOutIt.replace(/(\n\n)?~(K|G)\d+\2(\n\n)?/, blockText); // Check if grafsOutIt is a pre->code
+
+ if (/^]*>\s*]*>/.test(grafsOutIt)) {
+ codeFlag = true;
+ }
+ }
+
+ grafsOut[i] = grafsOutIt;
+ }
+
+ text = grafsOut.join('\n\n'); // Strip leading and trailing lines:
+
+ text = text.replace(/^\n+/g, '');
+ text = text.replace(/\n+$/g, '');
+ return globals.converter._dispatch('paragraphs.after', text, options, globals);
+});
+/**
+ * Run extension
+ */
+
+showdown.subParser('runExtension', function (ext, text, options, globals) {
+ 'use strict';
+
+ if (ext.filter) {
+ text = ext.filter(text, globals.converter, options);
+ } else {
+ if (ext.regex) {
+ // TODO remove this when old extension loading mechanism is deprecated
+ var re = ext.regex;
+
+ if (!re instanceof RegExp) {
+ re = new RegExp(re, 'g');
+ }
+
+ text = text.replace(re, ext.replace);
+ }
+ }
+
+ return text;
+});
+/**
+ * These are all the transformations that occur *within* block-level
+ * tags like paragraphs, headers, and list items.
+ */
+
+showdown.subParser('spanGamut', function (text, options, globals) {
+ 'use strict';
+
+ text = globals.converter._dispatch('spanGamut.before', text, options, globals);
+ text = showdown.subParser('codeSpans')(text, options, globals);
+ text = showdown.subParser('escapeSpecialCharsWithinTagAttributes')(text, options, globals);
+ text = showdown.subParser('encodeBackslashEscapes')(text, options, globals); // Process anchor and image tags. Images must come first,
+ // because ![foo][f] looks like an anchor.
+
+ text = showdown.subParser('images')(text, options, globals);
+ text = showdown.subParser('anchors')(text, options, globals); // Make links out of things like ` `
+ // Must come after _DoAnchors(), because you can use < and >
+ // delimiters in inline links like [this]().
+
+ text = showdown.subParser('autoLinks')(text, options, globals);
+ text = showdown.subParser('encodeAmpsAndAngles')(text, options, globals);
+ text = showdown.subParser('italicsAndBold')(text, options, globals);
+ text = showdown.subParser('strikethrough')(text, options, globals); // Do hard breaks:
+
+ text = text.replace(/ +\n/g, '
\n');
+ text = globals.converter._dispatch('spanGamut.after', text, options, globals);
+ return text;
+});
+showdown.subParser('strikethrough', function (text, options, globals) {
+ 'use strict';
+
+ if (options.strikethrough) {
+ text = globals.converter._dispatch('strikethrough.before', text, options, globals);
+ text = text.replace(/(?:~T){2}([\s\S]+?)(?:~T){2}/g, '$1');
+ text = globals.converter._dispatch('strikethrough.after', text, options, globals);
+ }
+
+ return text;
+});
+/**
+ * Strip any lines consisting only of spaces and tabs.
+ * This makes subsequent regexs easier to write, because we can
+ * match consecutive blank lines with /\n+/ instead of something
+ * contorted like /[ \t]*\n+/
+ */
+
+showdown.subParser('stripBlankLines', function (text) {
+ 'use strict';
+
+ return text.replace(/^[ \t]+$/gm, '');
+});
+/**
+ * Strips link definitions from text, stores the URLs and titles in
+ * hash references.
+ * Link defs are in the form: ^[id]: url "optional title"
+ *
+ * ^[ ]{0,3}\[(.+)\]: // id = $1 attacklab: g_tab_width - 1
+ * [ \t]*
+ * \n? // maybe *one* newline
+ * [ \t]*
+ * (\S+?)>? // url = $2
+ * [ \t]*
+ * \n? // maybe one newline
+ * [ \t]*
+ * (?:
+ * (\n*) // any lines skipped = $3 attacklab: lookbehind removed
+ * ["(]
+ * (.+?) // title = $4
+ * [")]
+ * [ \t]*
+ * )? // title is optional
+ * (?:\n+|$)
+ * /gm,
+ * function(){...});
+ *
+ */
+
+showdown.subParser('stripLinkDefinitions', function (text, options, globals) {
+ 'use strict';
+
+ var regex = /^ {0,3}\[(.+)]:[ \t]*\n?[ \t]*(\S+?)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*\n?[ \t]*(?:(\n*)["|'(](.+?)["|')][ \t]*)?(?:\n+|(?=~0))/gm; // attacklab: sentinel workarounds for lack of \A and \Z, safari\khtml bug
+
+ text += '~0';
+ text = text.replace(regex, function (wholeMatch, linkId, url, width, height, blankLines, title) {
+ linkId = linkId.toLowerCase();
+ globals.gUrls[linkId] = showdown.subParser('encodeAmpsAndAngles')(url); // Link IDs are case-insensitive
+
+ if (blankLines) {
+ // Oops, found blank lines, so it's not a title.
+ // Put back the parenthetical statement we stole.
+ return blankLines + title;
+ } else {
+ if (title) {
+ globals.gTitles[linkId] = title.replace(/"|'/g, '"');
+ }
+
+ if (options.parseImgDimensions && width && height) {
+ globals.gDimensions[linkId] = {
+ width: width,
+ height: height
+ };
+ }
+ } // Completely remove the definition from the text
+
+ return '';
+ }); // attacklab: strip sentinel
+
+ text = text.replace(/~0/, '');
+ return text;
+});
+showdown.subParser('tables', function (text, options, globals) {
+ 'use strict';
+
+ if (!options.tables) {
+ return text;
+ }
+
+ var tableRgx = /^[ \t]{0,3}\|?.+\|.+\n[ \t]{0,3}\|?[ \t]*:?[ \t]*(?:-|=){2,}[ \t]*:?[ \t]*\|[ \t]*:?[ \t]*(?:-|=){2,}[\s\S]+?(?:\n\n|~0)/gm;
+
+ function parseStyles(sLine) {
+ if (/^:[ \t]*--*$/.test(sLine)) {
+ return ' style="text-align:left;"';
+ } else {
+ if (/^--*[ \t]*:[ \t]*$/.test(sLine)) {
+ return ' style="text-align:right;"';
+ } else {
+ if (/^:[ \t]*--*[ \t]*:$/.test(sLine)) {
+ return ' style="text-align:center;"';
+ } else {
+ return '';
+ }
+ }
+ }
+ }
+
+ function parseHeaders(header, style) {
+ var id = '';
+ header = header.trim();
+
+ if (options.tableHeaderId) {
+ id = ' id="' + header.replace(/ /g, '_').toLowerCase() + '"';
+ }
+
+ header = showdown.subParser('spanGamut')(header, options, globals);
+ return '' + header + ' \n';
+ }
+
+ function parseCells(cell, style) {
+ var subText = showdown.subParser('spanGamut')(cell, options, globals);
+ return '' + subText + ' \n';
+ }
+
+ function buildTable(headers, cells) {
+ var tb = '\n\n\n';
+ var tblLgn = headers.length;
+ for (var i = 0; i < tblLgn; ++i) {
+ tb += headers[i];
+ }
+
+ tb += ' \n\n\n';
+
+ for (i = 0; i < cells.length; ++i) {
+ tb += '\n';
+
+ for (var ii = 0; ii < tblLgn; ++ii) {
+ tb += cells[i][ii];
+ }
+
+ tb += ' \n';
+ }
+
+ tb += '\n
\n';
+ return tb;
+ }
+
+ text = globals.converter._dispatch('tables.before', text, options, globals);
+ text = text.replace(tableRgx, function (rawTable) {
+ var i;
+ var tableLines = rawTable.split('\n'); // strip wrong first and last column if wrapped tables are used
+ for (i = 0; i < tableLines.length; ++i) {
+ if (/^[ \t]{0,3}\|/.test(tableLines[i])) {
+ tableLines[i] = tableLines[i].replace(/^[ \t]{0,3}\|/, '');
+ }
+
+ if (/\|[ \t]*$/.test(tableLines[i])) {
+ tableLines[i] = tableLines[i].replace(/\|[ \t]*$/, '');
+ }
+ }
+
+ var rawHeaders = tableLines[0].split('|').map(function (s) {
+ return s.trim();
+ });
+ var rawStyles = tableLines[1].split('|').map(function (s) {
+ return s.trim();
+ });
+ var rawCells = [];
+ var headers = [];
+ var styles = [];
+ var cells = [];
+ tableLines.shift();
+ tableLines.shift();
+
+ for (i = 0; i < tableLines.length; ++i) {
+ if (tableLines[i].trim() === '') {
+ continue;
+ }
+
+ rawCells.push(
+ tableLines[i].split('|').map(function (s) {
+ return s.trim();
+ })
+ );
+ }
+
+ if (rawHeaders.length < rawStyles.length) {
+ return rawTable;
+ }
+
+ for (i = 0; i < rawStyles.length; ++i) {
+ styles.push(parseStyles(rawStyles[i]));
+ }
+
+ for (i = 0; i < rawHeaders.length; ++i) {
+ if (showdown.helper.isUndefined(styles[i])) {
+ styles[i] = '';
+ }
+
+ headers.push(parseHeaders(rawHeaders[i], styles[i]));
+ }
+
+ for (i = 0; i < rawCells.length; ++i) {
+ var row = [];
+
+ for (var ii = 0; ii < headers.length; ++ii) {
+ if (showdown.helper.isUndefined(rawCells[i][ii])) {
+ }
+
+ row.push(parseCells(rawCells[i][ii], styles[ii]));
+ }
+
+ cells.push(row);
+ }
+
+ return buildTable(headers, cells);
+ });
+ text = globals.converter._dispatch('tables.after', text, options, globals);
+ return text;
+});
+/**
+ * Swap back in all the special characters we've hidden.
+ */
+
+showdown.subParser('unescapeSpecialChars', function (text) {
+ 'use strict';
+
+ text = text.replace(/~E(\d+)E/g, function (wholeMatch, m1) {
+ var charCodeToReplace = parseInt(m1);
+ return String.fromCharCode(charCodeToReplace);
+ });
+ return text;
+});
+module.exports = showdown;
diff --git a/litemall-wx_uni/lib/wxParse/wxDiscode.js b/litemall-wx_uni/lib/wxParse/wxDiscode.js
new file mode 100644
index 0000000000000000000000000000000000000000..575513f31968bbd577c04d35fded964e9b11e4c1
--- /dev/null
+++ b/litemall-wx_uni/lib/wxParse/wxDiscode.js
@@ -0,0 +1,196 @@
+// HTML 支持的数学符号
+function strNumDiscode(str) {
+ str = str.replace(/∀/g, '∀');
+ str = str.replace(/∂/g, '∂');
+ str = str.replace(/&exists;/g, '∃');
+ str = str.replace(/∅/g, '∅');
+ str = str.replace(/∇/g, '∇');
+ str = str.replace(/∈/g, '∈');
+ str = str.replace(/∉/g, '∉');
+ str = str.replace(/∋/g, '∋');
+ str = str.replace(/∏/g, '∏');
+ str = str.replace(/∑/g, '∑');
+ str = str.replace(/−/g, '−');
+ str = str.replace(/∗/g, '∗');
+ str = str.replace(/√/g, '√');
+ str = str.replace(/∝/g, '∝');
+ str = str.replace(/∞/g, '∞');
+ str = str.replace(/∠/g, '∠');
+ str = str.replace(/∧/g, '∧');
+ str = str.replace(/∨/g, '∨');
+ str = str.replace(/∩/g, '∩');
+ str = str.replace(/∩/g, '∪');
+ str = str.replace(/∫/g, '∫');
+ str = str.replace(/∴/g, '∴');
+ str = str.replace(/∼/g, '∼');
+ str = str.replace(/≅/g, '≅');
+ str = str.replace(/≈/g, '≈');
+ str = str.replace(/≠/g, '≠');
+ str = str.replace(/≤/g, '≤');
+ str = str.replace(/≥/g, '≥');
+ str = str.replace(/⊂/g, '⊂');
+ str = str.replace(/⊃/g, '⊃');
+ str = str.replace(/⊄/g, '⊄');
+ str = str.replace(/⊆/g, '⊆');
+ str = str.replace(/⊇/g, '⊇');
+ str = str.replace(/⊕/g, '⊕');
+ str = str.replace(/⊗/g, '⊗');
+ str = str.replace(/⊥/g, '⊥');
+ str = str.replace(/⋅/g, '⋅');
+ return str;
+} //HTML 支持的希腊字母
+
+function strGreeceDiscode(str) {
+ str = str.replace(/Α/g, 'Α');
+ str = str.replace(/Β/g, 'Β');
+ str = str.replace(/Γ/g, 'Γ');
+ str = str.replace(/Δ/g, 'Δ');
+ str = str.replace(/Ε/g, 'Ε');
+ str = str.replace(/Ζ/g, 'Ζ');
+ str = str.replace(/Η/g, 'Η');
+ str = str.replace(/Θ/g, 'Θ');
+ str = str.replace(/Ι/g, 'Ι');
+ str = str.replace(/Κ/g, 'Κ');
+ str = str.replace(/Λ/g, 'Λ');
+ str = str.replace(/Μ/g, 'Μ');
+ str = str.replace(/Ν/g, 'Ν');
+ str = str.replace(/Ξ/g, 'Ν');
+ str = str.replace(/Ο/g, 'Ο');
+ str = str.replace(/Π/g, 'Π');
+ str = str.replace(/Ρ/g, 'Ρ');
+ str = str.replace(/Σ/g, 'Σ');
+ str = str.replace(/Τ/g, 'Τ');
+ str = str.replace(/Υ/g, 'Υ');
+ str = str.replace(/Φ/g, 'Φ');
+ str = str.replace(/Χ/g, 'Χ');
+ str = str.replace(/Ψ/g, 'Ψ');
+ str = str.replace(/Ω/g, 'Ω');
+ str = str.replace(/α/g, 'α');
+ str = str.replace(/β/g, 'β');
+ str = str.replace(/γ/g, 'γ');
+ str = str.replace(/δ/g, 'δ');
+ str = str.replace(/ε/g, 'ε');
+ str = str.replace(/ζ/g, 'ζ');
+ str = str.replace(/η/g, 'η');
+ str = str.replace(/θ/g, 'θ');
+ str = str.replace(/ι/g, 'ι');
+ str = str.replace(/κ/g, 'κ');
+ str = str.replace(/λ/g, 'λ');
+ str = str.replace(/μ/g, 'μ');
+ str = str.replace(/ν/g, 'ν');
+ str = str.replace(/ξ/g, 'ξ');
+ str = str.replace(/ο/g, 'ο');
+ str = str.replace(/π/g, 'π');
+ str = str.replace(/ρ/g, 'ρ');
+ str = str.replace(/ς/g, 'ς');
+ str = str.replace(/σ/g, 'σ');
+ str = str.replace(/τ/g, 'τ');
+ str = str.replace(/υ/g, 'υ');
+ str = str.replace(/φ/g, 'φ');
+ str = str.replace(/χ/g, 'χ');
+ str = str.replace(/ψ/g, 'ψ');
+ str = str.replace(/ω/g, 'ω');
+ str = str.replace(/ϑ/g, 'ϑ');
+ str = str.replace(/ϒ/g, 'ϒ');
+ str = str.replace(/ϖ/g, 'ϖ');
+ str = str.replace(/·/g, '·');
+ return str;
+} //
+
+function strcharacterDiscode(str) {
+ // 加入常用解析
+ str = str.replace(/ /g, ' ');
+ str = str.replace(/"/g, '"');
+ str = str.replace(/&/g, '&'); // str = str.replace(/</g, '‹');
+ // str = str.replace(/>/g, '›');
+
+ str = str.replace(/</g, '<');
+ str = str.replace(/>/g, '>');
+ return str;
+} // HTML 支持的其他实体
+
+function strOtherDiscode(str) {
+ str = str.replace(/Œ/g, 'Œ');
+ str = str.replace(/œ/g, 'œ');
+ str = str.replace(/Š/g, 'Š');
+ str = str.replace(/š/g, 'š');
+ str = str.replace(/Ÿ/g, 'Ÿ');
+ str = str.replace(/ƒ/g, 'ƒ');
+ str = str.replace(/ˆ/g, 'ˆ');
+ str = str.replace(/˜/g, '˜');
+ str = str.replace(/ /g, '');
+ str = str.replace(/ /g, '');
+ str = str.replace(/ /g, '');
+ str = str.replace(//g, '');
+ str = str.replace(//g, '');
+ str = str.replace(//g, '');
+ str = str.replace(//g, '');
+ str = str.replace(/–/g, '–');
+ str = str.replace(/—/g, '—');
+ str = str.replace(/‘/g, '‘');
+ str = str.replace(/’/g, '’');
+ str = str.replace(/‚/g, '‚');
+ str = str.replace(/“/g, '“');
+ str = str.replace(/”/g, '”');
+ str = str.replace(/„/g, '„');
+ str = str.replace(/†/g, '†');
+ str = str.replace(/‡/g, '‡');
+ str = str.replace(/•/g, '•');
+ str = str.replace(/…/g, '…');
+ str = str.replace(/‰/g, '‰');
+ str = str.replace(/′/g, '′');
+ str = str.replace(/″/g, '″');
+ str = str.replace(/‹/g, '‹');
+ str = str.replace(/›/g, '›');
+ str = str.replace(/‾/g, '‾');
+ str = str.replace(/€/g, '€');
+ str = str.replace(/™/g, '™');
+ str = str.replace(/←/g, '←');
+ str = str.replace(/↑/g, '↑');
+ str = str.replace(/→/g, '→');
+ str = str.replace(/↓/g, '↓');
+ str = str.replace(/↔/g, '↔');
+ str = str.replace(/↵/g, '↵');
+ str = str.replace(/⌈/g, '⌈');
+ str = str.replace(/⌉/g, '⌉');
+ str = str.replace(/⌊/g, '⌊');
+ str = str.replace(/⌋/g, '⌋');
+ str = str.replace(/◊/g, '◊');
+ str = str.replace(/♠/g, '♠');
+ str = str.replace(/♣/g, '♣');
+ str = str.replace(/♥/g, '♥');
+ str = str.replace(/♦/g, '♦');
+ return str;
+}
+
+function strMoreDiscode(str) {
+ str = str.replace(/\r\n/g, '');
+ str = str.replace(/\n/g, '');
+ str = str.replace(/code/g, 'wxxxcode-style');
+ return str;
+}
+
+function strDiscode(str) {
+ str = strNumDiscode(str);
+ str = strGreeceDiscode(str);
+ str = strcharacterDiscode(str);
+ str = strOtherDiscode(str);
+ str = strMoreDiscode(str);
+ return str;
+}
+
+function urlToHttpUrl(url, rep) {
+ var patt1 = new RegExp('^//');
+ var result = patt1.test(url);
+
+ if (result) {
+ url = rep + ':' + url;
+ }
+
+ return url;
+}
+
+module.exports = {
+ strDiscode: strDiscode,
+ urlToHttpUrl: urlToHttpUrl
+};
diff --git a/litemall-wx_uni/lib/wxParse/wxParse.css b/litemall-wx_uni/lib/wxParse/wxParse.css
new file mode 100644
index 0000000000000000000000000000000000000000..95792c264a71601ef0b3979e9d67e7cdbc318c8c
--- /dev/null
+++ b/litemall-wx_uni/lib/wxParse/wxParse.css
@@ -0,0 +1,262 @@
+/**
+ * author: Di (微信小程序开发工程师)
+ * organization: WeAppDev(微信小程序开发论坛)(http://weappdev.com)
+ * 垂直微信小程序开发交流社区
+ *
+ * github地址: https://github.com/icindy/wxParse
+ *
+ * for: 微信小程序富文本解析
+ * detail : http://weappdev.com/t/wxparse-alpha0-1-html-markdown/184
+ */
+
+.wxParse {
+ margin: 0 5px;
+ font-family: Helvetica, sans-serif;
+ font-size: 28rpx;
+ color: #666;
+ line-height: 1.8;
+}
+view {
+ word-break: break-all;
+ overflow: auto;
+}
+.wxParse-inline {
+ display: inline;
+ margin: 0;
+ padding: 0;
+}
+/*//标题 */
+.wxParse-div {
+ margin: 0;
+ padding: 0;
+}
+.wxParse-h1 {
+ font-size: 2em;
+ margin: 0.67em 0;
+}
+.wxParse-h2 {
+ font-size: 1.5em;
+ margin: 0.75em 0;
+}
+.wxParse-h3 {
+ font-size: 1.17em;
+ margin: 0.83em 0;
+}
+.wxParse-h4 {
+ margin: 1.12em 0;
+}
+.wxParse-h5 {
+ font-size: 0.83em;
+ margin: 1.5em 0;
+}
+.wxParse-h6 {
+ font-size: 0.75em;
+ margin: 1.67em 0;
+}
+
+.wxParse-h1 {
+ font-size: 18px;
+ font-weight: 400;
+ margin-bottom: 0.9em;
+}
+.wxParse-h2 {
+ font-size: 16px;
+ font-weight: 400;
+ margin-bottom: 0.34em;
+}
+.wxParse-h3 {
+ font-weight: 400;
+ font-size: 15px;
+ margin-bottom: 0.34em;
+}
+.wxParse-h4 {
+ font-weight: 400;
+ font-size: 14px;
+ margin-bottom: 0.24em;
+}
+.wxParse-h5 {
+ font-weight: 400;
+ font-size: 13px;
+ margin-bottom: 0.14em;
+}
+.wxParse-h6 {
+ font-weight: 400;
+ font-size: 12px;
+ margin-bottom: 0.04em;
+}
+
+.wxParse-h1,
+.wxParse-h2,
+.wxParse-h3,
+.wxParse-h4,
+.wxParse-h5,
+.wxParse-h6,
+.wxParse-b,
+.wxParse-strong {
+ font-weight: bolder;
+}
+
+.wxParse-i,
+.wxParse-cite,
+.wxParse-em,
+.wxParse-var,
+.wxParse-address {
+ font-style: italic;
+}
+.wxParse-pre,
+.wxParse-tt,
+.wxParse-code,
+.wxParse-kbd,
+.wxParse-samp {
+ font-family: monospace;
+}
+.wxParse-pre {
+ white-space: pre;
+}
+.wxParse-big {
+ font-size: 1.17em;
+}
+.wxParse-small,
+.wxParse-sub,
+.wxParse-sup {
+ font-size: 0.83em;
+}
+.wxParse-sub {
+ vertical-align: sub;
+}
+.wxParse-sup {
+ vertical-align: super;
+}
+.wxParse-s,
+.wxParse-strike,
+.wxParse-del {
+ text-decoration: line-through;
+}
+/*wxparse-自定义个性化的css样式*/
+/*增加video的css样式*/
+.wxParse-strong,
+wxParse-s {
+ display: inline;
+}
+.wxParse-a {
+ color: deepskyblue;
+ word-break: break-all;
+ overflow: auto;
+}
+
+.wxParse-video {
+ text-align: center;
+ margin: 10px 0;
+}
+
+.wxParse-video-video {
+ width: 100%;
+}
+
+.wxParse-img {
+ background-color: #efefef;
+ overflow: hidden;
+ width: 40px;
+ height: 40px;
+}
+
+.wxParse-blockquote {
+ margin: 0;
+ padding: 10px 0 10px 5px;
+ font-family: Courier, Calibri, '宋体';
+ background: #f5f5f5;
+ border-left: 3px solid #dbdbdb;
+}
+
+.wxParse-code,
+.wxParse-wxxxcode-style {
+ display: inline;
+ background: #f5f5f5;
+}
+.wxParse-ul {
+ margin: 20rpx 10rpx;
+}
+
+.wxParse-li,
+.wxParse-li-inner {
+ display: flex;
+ align-items: baseline;
+ margin: 10rpx 0;
+}
+.wxParse-li-text {
+ align-items: center;
+ line-height: 20px;
+}
+
+.wxParse-li-circle {
+ display: inline-flex;
+ width: 5px;
+ height: 5px;
+ background-color: #333;
+ margin-right: 5px;
+}
+
+.wxParse-li-square {
+ display: inline-flex;
+ width: 10rpx;
+ height: 10rpx;
+ background-color: #333;
+ margin-right: 5px;
+}
+.wxParse-li-ring {
+ display: inline-flex;
+ width: 10rpx;
+ height: 10rpx;
+ border: 2rpx solid #333;
+ border-radius: 50%;
+ background-color: #fff;
+ margin-right: 5px;
+}
+
+/*.wxParse-table{
+ width: 100%;
+ height: 400px;
+}
+.wxParse-thead,.wxParse-tfoot,.wxParse-tr{
+ display: flex;
+ flex-direction: row;
+}
+.wxParse-th,.wxParse-td{
+ display: flex;
+ width: 580px;
+ overflow: auto;
+}*/
+
+.wxParse-u {
+ text-decoration: underline;
+}
+.wxParse-hide {
+ display: none;
+}
+.WxEmojiView {
+ align-items: center;
+}
+.wxEmoji {
+ width: 16px;
+ height: 16px;
+}
+.wxParse-tr {
+ display: flex;
+ border-right: 1px solid #e0e0e0;
+ border-bottom: 1px solid #e0e0e0;
+}
+.wxParse-th,
+.wxParse-td {
+ flex: 1;
+ padding: 5px;
+ font-size: 28rpx;
+ border-left: 1px solid #e0e0e0;
+ word-break: break-all;
+}
+.wxParse-td:last {
+ border-top: 1px solid #e0e0e0;
+}
+.wxParse-th {
+ background: #f0f0f0;
+ border-top: 1px solid #e0e0e0;
+}
diff --git a/litemall-wx_uni/lib/wxParse/wxParse.vue b/litemall-wx_uni/lib/wxParse/wxParse.vue
new file mode 100644
index 0000000000000000000000000000000000000000..565b36193a4c961af03247a4d9a2fc94ebece1ad
--- /dev/null
+++ b/litemall-wx_uni/lib/wxParse/wxParse.vue
@@ -0,0 +1,1296 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/main.js b/litemall-wx_uni/main.js
new file mode 100644
index 0000000000000000000000000000000000000000..14002b7752059c94844f9654ce8ec415a9456b3b
--- /dev/null
+++ b/litemall-wx_uni/main.js
@@ -0,0 +1,31 @@
+import App from './App';
+
+// Api函数polyfill(目前为实验版本,如不需要,可删除!)';
+import Polyfill from './polyfill/polyfill';
+Polyfill.init();
+
+// 全局mixins,用于实现setData等功能,请勿删除!';
+import Mixin from './polyfill/mixins';
+
+// #ifndef VUE3
+import Vue from 'vue';
+
+Vue.mixin(Mixin);
+Vue.config.productionTip = false;
+App.mpType = 'app';
+const app = new Vue({
+ ...App
+});
+app.$mount();
+// #endif
+
+// #ifdef VUE3
+import { createSSRApp } from 'vue';
+export function createApp() {
+ const app = createSSRApp(App);
+ app.mixin(Mixin);
+ return {
+ app
+ };
+}
+// #endif
diff --git a/litemall-wx_uni/manifest.json b/litemall-wx_uni/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..822dc5d5888cf73eda964f75a133c180512d7164
--- /dev/null
+++ b/litemall-wx_uni/manifest.json
@@ -0,0 +1,76 @@
+{
+ "name": "litemall-wx",
+ "appid": "",
+ "description": "",
+ "versionName": "1.0.0",
+ "versionCode": "100",
+ "transformPx": false,
+ "app-plus": {
+ "usingComponents": true,
+ "nvueStyleCompiler": "uni-app",
+ "compilerVersion": 3,
+ "splashscreen": {
+ "alwaysShowBeforeRender": true,
+ "waiting": true,
+ "autoclose": true,
+ "delay": 0
+ },
+ "modules": {},
+ "distribute": {
+ "android": {
+ "permissions": [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ]
+ },
+ "ios": {},
+ "sdkConfigs": {}
+ }
+ },
+ "quickapp": {},
+ "mp-weixin": {
+ "appid": "wx5e4cd1d279a5fca0",
+ "setting": {
+ "urlCheck": false
+ },
+ "usingComponents": true,
+ "permission": {
+ "scope.userLocation": {
+ "desc": "你的位置信息将用于小程序位置接口的效果展示"
+ }
+ },
+ "plugins": {}
+ },
+ "mp-alipay": {
+ "usingComponents": true
+ },
+ "mp-baidu": {
+ "usingComponents": true
+ },
+ "mp-toutiao": {
+ "usingComponents": true
+ },
+ "uniStatistics": {
+ "enable": false
+ },
+ "vueVersion": "2",
+ "networkTimeout": {
+ "request": 10000,
+ "connectSocket": 10000,
+ "uploadFile": 10000,
+ "downloadFile": 10000
+ }
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/pages.json b/litemall-wx_uni/pages.json
new file mode 100644
index 0000000000000000000000000000000000000000..795796bb797c7095d9361c485f9c97c42890bf69
--- /dev/null
+++ b/litemall-wx_uni/pages.json
@@ -0,0 +1,332 @@
+{
+ "pages": [
+ {
+ "path": "pages/index/index",
+ "style": {
+ "navigationBarTitleText": "首页",
+ "enablePullDownRefresh": true
+ }
+ },
+ {
+ "path": "pages/catalog/catalog",
+ "style": {
+ "navigationBarTitleText": "分类"
+ }
+ },
+ {
+ "path": "pages/newGoods/newGoods",
+ "style": {
+ "navigationBarTitleText": "新品首发"
+ }
+ },
+ {
+ "path": "pages/hotGoods/hotGoods",
+ "style": {
+ "navigationBarTitleText": "人气推荐"
+ }
+ },
+ {
+ "path": "pages/ucenter/index/index",
+ "style": {
+ "backgroundColor": "#f4f4f4",
+ "navigationBarTitleText": "个人中心",
+ "enablePullDownRefresh": false
+ }
+ },
+ {
+ "path": "pages/ucenter/address/address",
+ "style": {
+ "navigationBarTitleText": "地址管理"
+ }
+ },
+ {
+ "path": "pages/ucenter/addressAdd/addressAdd",
+ "style": {
+ "navigationBarTitleText": "编辑地址"
+ }
+ },
+ {
+ "path": "pages/ucenter/feedback/feedback",
+ "style": {
+ "navigationBarTitleText": "意见反馈"
+ }
+ },
+ {
+ "path": "pages/ucenter/footprint/footprint",
+ "style": {
+ "navigationBarTitleText": "我的足迹"
+ }
+ },
+ {
+ "path": "pages/ucenter/order/order",
+ "style": {
+ "navigationBarTitleText": "我的订单"
+ }
+ },
+ {
+ "path": "pages/ucenter/orderDetail/orderDetail",
+ "style": {
+ "navigationBarTitleText": "订单详情"
+ }
+ },
+ {
+ "path": "pages/ucenter/couponList/couponList",
+ "style": {
+ "enablePullDownRefresh": true,
+ "navigationBarTitleText": "我的优惠券"
+ }
+ },
+ {
+ "path": "pages/ucenter/couponSelect/couponSelect",
+ "style": {
+ "navigationBarTitleText": "选择优惠券"
+ }
+ },
+ {
+ "path": "pages/ucenter/collect/collect",
+ "style": {
+ "navigationBarTitleText": "我的收藏"
+ }
+ },
+ {
+ "path": "pages/auth/login/login",
+ "style": {
+ "navigationBarTitleText": "登录"
+ }
+ },
+ {
+ "path": "pages/auth/accountLogin/accountLogin",
+ "style": {
+ "navigationBarTitleText": "账号登录"
+ }
+ },
+ {
+ "path": "pages/auth/register/register",
+ "style": {
+ "navigationBarTitleText": "注册"
+ }
+ },
+ {
+ "path": "pages/auth/reset/reset",
+ "style": {
+ "navigationBarTitleText": "密码重置"
+ }
+ },
+ {
+ "path": "pages/payResult/payResult",
+ "style": {
+ "navigationBarTitleText": "付款结果",
+ "navigationBarBackgroundColor": "#fafafa"
+ }
+ },
+ {
+ "path": "pages/comment/comment",
+ "style": {
+ "enablePullDownRefresh": true,
+ "navigationBarTitleText": "评价"
+ }
+ },
+ {
+ "path": "pages/commentPost/commentPost",
+ "style": {
+ "navigationBarTitleText": "评价"
+ }
+ },
+ {
+ "path": "pages/topic/topic",
+ "style": {
+ "navigationBarTitleText": "专题"
+ }
+ },
+ {
+ "path": "pages/topicComment/topicComment",
+ "style": {
+ "enablePullDownRefresh": true,
+ "navigationBarTitleText": "评论"
+ }
+ },
+ {
+ "path": "pages/topicDetail/topicDetail",
+ "style": {
+ "navigationBarTitleText": "专题详情"
+ }
+ },
+ {
+ "path": "pages/topicCommentPost/topicCommentPost",
+ "style": {
+ "navigationBarTitleText": "评论"
+ }
+ },
+ {
+ "path": "pages/brand/brand",
+ "style": {
+ "navigationBarTitleText": "品牌商直供"
+ }
+ },
+ {
+ "path": "pages/brandDetail/brandDetail",
+ "style": {
+ "navigationBarTitleText": "品牌商详情"
+ }
+ },
+ {
+ "path": "pages/search/search",
+ "style": {
+ "navigationBarTitleText": "搜索"
+ }
+ },
+ {
+ "path": "pages/category/category",
+ "style": {}
+ },
+ {
+ "path": "pages/cart/cart",
+ "style": {
+ "enablePullDownRefresh": true,
+ "navigationBarTitleText": "购物车"
+ }
+ },
+ {
+ "path": "pages/checkout/checkout",
+ "style": {
+ "navigationBarTitleText": "填写订单"
+ }
+ },
+ {
+ "path": "pages/goods/goods",
+ "style": {
+ "navigationBarTitleText": "商品详情"
+ }
+ },
+ {
+ "path": "pages/about/about",
+ "style": {}
+ },
+ {
+ "path": "pages/groupon/myGroupon/myGroupon",
+ "style": {
+ "navigationBarTitleText": "我的团购"
+ }
+ },
+ {
+ "path": "pages/groupon/grouponDetail/grouponDetail",
+ "style": {
+ "navigationBarTitleText": "团购详情"
+ }
+ },
+ {
+ "path": "pages/groupon/grouponList/grouponList",
+ "style": {
+ "navigationBarTitleText": "团购专区"
+ }
+ },
+ {
+ "path": "pages/coupon/coupon",
+ "style": {
+ "navigationBarTitleText": "优惠券专区"
+ }
+ },
+ {
+ "path": "pages/help/help",
+ "style": {
+ "navigationBarTitleText": "帮助中心"
+ }
+ },
+ {
+ "path": "pages/ucenter/aftersale/aftersale",
+ "style": {
+ "navigationBarTitleText": "售后"
+ }
+ },
+ {
+ "path": "pages/ucenter/aftersaleList/aftersaleList",
+ "style": {
+ "navigationBarTitleText": "我的售后"
+ }
+ },
+ {
+ "path": "pages/ucenter/aftersaleDetail/aftersaleDetail",
+ "style": {
+ "navigationBarTitleText": "售后详情"
+ }
+ }
+ ],
+ "tabBar": {
+ "backgroundColor": "#fafafa",
+ "borderStyle": "white",
+ "selectedColor": "#AB956D",
+ "color": "#666",
+ "list": [
+ {
+ "pagePath": "pages/index/index",
+ "iconPath": "static/images/home.png",
+ "selectedIconPath": "static/images/home@selected.png",
+ "text": "首页"
+ },
+ {
+ "pagePath": "pages/catalog/catalog",
+ "iconPath": "static/images/category.png",
+ "selectedIconPath": "static/images/category@selected.png",
+ "text": "分类"
+ },
+ {
+ "pagePath": "pages/cart/cart",
+ "iconPath": "static/images/cart.png",
+ "selectedIconPath": "static/images/cart@selected.png",
+ "text": "购物车"
+ },
+ {
+ "pagePath": "pages/ucenter/index/index",
+ "iconPath": "static/images/my.png",
+ "selectedIconPath": "static/images/my@selected.png",
+ "text": "个人"
+ }
+ ]
+ },
+ "networkTimeout": {
+ "request": 10000,
+ "connectSocket": 10000,
+ "uploadFile": 10000,
+ "downloadFile": 10000
+ },
+ "debug": true,
+ "sitemapLocation": "sitemap.json",
+ "easycom": {
+ "autoscan": true,
+ "custom": {
+ // "van-cell-group": "@/lib/vant-weapp2/cell-group/index.vue",
+ // "van-cell": "@/lib/vant-weapp2/cell/index.vue",
+ // "van-picker": "@/lib/vant-weapp2/picker/index.vue",
+ // "van-popup": "@/lib/vant-weapp2/popup/index.vue",
+ // "van-field": "@/lib/vant-weapp2/field/index.vue",
+ // "van-uploader": "@/lib/vant-weapp2/uploader/index.vue",
+ // "van-button": "@/lib/vant-weapp2/button/index.vue",
+ // "van-tag": "@/lib/vant-weapp2/tag/index.vue",
+ // "van-icon": "@/lib/vant-weapp2/icon/index.vue",
+ // "van-checkbox": "@/lib/vant-weapp2/checkbox/index.vue",
+ // "van-steps": "@/lib/vant-weapp2/steps/index.vue"
+ }
+ },
+ "globalStyle": {
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTitleText": "litemall小程序商城",
+ "enablePullDownRefresh": false,
+ "navigationBarTextStyle": "black",
+ "backgroundColor": "#FFFFFF",
+ "backgroundTextStyle": "dark",
+ "usingComponents": {
+ "van-cell-group": "/wxcomponents/vant-weapp/cell-group/index",
+ "van-cell": "/wxcomponents/vant-weapp/cell/index",
+ "van-picker": "/wxcomponents/vant-weapp/picker/index",
+ "van-popup": "/wxcomponents/vant-weapp/popup/index",
+ "van-field": "/wxcomponents/vant-weapp/field/index",
+ "van-uploader": "/wxcomponents/vant-weapp/uploader/index",
+ "van-button": "/wxcomponents/vant-weapp/button/index",
+ "van-tag": "/wxcomponents/vant-weapp/tag/index",
+ "van-icon": "/wxcomponents/vant-weapp/icon/index",
+ "van-checkbox": "/wxcomponents/vant-weapp/checkbox/index",
+ "van-steps": "/wxcomponents/vant-weapp/steps/index"
+ }
+ },
+ "subPackages": []
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/pages/about/about.css b/litemall-wx_uni/pages/about/about.css
new file mode 100644
index 0000000000000000000000000000000000000000..9de850339119bb8c0eb58413a44db33dd1ff5548
--- /dev/null
+++ b/litemall-wx_uni/pages/about/about.css
@@ -0,0 +1,35 @@
+/* about.wxss */
+
+.label {
+ font-size: 26rpx;
+ margin-left: 20rpx;
+ padding: 10rpx 0;
+}
+
+.about-item {
+ background: white;
+ border-top: solid #f2f2f2 0.5rpx;
+ border-bottom: solid #f2f2f2 0.5rpx;
+ width: 100%;
+ height: 100rpx;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+}
+
+.item-left {
+ font-size: 38rpx;
+ margin-left: 40rpx;
+ margin-top: auto;
+ margin-bottom: auto;
+}
+
+.item-right {
+ margin-right: 15rpx;
+ margin-top: auto;
+ margin-bottom: auto;
+}
+.right-icon {
+ width: 40rpx;
+ height: 40rpx;
+}
diff --git a/litemall-wx_uni/pages/about/about.vue b/litemall-wx_uni/pages/about/about.vue
new file mode 100644
index 0000000000000000000000000000000000000000..678108f3b5d78224c54a913b724e21e6f612036c
--- /dev/null
+++ b/litemall-wx_uni/pages/about/about.vue
@@ -0,0 +1,103 @@
+
+
+ 项目名称:
+
+
+ {{ name }}
+
+
+
+ 项目地址:
+
+
+ {{ address }}
+
+
+
+
+
+
+ 电话号码:
+
+
+ {{ phone }}
+
+
+
+
+
+
+ QQ交流群:
+
+
+ {{ qq }}
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/auth/accountLogin/accountLogin.css b/litemall-wx_uni/pages/auth/accountLogin/accountLogin.css
new file mode 100644
index 0000000000000000000000000000000000000000..4e61212c9ab8e63318592d4fa52b5fdac4915ccc
--- /dev/null
+++ b/litemall-wx_uni/pages/auth/accountLogin/accountLogin.css
@@ -0,0 +1,103 @@
+.form-box {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 0 40rpx;
+ margin-top: 200rpx;
+ background: #fff;
+}
+
+.form-item {
+ position: relative;
+ background: #fff;
+ height: 96rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.form-item .username,
+.form-item .password,
+.form-item .code {
+ position: absolute;
+ top: 26rpx;
+ left: 0;
+ display: block;
+ width: 100%;
+ height: 44rpx;
+ background: #fff;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.form-item-code {
+ margin-top: 32rpx;
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+}
+
+.form-item-code .form-item {
+ float: left;
+ width: 350rpx;
+}
+
+.form-item-code .code-img {
+ float: right;
+ margin-top: 4rpx;
+ height: 88rpx;
+ width: 236rpx;
+}
+
+.form-item .clear {
+ position: absolute;
+ top: 32rpx;
+ right: 18rpx;
+ z-index: 2;
+ display: block;
+ background: #fff;
+}
+
+.login-btn {
+ margin: 60rpx 0 40rpx 0;
+ height: 96rpx;
+ line-height: 96rpx;
+ font-size: 30rpx;
+ border-radius: 6rpx;
+ width: 90%;
+ color: #fff;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: flex;
+ bottom: 0;
+ left: 0;
+ padding: 0;
+ margin-left: 5%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+
+.form-item-text {
+ height: 35rpx;
+ width: 100%;
+}
+
+.form-item-text .register {
+ display: block;
+ height: 34rpx;
+ float: left;
+ font-size: 28rpx;
+}
+
+.form-item-text .reset {
+ display: block;
+ height: 34rpx;
+ float: right;
+ font-size: 28rpx;
+}
diff --git a/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue b/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue
new file mode 100644
index 0000000000000000000000000000000000000000..b28809fd295f511226686bac67d055403e67b01f
--- /dev/null
+++ b/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue
@@ -0,0 +1,161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 注册账号
+ 忘记密码
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/auth/login/login.css b/litemall-wx_uni/pages/auth/login/login.css
new file mode 100644
index 0000000000000000000000000000000000000000..7720984bbc7d8f2b2b81fe18e6ad3e775b3d9b11
--- /dev/null
+++ b/litemall-wx_uni/pages/auth/login/login.css
@@ -0,0 +1,61 @@
+.login-box {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 0 40rpx;
+ margin-top: 200rpx;
+ background: #fff;
+}
+
+.wx-login-btn {
+ margin: 60rpx 0 40rpx 0;
+ height: 96rpx;
+ line-height: 96rpx;
+ font-size: 30rpx;
+ border-radius: 6rpx;
+ width: 90%;
+ color: #fff;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: flex;
+ bottom: 0;
+ left: 0;
+ padding: 0;
+ margin-left: 5%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+}
+
+.account-login-btn {
+ width: 90%;
+ margin: 0 auto;
+ color: #fff;
+ font-size: 30rpx;
+ height: 96rpx;
+ line-height: 96rpx;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: flex;
+ bottom: 0;
+ left: 0;
+ border-radius: 0;
+ padding: 0;
+ margin-left: 5%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
diff --git a/litemall-wx_uni/pages/auth/login/login.vue b/litemall-wx_uni/pages/auth/login/login.vue
new file mode 100644
index 0000000000000000000000000000000000000000..51a1d7c8d61a971d5b12b7228d585cfeb167ae94
--- /dev/null
+++ b/litemall-wx_uni/pages/auth/login/login.vue
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/auth/register/register.css b/litemall-wx_uni/pages/auth/register/register.css
new file mode 100644
index 0000000000000000000000000000000000000000..0c1e0d5527199a25db6cb244e17c9d505a036a26
--- /dev/null
+++ b/litemall-wx_uni/pages/auth/register/register.css
@@ -0,0 +1,70 @@
+.form-box {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 0 40rpx;
+ margin-top: 96rpx;
+ background: #fff;
+}
+
+.form-item {
+ position: relative;
+ background: #fff;
+ height: 96rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.form-item .username,
+.form-item .password,
+.form-item .mobile,
+.form-item .code {
+ position: absolute;
+ top: 26rpx;
+ left: 0;
+ display: block;
+ width: 100%;
+ height: 44rpx;
+ background: #fff;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.form-item-code {
+ margin-top: 32rpx;
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+}
+
+.form-item-code .form-item {
+ float: left;
+ width: 350rpx;
+}
+
+.form-item-code .code-btn {
+ float: right;
+ padding: 20rpx 40rpx;
+ border: 1px solid #d9d9d9;
+ border-radius: 10rpx;
+ color: #fff;
+ background: green;
+}
+
+.form-item .clear {
+ position: absolute;
+ top: 32rpx;
+ right: 18rpx;
+ z-index: 2;
+ display: block;
+ background: #fff;
+}
+
+.register-btn {
+ margin: 60rpx 0 40rpx 0;
+ height: 96rpx;
+ line-height: 96rpx;
+ color: #fff;
+ font-size: 30rpx;
+ width: 100%;
+ border-radius: 6rpx;
+}
diff --git a/litemall-wx_uni/pages/auth/register/register.vue b/litemall-wx_uni/pages/auth/register/register.vue
new file mode 100644
index 0000000000000000000000000000000000000000..349d16cdcae1c161ea2bfb158c8b1d15ea6a8ba5
--- /dev/null
+++ b/litemall-wx_uni/pages/auth/register/register.vue
@@ -0,0 +1,269 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 获取验证码
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/auth/reset/reset.css b/litemall-wx_uni/pages/auth/reset/reset.css
new file mode 100644
index 0000000000000000000000000000000000000000..8a03a4b6149d02de1a03dbaae39a727a572cee0b
--- /dev/null
+++ b/litemall-wx_uni/pages/auth/reset/reset.css
@@ -0,0 +1,68 @@
+.form-box {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 0 40rpx;
+ margin-top: 96rpx;
+ background: #fff;
+}
+
+.form-item {
+ position: relative;
+ background: #fff;
+ height: 96rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.form-item .mobile,
+.form-item .password,
+.form-item .code {
+ position: absolute;
+ top: 26rpx;
+ left: 0;
+ display: block;
+ width: 100%;
+ height: 44rpx;
+ background: #fff;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.form-item-code {
+ margin-top: 32rpx;
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+}
+
+.form-item-code .form-item {
+ float: left;
+ width: 350rpx;
+}
+
+.form-item-code .code-btn {
+ float: right;
+ padding: 20rpx 40rpx;
+ border: 1px solid #d9d9d9;
+ border-radius: 10rpx;
+}
+
+.form-item .clear {
+ position: absolute;
+ top: 32rpx;
+ right: 18rpx;
+ z-index: 2;
+ display: block;
+ background: #fff;
+}
+
+.reset-btn {
+ margin: 60rpx 0 40rpx 0;
+ height: 96rpx;
+ line-height: 96rpx;
+ color: #fff;
+ font-size: 30rpx;
+ width: 100%;
+ background: #b4282d;
+ border-radius: 6rpx;
+}
diff --git a/litemall-wx_uni/pages/auth/reset/reset.vue b/litemall-wx_uni/pages/auth/reset/reset.vue
new file mode 100644
index 0000000000000000000000000000000000000000..d6cf30de927cebada3c38ef1eba139a3add631b5
--- /dev/null
+++ b/litemall-wx_uni/pages/auth/reset/reset.vue
@@ -0,0 +1,210 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 获取验证码
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/brand/brand.css b/litemall-wx_uni/pages/brand/brand.css
new file mode 100644
index 0000000000000000000000000000000000000000..0aa6ab32aeafcef57b9bfa3bf7ff9d2696783cb2
--- /dev/null
+++ b/litemall-wx_uni/pages/brand/brand.css
@@ -0,0 +1,52 @@
+.brand-list .item {
+ display: block;
+ width: 750rpx;
+ height: 416rpx;
+ position: relative;
+ margin-bottom: 4rpx;
+}
+
+.brand-list .item .img-bg {
+ position: absolute;
+ left: 0;
+ top: 0;
+ z-index: 0;
+ width: 750rpx;
+ height: 417rpx;
+ overflow: hidden;
+}
+
+.brand-list .item .img-bg image {
+ width: 750rpx;
+ height: 416rpx;
+}
+
+.brand-list .item .txt-box {
+ position: absolute;
+ left: 0;
+ top: 0;
+ display: table;
+ z-index: 0;
+ width: 750rpx;
+ height: 417rpx;
+}
+
+.brand-list .item .line {
+ display: table-cell;
+ vertical-align: middle;
+ text-align: center;
+ height: 63rpx;
+ line-height: 63rpx;
+}
+
+.brand-list .item .line text {
+ font-size: 35rpx;
+ font-weight: 700;
+ text-shadow: 1rpx 1rpx rgba(0, 0, 0, 0.32);
+ color: #fff;
+}
+
+.brand-list .item .line .s {
+ padding: 0 10rpx;
+ font-size: 40rpx;
+}
diff --git a/litemall-wx_uni/pages/brand/brand.vue b/litemall-wx_uni/pages/brand/brand.vue
new file mode 100644
index 0000000000000000000000000000000000000000..da7876b4f705123e12de9b645ce36a6c53f3f382
--- /dev/null
+++ b/litemall-wx_uni/pages/brand/brand.vue
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ |
+ {{ item.floorPrice }}元起
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/brandDetail/brandDetail.css b/litemall-wx_uni/pages/brandDetail/brandDetail.css
new file mode 100644
index 0000000000000000000000000000000000000000..972e66e0fef30d78eb42501a979cf02af2f916e0
--- /dev/null
+++ b/litemall-wx_uni/pages/brandDetail/brandDetail.css
@@ -0,0 +1,111 @@
+page {
+ background: #f4f4f4;
+}
+
+.brand-info .name {
+ width: 100%;
+ height: 290rpx;
+ position: relative;
+}
+
+.brand-info .img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 290rpx;
+}
+
+.brand-info .info-box {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 290rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.brand-info .info {
+ display: block;
+}
+
+.brand-info .txt {
+ display: block;
+ height: 37.5rpx;
+ font-size: 37.5rpx;
+ color: #fff;
+}
+
+.brand-info .line {
+ margin: 0 auto;
+ margin-top: 16rpx;
+ display: block;
+ height: 2rpx;
+ width: 145rpx;
+ background: #fff;
+}
+
+.brand-info .desc {
+ background: #fff;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 41.5rpx 31.25rpx;
+ font-size: 30rpx;
+ color: #666;
+ line-height: 41.5rpx;
+ text-align: center;
+}
+
+.cate-item .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ border-top: 1rpx solid #f4f4f4;
+ margin-top: 20rpx;
+}
+
+.cate-item .b .item {
+ float: left;
+ background: #fff;
+ width: 375rpx;
+ padding-bottom: 33.333rpx;
+ border-bottom: 1rpx solid #f4f4f4;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+}
+
+.cate-item .b .item-b {
+ border-right: 1rpx solid #f4f4f4;
+}
+
+.cate-item .item .img {
+ margin-top: 10rpx;
+ width: 302rpx;
+ height: 302rpx;
+}
+
+.cate-item .item .name {
+ display: block;
+ width: 365.625rpx;
+ height: 35rpx;
+ padding: 0 20rpx;
+ overflow: hidden;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.cate-item .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #b4282d;
+}
diff --git a/litemall-wx_uni/pages/brandDetail/brandDetail.vue b/litemall-wx_uni/pages/brandDetail/brandDetail.vue
new file mode 100644
index 0000000000000000000000000000000000000000..afc8c81b1b4d219dc14ffb33ef3c5e0ecf1fccd1
--- /dev/null
+++ b/litemall-wx_uni/pages/brandDetail/brandDetail.vue
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+ {{ brand.name }}
+
+
+
+
+
+ {{ brand.desc }}
+
+
+
+
+
+
+
+
+ {{ iitem.name }}
+ ¥{{ iitem.retailPrice }}
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/cart/cart.css b/litemall-wx_uni/pages/cart/cart.css
new file mode 100644
index 0000000000000000000000000000000000000000..e668bc4428a1722885efc9f21cd8382c8c1cefd2
--- /dev/null
+++ b/litemall-wx_uni/pages/cart/cart.css
@@ -0,0 +1,492 @@
+page {
+ height: 100%;
+ min-height: 100%;
+ background: #f4f4f4;
+}
+
+.container {
+ background: #f4f4f4;
+ width: 100%;
+ height: auto;
+ min-height: 100%;
+ overflow: hidden;
+}
+
+.service-policy {
+ width: 750rpx;
+ height: 73rpx;
+ background: #f4f4f4;
+ padding: 0 31.25rpx;
+ display: flex;
+ flex-flow: row nowrap;
+ align-items: center;
+ justify-content: space-between;
+}
+
+.service-policy .item {
+ background-size: 10rpx;
+ padding-left: 15rpx;
+ display: flex;
+ align-items: center;
+ font-size: 25rpx;
+ color: #666;
+}
+
+.no-login {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+
+.no-login .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+
+.no-login .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 59rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 35rpx;
+ color: #999;
+}
+
+.no-login button {
+ width: 90%;
+ margin: 0 auto;
+ color: #fff;
+ font-size: 30rpx;
+ height: 96rpx;
+ line-height: 96rpx;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: flex;
+ bottom: 0;
+ left: 0;
+ border-radius: 0;
+ padding: 0;
+ margin-left: 5%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+
+.no-cart {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+
+.no-cart .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+
+.no-cart .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+
+.cart-view {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+}
+
+.cart-view .list {
+ height: auto;
+ width: 100%;
+ overflow: hidden;
+ margin-bottom: 120rpx;
+}
+
+.cart-view .group-item {
+ height: auto;
+ width: 100%;
+ background: #fff;
+ margin-bottom: 18rpx;
+}
+
+.cart-view .item {
+ height: 164rpx;
+ width: 100%;
+ overflow: hidden;
+}
+
+.cart-view .item .van-checkbox {
+ float: left;
+ margin: 65rpx 18rpx 65rpx 18rpx;
+}
+
+.cart-view .item .van-checkbox .van-icon {
+ color: #fff;
+}
+
+.cart-view .item .cart-goods {
+ float: left;
+ height: 164rpx;
+ width: 672rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.cart-view .item .img {
+ float: left;
+ height: 125rpx;
+ width: 125rpx;
+ background: #f4f4f4;
+ margin: 19.5rpx 18rpx 19.5rpx 0;
+}
+
+.cart-view .item .info {
+ float: left;
+ height: 125rpx;
+ width: 503rpx;
+ margin: 19.5rpx 26rpx 19.5rpx 0;
+}
+
+.cart-view .item .t {
+ margin: 8rpx 0;
+ height: 28rpx;
+ font-size: 25rpx;
+ color: #333;
+ overflow: hidden;
+}
+
+.cart-view .item .name {
+ height: 28rpx;
+ max-width: 310rpx;
+ line-height: 28rpx;
+ font-size: 25rpx;
+ color: #333;
+ overflow: hidden;
+}
+
+.cart-view .item .num {
+ height: 28rpx;
+ line-height: 28rpx;
+ float: right;
+}
+
+.cart-view .item .attr {
+ margin-bottom: 17rpx;
+ height: 24rpx;
+ line-height: 24rpx;
+ font-size: 22rpx;
+ color: #666;
+ overflow: hidden;
+}
+
+.cart-view .item .b {
+ height: 28rpx;
+ line-height: 28rpx;
+ font-size: 25rpx;
+ color: #333;
+ overflow: hidden;
+}
+
+.cart-view .item .price {
+ float: left;
+}
+
+.cart-view .item.edit .t {
+ display: none;
+}
+
+.cart-view .item.edit .attr {
+ text-align: right;
+ padding-right: 25rpx;
+ background-size: 12rpx 20rpx;
+ margin-bottom: 24rpx;
+ height: 39rpx;
+ line-height: 39rpx;
+ font-size: 24rpx;
+ color: #999;
+ overflow: hidden;
+}
+
+.cart-view .item.edit .b {
+ display: flex;
+ height: 52rpx;
+ overflow: hidden;
+}
+
+.cart-view .item.edit .price {
+ line-height: 52rpx;
+ height: 52rpx;
+ flex: 1;
+}
+
+.cart-view .item .selnum {
+ display: none;
+}
+
+.cart-view .item.edit .selnum {
+ width: 235rpx;
+ height: 52rpx;
+ border: 1rpx solid #ccc;
+ display: flex;
+}
+
+.selnum .cut {
+ width: 70rpx;
+ height: 100%;
+ text-align: center;
+ line-height: 50rpx;
+}
+
+.selnum .number {
+ flex: 1;
+ height: 100%;
+ text-align: center;
+ line-height: 68.75rpx;
+ border-left: 1px solid #ccc;
+ border-right: 1px solid #ccc;
+ float: left;
+}
+
+.selnum .add {
+ width: 80rpx;
+ height: 100%;
+ text-align: center;
+ line-height: 50rpx;
+}
+
+.cart-view .group-item .header {
+ width: 100%;
+ height: 94rpx;
+ line-height: 94rpx;
+ padding: 0 26rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.cart-view .promotion .icon {
+ display: inline-block;
+ height: 24rpx;
+ width: 15rpx;
+}
+
+.cart-view .promotion {
+ margin-top: 25.5rpx;
+ float: left;
+ height: 43rpx;
+ width: 480rpx;
+ /*margin-right: 84rpx;*/
+ line-height: 43rpx;
+ font-size: 0;
+}
+
+.cart-view .promotion .tag {
+ border: 1px solid #f48f18;
+ height: 37rpx;
+ line-height: 31rpx;
+ padding: 0 9rpx;
+ margin-right: 10rpx;
+ color: #f48f18;
+ font-size: 24.5rpx;
+}
+
+.cart-view .promotion .txt {
+ height: 43rpx;
+ line-height: 43rpx;
+ padding-right: 10rpx;
+ color: #333;
+ font-size: 29rpx;
+ overflow: hidden;
+}
+
+.cart-view .get {
+ margin-top: 18rpx;
+ float: right;
+ height: 58rpx;
+ padding-left: 14rpx;
+ border-left: 1px solid #d9d9d9;
+ line-height: 58rpx;
+ font-size: 29rpx;
+ color: #333;
+}
+
+.cart-bottom {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ height: 100rpx;
+ width: 100%;
+ background: #fff;
+ display: flex;
+}
+
+.cart-bottom .van-checkbox {
+ float: left;
+ margin: 33rpx 18rpx 33rpx 26rpx;
+ font-size: 29rpx;
+}
+
+.cart-bottom .van-checkbox .van-icon {
+ color: #fff;
+}
+
+.cart-bottom .total {
+ height: 34rpx;
+ flex: 1;
+ margin: 33rpx 10rpx;
+ font-size: 29rpx;
+}
+
+.cart-bottom .delete {
+ text-align: center;
+ width: 180rpx;
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-left: -5rpx;
+ padding-right: 25rpx;
+ font-size: 25rpx;
+ color: #f4f4f4;
+ /* text-align: center; */
+ border-top-left-radius: 0rpx;
+ border-bottom-left-radius: 0rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #ae8b9c 100%);
+}
+
+.cart-bottom .checkout {
+ height: 100rpx;
+ width: 210rpx;
+ text-align: center;
+ line-height: 100rpx;
+ font-size: 29rpx;
+ background: #b4282d;
+ color: #fff;
+}
+
+.action_btn_area {
+ /* border: 1px solid #333; */
+ position: absolute;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ right: 0;
+ top: 0;
+ width: 380rpx;
+ height: 100rpx;
+}
+
+.action_btn_area .edit {
+ width: 140rpx;
+ /* border: 1px solid #000; */
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-right: 5rpx;
+ text-align: center;
+ /* padding-left: 25rpx; */
+ font-size: 25rpx;
+ color: #f4f4f4;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ /* background-image: linear-gradient(to right, #ff7701 100%); */
+ background-image: linear-gradient(to right, #ab956d 0%, #ab956d 100%);
+}
+
+.action_btn_area .checkout {
+ width: 140rpx;
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-left: 5rpx;
+ /* padding-right: 25rpx; */
+ font-size: 25rpx;
+ color: #f4f4f4;
+ text-align: center;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+
+.action_btn_area .delete {
+ width: 140rpx;
+ /* border: 1px solid #000; */
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-right: 5rpx;
+ text-align: center;
+ padding-left: -5rpx;
+ font-size: 25rpx;
+ color: #f4f4f4;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+
+.action_btn_area .sure {
+ text-align: center;
+ width: 140rpx;
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-right: 10rpx;
+ padding-left: -5rpx;
+ font-size: 25rpx;
+ color: #f4f4f4;
+ /* text-align: center; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #ab956d 0%, #ab956d 100%);
+ /* background-image: linear-gradient(to right, #ff7701 0%, #fe4800 100%); */
+}
+
+.auth_btn {
+ position: fixed;
+ top: 55vh;
+ left: 10vw;
+ width: 80vw;
+ height: 96rpx;
+ line-height: 96rpx;
+ font-size: 25rpx;
+ color: #f4f4f4;
+ /* text-align: center; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #8baaaa 0%, #9a9ba1 100%);
+}
diff --git a/litemall-wx_uni/pages/cart/cart.vue b/litemall-wx_uni/pages/cart/cart.vue
new file mode 100644
index 0000000000000000000000000000000000000000..4979bc0f2277b105563aad7923376728443e88ee
--- /dev/null
+++ b/litemall-wx_uni/pages/cart/cart.vue
@@ -0,0 +1,391 @@
+
+
+
+
+ 还没有登录
+
+
+
+
+
+ 30天无忧退货
+ 48小时快速退款
+ 满88元免邮费
+
+
+
+ 空空如也~
+ 去添加点什么吧
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.goodsName }}
+ x{{ item.number }}
+
+ {{ isEditCart ? '已选择:' : '' }}{{ item.specifications || '' }}
+
+ ¥{{ item.price }}
+
+ -
+
+ +
+
+
+
+
+
+
+
+
+
+ 全选({{ cartTotal.checkedGoodsCount }})
+ {{ !isEditCart ? '¥' + cartTotal.checkedGoodsAmount : '' }}
+
+ {{ !isEditCart ? '编辑' : '完成' }}
+ 删除({{ cartTotal.checkedGoodsCount }})
+ 下单
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/catalog/catalog.css b/litemall-wx_uni/pages/catalog/catalog.css
new file mode 100644
index 0000000000000000000000000000000000000000..3992be44fa8219a13241d96cd271a0a5a7d90d9e
--- /dev/null
+++ b/litemall-wx_uni/pages/catalog/catalog.css
@@ -0,0 +1,160 @@
+page {
+ height: 100%;
+}
+
+.container {
+ background: #f9f9f9;
+ height: 100%;
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+}
+
+.search {
+ height: 88rpx;
+ width: 100%;
+ padding: 0 30rpx;
+ background: #fff;
+ display: flex;
+ align-items: center;
+}
+
+.search .input {
+ width: 690rpx;
+ height: 56rpx;
+ background: #ededed;
+ border-radius: 8rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.search .van-icon-search {
+ line-height: 56rpx;
+}
+
+.search .txt {
+ height: 42rpx;
+ line-height: 42rpx;
+ color: #666;
+ padding-left: 10rpx;
+ font-size: 30rpx;
+}
+
+.catalog {
+ flex: 1;
+ width: 100%;
+ background: #fff;
+ display: flex;
+ border-top: 1px solid #fafafa;
+}
+
+.catalog .nav {
+ width: 162rpx;
+ height: 100%;
+}
+
+.catalog .nav .item {
+ text-align: center;
+ line-height: 90rpx;
+ width: 162rpx;
+ height: 90rpx;
+ color: #333;
+ font-size: 28rpx;
+ border-left: 6rpx solid #fff;
+}
+
+.catalog .nav .item.active {
+ color: #ab956d;
+ font-size: 36rpx;
+ border-left: 6rpx solid #ab956d;
+}
+
+.catalog .cate {
+ border-left: 1px solid #fafafa;
+ flex: 1;
+ height: 100%;
+ padding: 0 30rpx 0 30rpx;
+}
+
+.banner {
+ display: block;
+ height: 222rpx;
+ width: 100%;
+ position: relative;
+}
+
+.banner .image {
+ position: absolute;
+ top: 30rpx;
+ left: 0;
+ border-radius: 4rpx;
+ height: 192rpx;
+ width: 100%;
+}
+
+.banner .txt {
+ position: absolute;
+ top: 30rpx;
+ text-align: center;
+ color: #fff;
+ font-size: 28rpx;
+ left: 0;
+ height: 192rpx;
+ line-height: 192rpx;
+ width: 100%;
+}
+
+.catalog .hd {
+ height: 108rpx;
+ width: 100%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.catalog .hd .txt {
+ font-size: 24rpx;
+ text-align: center;
+ color: #333;
+ padding: 0 10rpx;
+ width: auto;
+}
+
+.catalog .hd .line {
+ width: 40rpx;
+ height: 1px;
+ background: #d9d9d9;
+}
+
+.catalog .bd {
+ height: auto;
+ width: 100%;
+ overflow: hidden;
+}
+
+.catalog .bd .item {
+ display: block;
+ float: left;
+ height: 216rpx;
+ width: 144rpx;
+ margin-right: 34rpx;
+}
+
+.catalog .bd .item.last {
+ margin-right: 0;
+}
+
+.catalog .bd .item .icon {
+ height: 144rpx;
+ width: 144rpx;
+}
+
+.catalog .bd .item .txt {
+ display: block;
+ text-align: center;
+ font-size: 24rpx;
+ color: #333;
+ height: 72rpx;
+ width: 144rpx;
+}
diff --git a/litemall-wx_uni/pages/catalog/catalog.vue b/litemall-wx_uni/pages/catalog/catalog.vue
new file mode 100644
index 0000000000000000000000000000000000000000..3188f9fc9ac1911b35b47a1e01b2f8adff371fa7
--- /dev/null
+++ b/litemall-wx_uni/pages/catalog/catalog.vue
@@ -0,0 +1,143 @@
+
+
+
+
+
+ 商品搜索, 共{{ goodsCount }}款好物
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+ {{ currentCategory.frontName }}
+
+
+
+ {{ currentCategory.name }}分类
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/category/category.css b/litemall-wx_uni/pages/category/category.css
new file mode 100644
index 0000000000000000000000000000000000000000..99e98212464722cfaabb3ff8fb16b3a2bcb6590e
--- /dev/null
+++ b/litemall-wx_uni/pages/category/category.css
@@ -0,0 +1,118 @@
+.container {
+ background: #f9f9f9;
+}
+
+.cate-nav {
+ position: fixed;
+ left: 0;
+ top: 0;
+ z-index: 1000;
+}
+
+.cate-nav-body {
+ height: 84rpx;
+ white-space: nowrap;
+ background: #fff;
+ border-top: 1px solid rgba(0, 0, 0, 0.15);
+ overflow: hidden;
+}
+
+.cate-nav .item {
+ display: inline-block;
+ height: 84rpx;
+ min-width: 130rpx;
+ padding: 0 15rpx;
+}
+
+.cate-nav .item .name {
+ display: block;
+ height: 84rpx;
+ padding: 0 20rpx;
+ line-height: 84rpx;
+ color: #333;
+ font-size: 30rpx;
+ width: auto;
+}
+
+.cate-nav .item.active .name {
+ color: #ab956d;
+ border-bottom: 2px solid #ab956d;
+}
+
+.cate-item {
+ margin-top: 94rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.cate-item .h {
+ height: 145rpx;
+ width: 750rpx;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+
+.cate-item .h .name {
+ display: block;
+ height: 35rpx;
+ margin-bottom: 18rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.cate-item .h .desc {
+ display: block;
+ height: 24rpx;
+ font-size: 24rpx;
+ color: #999;
+}
+
+.cate-item .b {
+ width: 750rpx;
+ padding: 0 6.25rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.cate-item .b .item {
+ float: left;
+ background: #fff;
+ width: 365rpx;
+ margin-bottom: 6.25rpx;
+ padding-bottom: 33.333rpx;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+}
+
+.cate-item .b .item-b {
+ margin-left: 6.25rpx;
+}
+
+.cate-item .item .img {
+ width: 302rpx;
+ height: 302rpx;
+}
+
+.cate-item .item .name {
+ display: block;
+ width: 365.625rpx;
+ height: 35rpx;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ overflow: hidden;
+ padding: 0 20rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.cate-item .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #ab956d;
+}
diff --git a/litemall-wx_uni/pages/category/category.vue b/litemall-wx_uni/pages/category/category.vue
new file mode 100644
index 0000000000000000000000000000000000000000..9b8cb4e7464b2cadf2fff84d47ddb90d74019449
--- /dev/null
+++ b/litemall-wx_uni/pages/category/category.vue
@@ -0,0 +1,215 @@
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ {{ currentCategory.name }}
+ {{ currentCategory.desc }}
+
+
+
+
+
+ {{ iitem.name }}
+
+ ¥{{ iitem.retailPrice }}
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/checkout/checkout.css b/litemall-wx_uni/pages/checkout/checkout.css
new file mode 100644
index 0000000000000000000000000000000000000000..d7dbb738bbc334c827af5d519ba8283f7be66d8d
--- /dev/null
+++ b/litemall-wx_uni/pages/checkout/checkout.css
@@ -0,0 +1,310 @@
+page {
+ height: 100%;
+ background: #f4f4f4;
+}
+
+.address-box {
+ width: 100%;
+ height: 166.55rpx;
+ background-size: 62.5rpx 10.5rpx;
+ margin-bottom: 20rpx;
+ padding-top: 10.5rpx;
+}
+
+.address-item {
+ display: flex;
+ height: 155.55rpx;
+ background: #fff;
+ padding: 41.6rpx 0 41.6rpx 31.25rpx;
+}
+
+.address-item.address-empty {
+ line-height: 75rpx;
+ text-align: center;
+}
+
+.address-box .l {
+ width: 125rpx;
+ height: 100%;
+}
+
+.address-box .l .name {
+ margin-left: 6.25rpx;
+ margin-top: -7.25rpx;
+ display: block;
+ width: 125rpx;
+ height: 43rpx;
+ line-height: 43rpx;
+ font-size: 30rpx;
+ color: #333;
+ margin-bottom: 5rpx;
+}
+
+.address-box .l .default {
+ margin-left: 6.25rpx;
+ display: block;
+ width: 62rpx;
+ height: 33rpx;
+ border-radius: 5rpx;
+ border: 1px solid #b4282d;
+ font-size: 20.5rpx;
+ text-align: center;
+ line-height: 29rpx;
+ color: #b4282d;
+}
+
+.address-box .m {
+ flex: 1;
+ height: 72.25rpx;
+ color: #999;
+}
+
+.address-box .mobile {
+ display: block;
+ height: 29rpx;
+ line-height: 29rpx;
+ margin-bottom: 6.25rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.address-box .address {
+ display: block;
+ height: 37.5rpx;
+ line-height: 37.5rpx;
+ font-size: 25rpx;
+ color: #666;
+}
+
+.address-box .r {
+ width: 77rpx;
+ height: 77rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.address-box .r image {
+ width: 52.078rpx;
+ height: 52.078rpx;
+}
+
+.coupon-box {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+}
+
+.coupon-box .coupon-item {
+ width: 100%;
+ height: 108.3rpx;
+ overflow: hidden;
+ background: #fff;
+ display: flex;
+ padding-left: 31.25rpx;
+}
+
+.coupon-box .l {
+ flex: 1;
+ height: 43rpx;
+ line-height: 43rpx;
+ padding-top: 35rpx;
+}
+
+.coupon-box .l .name {
+ float: left;
+ font-size: 30rpx;
+ color: #666;
+}
+
+.coupon-box .l .txt {
+ float: right;
+ font-size: 30rpx;
+ color: #666;
+}
+
+.coupon-box .r {
+ margin-top: 15.5rpx;
+ width: 77rpx;
+ height: 77rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.coupon-box .r image {
+ width: 52.078rpx;
+ height: 52.078rpx;
+}
+
+.message-box {
+ margin-top: 20rpx;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+}
+
+.message-box .message-item {
+ height: 52.078rpx;
+ overflow: hidden;
+ background: #fff;
+ display: flex;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ padding-top: 26rpx;
+}
+
+.order-box {
+ margin-top: 20rpx;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+}
+
+.order-box .order-item {
+ height: 104.3rpx;
+ overflow: hidden;
+ background: #fff;
+ display: flex;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ padding-top: 26rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.order-box .order-item .l {
+ float: left;
+ height: 52rpx;
+ width: 50%;
+ line-height: 52rpx;
+ overflow: hidden;
+}
+
+.order-box .order-item .r {
+ float: right;
+ text-align: right;
+ width: 50%;
+ height: 52rpx;
+ line-height: 52rpx;
+ overflow: hidden;
+}
+
+.order-box .order-item.no-border {
+ border-bottom: none;
+}
+
+.goods-items {
+ margin-top: 20rpx;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+ padding-left: 31.25rpx;
+ margin-bottom: 120rpx;
+}
+
+.goods-items .item {
+ height: 192rpx;
+ padding-right: 31.25rpx;
+ display: flex;
+ align-items: center;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+}
+
+.goods-items .item.no-border {
+ border-bottom: none;
+}
+
+.goods-items .item:last-child {
+ border-bottom: none;
+}
+
+.goods-items .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background-color: #f4f4f4;
+ margin-right: 20rpx;
+}
+
+.goods-items .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+
+.goods-items .info {
+ flex: 1;
+ height: 145.83rpx;
+ padding-top: 5rpx;
+}
+
+.goods-items .t {
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10rpx;
+ overflow: hidden;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.goods-items .t .name {
+ display: block;
+ float: left;
+}
+
+.goods-items .t .number {
+ display: block;
+ float: right;
+ text-align: right;
+}
+
+.goods-items .m {
+ height: 29rpx;
+ overflow: hidden;
+ line-height: 29rpx;
+ margin-bottom: 25rpx;
+ font-size: 25rpx;
+ color: #666;
+}
+
+.goods-items .b {
+ height: 41rpx;
+ overflow: hidden;
+ line-height: 41rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.order-total {
+ position: fixed;
+ left: 0;
+ bottom: 0;
+ height: 100rpx;
+ width: 100%;
+ display: flex;
+}
+
+.order-total .l {
+ flex: 1;
+ height: 100rpx;
+ line-height: 100rpx;
+ color: #b4282d;
+ background: #fff;
+ font-size: 33rpx;
+ padding-left: 31.25rpx;
+ border-top: 1rpx solid rgba(0, 0, 0, 0.2);
+ border-bottom: 1rpx solid rgba(0, 0, 0, 0.2);
+}
+
+.order-total .r {
+ width: 233rpx;
+ height: 100rpx;
+ background: #b4282d;
+ border: 1px solid #b4282d;
+ line-height: 100rpx;
+ text-align: center;
+ color: #fff;
+ font-size: 30rpx;
+}
diff --git a/litemall-wx_uni/pages/checkout/checkout.vue b/litemall-wx_uni/pages/checkout/checkout.vue
new file mode 100644
index 0000000000000000000000000000000000000000..b51de05a54a14a434a988353b39191231fa1f865
--- /dev/null
+++ b/litemall-wx_uni/pages/checkout/checkout.vue
@@ -0,0 +1,346 @@
+
+
+
+
+
+ {{ checkedAddress.name }}
+ 默认
+
+
+ {{ checkedAddress.tel }}
+ {{ checkedAddress.addressDetail }}
+
+
+
+
+
+
+ 还没有收货地址,去添加
+
+
+
+
+
+
+
+
+
+ 没有可用的优惠券
+ 0张
+
+
+ 优惠券
+ {{ availableCouponLength }}张
+
+
+ 优惠券
+ -¥{{ couponPrice }}元
+
+
+
+
+
+
+
+
+
+
+
+
+ 商品合计
+
+
+ ¥{{ goodsTotalPrice }}元
+
+
+
+
+ 运费
+
+
+ ¥{{ freightPrice }}元
+
+
+
+
+ 优惠券
+
+
+ -¥{{ couponPrice }}元
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.goodsName }}
+ x{{ item.number }}
+
+ {{ item.specifications }}
+ ¥{{ item.price }}
+
+
+
+
+
+ 实付:¥{{ actualPrice }}
+ 去付款
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/comment/comment.css b/litemall-wx_uni/pages/comment/comment.css
new file mode 100644
index 0000000000000000000000000000000000000000..10baf4cc9165f4cde65df965a649fddf66655277
--- /dev/null
+++ b/litemall-wx_uni/pages/comment/comment.css
@@ -0,0 +1,155 @@
+.comments {
+ width: 100%;
+ height: auto;
+ padding-left: 30rpx;
+ background: #fff;
+ margin: 20rpx 0;
+}
+
+.comments .h {
+ position: fixed;
+ left: 0;
+ top: 0;
+ z-index: 1000;
+ width: 100%;
+ display: flex;
+ background: #fff;
+ height: 84rpx;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+}
+
+.comments .h .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 50%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+
+.comments .h .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #333;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+
+.comments .h .item.active .txt {
+ color: #ab2b2b;
+ border-bottom: 4rpx solid #ab2b2b;
+}
+
+.comments .b {
+ margin-top: 85rpx;
+ height: auto;
+ width: 720rpx;
+}
+
+.comments .b.no-h {
+ margin-top: 0;
+}
+
+.comments .item {
+ height: auto;
+ width: 720rpx;
+ overflow: hidden;
+ border-bottom: 1px solid #d9d9d9;
+ padding-bottom: 25rpx;
+}
+
+.comments .info {
+ height: 127rpx;
+ width: 100%;
+ padding: 33rpx 0 27rpx 0;
+}
+
+.comments .user {
+ float: left;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ font-size: 0;
+}
+
+.comments .user image {
+ float: left;
+ width: 67rpx;
+ height: 67rpx;
+ margin-right: 17rpx;
+ border-radius: 50%;
+}
+
+.comments .user text {
+ display: inline-block;
+ width: auto;
+ height: 66rpx;
+ overflow: hidden;
+ font-size: 29rpx;
+ line-height: 66rpx;
+}
+
+.comments .time {
+ display: block;
+ float: right;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ color: #7f7f7f;
+ font-size: 25rpx;
+ margin-right: 30rpx;
+}
+
+.comments .comment {
+ width: 720rpx;
+ padding-right: 30rpx;
+ line-height: 45.8rpx;
+ font-size: 29rpx;
+ margin-bottom: 16rpx;
+}
+
+.comments .imgs {
+ width: 720rpx;
+ height: 150rpx;
+ margin-bottom: 25rpx;
+}
+
+.comments .imgs .img {
+ height: 150rpx;
+ width: 150rpx;
+ margin-right: 28rpx;
+}
+
+.comments .spec {
+ width: 720rpx;
+ height: 25rpx;
+ font-size: 24rpx;
+ color: #999;
+}
+
+.comments .spec .item {
+ color: #7f7f7f;
+ font-size: 25rpx;
+}
+
+.comments .customer-service {
+ width: 690rpx;
+ height: auto;
+ overflow: hidden;
+ margin-top: 23rpx;
+ background: rgba(0, 0, 0, 0.03);
+ padding: 21rpx;
+}
+
+.comments .customer-service .u {
+ font-size: 24rpx;
+ color: #333;
+ line-height: 37.5rpx;
+}
+
+.comments .customer-service .c {
+ font-size: 24rpx;
+ color: #999;
+ line-height: 37.5rpx;
+}
diff --git a/litemall-wx_uni/pages/comment/comment.vue b/litemall-wx_uni/pages/comment/comment.vue
new file mode 100644
index 0000000000000000000000000000000000000000..e52788d01a89150b18e0005df90ac8376db4ced2
--- /dev/null
+++ b/litemall-wx_uni/pages/comment/comment.vue
@@ -0,0 +1,187 @@
+
+
+
+
+ 全部({{ allCount }})
+
+
+ 有图({{ hasPicCount }})
+
+
+
+
+
+
+
+ {{ item.userInfo.nickname }}
+
+ {{ item.addTime }}
+
+
+ {{ item.content }}
+
+
+
+
+
+
+ 商家回复:
+ {{ item.adminContent }}
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/commentPost/commentPost.css b/litemall-wx_uni/pages/commentPost/commentPost.css
new file mode 100644
index 0000000000000000000000000000000000000000..978e121c9e68c995d098888cfcc57b8ae667b765
--- /dev/null
+++ b/litemall-wx_uni/pages/commentPost/commentPost.css
@@ -0,0 +1,249 @@
+page,
+.container {
+ height: 100%;
+ background: #f4f4f4;
+}
+
+.post-comment {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 30rpx;
+ background: #fff;
+}
+
+.post-comment .goods {
+ display: flex;
+ align-items: center;
+ height: 199rpx;
+ margin-left: 31.25rpx;
+}
+
+.post-comment .goods .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+
+.post-comment .goods .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+
+.post-comment .goods .info {
+ height: 145.83rpx;
+ flex: 1;
+ padding-left: 20rpx;
+}
+
+.post-comment .goods .name {
+ margin-top: 30rpx;
+ display: block;
+ height: 44rpx;
+ line-height: 44rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.post-comment .goods .number {
+ display: block;
+ height: 37rpx;
+ line-height: 37rpx;
+ color: #666;
+ font-size: 25rpx;
+}
+
+.post-comment .goods .status {
+ width: 105rpx;
+ color: #b4282d;
+ font-size: 25rpx;
+}
+
+.post-comment .rater {
+ display: flex;
+ flex-direction: row;
+ height: 55rpx;
+}
+
+.post-comment .rater .rater-title {
+ font-size: 29rpx;
+ padding-right: 10rpx;
+}
+
+.post-comment .rater image {
+ padding-left: 5rpx;
+ height: 50rpx;
+ width: 50rpx;
+}
+
+.post-comment .rater .rater-desc {
+ font-size: 29rpx;
+ padding-left: 10rpx;
+}
+
+.post-comment .input-box {
+ height: 337.5rpx;
+ width: 690rpx;
+ position: relative;
+ background: #fff;
+}
+
+.post-comment .input-box .content {
+ position: absolute;
+ top: 0;
+ left: 0;
+ display: block;
+ background: #fff;
+ font-size: 29rpx;
+ border: 5px solid #f4f4f4;
+ height: 300rpx;
+ width: 650rpx;
+ padding: 20rpx;
+}
+
+.post-comment .input-box .count {
+ position: absolute;
+ bottom: 20rpx;
+ right: 20rpx;
+ display: block;
+ height: 30rpx;
+ width: 50rpx;
+ font-size: 29rpx;
+ color: #999;
+}
+
+.post-comment .btns {
+ height: 108rpx;
+}
+
+.post-comment .close {
+ float: left;
+ height: 108rpx;
+ line-height: 108rpx;
+ text-align: left;
+ color: #666;
+ padding: 0 30rpx;
+}
+
+.post-comment .post {
+ float: right;
+ height: 108rpx;
+ line-height: 108rpx;
+ text-align: right;
+ padding: 0 30rpx;
+}
+
+.weui-uploader {
+ margin-top: 50rpx;
+}
+
+.weui-uploader__hd {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: flex;
+ padding-bottom: 10px;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ align-items: center;
+}
+
+.weui-uploader__title {
+ -webkit-box-flex: 1;
+ -webkit-flex: 1;
+ flex: 1;
+}
+
+.weui-uploader__info {
+ color: #b2b2b2;
+}
+
+.weui-uploader__bd {
+ margin-bottom: -4px;
+ margin-right: -9px;
+ overflow: hidden;
+}
+
+.weui-uploader__file {
+ float: left;
+ margin-right: 9px;
+ margin-bottom: 9px;
+}
+
+.weui-uploader__img {
+ display: block;
+ width: 79px;
+ height: 79px;
+}
+
+.weui-uploader__file_status {
+ position: relative;
+}
+
+.weui-uploader__file_status:before {
+ content: ' ';
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ background-color: rgba(0, 0, 0, 0.5);
+}
+
+.weui-uploader__file-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ color: #fff;
+}
+
+.weui-uploader__input-box {
+ float: left;
+ position: relative;
+ margin-right: 9px;
+ margin-bottom: 9px;
+ width: 77px;
+ height: 77px;
+ border: 1px solid #d9d9d9;
+}
+
+.weui-uploader__input-box:after,
+.weui-uploader__input-box:before {
+ content: ' ';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ background-color: #d9d9d9;
+}
+
+.weui-uploader__input-box:before {
+ width: 2px;
+ height: 39.5px;
+}
+
+.weui-uploader__input-box:after {
+ width: 39.5px;
+ height: 2px;
+}
+
+.weui-uploader__input-box:active {
+ border-color: #999;
+}
+
+.weui-uploader__input-box:active:after,
+.weui-uploader__input-box:active:before {
+ background-color: #999;
+}
+
+.weui-uploader__input {
+ position: absolute;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
diff --git a/litemall-wx_uni/pages/commentPost/commentPost.vue b/litemall-wx_uni/pages/commentPost/commentPost.vue
new file mode 100644
index 0000000000000000000000000000000000000000..cd7239cdf2932a58cf4cad43e9a55c40d68a2dc2
--- /dev/null
+++ b/litemall-wx_uni/pages/commentPost/commentPost.vue
@@ -0,0 +1,267 @@
+
+
+
+
+
+
+
+
+
+ {{ orderGoods.goodsName }} x{{ orderGoods.number }}
+
+ {{ orderGoods.goodsSpecificationValues }}
+
+
+
+ 评分
+
+
+
+
+
+ {{ starText }}
+
+
+
+ {{ 140 - content.length }}
+
+
+
+
+ 图片上传
+ {{ picUrls.length }}/{{ files.length }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 发表
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/coupon/coupon.css b/litemall-wx_uni/pages/coupon/coupon.css
new file mode 100644
index 0000000000000000000000000000000000000000..2e3b00606fcc9cb510e50775500dbd286fc2783c
--- /dev/null
+++ b/litemall-wx_uni/pages/coupon/coupon.css
@@ -0,0 +1,131 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ padding-top: 30rpx;
+}
+
+.coupon-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+}
+
+.item {
+ position: relative;
+ height: 290rpx;
+ width: 700rpx;
+ background: linear-gradient(to right, #cfa568, #e3bf79);
+ margin-bottom: 30rpx;
+ margin-left: 30rpx;
+ margin-right: 30rpx;
+ padding-top: 52rpx;
+}
+
+.tag {
+ height: 32rpx;
+ background: #a48143;
+ padding-left: 16rpx;
+ padding-right: 16rpx;
+ position: absolute;
+ left: 20rpx;
+ color: #fff;
+ top: 20rpx;
+ font-size: 20rpx;
+ text-align: center;
+ line-height: 32rpx;
+}
+
+.content {
+ margin-top: 24rpx;
+ margin-left: 40rpx;
+ display: flex;
+ margin-right: 40rpx;
+ flex-direction: row;
+}
+
+.content .left {
+ flex: 1;
+}
+
+.discount {
+ font-size: 50rpx;
+ color: #b4282d;
+}
+
+.min {
+ color: #fff;
+}
+
+.content .right {
+ width: 400rpx;
+}
+
+.name {
+ font-size: 44rpx;
+ color: #fff;
+ margin-bottom: 14rpx;
+}
+
+.time {
+ font-size: 24rpx;
+ color: #fff;
+ line-height: 30rpx;
+}
+
+.condition {
+ position: absolute;
+ width: 100%;
+ bottom: 0;
+ left: 0;
+ height: 78rpx;
+ background: rgba(0, 0, 0, 0.08);
+ padding: 24rpx 40rpx;
+ display: flex;
+ flex-direction: row;
+}
+
+.condition .txt {
+ display: block;
+ height: 30rpx;
+ flex: 1;
+ overflow: hidden;
+ font-size: 24rpx;
+ line-height: 30rpx;
+ color: #fff;
+}
+
+.condition .icon {
+ margin-left: 30rpx;
+ width: 24rpx;
+ height: 24rpx;
+}
+
+.page {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+
+.page view {
+ height: 108rpx;
+ width: 50%;
+ float: left;
+ font-size: 29rpx;
+ color: #333;
+ text-align: center;
+ line-height: 108rpx;
+}
+
+.page .prev {
+ border-right: 1px solid #d9d9d9;
+}
+
+.page .disabled {
+ color: #ccc;
+}
diff --git a/litemall-wx_uni/pages/coupon/coupon.vue b/litemall-wx_uni/pages/coupon/coupon.vue
new file mode 100644
index 0000000000000000000000000000000000000000..1f3e89caeac81e8d1a99ea6539ba2436dfe27a2c
--- /dev/null
+++ b/litemall-wx_uni/pages/coupon/coupon.vue
@@ -0,0 +1,170 @@
+
+
+
+
+ {{ item.tag }}
+
+
+
+ {{ item.discount }}元
+ 满{{ item.min }}元使用
+
+
+ {{ item.name }}
+ 有效期:{{ item.days }}天
+ 有效期:{{ item.startTime }} - {{ item.endTime }}
+
+
+
+
+ {{ item.desc }}
+
+
+
+
+
+ 上一页
+ 下一页
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/goods/goods.css b/litemall-wx_uni/pages/goods/goods.css
new file mode 100644
index 0000000000000000000000000000000000000000..03d2d0e9fc3dcb89f5b1968f29b293c3bf5aae2a
--- /dev/null
+++ b/litemall-wx_uni/pages/goods/goods.css
@@ -0,0 +1,933 @@
+.container {
+ margin-bottom: 100rpx;
+}
+
+.goodsimgs {
+ width: 750rpx;
+ height: 750rpx;
+}
+
+.goodsimgs image {
+ width: 750rpx;
+ height: 750rpx;
+}
+
+.commodity_screen {
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ top: 0;
+ left: 0;
+ background: #000;
+ opacity: 0.2;
+ overflow: hidden;
+ z-index: 1000;
+ color: #fff;
+}
+
+.commodity_attr_box {
+ width: 100%;
+ overflow: hidden;
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ z-index: 2000;
+ background: #fff;
+ padding-top: 20rpx;
+}
+
+.goods-info {
+ width: 750rpx;
+ height: 306rpx;
+ overflow: hidden;
+ background: #fff;
+}
+
+.goods-info .c {
+ display: block;
+ width: 718.75rpx;
+ height: 100%;
+ margin-left: 31.25rpx;
+ padding: 38rpx 31.25rpx 38rpx 0;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.goods-info .c text {
+ display: block;
+ width: 687.5rpx;
+ text-align: left;
+}
+
+.goods_name {
+ height: 86rpx;
+ line-height: 86rpx;
+ border-bottom: 1px solid #fafafa;
+}
+
+.goods_name_left {
+ float: left;
+ height: 86rpx;
+ font-weight: 550;
+ line-height: 86rpx;
+ margin-left: 35rpx;
+ font-size: 38rpx;
+ letter-spacing: 1rpx;
+}
+
+.goods_name_right {
+ float: right;
+ font-weight: 550;
+ margin-top: 28rpx;
+ width: 140rpx;
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-right: 0rpx;
+ text-align: center;
+ font-size: 25rpx;
+ color: #f4f4f4;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 0rpx;
+ border-bottom-right-radius: 0rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #f3d10e 0%, #f48f18 100%);
+}
+
+.goods-info .desc {
+ height: 43rpx;
+ margin-bottom: 41rpx;
+ font-size: 24rpx;
+ line-height: 36rpx;
+ color: #999;
+}
+
+.goods-info .price {
+ height: 70rpx;
+ align-content: center;
+}
+
+.goods-info .counterPrice {
+ float: left;
+ padding-left: 0rpx;
+ text-decoration: line-through;
+ font-size: 30rpx;
+ color: #999;
+}
+
+.goods-info .retailPrice {
+ padding-left: 5%;
+ font-size: 30rpx;
+ color: #a78845;
+}
+
+.goods-info .brand {
+ margin-top: 23rpx;
+ min-height: 40rpx;
+ text-align: left;
+}
+
+.goods-info .brand text {
+ display: inline-block;
+ width: auto;
+ padding: 2px 30rpx 2px 10.5rpx;
+ line-height: 35.5rpx;
+ border: 1px solid #f48f18;
+ font-size: 25rpx;
+ color: #f48f18;
+ border-radius: 4rpx;
+ background-size: 10.75rpx 18.75rpx;
+}
+
+.section-nav {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+
+.section-nav .t {
+ float: left;
+ width: 600rpx;
+ height: 108rpx;
+ line-height: 108rpx;
+ font-size: 29rpx;
+ color: #333;
+ margin-left: 31.25rpx;
+}
+
+.section-nav .i {
+ float: right;
+ width: 52rpx;
+ height: 52rpx;
+ margin-right: 16rpx;
+ margin-top: 28rpx;
+}
+
+.section-act .t {
+ float: left;
+ display: flex;
+ align-items: center;
+ width: 600rpx;
+ height: 108rpx;
+ overflow: hidden;
+ line-height: 108rpx;
+ font-size: 29rpx;
+ color: #999;
+ margin-left: 31.25rpx;
+}
+
+.section-act .label {
+ color: #999;
+}
+
+.section-act .tag {
+ display: flex;
+ align-items: center;
+ padding: 0 10rpx;
+ border-radius: 3px;
+ height: 37rpx;
+ width: auto;
+ color: #f48f18;
+ overflow: hidden;
+ border: 1px solid #f48f18;
+ font-size: 25rpx;
+ margin: 0 10rpx;
+}
+
+.section-act .text {
+ display: flex;
+ align-items: center;
+ height: 37rpx;
+ width: auto;
+ overflow: hidden;
+ color: #f48f18;
+ font-size: 29rpx;
+}
+
+.comments {
+ width: 100%;
+ height: auto;
+ padding-left: 30rpx;
+ background: #fff;
+ margin: 20rpx 0;
+}
+
+.comments .h {
+ height: 102.5rpx;
+ line-height: 100.5rpx;
+ width: 718.75rpx;
+ padding-right: 16rpx;
+}
+
+.comments .h .t {
+ display: block;
+ float: left;
+ width: 50%;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.comments .h .i {
+ display: block;
+ float: right;
+ width: 164rpx;
+ height: 100.5rpx;
+ line-height: 100.5rpx;
+ background-size: 52rpx;
+}
+
+.comments .b {
+ height: auto;
+ width: 720rpx;
+}
+
+.comments .item {
+ height: auto;
+ width: 720rpx;
+ overflow: hidden;
+ border-top: 1px solid #d9d9d9;
+}
+
+.comments .info {
+ height: 127rpx;
+ width: 100%;
+ padding: 33rpx 0 27rpx 0;
+}
+
+.comments .user {
+ float: left;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ font-size: 0;
+}
+
+.comments .user image {
+ float: left;
+ width: 67rpx;
+ height: 67rpx;
+ margin-right: 17rpx;
+ border-radius: 50%;
+}
+
+.comments .user text {
+ display: inline-block;
+ width: auto;
+ height: 66rpx;
+ overflow: hidden;
+ font-size: 29rpx;
+ line-height: 66rpx;
+}
+
+.comments .time {
+ display: block;
+ float: right;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ color: #7f7f7f;
+ font-size: 25rpx;
+ margin-right: 30rpx;
+}
+
+.comments .content {
+ width: 720rpx;
+ padding-right: 30rpx;
+ line-height: 45.8rpx;
+ font-size: 29rpx;
+ margin-bottom: 24rpx;
+}
+
+.comments .imgs {
+ width: 720rpx;
+ height: auto;
+ margin-bottom: 25rpx;
+}
+
+.comments .imgs .img {
+ height: 150rpx;
+ width: 150rpx;
+ margin-right: 28rpx;
+}
+
+.comments .spec {
+ width: 720rpx;
+ padding-right: 30rpx;
+ line-height: 30rpx;
+ font-size: 24rpx;
+ color: #999;
+ margin-bottom: 30rpx;
+}
+
+.comments .customer-service {
+ width: 690rpx;
+ height: auto;
+ overflow: hidden;
+ margin-top: 23rpx;
+ margin-bottom: 23rpx;
+ background: rgba(0, 0, 0, 0.03);
+ padding: 21rpx;
+}
+
+.comments .customer-service .u {
+ font-size: 24rpx;
+ color: #333;
+ line-height: 37.5rpx;
+}
+
+.comments .customer-service .c {
+ font-size: 24rpx;
+ color: #999;
+ line-height: 37.5rpx;
+}
+
+.goods-attr {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 0 31.25rpx 25rpx 31.25rpx;
+ background: #fff;
+}
+
+.goods-attr .t {
+ width: 687.5rpx;
+ height: 104rpx;
+ line-height: 104rpx;
+ font-size: 38.5rpx;
+}
+
+.goods-attr .item {
+ width: 687.5rpx;
+ height: 68rpx;
+ padding: 11rpx 20rpx;
+ margin-bottom: 11rpx;
+ background: #f7f7f7;
+ font-size: 38.5rpx;
+}
+
+.goods-attr .left {
+ float: left;
+ font-size: 25rpx;
+ width: 134rpx;
+ height: 45rpx;
+ line-height: 45rpx;
+ overflow: hidden;
+ color: #999;
+}
+
+.goods-attr .right {
+ float: left;
+ font-size: 36.5rpx;
+ margin-left: 20rpx;
+ width: 480rpx;
+ height: 45rpx;
+ line-height: 45rpx;
+ overflow: hidden;
+ color: #333;
+}
+
+.detail {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.detail image {
+ width: 750rpx;
+ display: block;
+}
+
+.common-problem {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.common-problem .h {
+ position: relative;
+ height: 145.5rpx;
+ width: 750rpx;
+ padding: 56.25rpx 0;
+ background: #fff;
+ text-align: center;
+}
+
+.common-problem .h .line {
+ display: inline-block;
+ position: absolute;
+ top: 72rpx;
+ left: 0;
+ z-index: 2;
+ height: 1px;
+ margin-left: 225rpx;
+ width: 300rpx;
+ background: #ccc;
+}
+
+.common-problem .h .title {
+ display: inline-block;
+ position: absolute;
+ top: 56.125rpx;
+ left: 0;
+ z-index: 3;
+ height: 33rpx;
+ margin-left: 285rpx;
+ width: 180rpx;
+ background: #fff;
+}
+
+.common-problem .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 0rpx 30rpx;
+ background: #fff;
+}
+
+.common-problem .item {
+ height: auto;
+ overflow: hidden;
+ padding-bottom: 25rpx;
+}
+
+.common-problem .question-box .spot {
+ float: left;
+ display: block;
+ height: 8rpx;
+ width: 8rpx;
+ background: #b4282d;
+ border-radius: 50%;
+ margin-top: 11rpx;
+}
+
+.common-problem .question-box .question {
+ float: left;
+ line-height: 30rpx;
+ padding-left: 8rpx;
+ display: block;
+ font-size: 26rpx;
+ padding-bottom: 15rpx;
+ color: #303030;
+}
+
+.common-problem .answer {
+ line-height: 36rpx;
+ padding-left: 16rpx;
+ font-size: 26rpx;
+ color: #787878;
+}
+
+.related-goods {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding-bottom: 80rpx;
+}
+
+.related-goods .h {
+ position: relative;
+ height: 145.5rpx;
+ width: 750rpx;
+ padding: 56.25rpx 0;
+ background: #fff;
+ text-align: center;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.related-goods .h .line {
+ display: inline-block;
+ position: absolute;
+ top: 72rpx;
+ left: 0;
+ z-index: 2;
+ height: 1px;
+ margin-left: 225rpx;
+ width: 300rpx;
+ background: #ccc;
+}
+
+.related-goods .h .title {
+ display: inline-block;
+ position: absolute;
+ top: 56.125rpx;
+ left: 0;
+ z-index: 3;
+ height: 33rpx;
+ margin-left: 285rpx;
+ width: 180rpx;
+ background: #fff;
+}
+
+.related-goods .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.related-goods .b .item {
+ float: left;
+ background: #fff;
+ width: 375rpx;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+ padding: 15rpx 31.25rpx;
+ border-right: 1px solid #f4f4f4;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.related-goods .item .img {
+ width: 311.45rpx;
+ height: 311.45rpx;
+}
+
+.related-goods .item .name {
+ display: block;
+ width: 311.45rpx;
+ height: 35rpx;
+ margin: 11.5rpx 0 15rpx 0;
+ text-align: center;
+ overflow: hidden;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.related-goods .item .price {
+ display: block;
+ width: 311.45rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+
+.bottom-btn {
+ position: fixed;
+ left: 0;
+ bottom: 0;
+ z-index: 10;
+ width: 750rpx;
+ height: 100rpx;
+ display: flex;
+ background: #fff;
+}
+
+.bottom-btn .l {
+ float: left;
+ height: 100rpx;
+ width: 162rpx;
+ border: 1px solid #f4f4f4;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.bottom-btn .l.l-collect {
+ border-right: none;
+ border-left: none;
+ text-align: center;
+ width: 90rpx;
+}
+
+.bottom-btn .l.l-collect .icon {
+ position: absolute;
+ top: 28rpx;
+ left: 20rpx;
+ font-size: 44rpx;
+}
+
+.bottom-btn .l.l-kefu {
+ position: relative;
+ height: 54rpx;
+ width: 63rpx;
+}
+
+.bottom-btn .l.l-cart .box {
+ position: relative;
+ height: 60rpx;
+ width: 60rpx;
+}
+
+.bottom-btn .l.l-cart .cart-count {
+ height: 28rpx;
+ width: 28rpx;
+ z-index: 10;
+ position: absolute;
+ top: 0;
+ right: 0;
+ background: #b4282d;
+ text-align: center;
+ font-size: 18rpx;
+ color: #fff;
+ line-height: 28rpx;
+ border-radius: 50%;
+}
+
+.bottom-btn .l.l-cart .icon {
+ position: absolute;
+ top: 10rpx;
+ left: 0;
+ font-size: 44rpx;
+}
+
+.bottom-btn .c {
+ float: left;
+ background: #b4282d;
+ height: 100rpx;
+ line-height: 96rpx;
+ flex: 1;
+ text-align: center;
+ color: #fff;
+}
+
+.bottom-btn .r {
+ border: 1px solid #f48f18;
+ background: #f48f18;
+ float: left;
+ height: 100rpx;
+ line-height: 96rpx;
+ flex: 1;
+ text-align: center;
+ color: #fff;
+}
+
+.bottom-btn .n {
+ float: left;
+ background: #d5d8d8e7;
+ height: 100rpx;
+ line-height: 96rpx;
+ flex: 1;
+ text-align: center;
+ color: rgb(37, 36, 36);
+}
+
+.attr-pop-box {
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ background: rgba(0, 0, 0, 0.5);
+ z-index: 8;
+ bottom: 0;
+ /* display: none; */
+}
+
+.attr-pop {
+ width: 100%;
+ height: auto;
+ max-height: 780rpx;
+ padding: 31.25rpx;
+ background: #fff;
+ position: fixed;
+ z-index: 9;
+ bottom: 100rpx;
+}
+
+.attr-pop .close {
+ position: absolute;
+ width: 48rpx;
+ height: 48rpx;
+ right: 31.25rpx;
+ overflow: hidden;
+ top: 31.25rpx;
+}
+
+.attr-pop .close .icon {
+ width: 48rpx;
+ height: 48rpx;
+}
+
+.attr-pop .img-info {
+ width: 687.5rpx;
+ height: 177rpx;
+ overflow: hidden;
+ margin-bottom: 41.5rpx;
+}
+
+.attr-pop .img {
+ float: left;
+ height: 177rpx;
+ width: 177rpx;
+ background: #f4f4f4;
+ margin-right: 31.25rpx;
+}
+
+.attr-pop .info {
+ float: left;
+ height: 177rpx;
+ display: flex;
+ align-items: center;
+}
+
+.attr-pop .p {
+ font-size: 33rpx;
+ color: #333;
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10rpx;
+}
+
+.attr-pop .a {
+ font-size: 29rpx;
+ color: #333;
+ height: 40rpx;
+ line-height: 40rpx;
+}
+
+.spec-con {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+}
+
+.spec-con .name {
+ margin-bottom: 6rpx;
+ font-size: 29rpx;
+ color: #333;
+}
+
+.spec-con .values {
+ height: auto;
+ margin-bottom: 10rpx;
+ font-size: 0;
+}
+
+.spec-con .value {
+ display: inline-block;
+ height: 62rpx;
+ padding: 0 35rpx;
+ line-height: 56rpx;
+ text-align: center;
+ margin-right: 25rpx;
+ margin-bottom: 16.5rpx;
+ border: 1px solid #333;
+ font-size: 25rpx;
+ color: #333;
+}
+
+.spec-con .value.disable {
+ border: 1px solid #ccc;
+ color: #ccc;
+}
+
+.spec-con .value.selected {
+ border: 1px solid #b4282d;
+ color: #b4282d;
+}
+
+.number-item .selnum {
+ width: 322rpx;
+ height: 71rpx;
+ border: 1px solid #ccc;
+ display: flex;
+}
+
+.number-item .cut {
+ width: 93.75rpx;
+ height: 100%;
+ text-align: center;
+ line-height: 65rpx;
+}
+
+.number-item .number {
+ flex: 1;
+ height: 100%;
+ text-align: center;
+ line-height: 68.75rpx;
+ border-left: 1px solid #ccc;
+ border-right: 1px solid #ccc;
+ float: left;
+}
+
+.number-item .add {
+ width: 93.75rpx;
+ height: 100%;
+ text-align: center;
+ line-height: 65rpx;
+}
+
+.contact {
+ height: 100rpx;
+ width: 100rpx;
+ border-radius: 100%;
+ position: fixed;
+ bottom: 96rpx;
+ right: 10rpx;
+ font-size: 20rpx;
+ box-sizing: border-box;
+ background: url('../../static/images/customer.png') no-repeat center 21rpx;
+ background-size: 55rpx auto;
+}
+
+.share-pop-box {
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ background: rgba(0, 0, 0, 0.5);
+ z-index: 8;
+ bottom: 0;
+ /* display: none; */
+}
+
+.share-pop {
+ width: 100%;
+ height: auto;
+ max-height: 780rpx;
+ padding: 31.25rpx;
+ background: #fff;
+ position: fixed;
+ z-index: 9;
+ bottom: 100rpx;
+}
+
+.share-pop .close {
+ position: absolute;
+ width: 48rpx;
+ height: 48rpx;
+ right: 31.25rpx;
+ top: 31.25rpx;
+}
+
+.share-pop .close .icon {
+ width: 48rpx;
+ height: 48rpx;
+}
+
+.share-pop .share-info {
+ width: 100%;
+ height: 225rpx;
+ overflow: hidden;
+ margin-bottom: 41.5rpx;
+}
+
+.sharebtn {
+ top: 75rpx;
+ background: none !important;
+ font-size: 32rpx;
+ color: #fff !important;
+ border-radius: 0%;
+ width: 175rpx;
+ height: 150rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-wrap: wrap;
+ float: left;
+ background: #fff;
+ border-bottom: 0px solid #fafafa;
+ margin-left: 15%;
+}
+
+.sharebtn::after {
+ border: none;
+ border-radius: 0%;
+}
+
+.savesharebtn {
+ top: 75rpx;
+ background: none !important;
+ font-size: 32rpx;
+ color: #fff !important;
+ border-radius: 0%;
+ width: 175rpx;
+ height: 150rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-wrap: wrap;
+ float: right;
+ background: #fff;
+ border-bottom: 0px solid #fafafa;
+ margin-right: 15%;
+}
+
+.savesharebtn::after {
+ border: none;
+ border-radius: 0%;
+}
+
+.sharebtn_image {
+ /* border: 1px solid #757575; */
+ width: 128rpx;
+ height: 128rpx;
+ margin-top: 0rpx;
+}
+
+.sharebtn_text {
+ /* border: 1px solid #757575; */
+ width: 150rpx;
+ margin-bottom: 2rpx;
+ height: 20rpx;
+ line-height: 20rpx;
+ font-size: 20rpx;
+ color: #555;
+}
+
+.separate {
+ background: #e0e3da;
+ width: 100%;
+ height: 6rpx;
+}
diff --git a/litemall-wx_uni/pages/goods/goods.vue b/litemall-wx_uni/pages/goods/goods.vue
new file mode 100644
index 0000000000000000000000000000000000000000..3472a04f6b75df6bcad70b1da03fd6d48b6388ec
--- /dev/null
+++ b/litemall-wx_uni/pages/goods/goods.vue
@@ -0,0 +1,942 @@
+
+
+
+
+
+
+
+
+
+
+ {{ goods.name }}
+ 分享
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ goods.brief }}
+
+ 原价:¥{{ goods.counterPrice }}
+ 现价:¥{{ checkedSpecPrice }}
+
+
+
+
+ {{ brand.name }}
+
+
+
+
+
+ {{ checkedSpecText }}
+
+
+
+
+
+ 评价({{ comment.count > 999 ? '999+' : comment.count }})
+
+ 查看全部
+
+
+
+
+
+
+
+
+
+ {{ item.nickname }}
+
+ {{ item.addTime }}
+
+
+
+ {{ item.content }}
+
+
+
+
+
+
+
+ 商家回复:
+ {{ item.adminContent }}
+
+
+
+
+
+ 商品参数
+
+
+ {{ item.attribute }}
+
+ {{ item.value }}
+
+
+
+
+
+
+
+
+
+
+
+
+ 常见问题
+
+
+
+
+
+ {{ item.question }}
+
+
+
+ {{ item.answer }}
+
+
+
+
+
+
+
+
+
+ 大家都在看
+
+
+
+
+
+ {{ item.name }}
+ ¥{{ item.retailPrice }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 价格:¥{{ checkedSpecPrice }}
+ {{ tmpSpecText }}
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+ {{ vitem.value }}
+
+
+
+
+
+ 团购立减
+
+
+ ¥{{ vitem.discount }} ({{ vitem.discountMember }}人)
+
+
+
+
+
+
+ 数量
+
+ -
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ cartGoodsCount }}
+
+
+
+ 加入购物车
+ {{ isGroupon ? '参加团购' : '立即购买' }}
+ 商品已售空
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.css b/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.css
new file mode 100644
index 0000000000000000000000000000000000000000..15296dbe11497347b863ff73a0d0c9ca69dfbbaf
--- /dev/null
+++ b/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.css
@@ -0,0 +1,304 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+
+.progress {
+ padding-top: 25rpx;
+ background: #fff;
+ height: auto;
+ overflow: hidden;
+}
+
+.item-a {
+ padding: 0 21.25rpx;
+}
+
+.item-c {
+ margin-left: 31.25rpx;
+ height: 103rpx;
+ line-height: 103rpx;
+}
+
+.item-c .l {
+ float: left;
+}
+
+.item-c .r {
+ height: 103rpx;
+ float: right;
+ display: flex;
+ align-items: center;
+ padding-right: 16rpx;
+}
+
+.item-c .btn {
+ float: right;
+ line-height: 66rpx;
+ font-size: 30rpx;
+ border-radius: 5rpx;
+ text-align: center;
+ margin: 0 15rpx;
+ padding: 0 20rpx;
+ height: 66rpx;
+}
+
+.item-c .btn.active {
+ background: #a78845;
+ color: #fff;
+}
+
+.order-goods {
+ margin-top: 20rpx;
+ background: #fff;
+}
+
+.order-goods .h {
+ height: 93.75rpx;
+ line-height: 93.75rpx;
+ margin-left: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ padding-right: 31.25rpx;
+}
+
+.order-goods .h .label {
+ float: left;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.order-goods .h .status {
+ float: right;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+
+.order-goods .item {
+ display: flex;
+ align-items: center;
+ height: 192rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.order-goods .item:last-child {
+ border-bottom: none;
+}
+
+.order-goods .item .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+
+.order-goods .item .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+
+.order-goods .item .info {
+ flex: 1;
+ height: 145.83rpx;
+ margin-left: 20rpx;
+}
+
+.order-goods .item .t {
+ margin-top: 8rpx;
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10.5rpx;
+}
+
+.order-goods .item .t .name {
+ display: block;
+ float: left;
+ height: 33rpx;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order-goods .item .t .number {
+ display: block;
+ float: right;
+ height: 33rpx;
+ text-align: right;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order-goods .item .attr {
+ height: 29rpx;
+ line-height: 29rpx;
+ color: #666;
+ margin-bottom: 25rpx;
+ font-size: 25rpx;
+}
+
+.order-goods .item .price {
+ display: block;
+ float: left;
+ height: 30rpx;
+ line-height: 30rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order-goods .item .btn {
+ height: 50rpx;
+ line-height: 50rpx;
+ border-radius: 5rpx;
+ text-align: center;
+ display: block;
+ float: right;
+ margin: 0 15rpx;
+ padding: 0 20rpx;
+}
+
+.order-goods .item .btn.active {
+ background: #b4282d;
+ color: #fff;
+}
+
+.order-bottom {
+ margin-top: 20rpx;
+ padding-left: 31.25rpx;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+}
+
+.order-bottom .address {
+ height: 128rpx;
+ padding-top: 25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.order-bottom .address .t {
+ height: 35rpx;
+ line-height: 35rpx;
+ margin-bottom: 7.5rpx;
+}
+
+.order-bottom .address .name {
+ display: inline-block;
+ height: 35rpx;
+ width: 140rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+
+.order-bottom .address .mobile {
+ display: inline-block;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+
+.order-bottom .address .b {
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+
+.order-bottom .total {
+ height: 106rpx;
+ padding-top: 20rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.order-bottom .total .t {
+ height: 30rpx;
+ line-height: 30rpx;
+ margin-bottom: 7.5rpx;
+}
+
+.order-bottom .total .t .label {
+ width: 150rpx;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+
+.order-bottom .total .t .txt {
+ float: right;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+ padding-right: 31.25rpx;
+}
+
+.order-bottom .pay-fee {
+ height: 81rpx;
+ line-height: 81rpx;
+}
+
+.order-bottom .pay-fee .label {
+ width: 140rpx;
+}
+
+.order-bottom .pay-fee .txt {
+ float: right;
+ padding-right: 31.25rpx;
+}
+
+.menu-list-pro {
+ margin-top: 20rpx;
+ overflow-x: scroll;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ height: 260rpx;
+ width: 100%;
+ overflow: hidden;
+ border-bottom: 1rpx #cfc9ca;
+ background-color: #fff;
+}
+
+.menu-list-pro .h {
+ height: 93.75rpx;
+ line-height: 93.75rpx;
+ margin-left: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ padding-right: 31.25rpx;
+}
+
+.menu-list-pro .h .label {
+ float: left;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.menu-list-pro .h .status {
+ float: right;
+ font-size: 30rpx;
+ color: #a78845;
+}
+
+.menu-list-pro .menu-list-item {
+ display: block;
+ float: left;
+ height: 110rpx;
+ width: 80rpx;
+ margin-top: 30rpx;
+ margin-bottom: 30rpx;
+ margin-left: 40rpx;
+}
+
+.menu-list-pro .icon {
+ height: 80rpx;
+ width: 80rpx;
+ border-radius: 12rpx;
+ box-shadow: 0px 4rpx 4rpx 0px #cfc9ca;
+}
+
+.menu-list-pro .txt {
+ display: block;
+ float: left;
+ width: 80rpx;
+ margin-top: 5rpx;
+ font-size: 22rpx;
+ color: #a78845;
+}
diff --git a/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue b/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue
new file mode 100644
index 0000000000000000000000000000000000000000..e7812c1764e0503c3d22267d45f1852b3bf7ddea
--- /dev/null
+++ b/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue
@@ -0,0 +1,186 @@
+
+
+
+
+
+
+
+
+ 开团还缺
+ {{ rules.discountMember - joiners.length }}
+ 人
+
+
+
+
+
+
+
+
+
+ 参与团购 ( {{ joiners.length }}人)
+ 查看全部
+
+
+
+
+ {{ item.nickname }}
+
+
+
+
+
+ 商品信息
+
+
+
+
+
+
+
+
+
+ {{ item.goodsName }}
+ x{{ item.number }}
+
+ {{ item.goodsSpecificationValues }}
+ ¥{{ item.retailPrice }}
+
+
+
+
+
+
+
+ 商品合计:
+ ¥{{ orderInfo.goodsPrice }}
+
+
+ 商品运费:
+ ¥{{ orderInfo.freightPrice }}
+
+
+
+ 商品实付:
+ ¥{{ orderInfo.actualPrice }}
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/groupon/grouponList/grouponList.css b/litemall-wx_uni/pages/groupon/grouponList/grouponList.css
new file mode 100644
index 0000000000000000000000000000000000000000..487f348ef709823630a1503d97d4716c1925d4ef
--- /dev/null
+++ b/litemall-wx_uni/pages/groupon/grouponList/grouponList.css
@@ -0,0 +1,108 @@
+page,
+.container {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+ background: #f4f4f4;
+}
+
+.groupon-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+ background: #f4f4f4;
+}
+
+.groupon-list .item {
+ height: 244rpx;
+ width: 100%;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+
+.groupon-list .img {
+ margin-top: 12rpx;
+ margin-right: 12rpx;
+ float: left;
+ width: 220rpx;
+ height: 220rpx;
+}
+
+.groupon-list .right {
+ float: left;
+ height: 244rpx;
+ width: 476rpx;
+ display: flex;
+ flex-flow: row nowrap;
+}
+
+.groupon-list .text {
+ display: flex;
+ flex-wrap: nowrap;
+ flex-direction: column;
+ justify-content: center;
+ overflow: hidden;
+ height: 244rpx;
+ width: 476rpx;
+}
+
+.groupon-list .name {
+ float: left;
+ display: block;
+ color: #333;
+ line-height: 50rpx;
+ font-size: 30rpx;
+}
+
+.groupon-list .desc {
+ width: 476rpx;
+ display: block;
+ color: #999;
+ line-height: 50rpx;
+ font-size: 25rpx;
+}
+
+.groupon-list .price {
+ width: 476rpx;
+ display: flex;
+ color: #ab956d;
+ line-height: 50rpx;
+ font-size: 33rpx;
+}
+
+.groupon-list .counterPrice {
+ text-decoration: line-through;
+ font-size: 28rpx;
+ color: #999;
+}
+
+.groupon-list .retailPrice {
+ margin-left: 30rpx;
+ font-size: 28rpx;
+ color: #a78845;
+}
+
+.page {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+
+.page view {
+ height: 108rpx;
+ width: 50%;
+ float: left;
+ font-size: 29rpx;
+ color: #333;
+ text-align: center;
+ line-height: 108rpx;
+}
+
+.page .prev {
+ border-right: 1px solid #d9d9d9;
+}
+
+.page .disabled {
+ color: #ccc;
+}
diff --git a/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue b/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue
new file mode 100644
index 0000000000000000000000000000000000000000..6faec21a27973cebffa3357377e6ecd82902ba8e
--- /dev/null
+++ b/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue
@@ -0,0 +1,146 @@
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ {{ item.grouponMember }}人成团
+
+
+ 有效期至 {{ item.expireTime }}
+
+ {{ item.brief }}
+
+ 现价:¥{{ item.retailPrice }}
+ 团购价:¥{{ item.grouponPrice }}
+
+
+
+
+
+
+
+ 上一页
+ 下一页
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.css b/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.css
new file mode 100644
index 0000000000000000000000000000000000000000..4be305f33a789eae83bf6a2f98ba8e2a70cade84
--- /dev/null
+++ b/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.css
@@ -0,0 +1,213 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+
+.orders-switch {
+ width: 100%;
+ background: #fff;
+ height: 84rpx;
+ border-bottom: 1px solid #a78845;
+}
+
+.orders-switch .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 50%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+
+.orders-switch .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #333;
+ font-size: 30rpx;
+ width: 100%;
+}
+
+.orders-switch .item.active .txt {
+ color: #a78845;
+ border-bottom: 4rpx solid #a78845;
+}
+
+.no-order {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+
+.no-order .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+
+.no-order .c image {
+ margin: 0 auto;
+ display: block;
+ text-align: center;
+ width: 258rpx;
+ height: 258rpx;
+}
+
+.no-order .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+
+.orders {
+ height: auto;
+ width: 100%;
+ overflow: hidden;
+}
+
+.order {
+ margin-top: 20rpx;
+ background: #fff;
+}
+
+.order .h {
+ height: 83.3rpx;
+ line-height: 83.3rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.order .h .l {
+ float: left;
+ color: #a78845;
+ font-size: 26rpx;
+}
+
+.order .h .r {
+ float: right;
+ color: #a78845;
+ font-size: 26rpx;
+}
+
+.order .i {
+ height: 56rpx;
+ line-height: 56rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.order .i .l {
+ float: left;
+ color: #a78845;
+ font-size: 26rpx;
+}
+
+.order .i .r {
+ float: right;
+ color: #a78845;
+ font-size: 26rpx;
+}
+
+.order .j {
+ height: 56rpx;
+ line-height: 56rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+}
+
+.order .j .l {
+ float: left;
+ font-size: 26rpx;
+ color: #a78845;
+}
+
+.order .j .r {
+ float: right;
+ color: #a78845;
+ font-size: 26rpx;
+}
+
+.order .goods {
+ display: flex;
+ align-items: center;
+ height: 199rpx;
+ margin-left: 31.25rpx;
+}
+
+.order .goods .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+
+.order .goods .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+
+.order .goods .info {
+ height: 145.83rpx;
+ flex: 1;
+ padding-left: 20rpx;
+}
+
+.order .goods .name {
+ margin-top: 30rpx;
+ display: block;
+ height: 44rpx;
+ line-height: 44rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order .goods .number {
+ display: block;
+ height: 37rpx;
+ line-height: 37rpx;
+ color: #666;
+ font-size: 25rpx;
+}
+
+.order .goods .status {
+ width: 105rpx;
+ color: #a78845;
+ font-size: 25rpx;
+}
+
+.order .b {
+ height: 103rpx;
+ line-height: 103rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-top: 1px solid #f4f4f4;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.order .b .l {
+ float: left;
+}
+
+.order .b .r {
+ float: right;
+}
+
+.order .b .btn {
+ margin-top: 19rpx;
+ height: 64.5rpx;
+ line-height: 64.5rpx;
+ text-align: center;
+ padding: 0 20rpx;
+ border-radius: 5rpx;
+ font-size: 28rpx;
+ color: #fff;
+ background: #a78845;
+}
diff --git a/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue b/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue
new file mode 100644
index 0000000000000000000000000000000000000000..edf02a23d3828dbba1706482b952f8478138500b
--- /dev/null
+++ b/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue
@@ -0,0 +1,131 @@
+
+
+
+
+ 发起的团购
+
+
+ 参加的团购
+
+
+
+
+ 尚未参加任何团购
+
+
+
+
+
+
+ 开团中
+ 开团成功
+ 开团失败
+ {{ item.creator }}发起
+
+
+
+ 订单编号:{{ item.orderSn }}
+ {{ item.orderStatusText }}
+
+
+
+ 团购立减:¥{{ item.rules.discount }}
+ 参与时间:{{ item.groupon.addTime }}
+
+
+
+ 团购要求:{{ item.rules.discountMember }}人
+ 当前参团:{{ item.joinerCount }}人
+
+
+
+
+
+
+
+
+ {{ gitem.goodsName }}
+ 共{{ gitem.number }}件商品
+
+
+
+
+
+
+ 实付:¥{{ item.actualPrice }}
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/help/help.css b/litemall-wx_uni/pages/help/help.css
new file mode 100644
index 0000000000000000000000000000000000000000..4087c9b1d22f3813df10053785431f4a97ec92d9
--- /dev/null
+++ b/litemall-wx_uni/pages/help/help.css
@@ -0,0 +1,67 @@
+.common-problem {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 0rpx 30rpx;
+ background: #fff;
+}
+
+.item {
+ height: auto;
+ overflow: hidden;
+ padding-bottom: 25rpx;
+}
+
+.question-box .spot {
+ float: left;
+ display: block;
+ height: 10rpx;
+ width: 10rpx;
+ background: #b4282d;
+ border-radius: 50%;
+ margin-top: 11rpx;
+}
+
+.question-box .question {
+ float: left;
+ line-height: 30rpx;
+ padding-left: 8rpx;
+ display: block;
+ font-size: 26rpx;
+ padding-bottom: 15rpx;
+ color: #303030;
+ width: 680rpx;
+}
+
+.answer {
+ line-height: 36rpx;
+ padding-left: 16rpx;
+ font-size: 26rpx;
+ color: #787878;
+ display: block;
+}
+
+.page {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+
+.page view {
+ height: 108rpx;
+ width: 50%;
+ float: left;
+ font-size: 29rpx;
+ color: #333;
+ text-align: center;
+ line-height: 108rpx;
+}
+
+.page .prev {
+ border-right: 1px solid #d9d9d9;
+}
+
+.page .disabled {
+ color: #ccc;
+}
diff --git a/litemall-wx_uni/pages/help/help.vue b/litemall-wx_uni/pages/help/help.vue
new file mode 100644
index 0000000000000000000000000000000000000000..d06d8be968f66a788d33d86112716d82d07f552c
--- /dev/null
+++ b/litemall-wx_uni/pages/help/help.vue
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+ {{ item.question }}
+
+
+
+ {{ item.answer }}
+
+
+
+
+
+ 上一页
+ 下一页
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/hotGoods/hotGoods.css b/litemall-wx_uni/pages/hotGoods/hotGoods.css
new file mode 100644
index 0000000000000000000000000000000000000000..9b64961a73764daf13ff973d4cff453906fadc00
--- /dev/null
+++ b/litemall-wx_uni/pages/hotGoods/hotGoods.css
@@ -0,0 +1,164 @@
+page {
+ background: #f4f4f4;
+}
+
+.brand-info .name {
+ width: 100%;
+ height: 278rpx;
+ position: relative;
+}
+
+.brand-info .img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 278rpx;
+}
+
+.brand-info .info-box {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 278rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.brand-info .info {
+ display: block;
+}
+
+.brand-info .txt {
+ display: block;
+ height: 40rpx;
+ font-size: 37.5rpx;
+ color: #fff;
+}
+
+.brand-info .line {
+ margin: 0 auto;
+ margin-top: 16rpx;
+ display: block;
+ height: 2rpx;
+ width: 145rpx;
+ background: #fff;
+}
+
+.sort {
+ position: relative;
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+}
+
+.sort-box {
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+ overflow: hidden;
+ padding: 0 30rpx;
+ display: flex;
+ align-items: center;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.sort-box .item {
+ height: 78rpx;
+ line-height: 78rpx;
+ text-align: center;
+ flex: 1;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.sort-box .item .txt {
+ color: #333;
+}
+
+.sort-box .item.active .txt {
+ color: #b4282d;
+}
+
+.sort-box .item .van-icon {
+ margin-left: 6rpx;
+}
+
+.sort-box-category {
+ background: #fff;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 40rpx 40rpx 0 0;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.sort-box-category .item {
+ height: 54rpx;
+ line-height: 54rpx;
+ text-align: center;
+ float: left;
+ padding: 0 16rpx;
+ margin: 0 0 40rpx 40rpx;
+ border: 1px solid #666;
+ color: #333;
+ font-size: 24rpx;
+}
+
+.sort-box-category .item.active {
+ color: #b4282d;
+ border: 1px solid #b4282d;
+}
+
+.cate-item .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ border-top: 1rpx solid #f4f4f4;
+ margin-top: 20rpx;
+}
+
+.cate-item .b .item {
+ float: left;
+ background: #fff;
+ width: 375rpx;
+ padding-bottom: 33.333rpx;
+ border-bottom: 1rpx solid #f4f4f4;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+}
+
+.cate-item .b .item-b {
+ border-right: 1rpx solid #f4f4f4;
+}
+
+.cate-item .item .img {
+ margin-top: 10rpx;
+ width: 302rpx;
+ height: 302rpx;
+}
+
+.cate-item .item .name {
+ display: block;
+ width: 365.625rpx;
+ height: 35rpx;
+ padding: 0 20rpx;
+ overflow: hidden;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.cate-item .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #b4282d;
+}
diff --git a/litemall-wx_uni/pages/hotGoods/hotGoods.vue b/litemall-wx_uni/pages/hotGoods/hotGoods.vue
new file mode 100644
index 0000000000000000000000000000000000000000..f53e5727c88116c71b2f098e41c3b4356d113437
--- /dev/null
+++ b/litemall-wx_uni/pages/hotGoods/hotGoods.vue
@@ -0,0 +1,186 @@
+
+
+
+
+
+
+
+ {{ bannerInfo.name }}
+
+
+
+
+
+
+
+
+ 综合
+
+
+ 价格
+
+
+
+
+ 分类
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+ {{ iitem.name }}
+ ¥{{ iitem.retailPrice }}
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/index/index.css b/litemall-wx_uni/pages/index/index.css
new file mode 100644
index 0000000000000000000000000000000000000000..b3b414c140887358bfa4a365597184add0100d6a
--- /dev/null
+++ b/litemall-wx_uni/pages/index/index.css
@@ -0,0 +1,536 @@
+.banner {
+ width: 750rpx;
+ height: 417rpx;
+}
+
+.banner image {
+ width: 100%;
+ height: 417rpx;
+}
+
+.m-menu {
+ background: #fff;
+ display: flex;
+ align-items: center;
+ flex-wrap: wrap;
+ padding-bottom: 0rpx;
+ padding-top: 25rpx;
+}
+
+.m-menu .item {
+ width: 150rpx;
+ height: 126rpx;
+}
+
+.m-menu image {
+ display: block;
+ width: 58rpx;
+ height: 58rpx;
+ margin: 0 auto;
+ margin-bottom: 12rpx;
+}
+
+.m-menu text {
+ display: block;
+ font-size: 24rpx;
+ text-align: center;
+ margin: 0 auto;
+ line-height: 1;
+ color: #333;
+}
+
+.a-section {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+ color: #333;
+ margin-top: 20rpx;
+}
+
+.a-section .h {
+ display: flex;
+ flex-flow: row nowrap;
+ align-items: center;
+ justify-content: center;
+ height: 130rpx;
+}
+
+.a-section .h .txt {
+ padding-right: 30rpx;
+ background-size: 16.656rpx 27rpx;
+ display: inline-block;
+ height: 36rpx;
+ font-size: 33rpx;
+ line-height: 36rpx;
+}
+
+.a-brand .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ position: relative;
+}
+
+.a-brand .wrap {
+ position: relative;
+}
+
+.a-brand .img {
+ position: absolute;
+ left: 0;
+ top: 0;
+}
+
+.a-brand .mt {
+ position: absolute;
+ z-index: 2;
+ padding: 27rpx 31rpx;
+ left: 0;
+ top: 0;
+}
+
+.a-brand .mt .brand {
+ display: block;
+ font-size: 33rpx;
+ height: 43rpx;
+ color: #fff;
+}
+
+.a-brand .mt .price,
+.a-brand .mt .unit {
+ font-size: 25rpx;
+ color: #fff;
+}
+
+.a-brand .item-1 {
+ float: left;
+ width: 375rpx;
+ height: 252rpx;
+ overflow: hidden;
+ border-top: 1rpx solid #fff;
+ margin-left: 1rpx;
+}
+
+.a-brand .item-1:nth-child(2n + 1) {
+ margin-left: 0;
+ width: 374rpx;
+}
+
+.a-brand .item-1 .img {
+ width: 375rpx;
+ height: 253rpx;
+}
+
+.a-coupon {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.a-coupon .b .item {
+ position: relative;
+ height: 200rpx;
+ width: 700rpx;
+ background: linear-gradient(to right, #cfa568, #e3bf79);
+ margin-bottom: 10rpx;
+ margin-left: 30rpx;
+ margin-right: 30rpx;
+ padding-top: 30rpx;
+}
+
+.a-coupon .b .tag {
+ height: 32rpx;
+ background: #a48143;
+ padding-left: 16rpx;
+ padding-right: 16rpx;
+ position: absolute;
+ left: 20rpx;
+ color: #fff;
+ top: 20rpx;
+ font-size: 20rpx;
+ text-align: center;
+ line-height: 32rpx;
+}
+
+.a-coupon .b .content {
+ margin-top: 24rpx;
+ margin-left: 40rpx;
+ display: flex;
+ margin-right: 40rpx;
+ flex-direction: row;
+}
+
+.a-coupon .b .content .left {
+ flex: 1;
+}
+
+.a-coupon .b .discount {
+ font-size: 50rpx;
+ color: #b4282d;
+}
+
+.a-coupon .b .min {
+ color: #fff;
+}
+
+.a-coupon .b .content .right {
+ width: 400rpx;
+}
+
+.a-coupon .b .name {
+ font-size: 44rpx;
+ color: #fff;
+ margin-bottom: 14rpx;
+}
+
+.a-coupon .b .desc {
+ font-size: 24rpx;
+ color: #fff;
+}
+
+.a-coupon .b .time {
+ font-size: 24rpx;
+ color: #fff;
+ line-height: 30rpx;
+}
+
+.a-groupon {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.a-groupon .b .item {
+ border-top: 1px solid #d9d9d9;
+ margin: 0 20rpx;
+ height: 244rpx;
+ width: 710rpx;
+}
+
+.a-groupon .b .img {
+ margin-top: 12rpx;
+ margin-right: 12rpx;
+ float: left;
+ width: 220rpx;
+ height: 220rpx;
+}
+
+.a-groupon .b .right {
+ float: left;
+ height: 244rpx;
+ width: 476rpx;
+ display: flex;
+ flex-flow: row nowrap;
+}
+
+.a-groupon .b .text {
+ display: flex;
+ flex-wrap: nowrap;
+ flex-direction: column;
+ justify-content: center;
+ overflow: hidden;
+ height: 244rpx;
+ width: 476rpx;
+}
+
+.a-groupon .b .name {
+ float: left;
+ display: block;
+ color: #333;
+ line-height: 50rpx;
+ font-size: 30rpx;
+}
+
+.a-groupon .b .desc {
+ width: 476rpx;
+ display: block;
+ color: #999;
+ line-height: 50rpx;
+ font-size: 25rpx;
+}
+
+.a-groupon .b .price {
+ width: 476rpx;
+ display: flex;
+ color: #ab956d;
+ line-height: 50rpx;
+ font-size: 33rpx;
+}
+
+.a-groupon .b .counterPrice {
+ text-decoration: line-through;
+ font-size: 28rpx;
+ color: #999;
+}
+
+.a-groupon .b .retailPrice {
+ margin-left: 30rpx;
+ font-size: 28rpx;
+ color: #a78845;
+}
+
+.a-new .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 0 31rpx 45rpx 31rpx;
+}
+
+.a-new .b .item {
+ float: left;
+ width: 302rpx;
+ margin-top: 10rpx;
+ margin-left: 21rpx;
+ margin-right: 21rpx;
+}
+
+.a-new .b .item-b {
+ margin-left: 42rpx;
+}
+
+.a-new .b .img {
+ width: 302rpx;
+ height: 302rpx;
+}
+
+.a-new .b .name {
+ text-align: center;
+ display: block;
+ width: 302rpx;
+ height: 35rpx;
+ margin-bottom: 14rpx;
+ overflow: hidden;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.a-new .b .price {
+ display: block;
+ text-align: center;
+ line-height: 30rpx;
+ font-size: 30rpx;
+ color: #ab956d;
+}
+
+.a-popular {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.a-popular .b .item {
+ border-top: 1px solid #d9d9d9;
+ margin: 0 20rpx;
+ height: 264rpx;
+ width: 710rpx;
+}
+
+.a-popular .b .img {
+ margin-top: 12rpx;
+ margin-right: 12rpx;
+ float: left;
+ width: 240rpx;
+ height: 240rpx;
+}
+
+.a-popular .b .right {
+ float: left;
+ height: 264rpx;
+ width: 456rpx;
+ display: flex;
+ flex-flow: row nowrap;
+}
+
+.a-popular .b .text {
+ display: flex;
+ flex-wrap: nowrap;
+ flex-direction: column;
+ justify-content: center;
+ overflow: hidden;
+ height: 264rpx;
+ width: 456rpx;
+}
+
+.a-popular .b .name {
+ width: 456rpx;
+ display: block;
+ color: #333;
+ line-height: 50rpx;
+ font-size: 30rpx;
+}
+
+.a-popular .b .desc {
+ width: 456rpx;
+ display: block;
+ color: #999;
+ line-height: 50rpx;
+ font-size: 25rpx;
+}
+
+.a-popular .b .price {
+ width: 456rpx;
+ display: block;
+ color: #ab956d;
+ line-height: 50rpx;
+ font-size: 33rpx;
+}
+
+.a-topic .b {
+ height: 533rpx;
+ width: 750rpx;
+ padding: 0 0 48rpx 0;
+}
+
+.a-topic .b .list {
+ height: 533rpx;
+ width: 750rpx;
+ white-space: nowrap;
+}
+
+.a-topic .b .item {
+ display: inline-block;
+ height: 533rpx;
+ width: 680.5rpx;
+ margin-left: 30rpx;
+ overflow: hidden;
+}
+
+.a-topic .b .item:last-child {
+ margin-right: 30rpx;
+}
+
+.a-topic .b .img {
+ height: 387.5rpx;
+ width: 680.5rpx;
+ margin-bottom: 30rpx;
+}
+
+.a-topic .b .np {
+ height: 35rpx;
+ margin-bottom: 13.5rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.a-topic .b .np .price {
+ margin-left: 20.8rpx;
+ color: #ab956d;
+}
+
+.a-topic .b .desc {
+ display: block;
+ height: 30rpx;
+ color: #999;
+ font-size: 24rpx;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+.good-grid {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.good-grid .h {
+ display: flex;
+ flex-flow: row nowrap;
+ align-items: center;
+ justify-content: center;
+ height: 130rpx;
+ font-size: 33rpx;
+ color: #333;
+}
+
+.good-grid .b {
+ width: 750rpx;
+ padding: 0 6.25rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.good-grid .b .item {
+ float: left;
+ background: #fff;
+ width: 365rpx;
+ margin-bottom: 6.25rpx;
+ height: 452rpx;
+ overflow: hidden;
+ text-align: center;
+}
+
+.good-grid .b .item .a {
+ height: 452rpx;
+ width: 100%;
+}
+
+.good-grid .b .item-b {
+ margin-left: 6.25rpx;
+}
+
+.good-grid .item .img {
+ margin-top: 20rpx;
+ width: 302rpx;
+ height: 302rpx;
+}
+
+.good-grid .item .name {
+ display: block;
+ width: 365.625rpx;
+ padding: 0 20rpx;
+ overflow: hidden;
+ height: 35rpx;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.good-grid .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #ab956d;
+}
+
+.good-grid .t {
+ height: 100rpx;
+ background: #fff;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.search {
+ height: 88rpx;
+ width: 100%;
+ padding: 0 30rpx;
+ background: #fff;
+ display: flex;
+ align-items: center;
+}
+
+.search .van-icon-search {
+ line-height: 59rpx;
+}
+
+.search .input {
+ width: 690rpx;
+ height: 56rpx;
+ background: #ededed;
+ border-radius: 8rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.search .txt {
+ height: 42rpx;
+ line-height: 42rpx;
+ color: #666;
+ padding-left: 10rpx;
+ font-size: 30rpx;
+}
diff --git a/litemall-wx_uni/pages/index/index.vue b/litemall-wx_uni/pages/index/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..2bc6db113ea341ed642996b22351f9c590b4fd4a
--- /dev/null
+++ b/litemall-wx_uni/pages/index/index.vue
@@ -0,0 +1,365 @@
+
+
+
+
+
+
+ 商品搜索, 共{{ goodsCount }}款好物
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+ 优惠券
+
+
+
+
+
+
+ {{ item.tag }}
+
+
+
+ {{ item.discount }}元
+ 满{{ item.min }}元使用
+
+
+ {{ item.name }}
+ {{ item.desc }}
+ 有效期:{{ item.days }}天
+ 有效期:{{ item.startTime }} - {{ item.endTime }}
+
+
+
+
+
+
+
+
+
+
+
+ 团购专区
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ {{ item.grouponMember }}人成团
+
+
+ 有效期至 {{ item.expireTime }}
+
+ {{ item.brief }}
+
+ 现价:¥{{ item.retailPrice }}
+ 团购价:¥{{ item.grouponPrice }}
+
+
+
+
+
+
+
+
+
+
+
+ 品牌制造商直供
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ {{ item.floorPrice }}
+ 元起
+
+
+
+
+
+
+
+
+
+
+ 周一周四 · 新品首发
+
+
+
+
+
+
+
+ {{ item.name }}
+ ¥{{ item.retailPrice }}
+
+
+
+
+
+
+
+
+
+ 人气推荐
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ {{ item.brief }}
+ ¥{{ item.retailPrice }}
+
+
+
+
+
+
+
+
+
+
+
+ 专题精选
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+ ¥{{ item.price }}元起
+
+ {{ item.subtitle }}
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+ {{ iitem.name }}
+ ¥{{ iitem.retailPrice }}
+
+
+
+
+
+
+ {{ '更多' + item.name + '好物 >' }}
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/newGoods/newGoods.css b/litemall-wx_uni/pages/newGoods/newGoods.css
new file mode 100644
index 0000000000000000000000000000000000000000..5d2eeea6c34ccd92f424fdbd4536c111924b0617
--- /dev/null
+++ b/litemall-wx_uni/pages/newGoods/newGoods.css
@@ -0,0 +1,163 @@
+page {
+ background: #f4f4f4;
+}
+
+.brand-info .name {
+ width: 100%;
+ height: 278rpx;
+ position: relative;
+}
+
+.brand-info .img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 278rpx;
+}
+
+.brand-info .info-box {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 278rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.brand-info .info {
+ display: block;
+}
+
+.brand-info .txt {
+ display: block;
+ height: 40rpx;
+ font-size: 37.5rpx;
+ color: #fff;
+}
+
+.brand-info .line {
+ margin: 0 auto;
+ margin-top: 16rpx;
+ display: block;
+ height: 2rpx;
+ width: 145rpx;
+ background: #fff;
+}
+
+.sort {
+ position: relative;
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+}
+
+.sort-box {
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+ overflow: hidden;
+ padding: 0 30rpx;
+ display: flex;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.sort-box .item {
+ height: 78rpx;
+ line-height: 78rpx;
+ text-align: center;
+ flex: 1;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.sort-box .item .txt {
+ color: #333;
+}
+
+.sort-box .item.active .txt {
+ color: #b4282d;
+}
+
+.sort-box .item .van-icon {
+ margin-left: 6rpx;
+}
+
+.sort-box-category {
+ background: #fff;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 40rpx 40rpx 0 0;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.sort-box-category .item {
+ height: 54rpx;
+ line-height: 54rpx;
+ text-align: center;
+ float: left;
+ padding: 0 16rpx;
+ margin: 0 0 40rpx 40rpx;
+ border: 1px solid #666;
+ color: #333;
+ font-size: 24rpx;
+}
+
+.sort-box-category .item.active {
+ color: #b4282d;
+ border: 1px solid #b4282d;
+}
+
+.cate-item .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ border-top: 1rpx solid #f4f4f4;
+ margin-top: 20rpx;
+}
+
+.cate-item .b .item {
+ float: left;
+ background: #fff;
+ width: 375rpx;
+ padding-bottom: 33.333rpx;
+ border-bottom: 1rpx solid #f4f4f4;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+}
+
+.cate-item .b .item-b {
+ border-right: 1rpx solid #f4f4f4;
+}
+
+.cate-item .item .img {
+ margin-top: 10rpx;
+ width: 302rpx;
+ height: 302rpx;
+}
+
+.cate-item .item .name {
+ display: block;
+ width: 365.625rpx;
+ height: 35rpx;
+ padding: 0 20rpx;
+ overflow: hidden;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.cate-item .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #b4282d;
+}
diff --git a/litemall-wx_uni/pages/newGoods/newGoods.vue b/litemall-wx_uni/pages/newGoods/newGoods.vue
new file mode 100644
index 0000000000000000000000000000000000000000..211b04065042d4b35e1d03a62ce48f48da1e036f
--- /dev/null
+++ b/litemall-wx_uni/pages/newGoods/newGoods.vue
@@ -0,0 +1,173 @@
+
+
+
+
+
+
+
+ {{ bannerInfo.name }}
+
+
+
+
+
+
+
+
+ 综合
+
+
+ 价格
+
+
+
+
+ 分类
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+ {{ iitem.name }}
+ ¥{{ iitem.retailPrice }}
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/payResult/payResult.css b/litemall-wx_uni/pages/payResult/payResult.css
new file mode 100644
index 0000000000000000000000000000000000000000..14d0f6d769031cc52a862ccfe69a9fa9ac30f82b
--- /dev/null
+++ b/litemall-wx_uni/pages/payResult/payResult.css
@@ -0,0 +1,59 @@
+page {
+ min-height: 100%;
+ width: 100%;
+ background: #fff;
+}
+
+.container {
+ height: 100%;
+ background: #fff;
+}
+
+.pay-result {
+ background: #fff;
+}
+
+.pay-result .msg {
+ text-align: center;
+ margin: 100rpx auto;
+ color: #2bab25;
+ font-size: 36rpx;
+}
+
+.pay-result .btns {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.pay-result .btn {
+ text-align: center;
+ height: 80rpx;
+ margin: 0 20rpx;
+ width: 200rpx;
+ line-height: 78rpx;
+ border: 1px solid #868686;
+ color: #000;
+ border-radius: 5rpx;
+}
+
+.pay-result .error .msg {
+ color: #b4282d;
+ margin-bottom: 60rpx;
+}
+
+.pay-result .error .tips {
+ color: #7f7f7f;
+ margin-bottom: 70rpx;
+}
+
+.pay-result .error .tips .p {
+ font-size: 24rpx;
+ line-height: 42rpx;
+ text-align: center;
+}
+
+.pay-result .error .tips .p {
+ line-height: 42rpx;
+ text-align: center;
+}
diff --git a/litemall-wx_uni/pages/payResult/payResult.vue b/litemall-wx_uni/pages/payResult/payResult.vue
new file mode 100644
index 0000000000000000000000000000000000000000..22f865c1fdfe13731739c62d788f7876b9bef041
--- /dev/null
+++ b/litemall-wx_uni/pages/payResult/payResult.vue
@@ -0,0 +1,101 @@
+
+
+
+
+ 付款成功
+
+ 查看订单
+ 继续逛
+
+
+
+ 付款失败
+
+
+ 请在
+ 半小时
+ 内完成付款
+
+ 否则订单将会被系统取消
+
+
+ 查看订单
+ 重新付款
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/search/search.css b/litemall-wx_uni/pages/search/search.css
new file mode 100644
index 0000000000000000000000000000000000000000..98e235d18a0a460e6ae213af559f7bf7771e301e
--- /dev/null
+++ b/litemall-wx_uni/pages/search/search.css
@@ -0,0 +1,318 @@
+page {
+ min-height: 100%;
+ background-color: #f4f4f4;
+}
+
+.container {
+ min-height: 100%;
+ background-color: #f4f4f4;
+}
+
+.search-header {
+ position: fixed;
+ top: 0;
+ width: 750rpx;
+ height: 91rpx;
+ display: flex;
+ background: #fff;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+ padding: 0 31.25rpx;
+ font-size: 29rpx;
+ color: #333;
+}
+
+.search-header .van-icon-search {
+ line-height: 59rpx;
+}
+
+.search-header .input-box {
+ position: relative;
+ margin-top: 16rpx;
+ float: left;
+ width: 0;
+ flex: 1;
+ height: 59rpx;
+ line-height: 59rpx;
+ padding: 0 20rpx;
+ background: #f4f4f4;
+}
+
+.search-header .icon {
+ position: absolute;
+ top: 14rpx;
+ left: 20rpx;
+ width: 31rpx;
+ height: 31rpx;
+}
+
+.search-header .del {
+ position: absolute;
+ top: 3rpx;
+ right: 10rpx;
+ width: 53rpx;
+ height: 53rpx;
+ z-index: 10;
+}
+
+.search-header .keywrod {
+ position: absolute;
+ top: 0;
+ left: 40rpx;
+ width: 506rpx;
+ height: 59rpx;
+ padding-left: 30rpx;
+}
+
+.search-header .right {
+ margin-top: 24rpx;
+ margin-left: 31rpx;
+ margin-right: 6rpx;
+ width: 58rpx;
+ height: 43rpx;
+ line-height: 43rpx;
+ float: right;
+}
+
+.no-search {
+ height: auto;
+ overflow: hidden;
+ margin-top: 91rpx;
+}
+
+.search-keywords {
+ background: #fff;
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ margin-bottom: 20rpx;
+}
+
+.search-keywords .h {
+ padding: 0 31.25rpx;
+ height: 93rpx;
+ line-height: 93rpx;
+ width: 100%;
+ color: #999;
+ font-size: 29rpx;
+}
+
+.search-keywords .title {
+ display: block;
+ width: 120rpx;
+ float: left;
+}
+
+.search-keywords .icon {
+ margin-top: 19rpx;
+ float: right;
+ display: block;
+ margin-left: 511rpx;
+ height: 55rpx;
+ width: 55rpx;
+}
+
+.search-keywords .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding-left: 31.25rpx;
+}
+
+.search-keywords .item {
+ display: inline-block;
+ width: auto;
+ height: 48rpx;
+ line-height: 48rpx;
+ padding: 0 15rpx;
+ border: 1px solid #999;
+ margin: 0 31.25rpx 31.25rpx 0;
+ font-size: 24rpx;
+ color: #333;
+}
+
+.search-keywords .item.active {
+ color: #b4282d;
+ border: 1px solid #b4282d;
+}
+
+.shelper-list {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+ padding: 0 31.25rpx;
+}
+
+.shelper-list .item {
+ height: 93rpx;
+ width: 687.5rpx;
+ line-height: 93rpx;
+ font-size: 24rpx;
+ color: #333;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.sort {
+ position: fixed;
+ top: 91rpx;
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+}
+
+.sort-box {
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+ overflow: hidden;
+ padding: 0 30rpx;
+ display: flex;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.sort-box .item {
+ height: 78rpx;
+ line-height: 78rpx;
+ text-align: center;
+ flex: 1;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.sort-box .item .txt {
+ color: #333;
+}
+
+.sort-box .item.active .txt {
+ color: #b4282d;
+}
+
+.sort-box .item .van-icon {
+ margin-left: 6rpx;
+}
+
+.sort-box-category {
+ background: #fff;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 40rpx 40rpx 0 0;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.sort-box-category .item {
+ height: 54rpx;
+ line-height: 54rpx;
+ text-align: center;
+ float: left;
+ padding: 0 16rpx;
+ margin: 0 0 40rpx 40rpx;
+ border: 1px solid #666;
+ color: #333;
+ font-size: 24rpx;
+}
+
+.sort-box-category .item.active {
+ color: #b4282d;
+ border: 1px solid #b4282d;
+}
+
+.cate-item {
+ margin-top: 175rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.cate-item .h {
+ height: 145rpx;
+ width: 750rpx;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+
+.cate-item .h .name {
+ display: block;
+ height: 35rpx;
+ margin-bottom: 18rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.cate-item .h .desc {
+ display: block;
+ height: 24rpx;
+ font-size: 24rpx;
+ color: #999;
+}
+
+.cate-item .b {
+ width: 750rpx;
+ padding: 0 6.25rpx;
+ height: auto;
+ overflow: hidden;
+}
+
+.cate-item .list-filter {
+ height: 80rpx;
+ width: 100%;
+ background: #fff;
+ margin-bottom: 6.25rpx;
+}
+
+.cate-item .b .item {
+ float: left;
+ background: #fff;
+ width: 365rpx;
+ margin-bottom: 6.25rpx;
+ padding-bottom: 33.333rpx;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+}
+
+.cate-item .b .item-b {
+ margin-left: 6.25rpx;
+}
+
+.cate-item .item .img {
+ width: 302rpx;
+ height: 302rpx;
+}
+
+.cate-item .item .name {
+ display: block;
+ width: 365.625rpx;
+ height: 35rpx;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ overflow: hidden;
+ padding: 0 20rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.cate-item .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+
+.search-result-empty {
+ width: 100%;
+ height: 100%;
+ padding-top: 600rpx;
+}
+
+.search-result-empty .text {
+ display: block;
+ width: 100%;
+ height: 40rpx;
+ font-size: 28rpx;
+ text-align: center;
+ color: #999;
+}
diff --git a/litemall-wx_uni/pages/search/search.vue b/litemall-wx_uni/pages/search/search.vue
new file mode 100644
index 0000000000000000000000000000000000000000..5267d8303569b41b6cd6e6e18de6e8381f636df2
--- /dev/null
+++ b/litemall-wx_uni/pages/search/search.vue
@@ -0,0 +1,342 @@
+
+
+
+
+
+
+
+
+
+ 取消
+
+
+
+
+ 历史记录
+
+
+
+
+ {{ item.keyword }}
+
+
+
+
+
+ 热门搜索
+
+
+
+ {{ item.keyword }}
+
+
+
+
+ {{ item }}
+
+
+
+
+
+
+
+ 综合
+
+
+ 价格
+
+
+
+
+ 分类
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+ {{ iitem.name }}
+
+ ¥{{ iitem.retailPrice }}
+
+
+
+
+
+
+ 您寻找的商品还未上架
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/topic/topic.css b/litemall-wx_uni/pages/topic/topic.css
new file mode 100644
index 0000000000000000000000000000000000000000..2a27b0465121c1d66d810880864837a3b82e4c22
--- /dev/null
+++ b/litemall-wx_uni/pages/topic/topic.css
@@ -0,0 +1,94 @@
+page,
+.container {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+ background: #f4f4f4;
+}
+.topic-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+ background: #f4f4f4;
+}
+
+.topic-list .item {
+ width: 100%;
+ height: 625rpx;
+ overflow: hidden;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+
+.topic-list .img {
+ width: 100%;
+ height: 415rpx;
+}
+
+.topic-list .info {
+ width: 100%;
+ height: 210rpx;
+ overflow: hidden;
+}
+
+.topic-list .title {
+ display: block;
+ text-align: center;
+ width: 100%;
+ height: 33rpx;
+ line-height: 35rpx;
+ color: #333;
+ overflow: hidden;
+ font-size: 35rpx;
+ margin-top: 30rpx;
+}
+
+.topic-list .desc {
+ display: block;
+ text-align: center;
+ position: relative;
+ width: auto;
+ height: 24rpx;
+ line-height: 24rpx;
+ overflow: hidden;
+ color: #999;
+ font-size: 24rpx;
+ margin-top: 16rpx;
+ margin-bottom: 30rpx;
+}
+
+.topic-list .price {
+ display: block;
+ text-align: center;
+ width: 100%;
+ height: 27rpx;
+ line-height: 27rpx;
+ overflow: hidden;
+ color: #b4282d;
+ font-size: 27rpx;
+}
+
+.page {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+
+.page view {
+ height: 108rpx;
+ width: 50%;
+ float: left;
+ font-size: 29rpx;
+ color: #333;
+ text-align: center;
+ line-height: 108rpx;
+}
+
+.page .prev {
+ border-right: 1px solid #d9d9d9;
+}
+
+.page .disabled {
+ color: #ccc;
+}
diff --git a/litemall-wx_uni/pages/topic/topic.vue b/litemall-wx_uni/pages/topic/topic.vue
new file mode 100644
index 0000000000000000000000000000000000000000..ec90834b2ca018bef5f89375817934eaf7854c3d
--- /dev/null
+++ b/litemall-wx_uni/pages/topic/topic.vue
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+ {{ item.title }}
+ {{ item.subtitle }}
+ {{ item.price }}元起
+
+
+
+ 上一页
+ 下一页
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/topicComment/topicComment.css b/litemall-wx_uni/pages/topicComment/topicComment.css
new file mode 100644
index 0000000000000000000000000000000000000000..06e0d38765ae4e9ae57116584588f726a72c35cb
--- /dev/null
+++ b/litemall-wx_uni/pages/topicComment/topicComment.css
@@ -0,0 +1,143 @@
+.comments {
+ width: 100%;
+ height: auto;
+ padding-left: 30rpx;
+ background: #fff;
+ margin: 20rpx 0;
+}
+
+.comments .h {
+ position: fixed;
+ left: 0;
+ top: 0;
+ z-index: 1000;
+ width: 100%;
+ display: flex;
+ background: #fff;
+ height: 84rpx;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+}
+
+.comments .h .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 50%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+
+.comments .h .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #333;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+
+.comments .h .item.active .txt {
+ color: #ab2b2b;
+ border-bottom: 4rpx solid #ab2b2b;
+}
+
+.comments .b {
+ margin-top: 85rpx;
+ height: auto;
+ width: 720rpx;
+}
+
+.comments .b.no-h {
+ margin-top: 0;
+}
+
+.comments .item {
+ height: auto;
+ width: 720rpx;
+ overflow: hidden;
+ border-bottom: 1px solid #d9d9d9;
+ padding-bottom: 25rpx;
+}
+
+.comments .info {
+ height: 127rpx;
+ width: 100%;
+ padding: 33rpx 0 27rpx 0;
+}
+
+.comments .user {
+ float: left;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ font-size: 0;
+}
+
+.comments .user image {
+ float: left;
+ width: 67rpx;
+ height: 67rpx;
+ margin-right: 17rpx;
+ border-radius: 50%;
+}
+
+.comments .user text {
+ display: inline-block;
+ width: auto;
+ height: 66rpx;
+ overflow: hidden;
+ font-size: 29rpx;
+ line-height: 66rpx;
+}
+
+.comments .time {
+ display: block;
+ float: right;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ color: #7f7f7f;
+ font-size: 25rpx;
+ margin-right: 30rpx;
+}
+
+.comments .comment {
+ width: 720rpx;
+ padding-right: 30rpx;
+ line-height: 45.8rpx;
+ font-size: 29rpx;
+ margin-bottom: 16rpx;
+}
+
+.comments .imgs {
+ width: 720rpx;
+ height: 150rpx;
+ margin-bottom: 25rpx;
+}
+
+.comments .imgs .img {
+ height: 150rpx;
+ width: 150rpx;
+ margin-right: 28rpx;
+}
+
+.comments .customer-service {
+ width: 690rpx;
+ height: auto;
+ overflow: hidden;
+ margin-top: 23rpx;
+ background: rgba(0, 0, 0, 0.03);
+ padding: 21rpx;
+}
+
+.comments .customer-service .u {
+ font-size: 24rpx;
+ color: #333;
+ line-height: 37.5rpx;
+}
+
+.comments .customer-service .c {
+ font-size: 24rpx;
+ color: #999;
+ line-height: 37.5rpx;
+}
diff --git a/litemall-wx_uni/pages/topicComment/topicComment.vue b/litemall-wx_uni/pages/topicComment/topicComment.vue
new file mode 100644
index 0000000000000000000000000000000000000000..71e32bcbfad3e985cedde88574d8939574e3a0e9
--- /dev/null
+++ b/litemall-wx_uni/pages/topicComment/topicComment.vue
@@ -0,0 +1,175 @@
+
+
+
+
+ 全部({{ allCount }})
+
+
+ 有图({{ hasPicCount }})
+
+
+
+
+
+
+
+ {{ item.userInfo.nickName }}
+
+ {{ item.addTime }}
+
+
+ {{ item.content }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.css b/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.css
new file mode 100644
index 0000000000000000000000000000000000000000..978e121c9e68c995d098888cfcc57b8ae667b765
--- /dev/null
+++ b/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.css
@@ -0,0 +1,249 @@
+page,
+.container {
+ height: 100%;
+ background: #f4f4f4;
+}
+
+.post-comment {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 30rpx;
+ background: #fff;
+}
+
+.post-comment .goods {
+ display: flex;
+ align-items: center;
+ height: 199rpx;
+ margin-left: 31.25rpx;
+}
+
+.post-comment .goods .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+
+.post-comment .goods .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+
+.post-comment .goods .info {
+ height: 145.83rpx;
+ flex: 1;
+ padding-left: 20rpx;
+}
+
+.post-comment .goods .name {
+ margin-top: 30rpx;
+ display: block;
+ height: 44rpx;
+ line-height: 44rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.post-comment .goods .number {
+ display: block;
+ height: 37rpx;
+ line-height: 37rpx;
+ color: #666;
+ font-size: 25rpx;
+}
+
+.post-comment .goods .status {
+ width: 105rpx;
+ color: #b4282d;
+ font-size: 25rpx;
+}
+
+.post-comment .rater {
+ display: flex;
+ flex-direction: row;
+ height: 55rpx;
+}
+
+.post-comment .rater .rater-title {
+ font-size: 29rpx;
+ padding-right: 10rpx;
+}
+
+.post-comment .rater image {
+ padding-left: 5rpx;
+ height: 50rpx;
+ width: 50rpx;
+}
+
+.post-comment .rater .rater-desc {
+ font-size: 29rpx;
+ padding-left: 10rpx;
+}
+
+.post-comment .input-box {
+ height: 337.5rpx;
+ width: 690rpx;
+ position: relative;
+ background: #fff;
+}
+
+.post-comment .input-box .content {
+ position: absolute;
+ top: 0;
+ left: 0;
+ display: block;
+ background: #fff;
+ font-size: 29rpx;
+ border: 5px solid #f4f4f4;
+ height: 300rpx;
+ width: 650rpx;
+ padding: 20rpx;
+}
+
+.post-comment .input-box .count {
+ position: absolute;
+ bottom: 20rpx;
+ right: 20rpx;
+ display: block;
+ height: 30rpx;
+ width: 50rpx;
+ font-size: 29rpx;
+ color: #999;
+}
+
+.post-comment .btns {
+ height: 108rpx;
+}
+
+.post-comment .close {
+ float: left;
+ height: 108rpx;
+ line-height: 108rpx;
+ text-align: left;
+ color: #666;
+ padding: 0 30rpx;
+}
+
+.post-comment .post {
+ float: right;
+ height: 108rpx;
+ line-height: 108rpx;
+ text-align: right;
+ padding: 0 30rpx;
+}
+
+.weui-uploader {
+ margin-top: 50rpx;
+}
+
+.weui-uploader__hd {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: flex;
+ padding-bottom: 10px;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ align-items: center;
+}
+
+.weui-uploader__title {
+ -webkit-box-flex: 1;
+ -webkit-flex: 1;
+ flex: 1;
+}
+
+.weui-uploader__info {
+ color: #b2b2b2;
+}
+
+.weui-uploader__bd {
+ margin-bottom: -4px;
+ margin-right: -9px;
+ overflow: hidden;
+}
+
+.weui-uploader__file {
+ float: left;
+ margin-right: 9px;
+ margin-bottom: 9px;
+}
+
+.weui-uploader__img {
+ display: block;
+ width: 79px;
+ height: 79px;
+}
+
+.weui-uploader__file_status {
+ position: relative;
+}
+
+.weui-uploader__file_status:before {
+ content: ' ';
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ background-color: rgba(0, 0, 0, 0.5);
+}
+
+.weui-uploader__file-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ color: #fff;
+}
+
+.weui-uploader__input-box {
+ float: left;
+ position: relative;
+ margin-right: 9px;
+ margin-bottom: 9px;
+ width: 77px;
+ height: 77px;
+ border: 1px solid #d9d9d9;
+}
+
+.weui-uploader__input-box:after,
+.weui-uploader__input-box:before {
+ content: ' ';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ background-color: #d9d9d9;
+}
+
+.weui-uploader__input-box:before {
+ width: 2px;
+ height: 39.5px;
+}
+
+.weui-uploader__input-box:after {
+ width: 39.5px;
+ height: 2px;
+}
+
+.weui-uploader__input-box:active {
+ border-color: #999;
+}
+
+.weui-uploader__input-box:active:after,
+.weui-uploader__input-box:active:before {
+ background-color: #999;
+}
+
+.weui-uploader__input {
+ position: absolute;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
diff --git a/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue b/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue
new file mode 100644
index 0000000000000000000000000000000000000000..18b6d9c634399aac1f085235ae5a8fe77c3dcd89
--- /dev/null
+++ b/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue
@@ -0,0 +1,259 @@
+
+
+
+
+
+
+
+
+
+ {{ topic.title }}
+
+ {{ topic.subtitle }}
+
+
+
+ 评分
+
+
+
+
+
+ {{ starText }}
+
+
+
+ {{ 140 - content.length }}
+
+
+
+
+ 图片上传
+ {{ picUrls.length }}/{{ files.length }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 发表
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/topicDetail/topicDetail.css b/litemall-wx_uni/pages/topicDetail/topicDetail.css
new file mode 100644
index 0000000000000000000000000000000000000000..f1b1d8e65a8fcdd29adf4dd3e4f600ead88d62d2
--- /dev/null
+++ b/litemall-wx_uni/pages/topicDetail/topicDetail.css
@@ -0,0 +1,267 @@
+.content {
+ width: 100%;
+ height: auto;
+ font-size: 0;
+}
+
+.content image {
+ display: inline-block;
+ width: 100%;
+}
+
+.comments {
+ width: 100%;
+ height: auto;
+ padding-left: 30rpx;
+ background: #fff;
+ margin-top: 20rpx;
+}
+
+.comments .h {
+ height: 93rpx;
+ line-height: 93rpx;
+ width: 720rpx;
+ padding-right: 30rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.comments .h .t {
+ display: block;
+ float: left;
+ width: 50%;
+ font-size: 29rpx;
+ color: #333;
+}
+
+.comments .h .i {
+ display: block;
+ float: right;
+ width: 33rpx;
+ height: 33rpx;
+}
+
+.comments .b {
+ height: auto;
+ width: 720rpx;
+}
+
+.comments .item {
+ height: auto;
+ width: 720rpx;
+ overflow: hidden;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.comments .info {
+ height: 127rpx;
+ width: 100%;
+ padding: 33rpx 0 27rpx 0;
+}
+
+.comments .user {
+ float: left;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ font-size: 0;
+}
+
+.comments .user .avatar {
+ display: block;
+ float: left;
+ width: 67rpx;
+ height: 67rpx;
+ margin-right: 17rpx;
+ border-radius: 50%;
+}
+
+.comments .user .nickname {
+ display: block;
+ width: auto;
+ float: left;
+ height: 66rpx;
+ overflow: hidden;
+ font-size: 29rpx;
+ line-height: 66rpx;
+}
+
+.comments .time {
+ display: block;
+ float: right;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ color: #7f7f7f;
+ font-size: 25rpx;
+ margin-right: 30rpx;
+}
+
+.comments .comment {
+ width: 720rpx;
+ padding-right: 30rpx;
+ line-height: 45.8rpx;
+ margin-bottom: 30rpx;
+ font-size: 29rpx;
+ color: #333;
+}
+
+.comments .load {
+ width: 720rpx;
+ height: 108rpx;
+ line-height: 108rpx;
+ text-align: center;
+ font-size: 38.5rpx;
+}
+
+.no-comments {
+ height: 297rpx;
+}
+
+.no-comments .txt {
+ height: 43rpx;
+ line-height: 43rpx;
+ display: block;
+ width: 100%;
+ text-align: center;
+ font-size: 29rpx;
+ color: #7f7f7f;
+ padding-top: 150rpx;
+}
+
+.sv-goods {
+ width: 100%;
+ height: auto;
+ padding-left: 30rpx;
+ background: #fff;
+ margin-top: 20rpx;
+}
+
+.topic-goods .h {
+ height: 93rpx;
+ line-height: 93rpx;
+ width: 720rpx;
+ padding-right: 30rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+
+.topic-goods .h .i {
+ display: block;
+ float: right;
+ width: 33rpx;
+ height: 33rpx;
+}
+
+.topic-goods .h .t {
+ display: block;
+ float: left;
+ width: 50%;
+ font-size: 29rpx;
+ color: #333;
+}
+
+.topic-goods .b .item {
+ border-top: 1px solid #d9d9d9;
+ margin: 0 20rpx;
+ height: 244rpx;
+ width: 710rpx;
+}
+
+.topic-goods .b .img {
+ margin-top: 12rpx;
+ margin-right: 12rpx;
+ float: left;
+ width: 220rpx;
+ height: 220rpx;
+}
+
+.topic-goods .b .right {
+ float: left;
+ height: 244rpx;
+ width: 476rpx;
+ display: flex;
+ flex-flow: row nowrap;
+}
+
+.topic-goods .b .text {
+ display: flex;
+ flex-wrap: nowrap;
+ flex-direction: column;
+ justify-content: center;
+ overflow: hidden;
+ height: 244rpx;
+ width: 476rpx;
+}
+
+.topic-goods .b .name {
+ float: left;
+ width: 330rpx;
+ display: block;
+ color: #333;
+ line-height: 50rpx;
+ font-size: 30rpx;
+}
+
+.topic-goods .b .desc {
+ width: 476rpx;
+ display: block;
+ color: #999;
+ line-height: 50rpx;
+ font-size: 25rpx;
+}
+
+.topic-goods .b .price {
+ width: 476rpx;
+ display: flex;
+ color: #b4282d;
+ line-height: 50rpx;
+ font-size: 33rpx;
+}
+
+.rec-box {
+ width: 690rpx;
+ height: auto;
+ margin: 0 30rpx;
+}
+
+.rec-box .h {
+ position: relative;
+ width: 690rpx;
+ height: 96rpx;
+ /*border-bottom: 1px solid #d0d0d0;*/
+ margin-bottom: 32rpx;
+}
+
+.rec-box .h .txt {
+ display: inline-block;
+ position: absolute;
+ background: #f4f4f4;
+ top: 59rpx;
+ left: 200rpx;
+ width: 290rpx;
+ height: 45rpx;
+ line-height: 45rpx;
+ font-size: 30rpx;
+ color: #999;
+ text-align: center;
+}
+
+.rec-box .b .item {
+ width: 690rpx;
+ height: 397rpx;
+ padding: 24rpx 24rpx 30rpx 24rpx;
+ background: #fff;
+ margin-bottom: 30rpx;
+}
+
+.rec-box .b .item .img {
+ height: 278rpx;
+ width: 642rpx;
+}
+
+.rec-box .b .item .title {
+ display: block;
+ margin-top: 30rpx;
+ height: 30rpx;
+ width: 642rpx;
+ font-size: 28rpx;
+}
diff --git a/litemall-wx_uni/pages/topicDetail/topicDetail.vue b/litemall-wx_uni/pages/topicDetail/topicDetail.vue
new file mode 100644
index 0000000000000000000000000000000000000000..6cbd1a357a821c10861c0e74e5c1299f78bd36d2
--- /dev/null
+++ b/litemall-wx_uni/pages/topicDetail/topicDetail.vue
@@ -0,0 +1,204 @@
+
+
+
+
+
+
+
+
+
+
+ 专题商品
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ {{ item.brief }}
+ ¥{{ item.retailPrice }}
+
+
+
+
+
+
+
+
+
+ 精选留言
+
+
+
+
+
+
+
+
+ {{ item.userInfo.nickName }}
+
+ {{ item.addTime }}
+
+
+
+ {{ item.content }}
+
+
+
+
+ 查看更多
+
+
+
+ 等你来留言
+
+
+
+
+ 专题推荐
+
+
+
+
+
+ {{ item.title }}
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/address/address.css b/litemall-wx_uni/pages/ucenter/address/address.css
new file mode 100644
index 0000000000000000000000000000000000000000..e02441227a51ac0fead46eeba03569360a17719a
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/address/address.css
@@ -0,0 +1,132 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+
+.container {
+ height: 100%;
+ width: 100%;
+}
+
+.address-list {
+ padding-left: 31.25rpx;
+ background: #fff;
+ background-size: auto 10.5rpx;
+ margin-bottom: 90rpx;
+}
+
+.address-list .item {
+ height: 156.55rpx;
+ align-items: center;
+ display: flex;
+ border-bottom: 1rpx solid #dcd9d9;
+}
+
+.address-list .l {
+ width: 125rpx;
+ height: 80rpx;
+ overflow: hidden;
+}
+
+.address-list .name {
+ width: 125rpx;
+ height: 43rpx;
+ font-size: 29rpx;
+ color: #333;
+ margin-bottom: 5.2rpx;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
+}
+
+.address-list .default {
+ width: 62.5rpx;
+ height: 33rpx;
+ line-height: 28rpx;
+ text-align: center;
+ font-size: 20rpx;
+ color: #b4282d;
+ border: 1rpx solid #b4282d;
+ visibility: visible;
+}
+
+.address-list .c {
+ flex: 1;
+ height: auto;
+ overflow: hidden;
+}
+
+.address-list .mobile {
+ height: 29rpx;
+ font-size: 29rpx;
+ line-height: 29rpx;
+ overflow: hidden;
+ color: #333;
+ margin-bottom: 6.25rpx;
+}
+
+.address-list .address {
+ height: 37rpx;
+ font-size: 25rpx;
+ line-height: 37rpx;
+ overflow: hidden;
+ color: #666;
+}
+
+.address-list .r {
+ width: 52rpx;
+ height: auto;
+ overflow: hidden;
+ margin-right: 16.5rpx;
+}
+
+.address-list .del {
+ display: block;
+ width: 52rpx;
+ height: 52rpx;
+}
+
+.add-address {
+ border: none;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 90%;
+ height: 90rpx;
+ line-height: 98rpx;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ border-radius: 0;
+ padding: 0;
+ margin: 0;
+ margin-left: 5%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ font-size: 25rpx;
+ color: #f4f4f4;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+
+.empty-view {
+ height: 100%;
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+
+.empty-view .text {
+ width: auto;
+ font-size: 28rpx;
+ line-height: 35rpx;
+ color: #999;
+}
diff --git a/litemall-wx_uni/pages/ucenter/address/address.vue b/litemall-wx_uni/pages/ucenter/address/address.vue
new file mode 100644
index 0000000000000000000000000000000000000000..56d372e6ca8be887d753995645a24875f29786c3
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/address/address.vue
@@ -0,0 +1,131 @@
+
+
+
+
+
+ {{ item.name }}
+ 默认
+
+
+
+ {{ item.tel }}
+ {{ item.addressDetail }}
+
+
+
+
+
+
+
+
+ 收货地址还没有~~~
+
+ 新建
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.css b/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.css
new file mode 100644
index 0000000000000000000000000000000000000000..ec9c1b606df37b119ee7560d7efb3657f4a405d3
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.css
@@ -0,0 +1,163 @@
+page {
+ height: 100%;
+ background: #f4f4f4;
+}
+
+.add-address .add-form {
+ background: #fff;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+}
+
+.add-address .form-item {
+ height: 116rpx;
+ padding-left: 31.25rpx;
+ border-bottom: 1px solid #d9d9d9;
+ display: flex;
+ align-items: center;
+ padding-right: 31.25rpx;
+}
+
+.add-address .input {
+ flex: 1;
+ height: 44rpx;
+ line-height: 44rpx;
+ overflow: hidden;
+}
+
+.add-address .form-default {
+ border-bottom: 1px solid #d9d9d9;
+ height: 96rpx;
+ background: #fff;
+ padding-top: 28rpx;
+ font-size: 28rpx;
+ padding-left: 31.25rpx;
+}
+
+.add-address .form-default .van-checkbox .van-icon {
+ color: #fff;
+}
+
+.add-address .btns {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ overflow: hidden;
+ display: flex;
+ height: 100rpx;
+ width: 100%;
+}
+
+.add-address .cannel,
+.add-address .save {
+ flex: 1;
+ height: 100rpx;
+ text-align: center;
+ line-height: 100rpx;
+ font-size: 28rpx;
+ color: #fff;
+ border: none;
+ border-radius: 0;
+}
+
+.add-address .cannel {
+ background: #333;
+}
+
+.add-address .save {
+ background: #b4282d;
+}
+
+.region-select {
+ width: 100%;
+ height: 600rpx;
+ background: #fff;
+ position: fixed;
+ z-index: 10;
+ left: 0;
+ bottom: 0;
+}
+
+.region-select .hd {
+ height: 108rpx;
+ width: 100%;
+ border-bottom: 1px solid #f4f4f4;
+ padding: 46rpx 30rpx 0 30rpx;
+}
+
+.region-select .region-selected {
+ float: left;
+ height: 60rpx;
+ display: flex;
+}
+
+.region-select .region-selected .item {
+ max-width: 140rpx;
+ margin-right: 30rpx;
+ text-align: left;
+ line-height: 60rpx;
+ height: 100%;
+ color: #333;
+ font-size: 28rpx;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+.region-select .region-selected .item.disabled {
+ color: #999;
+}
+
+.region-select .region-selected .item.selected {
+ color: #b4282d;
+}
+
+.region-select .done {
+ float: right;
+ height: 60rpx;
+ width: 60rpx;
+ border: none;
+ background: #fff;
+ line-height: 60rpx;
+ text-align: center;
+ color: #333;
+ font-size: 28rpx;
+}
+
+.region-select .done.disabled {
+ color: #999;
+}
+
+.region-select .bd {
+ height: 492rpx;
+ width: 100%;
+ padding: 0 30rpx;
+}
+
+.region-select .region-list {
+ height: 492rpx;
+}
+
+.region-select .region-list .item {
+ width: 100%;
+ height: 104rpx;
+ line-height: 104rpx;
+ text-align: left;
+ color: #333;
+ font-size: 28rpx;
+}
+
+.region-select .region-list .item.selected {
+ color: #b4282d;
+}
+
+.bg-mask {
+ height: 100%;
+ width: 100%;
+ background: rgba(0, 0, 0, 0.4);
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 8;
+}
diff --git a/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue b/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue
new file mode 100644
index 0000000000000000000000000000000000000000..dffb3800b59d12f03d9fe73e67dd24e7a01b095d
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue
@@ -0,0 +1,444 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 设为默认地址
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+ 确定
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/aftersale/aftersale.css b/litemall-wx_uni/pages/ucenter/aftersale/aftersale.css
new file mode 100644
index 0000000000000000000000000000000000000000..5f3ee53ed1e5f8a5d7d39481438f85f8a5703f95
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/aftersale/aftersale.css
@@ -0,0 +1,103 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+
+.order-goods {
+ margin-top: 20rpx;
+ background: #fff;
+}
+
+.order-goods .h {
+ height: 93.75rpx;
+ line-height: 93.75rpx;
+ margin-left: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ padding-right: 31.25rpx;
+}
+
+.order-goods .h .label {
+ float: left;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.order-goods .h .status {
+ float: right;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+
+.order-goods .item {
+ display: flex;
+ align-items: center;
+ height: 192rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.order-goods .item:last-child {
+ border-bottom: none;
+}
+
+.order-goods .item .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+
+.order-goods .item .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+
+.order-goods .item .info {
+ flex: 1;
+ height: 145.83rpx;
+ margin-left: 20rpx;
+}
+
+.order-goods .item .t {
+ margin-top: 8rpx;
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10.5rpx;
+}
+
+.order-goods .item .t .name {
+ display: block;
+ float: left;
+ height: 33rpx;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order-goods .item .t .number {
+ display: block;
+ float: right;
+ height: 33rpx;
+ text-align: right;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order-goods .item .attr {
+ height: 29rpx;
+ line-height: 29rpx;
+ color: #666;
+ margin-bottom: 25rpx;
+ font-size: 25rpx;
+}
+
+.order-goods .item .price {
+ display: block;
+ float: left;
+ height: 30rpx;
+ line-height: 30rpx;
+ color: #333;
+ font-size: 30rpx;
+}
diff --git a/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue b/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue
new file mode 100644
index 0000000000000000000000000000000000000000..988210e16d2439133ef50d307f846f674428a81c
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue
@@ -0,0 +1,249 @@
+
+
+
+ 退款商品
+
+
+
+
+
+
+
+
+ {{ item.goodsName }}
+ x{{ item.number }}
+
+ {{ item.specifications }}
+ ¥{{ item.price }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 申请售后
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.css b/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.css
new file mode 100644
index 0000000000000000000000000000000000000000..ef3dfb289dcba74de4cacb5471cb14511e4d76d0
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.css
@@ -0,0 +1,188 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+
+.order-goods {
+ margin-top: 20rpx;
+ background: #fff;
+}
+
+.order-goods .h {
+ height: 93.75rpx;
+ line-height: 93.75rpx;
+ margin-left: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ padding-right: 31.25rpx;
+}
+
+.order-goods .h .label {
+ float: left;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.order-goods .h .status {
+ float: right;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+
+.order-goods .item {
+ display: flex;
+ align-items: center;
+ height: 192rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.order-goods .item:last-child {
+ border-bottom: none;
+}
+
+.order-goods .item .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+
+.order-goods .item .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+
+.order-goods .item .info {
+ flex: 1;
+ height: 145.83rpx;
+ margin-left: 20rpx;
+}
+
+.order-goods .item .t {
+ margin-top: 8rpx;
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10.5rpx;
+}
+
+.order-goods .item .t .name {
+ display: block;
+ float: left;
+ height: 33rpx;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order-goods .item .t .number {
+ display: block;
+ float: right;
+ height: 33rpx;
+ text-align: right;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order-goods .item .attr {
+ height: 29rpx;
+ line-height: 29rpx;
+ color: #666;
+ margin-bottom: 25rpx;
+ font-size: 25rpx;
+}
+
+.order-goods .item .price {
+ display: block;
+ float: left;
+ height: 30rpx;
+ line-height: 30rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.fb-body {
+ width: 100%;
+ background: #fff;
+ height: 300rpx;
+ padding: 30rpx;
+}
+
+.fb-body .content {
+ width: 100%;
+ height: 200rpx;
+ color: #333;
+}
+
+.weui-uploader__files {
+ width: 100%;
+}
+
+.weui-uploader__file {
+ float: left;
+ margin-right: 9px;
+ margin-bottom: 9px;
+}
+
+.weui-uploader__img {
+ display: block;
+ width: 30px;
+ height: 30px;
+}
+
+.weui-uploader__input-box {
+ float: left;
+ position: relative;
+ margin-right: 9px;
+ margin-bottom: 9px;
+ width: 30px;
+ height: 30px;
+ border: 1px solid #d9d9d9;
+}
+
+.weui-uploader__input-box:after,
+.weui-uploader__input-box:before {
+ content: ' ';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ background-color: #d9d9d9;
+}
+
+.weui-uploader__input-box:before {
+ width: 2px;
+ height: 30px;
+}
+
+.weui-uploader__input-box:after {
+ width: 30px;
+ height: 2px;
+}
+
+.weui-uploader__input-box:active {
+ border-color: #999;
+}
+
+.weui-uploader__input-box:active:after,
+.weui-uploader__input-box:active:before {
+ background-color: #999;
+}
+
+.weui-uploader__input {
+ position: absolute;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+.fb-body .text-count {
+ float: right;
+ color: #666;
+ font-size: 24rpx;
+ line-height: 30rpx;
+}
diff --git a/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue b/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue
new file mode 100644
index 0000000000000000000000000000000000000000..a6440e63c736dcea3df3350f9ad712a201e317c1
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 退款商品
+
+
+
+
+
+
+
+
+ {{ item.goodsName }}
+ x{{ item.number }}
+
+ {{ item.specifications }}
+ ¥{{ item.price }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.css b/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.css
new file mode 100644
index 0000000000000000000000000000000000000000..d6f5a39e02aad7c254a0c9b80f135d2dbc2ee2f3
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.css
@@ -0,0 +1,165 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+
+.aftersales-switch {
+ width: 100%;
+ background: #fff;
+ height: 84rpx;
+}
+
+.aftersales-switch .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 18%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+
+.aftersales-switch .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #9a9ba1;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+
+.aftersales-switch .item.active .txt {
+ color: #ab956d;
+ border-bottom: 4rpx solid #ab956d;
+}
+
+.no-aftersale {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+
+.no-aftersale .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+
+.no-aftersale .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+
+.aftersales {
+ height: auto;
+ width: 100%;
+ overflow: hidden;
+}
+
+.aftersale {
+ margin-top: 20rpx;
+ background: #fff;
+}
+
+.aftersale .h {
+ height: 83.3rpx;
+ line-height: 83.3rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.aftersale .h .l {
+ float: left;
+}
+
+.aftersale .h .r {
+ float: right;
+ color: #b4282d;
+ font-size: 24rpx;
+}
+
+.aftersale .goods {
+ display: flex;
+ align-items: center;
+ height: 199rpx;
+ margin-left: 31.25rpx;
+}
+
+.aftersale .goods .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+
+.aftersale .goods .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+
+.aftersale .goods .info {
+ height: 145.83rpx;
+ flex: 1;
+ padding-left: 20rpx;
+}
+
+.aftersale .goods .name {
+ margin-top: 30rpx;
+ display: block;
+ height: 44rpx;
+ line-height: 44rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.aftersale .goods .number {
+ display: block;
+ height: 37rpx;
+ line-height: 37rpx;
+ color: #666;
+ font-size: 25rpx;
+}
+
+.aftersale .goods .status {
+ width: 105rpx;
+ color: #b4282d;
+ font-size: 25rpx;
+}
+
+.aftersale .b {
+ height: 103rpx;
+ line-height: 103rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-top: 1px solid #f4f4f4;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.aftersale .b .l {
+ float: left;
+}
+
+.aftersale .b .r {
+ float: right;
+}
+
+.aftersale .b .btn {
+ margin-top: 19rpx;
+ height: 64.5rpx;
+ line-height: 64.5rpx;
+ text-align: center;
+ padding: 0 20rpx;
+ border-radius: 5rpx;
+ font-size: 28rpx;
+ color: #fff;
+ background: #b4282d;
+}
diff --git a/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue b/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue
new file mode 100644
index 0000000000000000000000000000000000000000..9df98abb42026b417631ba4356ce064106769a07
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue
@@ -0,0 +1,141 @@
+
+
+
+
+ 申请中
+
+
+ 处理中
+
+
+ 已完成
+
+
+ 已拒绝
+
+
+
+
+ 还没有呢
+
+
+
+
+
+
+ 售后编号:{{ item.aftersale.aftersaleSn }}
+
+
+
+
+
+
+
+
+ {{ gitem.goodsName }}
+ {{ gitem.number }}件商品
+
+
+
+
+
+
+ 申请退款金额:¥{{ item.aftersale.amount }}元
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/collect/collect.css b/litemall-wx_uni/pages/ucenter/collect/collect.css
new file mode 100644
index 0000000000000000000000000000000000000000..9c448f0cdeee11f7ea00bf66237ced968148af36
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/collect/collect.css
@@ -0,0 +1,186 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+}
+.collect-switch {
+ width: 100%;
+ background: #fff;
+ height: 84rpx;
+}
+
+.collect-switch .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 50%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+
+.collect-switch .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #9a9ba1;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+
+.collect-switch .item.active .txt {
+ color: #ab956d;
+ border-bottom: 4rpx solid #ab956d;
+}
+
+.no-collect {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+
+.no-collect .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+
+.no-collect .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+
+/*商品收藏列表样式*/
+.goods-list {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+ padding-left: 30rpx;
+ border-top: 1px solid #e1e1e1;
+}
+
+.goods-list .item {
+ height: 212rpx;
+ width: 720rpx;
+ background: #fff;
+ padding: 30rpx 30rpx 30rpx 0;
+ border-bottom: 1px solid #e1e1e1;
+}
+
+.goods-list .item:last-child {
+ border-bottom: 1px solid #fff;
+}
+
+.goods-list .item .img {
+ float: left;
+ width: 150rpx;
+ height: 150rpx;
+}
+
+.goods-list .item .info {
+ float: right;
+ width: 540rpx;
+ height: 150rpx;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ padding-left: 20rpx;
+}
+
+.goods-list .item .info .name {
+ font-size: 28rpx;
+ color: #333;
+ line-height: 40rpx;
+}
+
+.goods-list .item .info .subtitle {
+ margin-top: 8rpx;
+ font-size: 24rpx;
+ color: #888;
+ line-height: 40rpx;
+}
+
+.goods-list .item .info .price {
+ margin-top: 8rpx;
+ font-size: 28rpx;
+ color: #333;
+ line-height: 40rpx;
+}
+
+/*专题收藏列表样式*/
+
+.topic-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+ background: #f4f4f4;
+}
+
+.topic-list .item {
+ width: 100%;
+ height: 625rpx;
+ overflow: hidden;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+
+.topic-list .img {
+ width: 100%;
+ height: 415rpx;
+}
+
+.topic-list .info {
+ width: 100%;
+ height: 210rpx;
+ overflow: hidden;
+}
+
+.topic-list .title {
+ display: block;
+ text-align: center;
+ width: 100%;
+ height: 33rpx;
+ line-height: 35rpx;
+ color: #333;
+ overflow: hidden;
+ font-size: 35rpx;
+ margin-top: 30rpx;
+}
+
+.topic-list .desc {
+ display: block;
+ text-align: center;
+ position: relative;
+ width: auto;
+ height: 24rpx;
+ line-height: 24rpx;
+ overflow: hidden;
+ color: #999;
+ font-size: 24rpx;
+ margin-top: 16rpx;
+ margin-bottom: 30rpx;
+}
+
+.topic-list .price {
+ display: block;
+ text-align: center;
+ width: 100%;
+ height: 27rpx;
+ line-height: 27rpx;
+ overflow: hidden;
+ color: #b4282d;
+ font-size: 27rpx;
+}
diff --git a/litemall-wx_uni/pages/ucenter/collect/collect.vue b/litemall-wx_uni/pages/ucenter/collect/collect.vue
new file mode 100644
index 0000000000000000000000000000000000000000..da36f862ae20504f480eb2dfa6e2ed3385ef245d
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/collect/collect.vue
@@ -0,0 +1,185 @@
+
+
+
+
+ 商品收藏
+
+
+ 专题收藏
+
+
+
+
+ 还没有收藏
+
+
+
+
+
+
+
+ {{ item.name }}
+ {{ item.brief }}
+ ¥{{ item.retailPrice }}
+
+
+
+ {{ item.title }}
+ {{ item.subtitle }}
+ {{ item.price }}元起
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/couponList/couponList.css b/litemall-wx_uni/pages/ucenter/couponList/couponList.css
new file mode 100644
index 0000000000000000000000000000000000000000..ae4249393de43719afe62850ed57b62cb3d71c31
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/couponList/couponList.css
@@ -0,0 +1,242 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ padding-top: 30rpx;
+}
+
+.container .h {
+ position: fixed;
+ left: 0;
+ top: 0;
+ z-index: 1000;
+ width: 100%;
+ display: flex;
+ background: #fff;
+ height: 84rpx;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+}
+
+.container .h .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 50%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+
+.container .h .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #333;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+
+.container .h .item.active .txt {
+ color: #ab2b2b;
+ border-bottom: 4rpx solid #ab2b2b;
+}
+
+.container .b {
+ margin-top: 85rpx;
+ height: auto;
+}
+
+.container .b .coupon-form {
+ height: 110rpx;
+ width: 100%;
+ background: #fff;
+ padding-left: 30rpx;
+ padding-right: 30rpx;
+ padding-top: 20rpx;
+ display: flex;
+}
+
+.container .b .input-box {
+ flex: 1;
+ height: 70rpx;
+ color: #333;
+ font-size: 24rpx;
+ background: #fff;
+ position: relative;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+ border-radius: 4rpx;
+ margin-right: 30rpx;
+}
+
+.container .b .input-box .coupon-sn {
+ position: absolute;
+ top: 10rpx;
+ left: 30rpx;
+ height: 50rpx;
+ width: 100%;
+ color: #000;
+ line-height: 50rpx;
+ font-size: 24rpx;
+}
+
+.container .b .clear-icon {
+ position: absolute;
+ top: 25rpx;
+ right: 18rpx;
+ z-index: 2;
+ display: block;
+ background: #fff;
+}
+
+.container .b .add-btn {
+ height: 70rpx;
+ border: none;
+ width: 168rpx;
+ background: #b4282d;
+ border-radius: 0;
+ line-height: 70rpx;
+ color: #fff;
+ font-size: 28rpx;
+ text-align: center;
+}
+
+.container .b .add-btn.disabled {
+ background: #ccc;
+}
+
+.container .b .help {
+ height: 72rpx;
+ line-height: 72rpx;
+ text-align: right;
+ padding-right: 30rpx;
+ background-size: 28rpx;
+ color: #999;
+ font-size: 24rpx;
+}
+
+.container .b .coupon-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+}
+
+.container .b .item {
+ position: relative;
+ height: 290rpx;
+ background: #ccc7c7;
+ margin-bottom: 30rpx;
+ margin-left: 30rpx;
+ margin-right: 30rpx;
+ padding-top: 52rpx;
+}
+
+.container .b .item.active {
+ background: linear-gradient(to right, #cfa568, #e3bf79);
+}
+
+.container .b .tag {
+ height: 32rpx;
+ background: #a48143;
+ padding-left: 16rpx;
+ padding-right: 16rpx;
+ position: absolute;
+ left: 20rpx;
+ color: #fff;
+ top: 20rpx;
+ font-size: 20rpx;
+ text-align: center;
+ line-height: 32rpx;
+}
+
+.container .b .content {
+ margin-top: 24rpx;
+ margin-left: 40rpx;
+ display: flex;
+ margin-right: 40rpx;
+ flex-direction: row;
+}
+
+.container .b .content .left {
+ flex: 1;
+}
+
+.container .b .discount {
+ font-size: 50rpx;
+ color: #b4282d;
+}
+
+.container .b .min {
+ color: #fff;
+}
+
+.container .b .content .right {
+ width: 400rpx;
+}
+
+.container .b .name {
+ font-size: 44rpx;
+ color: #fff;
+ margin-bottom: 14rpx;
+}
+
+.container .b .time {
+ font-size: 24rpx;
+ color: #fff;
+ line-height: 30rpx;
+}
+
+.container .b .condition {
+ position: absolute;
+ width: 100%;
+ bottom: 0;
+ left: 0;
+ height: 78rpx;
+ background: rgba(0, 0, 0, 0.08);
+ padding: 24rpx 40rpx;
+ display: flex;
+ flex-direction: row;
+}
+
+.container .b .condition .txt {
+ display: block;
+ height: 30rpx;
+ flex: 1;
+ overflow: hidden;
+ font-size: 24rpx;
+ line-height: 30rpx;
+ color: #fff;
+}
+
+.container .b .condition .icon {
+ margin-left: 30rpx;
+ width: 24rpx;
+ height: 24rpx;
+}
+
+.container .b .page {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+
+.container .b .page view {
+ height: 108rpx;
+ width: 50%;
+ float: left;
+ font-size: 29rpx;
+ color: #333;
+ text-align: center;
+ line-height: 108rpx;
+}
+
+.container .b .page .prev {
+ border-right: 1px solid #d9d9d9;
+}
+
+.container .b .page .disabled {
+ color: #ccc;
+}
diff --git a/litemall-wx_uni/pages/ucenter/couponList/couponList.vue b/litemall-wx_uni/pages/ucenter/couponList/couponList.vue
new file mode 100644
index 0000000000000000000000000000000000000000..06ad3ef9da78680cb2b42c248ce71ac18c7974ab
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/couponList/couponList.vue
@@ -0,0 +1,229 @@
+
+
+
+
+ 未使用
+
+
+ 已使用
+
+
+ 已过期
+
+
+
+
+
+
+
+
+
+ 兑换
+
+
+
+
+ 使用说明
+
+
+
+
+ {{ item.tag }}
+
+
+
+ {{ item.discount }}元
+ 满{{ item.min }}元使用
+
+
+ {{ item.name }}
+ 有效期:{{ item.startTime }} - {{ item.endTime }}
+
+
+
+
+ {{ item.desc }}
+
+
+
+
+
+ 上一页
+ 下一页
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.css b/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.css
new file mode 100644
index 0000000000000000000000000000000000000000..5a487b23a11bb08499c52f9c0b404a06543fb5f6
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.css
@@ -0,0 +1,120 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ padding-top: 30rpx;
+}
+
+.coupon-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+}
+
+.unselect {
+ height: 80rpx;
+ border: none;
+ width: 700rpx;
+ background: #28b43b;
+ color: #fff;
+ font-size: 40rpx;
+ text-align: center;
+ margin-bottom: 30rpx;
+ margin-left: 30rpx;
+ margin-right: 30rpx;
+ line-height: 80rpx;
+}
+
+.item {
+ position: relative;
+ height: 290rpx;
+ width: 700rpx;
+ background: linear-gradient(to right, #cfa568, #e3bf79);
+ margin-bottom: 30rpx;
+ margin-left: 30rpx;
+ margin-right: 30rpx;
+ padding-top: 52rpx;
+}
+
+.tag {
+ height: 32rpx;
+ background: #a48143;
+ padding-left: 16rpx;
+ padding-right: 16rpx;
+ position: absolute;
+ left: 20rpx;
+ color: #fff;
+ top: 20rpx;
+ font-size: 20rpx;
+ text-align: center;
+ line-height: 32rpx;
+}
+
+.content {
+ margin-top: 24rpx;
+ margin-left: 40rpx;
+ display: flex;
+ margin-right: 40rpx;
+ flex-direction: row;
+}
+
+.content .left {
+ flex: 1;
+}
+
+.discount {
+ font-size: 50rpx;
+ color: #b4282d;
+}
+
+.min {
+ color: #fff;
+}
+
+.content .right {
+ width: 400rpx;
+}
+
+.name {
+ font-size: 44rpx;
+ color: #fff;
+ margin-bottom: 14rpx;
+}
+
+.time {
+ font-size: 24rpx;
+ color: #fff;
+ line-height: 30rpx;
+}
+
+.condition {
+ position: absolute;
+ width: 100%;
+ bottom: 0;
+ left: 0;
+ height: 78rpx;
+ background: rgba(0, 0, 0, 0.08);
+ padding: 24rpx 40rpx;
+ display: flex;
+ flex-direction: row;
+}
+
+.condition .txt {
+ display: block;
+ height: 30rpx;
+ flex: 1;
+ overflow: hidden;
+ font-size: 24rpx;
+ line-height: 30rpx;
+ color: #fff;
+}
+
+.condition .icon {
+ margin-left: 30rpx;
+ width: 24rpx;
+ height: 24rpx;
+}
diff --git a/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue b/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue
new file mode 100644
index 0000000000000000000000000000000000000000..5604480def6e99d04dadcb84b51c7689b1138368
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue
@@ -0,0 +1,179 @@
+
+
+
+ 不选择优惠券
+
+
+ {{ item.tag }}
+
+
+
+ {{ item.discount }}元
+ 满{{ item.min }}元使用
+
+
+ {{ item.name }}
+ 有效期:{{ item.startTime }} - {{ item.endTime }}
+
+
+
+
+ {{ item.desc }}
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/feedback/feedback.css b/litemall-wx_uni/pages/ucenter/feedback/feedback.css
new file mode 100644
index 0000000000000000000000000000000000000000..713bf586dd1ef8f67d6641c89772f13230ca3e24
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/feedback/feedback.css
@@ -0,0 +1,197 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ padding-top: 30rpx;
+}
+
+.fb-type {
+ height: 104rpx;
+ width: 100%;
+ background: #fff;
+ margin-bottom: 20rpx;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ padding-left: 30rpx;
+ padding-right: 30rpx;
+}
+
+.fb-type .type-label {
+ height: 36rpx;
+ flex: 1;
+ color: #333;
+ font-size: 28rpx;
+}
+
+.fb-type .type-icon {
+ height: 36rpx;
+ width: 36rpx;
+}
+
+.fb-body {
+ width: 100%;
+ background: #fff;
+ height: 600rpx;
+ padding: 18rpx 30rpx 64rpx 30rpx;
+}
+
+.fb-body .content {
+ width: 100%;
+ height: 400rpx;
+ color: #333;
+ line-height: 40rpx;
+ font-size: 28rpx;
+}
+
+.weui-uploader__files {
+ width: 100%;
+}
+
+.weui-uploader__file {
+ float: left;
+ margin-right: 9px;
+ margin-bottom: 9px;
+}
+
+.weui-uploader__img {
+ display: block;
+ width: 50px;
+ height: 50px;
+}
+
+.weui-uploader__input-box {
+ float: left;
+ position: relative;
+ margin-right: 9px;
+ margin-bottom: 9px;
+ width: 50px;
+ height: 50px;
+ border: 1px solid #d9d9d9;
+}
+
+.weui-uploader__input-box:after,
+.weui-uploader__input-box:before {
+ content: ' ';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ background-color: #d9d9d9;
+}
+
+.weui-uploader__input-box:before {
+ width: 2px;
+ height: 39.5px;
+}
+
+.weui-uploader__input-box:after {
+ width: 39.5px;
+ height: 2px;
+}
+
+.weui-uploader__input-box:active {
+ border-color: #999;
+}
+
+.weui-uploader__input-box:active:after,
+.weui-uploader__input-box:active:before {
+ background-color: #999;
+}
+
+.weui-uploader__input {
+ position: absolute;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
+.fb-body .text-count {
+ line-height: 30rpx;
+ float: right;
+ color: #666;
+ font-size: 24rpx;
+}
+
+.fb-mobile {
+ height: 162rpx;
+ width: 100%;
+}
+
+.fb-mobile .label {
+ height: 58rpx;
+ width: 100%;
+ padding-top: 14rpx;
+ padding-bottom: 11rpx;
+ color: #7f7f7f;
+ font-size: 24rpx;
+ padding-left: 30rpx;
+ padding-right: 30rpx;
+ line-height: 33rpx;
+}
+
+.fb-mobile .mobile-box {
+ height: 104rpx;
+ width: 100%;
+ color: #333;
+ padding-left: 30rpx;
+ padding-right: 30rpx;
+ font-size: 24rpx;
+ background: #fff;
+ position: relative;
+}
+
+.fb-mobile .mobile {
+ position: absolute;
+ top: 27rpx;
+ left: 30rpx;
+ height: 50rpx;
+ width: 100%;
+ color: #333;
+ line-height: 50rpx;
+ font-size: 24rpx;
+}
+
+.fb-mobile .clear-icon {
+ position: absolute;
+ top: 27rpx;
+ right: 30rpx;
+ width: 48rpx;
+ height: 48rpx;
+ z-index: 2;
+}
+
+.fb-btn {
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 80%;
+ height: 90rpx;
+ line-height: 98rpx;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ border-radius: 0;
+ padding: 0;
+ margin: 0;
+ margin-left: 10%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ font-size: 25rpx;
+ color: #f4f4f4;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
diff --git a/litemall-wx_uni/pages/ucenter/feedback/feedback.vue b/litemall-wx_uni/pages/ucenter/feedback/feedback.vue
new file mode 100644
index 0000000000000000000000000000000000000000..82eb8cf483c20419d998c8fd7de2a74d3f325798
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/feedback/feedback.vue
@@ -0,0 +1,232 @@
+
+
+
+
+
+ {{ array[index] }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ contentLength }}/500
+
+
+ 手机号码
+
+
+
+
+
+
+ 提交
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/footprint/footprint.css b/litemall-wx_uni/pages/ucenter/footprint/footprint.css
new file mode 100644
index 0000000000000000000000000000000000000000..88d011d71ac26950592eefd3378b94324e730408
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/footprint/footprint.css
@@ -0,0 +1,116 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+}
+
+.no-footprint {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+
+.no-footprint .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+
+.no-footprint .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+
+.footprint {
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+ border-top: 1px solid #e1e1e1;
+}
+
+.day-item {
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+ margin-bottom: 20rpx;
+}
+
+.day-hd {
+ height: 94rpx;
+ width: 100%;
+ line-height: 94rpx;
+ background: #fff;
+ padding-left: 30rpx;
+ color: #333;
+ font-size: 28rpx;
+}
+
+.day-list {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+ padding-left: 30rpx;
+ border-top: 1px solid #e1e1e1;
+}
+
+.item {
+ height: 212rpx;
+ width: 720rpx;
+ background: #fff;
+ padding: 30rpx 30rpx 30rpx 0;
+ border-bottom: 1px solid #e1e1e1;
+}
+
+.item:last-child {
+ border-bottom: 1px solid #fff;
+}
+
+.item .img {
+ float: left;
+ width: 150rpx;
+ height: 150rpx;
+}
+
+.item .info {
+ float: right;
+ width: 540rpx;
+ height: 150rpx;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ padding-left: 20rpx;
+}
+
+.item .info .name {
+ font-size: 28rpx;
+ color: #333;
+ line-height: 40rpx;
+}
+
+.item .info .subtitle {
+ margin-top: 8rpx;
+ font-size: 24rpx;
+ color: #888;
+ line-height: 40rpx;
+}
+
+.item .info .price {
+ margin-top: 8rpx;
+ font-size: 28rpx;
+ color: #333;
+ line-height: 40rpx;
+}
diff --git a/litemall-wx_uni/pages/ucenter/footprint/footprint.vue b/litemall-wx_uni/pages/ucenter/footprint/footprint.vue
new file mode 100644
index 0000000000000000000000000000000000000000..2deedf98200da9fb39dd31baa5f70c20159f2537
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/footprint/footprint.vue
@@ -0,0 +1,197 @@
+
+
+
+
+ 没有浏览足迹
+
+
+
+
+ {{ item[0].addDate }}
+
+
+
+
+
+
+ {{ iitem.name }}
+ {{ iitem.brief }}
+ ¥{{ iitem.retailPrice }}
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/index/index.css b/litemall-wx_uni/pages/ucenter/index/index.css
new file mode 100644
index 0000000000000000000000000000000000000000..fe5ae79dc7a39e3425f0ec933678b1be585c966a
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/index/index.css
@@ -0,0 +1,165 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+
+.container {
+ background: #f4f4f4;
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+}
+
+.profile-info {
+ background-color: #ab956d;
+ color: #f4f4f4;
+ display: flex;
+ align-items: center;
+ padding: 30rpx;
+ font-size: 28rpx;
+}
+
+.profile-info .avatar {
+ height: 148rpx;
+ width: 148rpx;
+ border-radius: 50%;
+}
+
+.profile-info .info {
+ flex: 1;
+ height: 85rpx;
+ padding-left: 31.25rpx;
+}
+
+.profile-info .name {
+ display: block;
+ height: 45rpx;
+ line-height: 45rpx;
+ color: #fff;
+ font-size: 37.5rpx;
+ margin-bottom: 10rpx;
+}
+
+.profile-info .level {
+ display: block;
+ height: 30rpx;
+ line-height: 30rpx;
+ margin-bottom: 10rpx;
+ color: #7f7f7f;
+ font-size: 30rpx;
+}
+
+.user_area {
+ /* border: 1px solid black; */
+ width: 100%;
+ height: 226rpx;
+ /* margin: 0 auto; */
+ margin-top: -8rpx;
+ background: #fff;
+ /* border-top: 1px solid #f4f4f4; */
+}
+
+.user_row {
+ /* border: 1px solid black; */
+ height: 86rpx;
+ line-height: 86rpx;
+ border-bottom: 1px solid #fafafa;
+}
+
+.user_row_left {
+ /* border: 1px solid #757575; */
+ float: left;
+ height: 86rpx;
+ font-weight: 550;
+ line-height: 86rpx;
+ margin-left: 35rpx;
+ font-size: 26rpx;
+ letter-spacing: 1rpx;
+}
+
+.user_row_right {
+ /* border: 1px solid #757575; */
+ float: right;
+ height: 40rpx;
+ width: 40rpx;
+ font-weight: 550;
+ line-height: 86rpx;
+ margin-top: 28rpx;
+ margin-right: 30rpx;
+}
+
+.user_column {
+ /* border: 1px solid black; */
+ height: 140rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.user_column_item {
+ width: 30%;
+ height: 140rpx;
+ background: #fff;
+ text-align: center;
+ position: relative;
+}
+
+.user_column_item_badge {
+ height: 28rpx;
+ width: 28rpx;
+ position: absolute;
+ background: #b4282d;
+ color: #fff;
+ border-radius: 50%;
+ margin-top: 20rpx;
+ margin-left: 40rpx;
+}
+
+.user_column_item_image {
+ width: 50rpx;
+ height: 50rpx;
+ margin-top: 30rpx;
+}
+
+.user_column_item_text {
+ /* border: 1px solid black; */
+ margin-top: 5rpx;
+ font-size: 24rpx;
+ color: #555;
+}
+
+.separate {
+ background: #e0e3da;
+ width: 100%;
+ height: 6rpx;
+}
+
+.user_column_item_phone {
+ width: 30%;
+ height: 140rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-wrap: wrap;
+ float: left;
+ background: #fff;
+ border-radius: 0;
+}
+
+.user_column_item_phone::after {
+ border: none;
+ border-radius: 0;
+}
+
+.logout {
+ margin-top: 30rpx;
+ height: 100rpx;
+ width: 100%;
+ line-height: 100rpx;
+ text-align: center;
+ background: #fff;
+ color: red;
+ font-size: 30rpx;
+}
diff --git a/litemall-wx_uni/pages/ucenter/index/index.vue b/litemall-wx_uni/pages/ucenter/index/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..a1b8d6e398e6257f2ae225bbdf7974c48dd15dff
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/index/index.vue
@@ -0,0 +1,360 @@
+
+
+
+
+
+ {{ userInfo.nickName }}
+
+
+
+
+
+
+
+ 我的订单
+
+
+
+
+ {{ order.unpaid }}
+
+ 待付款
+
+
+ {{ order.unship }}
+
+ 待发货
+
+
+ {{ order.unrecv }}
+
+ 待收货
+
+
+ {{ order.uncomment }}
+
+ 待评价
+
+
+
+ 售后
+
+
+
+
+
+
+
+ 核心服务
+
+
+
+
+ 优惠卷
+
+
+
+ 收藏夹
+
+
+
+ 浏览足迹
+
+
+
+ 我的拼团
+
+
+
+
+ 地址管理
+
+
+
+
+
+ 必备工具
+
+
+
+
+
+ 帮助中心
+
+
+
+ 意见反馈
+
+
+
+
+ 联系客服
+
+
+
+ 关于我们
+
+
+
+
+ 退出登录
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/order/order.css b/litemall-wx_uni/pages/ucenter/order/order.css
new file mode 100644
index 0000000000000000000000000000000000000000..8c833a67a1bfff194e4958caf1b9cce01f5f7504
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/order/order.css
@@ -0,0 +1,166 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+
+.orders-switch {
+ width: 100%;
+ background: #fff;
+ height: 84rpx;
+ /* border-bottom: 1px solid rgba(0,0,0,.15); */
+}
+
+.orders-switch .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 18%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+
+.orders-switch .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #9a9ba1;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+
+.orders-switch .item.active .txt {
+ color: #ab956d;
+ border-bottom: 4rpx solid #ab956d;
+}
+
+.no-order {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+
+.no-order .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+
+.no-order .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+
+.orders {
+ height: auto;
+ width: 100%;
+ overflow: hidden;
+}
+
+.order {
+ margin-top: 20rpx;
+ background: #fff;
+}
+
+.order .h {
+ height: 83.3rpx;
+ line-height: 83.3rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.order .h .l {
+ float: left;
+}
+
+.order .h .r {
+ float: right;
+ color: #b4282d;
+ font-size: 24rpx;
+}
+
+.order .goods {
+ display: flex;
+ align-items: center;
+ height: 199rpx;
+ margin-left: 31.25rpx;
+}
+
+.order .goods .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+
+.order .goods .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+
+.order .goods .info {
+ height: 145.83rpx;
+ flex: 1;
+ padding-left: 20rpx;
+}
+
+.order .goods .name {
+ margin-top: 30rpx;
+ display: block;
+ height: 44rpx;
+ line-height: 44rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order .goods .number {
+ display: block;
+ height: 37rpx;
+ line-height: 37rpx;
+ color: #666;
+ font-size: 25rpx;
+}
+
+.order .goods .status {
+ width: 105rpx;
+ color: #b4282d;
+ font-size: 25rpx;
+}
+
+.order .b {
+ height: 103rpx;
+ line-height: 103rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-top: 1px solid #f4f4f4;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.order .b .l {
+ float: left;
+}
+
+.order .b .r {
+ float: right;
+}
+
+.order .b .btn {
+ margin-top: 19rpx;
+ height: 64.5rpx;
+ line-height: 64.5rpx;
+ text-align: center;
+ padding: 0 20rpx;
+ border-radius: 5rpx;
+ font-size: 28rpx;
+ color: #fff;
+ background: #b4282d;
+}
diff --git a/litemall-wx_uni/pages/ucenter/order/order.vue b/litemall-wx_uni/pages/ucenter/order/order.vue
new file mode 100644
index 0000000000000000000000000000000000000000..809b2177a831629d42fb108fdeb9ce5dc6ae7926
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/order/order.vue
@@ -0,0 +1,149 @@
+
+
+
+
+ 全部
+
+
+ 待付款
+
+
+ 待发货
+
+
+ 待收货
+
+
+ 待评价
+
+
+
+
+ 还没有任何订单呢
+
+
+
+
+
+
+ 订单编号:{{ item.orderSn }}
+ {{ item.orderStatusText }}
+
+
+
+
+
+
+
+
+ {{ gitem.goodsName }}
+ 共{{ gitem.number }}件商品
+
+
+
+
+
+
+ 实付:¥{{ item.actualPrice }}
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.css b/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.css
new file mode 100644
index 0000000000000000000000000000000000000000..042998ac64b1c5ac30a2dbba782281ea3c1da8b1
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.css
@@ -0,0 +1,320 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+
+.order-info {
+ padding-top: 25rpx;
+ background: #fff;
+ height: auto;
+ overflow: hidden;
+}
+
+.item {
+ padding-left: 31.25rpx;
+ height: 42.5rpx;
+ padding-bottom: 12.5rpx;
+ line-height: 30rpx;
+ font-size: 30rpx;
+ color: #666;
+}
+
+.item-c {
+ margin-left: 31.25rpx;
+ border-top: 1px solid #f4f4f4;
+ height: 103rpx;
+ line-height: 103rpx;
+}
+
+.item-c .l {
+ float: left;
+}
+
+.item-c .r {
+ height: 103rpx;
+ float: right;
+ display: flex;
+ align-items: center;
+ padding-right: 16rpx;
+}
+
+.item-c .r .btn {
+ float: right;
+}
+
+.item-c .cost {
+ color: #b4282d;
+}
+
+.item-c .btn {
+ line-height: 66rpx;
+ border-radius: 5rpx;
+ text-align: center;
+ margin: 0 15rpx;
+ padding: 0 20rpx;
+ height: 66rpx;
+}
+
+.item-c .btn.active {
+ background: #b4282d;
+ color: #fff;
+}
+
+.order-goods {
+ margin-top: 20rpx;
+ background: #fff;
+}
+
+.order-goods .h {
+ height: 93.75rpx;
+ line-height: 93.75rpx;
+ margin-left: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ padding-right: 31.25rpx;
+}
+
+.order-goods .h .label {
+ float: left;
+ font-size: 30rpx;
+ color: #333;
+}
+
+.order-goods .h .status {
+ float: right;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+
+.order-goods .item {
+ display: flex;
+ align-items: center;
+ height: 192rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.order-goods .item:last-child {
+ border-bottom: none;
+}
+
+.order-goods .item .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+
+.order-goods .item .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+
+.order-goods .item .info {
+ flex: 1;
+ height: 145.83rpx;
+ margin-left: 20rpx;
+}
+
+.order-goods .item .t {
+ margin-top: 8rpx;
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10.5rpx;
+}
+
+.order-goods .item .t .name {
+ display: block;
+ float: left;
+ height: 33rpx;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order-goods .item .t .number {
+ display: block;
+ float: right;
+ height: 33rpx;
+ text-align: right;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order-goods .item .attr {
+ height: 29rpx;
+ line-height: 29rpx;
+ color: #666;
+ margin-bottom: 25rpx;
+ font-size: 25rpx;
+}
+
+.order-goods .item .price {
+ display: block;
+ float: left;
+ height: 30rpx;
+ line-height: 30rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
+.order-goods .item .btn {
+ height: 50rpx;
+ line-height: 50rpx;
+ border-radius: 5rpx;
+ text-align: center;
+ display: block;
+ float: right;
+ margin: 0 15rpx;
+ padding: 0 20rpx;
+}
+
+.order-goods .item .btn.active {
+ background: #b4282d;
+ color: #fff;
+}
+
+.order-bottom {
+ margin-top: 20rpx;
+ padding-left: 31.25rpx;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+}
+
+.order-bottom .address {
+ height: 128rpx;
+ padding-top: 25rpx;
+ border-top: 1px solid #f4f4f4;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.order-bottom .address .t {
+ height: 35rpx;
+ line-height: 35rpx;
+ margin-bottom: 7.5rpx;
+}
+
+.order-bottom .address .name {
+ display: inline-block;
+ height: 35rpx;
+ width: 140rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+
+.order-bottom .address .mobile {
+ display: inline-block;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+
+.order-bottom .address .b {
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+
+.order-bottom .total {
+ height: 130rpx;
+ padding-top: 20rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+
+.order-bottom .total .t {
+ height: 30rpx;
+ line-height: 30rpx;
+ margin-bottom: 7.5rpx;
+ display: flex;
+}
+
+.order-bottom .total .label {
+ width: 150rpx;
+ display: inline-block;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+
+.order-bottom .total .txt {
+ flex: 1;
+ display: inline-block;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+
+.order-bottom .pay-fee {
+ height: 81rpx;
+ line-height: 81rpx;
+}
+
+.order-bottom .pay-fee .label {
+ display: inline-block;
+ width: 140rpx;
+ color: #b4282d;
+}
+
+.order-bottom .pay-fee .txt {
+ display: inline-block;
+ width: 140rpx;
+ color: #b4282d;
+}
+
+.order-express {
+ margin-top: 20rpx;
+ width: 100%;
+ height: 100rpx;
+ background: #fff;
+}
+
+.order-express .title {
+ float: left;
+ margin-bottom: 20rpx;
+ padding: 10rpx;
+}
+
+.order-express .ti {
+ float: right;
+ width: 52rpx;
+ height: 52rpx;
+ margin-right: 16rpx;
+ margin-top: 28rpx;
+}
+
+.order-express .t {
+ font-size: 29rpx;
+ margin-left: 10.25rpx;
+ color: #a78845;
+}
+
+.order-express .b {
+ font-size: 29rpx;
+ margin-left: 10.25rpx;
+ color: #a78845;
+}
+
+.order-express .traces {
+ padding: 17.5rpx;
+ background: #fff;
+ border-bottom: 1rpx solid #f1e6cdcc;
+}
+
+.order-express .trace {
+ padding-bottom: 17.5rpx;
+ padding-top: 17.5rpx;
+ background: #fff;
+}
+
+.order-express .acceptTime {
+ margin-top: 20rpx;
+ margin-right: 40rpx;
+ text-align: right;
+ font-size: 26rpx;
+}
+
+.order-express .acceptStation {
+ font-size: 26rpx;
+}
diff --git a/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue b/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue
new file mode 100644
index 0000000000000000000000000000000000000000..a8aa7d23b48dc4a5006bdd47cce313a8b6a7be05
--- /dev/null
+++ b/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue
@@ -0,0 +1,377 @@
+
+
+
+ 下单时间:{{ orderInfo.addTime }}
+ 订单编号:{{ orderInfo.orderSn }}
+ 订单留言:{{ orderInfo.message }}
+
+
+ 实付:
+ ¥{{ orderInfo.actualPrice }}
+
+
+ 取消订单
+ 去付款
+ 确认收货
+ 删除订单
+ 申请退款
+ 申请售后
+
+
+
+
+
+
+ 商品信息
+ {{ orderInfo.orderStatusText }}
+
+
+
+
+
+
+
+
+
+ {{ item.goodsName }}
+ x{{ item.number }}
+
+ {{ item.specifications }}
+ ¥{{ item.price }}
+
+ 去评价
+
+
+ 再次购买
+
+
+
+
+
+
+
+
+ {{ orderInfo.consignee }}
+ {{ orderInfo.mobile }}
+
+ {{ orderInfo.address }}
+
+
+
+ 商品合计:
+ ¥{{ orderInfo.goodsPrice }}
+
+
+ 运费:
+ ¥{{ orderInfo.freightPrice }}
+
+
+ 优惠:
+ ¥-{{ orderInfo.couponPrice }}
+
+
+
+ 实付:
+ ¥{{ orderInfo.actualPrice }}
+
+
+
+
+
+
+
+ 快递公司:{{ orderInfo.expName }}
+ 物流单号:{{ orderInfo.expNo }}
+
+
+
+
+
+ {{ iitem.AcceptStation }}
+ {{ iitem.AcceptTime }}
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/polyfill/README.md b/litemall-wx_uni/polyfill/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..fccb23d24e0b21cc3bcd8e30c37346c636adf3dc
--- /dev/null
+++ b/litemall-wx_uni/polyfill/README.md
@@ -0,0 +1,35 @@
+# 关于polyfill目录
+
+用于抹平各平台差异化,使小程序转换uniapp项目后,能尽可能的少报错,尽可能的先运行起来。
+
+## 文件结构
+
+### base64Binary.js
+
+用于 base64ToArrayBuffer, arrayBufferToBase64 两个函数的polyfill,因为这两函数仅app与微信小程序支持,特意制作此polyfill。
+
+主要用于polyfill.js文件。
+
+### mixins.js
+
+有两个用途:
+一是在使用富文本时,可以将后台传入的富文本字符串里面的转义符转换为普通字符,与mp-html插件配合使用。
+二是this.setData()函数的polyfill,使转换后的uniapp项目,可以直接使用setData函数。
+
+### polyfill.js
+
+此文件,对大量api进行判断,如果在当前平台,不支持此函数,将会创建一个空函数,并输出一条提示,提示开发者,这个api需针对性的进行兼容处理。
+
+如果不处理的话,会直接进行报错,并影响流程的运行,对转换者的心理有一定的影响。
+
+因此制作此polyfill,让项目能先运行起来~
+
+
+## 注意
+
+如果觉得这些文件不需要想删除它,请一定要先阅读关于每个文件的说明,明白它的作用,再进行删除,以免项目运行报错,感谢合作~
+
+如有不明白的地方,请联系作者(375890534@qq.com)或qq群(780359397、361784059、603659851)进行交流~
+
+zhangdaren 2021-07-21
+
diff --git a/litemall-wx_uni/polyfill/base64Binary.js b/litemall-wx_uni/polyfill/base64Binary.js
new file mode 100644
index 0000000000000000000000000000000000000000..9efaa4602c481f97eaeaa3d16c3fcd325083fe36
--- /dev/null
+++ b/litemall-wx_uni/polyfill/base64Binary.js
@@ -0,0 +1,95 @@
+/*
+ * @Author: zhang peng
+ * @Date: 2021-08-03 10:57:51
+ * @LastEditTime: 2021-08-16 17:25:43
+ * @LastEditors: zhang peng
+ * @Description:
+ * @FilePath: \miniprogram-to-uniapp2\src\project\template\polyfill\base64Binary.js
+ *
+ * 借鉴自:https://github.com/dankogai/js-base64/blob/main/base64.js
+ * 因uniapp没有window,也无法使用Buffer,因此直接使用polyfill
+ *
+ */
+const b64ch = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='
+const b64chs = [...b64ch]
+const b64re = /^(?:[A-Za-z\d+\/]{4})*?(?:[A-Za-z\d+\/]{2}(?:==)?|[A-Za-z\d+\/]{3}=?)?$/
+const b64tab = ((a) => {
+ let tab = {}
+ a.forEach((c, i) => tab[c] = i)
+ return tab
+})(b64chs)
+const _fromCC = String.fromCharCode.bind(String)
+
+/**
+ * polyfill version of `btoa`
+ */
+const btoaPolyfill = (bin) => {
+ // console.log('polyfilled');
+ let u32, c0, c1, c2, asc = ''
+ const pad = bin.length % 3
+ for (let i = 0;i < bin.length;) {
+ if ((c0 = bin.charCodeAt(i++)) > 255 ||
+ (c1 = bin.charCodeAt(i++)) > 255 ||
+ (c2 = bin.charCodeAt(i++)) > 255)
+ throw new TypeError('invalid character found')
+ u32 = (c0 << 16) | (c1 << 8) | c2
+ asc += b64chs[u32 >> 18 & 63]
+ + b64chs[u32 >> 12 & 63]
+ + b64chs[u32 >> 6 & 63]
+ + b64chs[u32 & 63]
+ }
+ return pad ? asc.slice(0, pad - 3) + "===".substring(pad) : asc
+}
+
+/**
+ * polyfill version of `atob`
+ */
+const atobPolyfill = (asc) => {
+ // console.log('polyfilled');
+ asc = asc.replace(/\s+/g, '')
+ if (!b64re.test(asc))
+ throw new TypeError('malformed base64.')
+ asc += '=='.slice(2 - (asc.length & 3))
+ let u24, bin = '', r1, r2
+ for (let i = 0;i < asc.length;) {
+ u24 = b64tab[asc.charAt(i++)] << 18
+ | b64tab[asc.charAt(i++)] << 12
+ | (r1 = b64tab[asc.charAt(i++)]) << 6
+ | (r2 = b64tab[asc.charAt(i++)])
+ bin += r1 === 64 ? _fromCC(u24 >> 16 & 255)
+ : r2 === 64 ? _fromCC(u24 >> 16 & 255, u24 >> 8 & 255)
+ : _fromCC(u24 >> 16 & 255, u24 >> 8 & 255, u24 & 255)
+ }
+ return bin
+}
+
+/**
+ * base64转ArrayBuffer
+ */
+function base64ToArrayBuffer (base64) {
+ const binaryStr = atobPolyfill(base64)
+ const byteLength = binaryStr.length
+ const bytes = new Uint8Array(byteLength)
+ for (let i = 0;i < byteLength;i++) {
+ bytes[i] = binary.charCodeAt(i)
+ }
+ return bytes.buffer
+}
+
+/**
+ * ArrayBuffer转base64
+ */
+function arrayBufferToBase64 (buffer) {
+ let binaryStr = ""
+ const bytes = new Uint8Array(buffer)
+ var len = bytes.byteLength
+ for (let i = 0;i < len;i++) {
+ binaryStr += String.fromCharCode(bytes[i])
+ }
+ return btoaPolyfill(binaryStr)
+}
+
+module.exports = {
+ base64ToArrayBuffer,
+ arrayBufferToBase64,
+}
diff --git a/litemall-wx_uni/polyfill/mixins.js b/litemall-wx_uni/polyfill/mixins.js
new file mode 100644
index 0000000000000000000000000000000000000000..71bfdfd49a1a2218ae7a357d42050e364c26774d
--- /dev/null
+++ b/litemall-wx_uni/polyfill/mixins.js
@@ -0,0 +1,145 @@
+/*
+ * @Author: zhang peng
+ * @Date: 2021-08-03 10:57:51
+ * @LastEditTime: 2021-10-15 20:27:53
+ * @LastEditors: zhang peng
+ * @Description:
+ * @FilePath: \miniprogram-to-uniapp2\src\project\template\polyfill\mixins.js
+ *
+ * 如果你想删除本文件,请先确认它使用的范围,感谢合作~
+ * 如有疑问,请直接联系: 375890534@qq.com
+ */
+export default {
+ methods: {
+ /**
+ * 转义符换成普通字符
+ * @param {*} str
+ * @returns
+ */
+ escape2Html (str) {
+ if (!str) return str
+ var arrEntities = {
+ 'lt': '<',
+ 'gt': '>',
+ 'nbsp': ' ',
+ 'amp': '&',
+ 'quot': '"'
+ }
+ return str.replace(/&(lt|gt|nbsp|amp|quot);/ig, function (all, t) {
+ return arrEntities[t]
+ })
+ },
+ /**
+ * 普通字符转换成转义符
+ * @param {*} sHtml
+ * @returns
+ */
+ html2Escape (sHtml) {
+ if (!sHtml) return sHtml
+ return sHtml.replace(/[<>&"]/g, function (c) {
+ return {
+ '<': '<',
+ '>': '>',
+ '&': '&',
+ '"': '"'
+ }[c]
+ })
+ },
+ /**
+ * setData polyfill 勿删!!!
+ * 用于转换后的uniapp的项目能直接使用this.setData()函数
+ * @param {*} obj
+ * @param {*} callback
+ */
+ setData: function (obj, callback) {
+ let that = this
+ const handleData = (tepData, tepKey, afterKey) => {
+ var tepData2 = tepData
+ tepKey = tepKey.split('.')
+ tepKey.forEach(item => {
+ if (tepData[item] === null || tepData[item] === undefined) {
+ let reg = /^[0-9]+$/
+ tepData[item] = reg.test(afterKey) ? [] : {}
+ tepData2 = tepData[item]
+ } else {
+ tepData2 = tepData[item]
+ }
+ })
+ return tepData2
+ }
+ const isFn = function (value) {
+ return typeof value == 'function' || false
+ }
+ Object.keys(obj).forEach(function (key) {
+ let val = obj[key]
+ key = key.replace(/\]/g, '').replace(/\[/g, '.')
+ let front, after
+ let index_after = key.lastIndexOf('.')
+ if (index_after != -1) {
+ after = key.slice(index_after + 1)
+ front = handleData(that, key.slice(0, index_after), after)
+ } else {
+ after = key
+ front = that
+ }
+ if (front.$data && front.$data[after] === undefined) {
+ Object.defineProperty(front, after, {
+ get () {
+ return front.$data[after]
+ },
+ set (newValue) {
+ front.$data[after] = newValue
+ that.hasOwnProperty("$forceUpdate") && that.$forceUpdate()
+ },
+ enumerable: true,
+ configurable: true
+ })
+ front[after] = val
+ } else {
+ that.$set(front, after, val)
+ }
+ })
+ // this.$forceUpdate();
+ isFn(callback) && this.$nextTick(callback)
+ },
+ /**
+ * 解析事件里的动态函数名,这种没有()的函数名,在uniapp不被执行
+ * 比如:立即
+ * @param {*} exp
+ */
+ parseEventDynamicCode (exp) {
+ if (typeof (eval("this." + exp)) === 'function') {
+ eval("this." + exp + '()')
+ }
+ },
+ /**
+ * 用于处理对props进行赋值的情况
+ * //简单处理一下就行了
+ *
+ * @param {*} target
+ * @returns
+ */
+ deepClone (target) {
+ //判断拷贝的要进行深拷贝的是数组还是对象,是数组的话进行数组拷贝,对象的话进行对象拷贝
+ // const toString = Object.prototype.toString
+ // toString.call(obj) === '[object Array]' ? clone = clone || [] : clone = clone || {}
+ // for (const i in obj) {
+ // if (typeof obj[i] === 'object' && obj[i]!==null) {
+ // // 要考虑深复制问题了
+ // if (Array.isArray(obj[i])) {
+ // // 这是数组
+ // clone[i] = []
+ // } else {
+ // // 这是对象
+ // clone[i] = {}
+ // }
+ // deepClone(obj[i], clone[i])
+ // } else {
+ // clone[i] = obj[i]
+ // }
+ // }
+ // return clone
+ return JSON.parse(JSON.stringify(obj))
+ }
+ }
+}
diff --git a/litemall-wx_uni/polyfill/polyfill.js b/litemall-wx_uni/polyfill/polyfill.js
new file mode 100644
index 0000000000000000000000000000000000000000..2959d9db0c9b5aff0a11109f0aa0262e93dc2688
--- /dev/null
+++ b/litemall-wx_uni/polyfill/polyfill.js
@@ -0,0 +1,1073 @@
+/*
+ * @Author: zhang peng
+ * @Date: 2021-08-03 10:57:51
+ * @LastEditTime: 2021-10-15 20:24:24
+ * @LastEditors: zhang peng
+ * @Description:
+ * @FilePath: \miniprogram-to-uniapp2\src\project\template\polyfill\polyfill.js
+ *
+ * Api polyfill
+ * 2021-03-06
+ * 因小程序转换到uniapp,再运行到各平台时,总有这样那样的api,没法支持,
+ * 现根据uniapp文档对各平台的支持度,或实现,或调用success来抹平各平台的差异,
+ * 让代码能正常运行,下一步再解决这些api的兼容问题。
+ *
+ * Author: 375890534@qq.com
+ */
+const base64Binary = require("./base64Binary")
+
+/**
+ * 获取guid
+ */
+function guid () {
+ return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
+ var r = Math.random() * 16 | 0,
+ v = c == 'x' ? r : (r & 0x3 | 0x8)
+ return v.toString(16)
+ })
+}
+
+/**
+ * 检查api是否未实现,没实现返回true
+ * @param {Object} api
+ */
+function isApiNotImplemented (api) {
+ return uni[api] === undefined || [api] && uni[api].toString().indexOf("is not yet implemented") > -1
+}
+
+/**
+ * 条件编译
+ */
+function platformPolyfill () {
+ // #ifdef APP-PLUS
+ uni.showNavigationBarLoading = function () {
+ console.warn("api: uni.showNavigationBarLoading 在App平台会在屏幕中间悬浮loading,不如直接去掉")
+ }
+ // #endif
+}
+
+
+/**
+ * 登录相关api polyfill
+ */
+function loginPolyfill () {
+ if (isApiNotImplemented("login")) {
+ uni.login = function (options) {
+ console.warn("api: uni.login 登录 在当前平台不支持,【关键流程函数】 回调成功")
+ options.success && options.success({
+ code: guid(),
+ errMsg: "login:ok"
+ })
+ }
+ }
+
+ if (isApiNotImplemented("checkSession")) {
+ uni.checkSession = function (options) {
+ console.warn("api: uni.checkSession 检查登录状态是否过期 在当前平台不支持,【关键流程函数】 回调成功")
+ options.success && options.success()
+ }
+ }
+
+ if (isApiNotImplemented("getUserInfo")) {
+ uni.getUserInfo = function (options) {
+ console.warn("api: uni.getUserInfo 获取用户信息 在当前平台不支持,【关键流程函数】回调成功")
+ options.success && options.success({
+ userInfo: ""
+ })
+ }
+ }
+ if (isApiNotImplemented("getUserProfile")) {
+ uni.getUserProfile = function (options) {
+ console.warn("api: uni.getUserProfile 获取用户授权信息 在当前平台不支持,【关键流程函数】回调成功")
+ options.success && options.success({
+ userInfo: ""
+ })
+ }
+ }
+}
+
+/**
+ * 地图相关
+ */
+function mapPolyfill () {
+ if (isApiNotImplemented("chooseLocation")) {
+ uni.chooseLocation = function (options) {
+ console.warn("api: uni.chooseLocation 打开地图选择位置 在当前平台不支持,回调失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("openLocation")) {
+ uni.openLocation = function (object) {
+ console.warn("api: uni.openLocation 使用应用内置地图查看位置 在当前平台不支持,回调失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("createMapContext")) {
+ uni.createMapContext = function (mapId) {
+ console.warn("api: uni.createMapContext 创建并返回 map 上下文 mapContext 对象 在当前平台不支持,返回空")
+ return {
+ $getAppMap: null,
+ getCenterLocation: function (options) {
+ options.fail && options.fail()
+ },
+ moveToLocation: function (options) {
+ options.fail && options.fail()
+ },
+ translateMarker: function (options) {
+ options.fail && options.fail()
+ },
+ includePoints: function (options) { },
+ getRegion: function (options) {
+ options.fail && options.fail()
+ },
+ getScale: function (options) {
+ options.fail && options.fail()
+ },
+ }
+ }
+ }
+}
+
+/**
+ * 字符编码
+ */
+function base64Polyfill () {
+ //将 Base64 字符串转成 ArrayBuffer 对象
+ if (isApiNotImplemented("base64ToArrayBuffer")) {
+ uni.base64ToArrayBuffer = function (base64) {
+ return base64Binary.base64ToArrayBuffer(base64)
+ }
+ }
+
+ //将 ArrayBuffer 对象转成 Base64 字符串
+ if (isApiNotImplemented("arrayBufferToBase64")) {
+ uni.arrayBufferToBase64 = function (buffer) {
+ return base64Binary.arrayBufferToBase64(buffer)
+ }
+ }
+}
+
+
+/**
+ * 媒体相关
+ */
+function mediaPolyfill () {
+ if (isApiNotImplemented("saveImageToPhotosAlbum")) {
+ uni.saveImageToPhotosAlbum = function (options) {
+ console.warn("api: uni.saveImageToPhotosAlbum 保存图片到系统相册 在当前平台不支持,回调失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("compressImage")) {
+ uni.compressImage = function (object) {
+ console.warn("api: uni.compressImage 压缩图片接口 在当前平台不支持,回调失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("chooseMessageFile")) {
+ //从微信聊天会话中选择文件。
+ uni.chooseMessageFile = function (object) {
+ console.warn("api: uni.chooseMessageFile 从微信聊天会话中选择文件。 在当前平台不支持,回调失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("getRecorderManager")) {
+ //获取全局唯一的录音管理器 recorderManager
+ uni.getRecorderManager = function (object) {
+ console.warn("api: uni.getRecorderManager 获取全局唯一的录音管理器 在当前平台不支持")
+ }
+ }
+
+ if (isApiNotImplemented("getBackgroundAudioManager")) {
+ //获取全局唯一的背景音频管理器 backgroundAudioManager
+ uni.getBackgroundAudioManager = function (object) {
+ console.warn("api: uni.getBackgroundAudioManager 获取全局唯一的背景音频管理器 在当前平台不支持")
+ }
+ }
+
+ if (isApiNotImplemented("chooseMedia")) {
+ // 拍摄或从手机相册中选择图片或视频
+ uni.chooseMedia = function (object) {
+ console.warn("api: uni.chooseMedia 拍摄或从手机相册中选择图片或视频 在当前平台不支持,回调失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("saveVideoToPhotosAlbum")) {
+ // 保存视频到系统相册
+ uni.saveVideoToPhotosAlbum = function (object) {
+ console.warn("api: uni.saveVideoToPhotosAlbum 保存视频到系统相册 在当前平台不支持,回调失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("getVideoInfo")) {
+ // 获取视频详细信息
+ uni.getVideoInfo = function (object) {
+ console.warn("api: uni.getVideoInfo 获取视频详细信息 在当前平台不支持,回调失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("compressVideo")) {
+ // 压缩视频接口
+ uni.compressVideo = function (object) {
+ console.warn("api: uni.compressVideo 压缩视频接口 在当前平台不支持,回调失败")
+ options.fail && options.fail()
+ }
+ }
+
+
+ if (isApiNotImplemented("openVideoEditor")) {
+ // 打开视频编辑器
+ uni.openVideoEditor = function (object) {
+ console.warn("api: uni.openVideoEditor 打开视频编辑器 在当前平台不支持,回调失败")
+ options.fail && options.fail()
+ }
+ }
+}
+
+/**
+ * 设备
+ */
+function devicePolyfill () {
+ if (isApiNotImplemented("canIUse")) {
+ // 判断应用的 API,回调,参数,组件等是否在当前版本可用。
+ // h5时,恒返回true
+ uni.canIUse = function (object) {
+ console.warn("api: uni.canIUse 判断API在当前平台是否可用 返回true")
+ return true
+ }
+ }
+
+ //微信小程序
+ if (isApiNotImplemented("startDeviceMotionListening")) {
+ // 开始监听设备方向的变化
+ uni.startDeviceMotionListening = function (options) {
+ console.warn("api: uni.startDeviceMotionListening 开始监听设备方向的变化 在当前平台不支持")
+ options.success && options.success()
+ }
+ }
+
+ if (isApiNotImplemented("onMemoryWarning")) {
+ // 监听内存不足告警事件。
+ uni.onMemoryWarning = function (callback) {
+ console.warn("监听内存不足告警事件,仅支持微信小程序、支付宝小程序、百度小程序、QQ小程序,当前平台不支持,已注释")
+ }
+ }
+
+ if (isApiNotImplemented("offNetworkStatusChange")) {
+ // 取消监听网络状态变化
+ uni.offNetworkStatusChange = function (callback) { }
+ }
+ if (isApiNotImplemented("offAccelerometerChange")) {
+ // 取消监听加速度数据。
+ uni.offAccelerometerChange = function (callback) { }
+ }
+ if (isApiNotImplemented("startAccelerometer")) {
+ // 开始监听加速度数据。
+ uni.startAccelerometer = function (callback) {
+ console.warn("api: uni.startAccelerometer 开始监听加速度数据 在当前平台不支持")
+ }
+ }
+
+ if (isApiNotImplemented("offCompassChange")) {
+ // 取消监听罗盘数据
+ uni.offCompassChange = function (callback) {
+ console.warn("api: uni.offCompassChange 取消监听罗盘数据 在当前平台不支持")
+ }
+ }
+
+ if (isApiNotImplemented("startCompass")) {
+ // 开始监听罗盘数据
+ uni.startCompass = function (callback) {
+ console.warn("api: uni.startCompass 开始监听罗盘数据 在当前平台不支持")
+ }
+ }
+
+
+ if (isApiNotImplemented("onGyroscopeChange")) {
+ // 监听陀螺仪数据变化事件
+ uni.onGyroscopeChange = function (callback) {
+ console.warn("api: uni.onGyroscopeChange 监听陀螺仪数据变化事件 在当前平台不支持")
+ }
+ }
+
+ if (isApiNotImplemented("startGyroscope")) {
+ // 开始监听陀螺仪数据
+ uni.startGyroscope = function (callback) {
+ console.warn("api: uni.startGyroscope 监听陀螺仪数据变化事件 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("stopGyroscope")) {
+ // 停止监听陀螺仪数据
+ uni.stopGyroscope = function (callback) {
+ console.warn("api: uni.stopGyroscope 停止监听陀螺仪数据 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("scanCode")) {
+ // 调起客户端扫码界面,扫码成功后返回对应的结果
+ uni.scanCode = function (callback) {
+ console.warn("api: uni.scanCode 扫描二维码 在当前平台不支持")
+ }
+ }
+
+ if (isApiNotImplemented("setClipboardData")) {
+ // 设置系统剪贴板的内容
+ uni.setClipboardData = function (callback) {
+ console.warn("api: uni.setClipboardData 设置系统剪贴板的内容 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("getClipboardData")) {
+ // 获取系统剪贴板内容
+ uni.getClipboardData = function (callback) {
+ console.warn("api: uni.getClipboardData 获取系统剪贴板内容 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("setScreenBrightness")) {
+ // 设置屏幕亮度
+ uni.setScreenBrightness = function (callback) {
+ console.warn("api: uni.setScreenBrightness 设置屏幕亮度 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("getScreenBrightness")) {
+ // 获取屏幕亮度
+ uni.getScreenBrightness = function (callback) {
+ console.warn("api: uni.getScreenBrightness 获取屏幕亮度 在当前平台不支持")
+ }
+ }
+
+ if (isApiNotImplemented("setKeepScreenOn")) {
+ // 设置是否保持常亮状态
+ uni.setKeepScreenOn = function (callback) {
+ console.warn("api: uni.setKeepScreenOn 设置是否保持常亮状态 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("onUserCaptureScreen")) {
+ // 监听用户主动截屏事件
+ uni.onUserCaptureScreen = function (callback) {
+ console.warn("api: uni.onUserCaptureScreen 监听用户主动截屏事件 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("addPhoneContact")) {
+ // 添加联系人
+ uni.addPhoneContact = function (callback) {
+ console.warn("api: uni.addPhoneContact 添加联系人 在当前平台不支持")
+ }
+ }
+}
+
+/**
+ * 界面相关
+ */
+function uiPolyfill () {
+ if (isApiNotImplemented("hideNavigationBarLoading")) {
+ // 在当前页面隐藏导航条加载动画
+ uni.hideNavigationBarLoading = function (options) {
+ console.warn("api: uni.hideNavigationBarLoading 在当前页面隐藏导航条加载动画 在当前平台不支持,回调成功")
+ options.success && options.success()
+ }
+ }
+ if (isApiNotImplemented("hideHomeButton")) {
+ // 隐藏返回首页按钮
+ uni.hideHomeButton = function (options) {
+ console.warn("api: uni.hideHomeButton 隐藏返回首页按钮 在当前平台不支持,回调成功")
+ options.success && options.success()
+ }
+ }
+
+ if (isApiNotImplemented("setTabBarItem")) {
+ // 动态设置 tabBar 某一项的内容
+ uni.setTabBarItem = function (options) {
+ console.warn("api: uni.setTabBarItem 动态设置 tabBar 某一项的内容 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("setTabBarStyle")) {
+ // 动态设置 tabBar 的整体样式
+ uni.setTabBarStyle = function (options) {
+ console.warn("api: uni.setTabBarStyle 动态设置 tabBar 的整体样式 在当前平台不支持,回调成功")
+ options.success && options.success()
+ }
+ }
+
+ if (isApiNotImplemented("hideTabBar")) {
+ // 隐藏 tabBar
+ uni.hideTabBar = function (options) {
+ console.warn("api: uni.hideTabBar 隐藏 tabBar 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+
+
+ if (isApiNotImplemented("showTabBar")) {
+ // 显示 tabBar
+ uni.showTabBar = function (options) {
+ console.warn("api: uni.showTabBar 显示 tabBar 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("setTabBarBadge")) {
+ // 为 tabBar 某一项的右上角添加文本
+ uni.setTabBarBadge = function (options) {
+ console.warn("api: uni.setTabBarBadge 为 tabBar 某一项的右上角添加文本 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("removeTabBarBadge")) {
+ // 移除 tabBar 某一项右上角的文本
+ uni.removeTabBarBadge = function (options) {
+ console.warn("api: uni.removeTabBarBadge 移除 tabBar 某一项右上角的文本 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("showTabBarRedDot")) {
+ // 显示 tabBar 某一项的右上角的红点
+ uni.showTabBarRedDot = function (options) {
+ console.warn("api: uni.showTabBarRedDot 显示 tabBar 某一项的右上角的红点 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("hideTabBarRedDot")) {
+ // 隐藏 tabBar 某一项的右上角的红点
+ uni.hideTabBarRedDot = function (options) {
+ console.warn("api: uni.hideTabBarRedDot 隐藏 tabBar 某一项的右上角的红点 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ ///////////////////////////////
+ if (isApiNotImplemented("setBackgroundColor")) {
+ // 动态设置窗口的背景色
+ uni.setBackgroundColor = function (options) {
+ console.warn("api: uni.setBackgroundColor 动态设置窗口的背景色 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("setBackgroundTextStyle")) {
+ // 动态设置下拉背景字体、loading 图的样式
+ uni.setBackgroundTextStyle = function (options) {
+ console.warn("api: uni.setBackgroundTextStyle 动态设置下拉背景字体、loading 图的样式 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("onWindowResize")) {
+ // 监听窗口尺寸变化事件
+ uni.onWindowResize = function (callback) {
+ console.warn("api: uni.onWindowResize 监听窗口尺寸变化事件 在当前平台不支持,执行失败")
+ callback && callback()
+ }
+ }
+ if (isApiNotImplemented("offWindowResize")) {
+ // 取消监听窗口尺寸变化事件
+ uni.offWindowResize = function (callback) {
+ console.warn("api: uni.offWindowResize 取消监听窗口尺寸变化事件 在当前平台不支持,执行失败")
+ callback && callback()
+ }
+ }
+ if (isApiNotImplemented("loadFontFace")) {
+ // 动态加载网络字体
+ uni.loadFontFace = function (options) {
+ console.warn("api: uni.loadFontFace 动态加载网络字体 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("getMenuButtonBoundingClientRect")) {
+ // 微信胶囊按钮布局信息
+ uni.getMenuButtonBoundingClientRect = function () {
+ console.warn("api: uni.getMenuButtonBoundingClientRect 微信胶囊按钮布局信息 在当前平台不支持,执行失败")
+ }
+ }
+}
+/**
+ * file
+ */
+function filePolyfill () {
+ if (isApiNotImplemented("saveFile")) {
+ // 保存文件到本地
+ uni.saveFile = function (options) {
+ console.warn("api: uni.saveFile 保存文件到本地 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("getSavedFileList")) {
+ // 获取本地已保存的文件列表
+ uni.getSavedFileList = function (options) {
+ console.warn("api: uni.getSavedFileList 获取本地已保存的文件列表 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("getSavedFileInfo")) {
+ // 获取本地文件的文件信息
+ uni.getSavedFileInfo = function (options) {
+ console.warn("api: uni.getSavedFileInfo 获取本地文件的文件信息 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("removeSavedFile")) {
+ // 删除本地存储的文件
+ uni.removeSavedFile = function (options) {
+ console.warn("api: uni.removeSavedFile 删除本地存储的文件 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("getFileInfo")) {
+ // 获取文件信息
+ uni.getFileInfo = function (options) {
+ console.warn("api: uni.getFileInfo 获取文件信息 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("openDocument")) {
+ // 新开页面打开文档
+ uni.openDocument = function (options) {
+ console.warn("api: uni.openDocument 新开页面打开文档 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("getFileSystemManager")) {
+ // 获取全局唯一的文件管理器
+ uni.getFileSystemManager = function () {
+ console.warn("api: uni.getFileSystemManager 获取全局唯一的文件管理器 在当前平台不支持,执行失败")
+ }
+ }
+}
+
+/**
+ * canvas
+ */
+function canvasPolyfill () {
+ if (isApiNotImplemented("createOffscreenCanvas")) {
+ // 创建离屏 canvas 实例
+ uni.createOffscreenCanvas = function () {
+ console.warn("api: uni.createOffscreenCanvas 创建离屏 canvas 实例 在当前平台不支持,执行失败")
+ }
+ }
+
+ if (isApiNotImplemented("canvasToTempFilePath")) {
+ // 把当前画布指定区域的内容导出生成指定大小的图片
+ uni.canvasToTempFilePath = function () {
+ console.warn("api: uni.canvasToTempFilePath 把当前画布指定区域的内容导出生成指定大小的图片 在当前平台不支持,执行失败")
+ }
+ }
+}
+
+/**
+ * Ad广告
+ */
+function adPolyfill () {
+ if (isApiNotImplemented("createRewardedVideoAd")) {
+ // 激励视频广告
+ uni.createRewardedVideoAd = function () {
+ console.warn("api: uni.createRewardedVideoAd 激励视频广告 在当前平台不支持,执行失败")
+ return {
+ show () { },
+ onLoad () { },
+ offLoad () { },
+ load () { },
+ onError () { },
+ offError () { },
+ onClose () { },
+ offClose () { },
+ }
+ }
+ }
+ if (isApiNotImplemented("createInterstitialAd")) {
+ // 插屏广告组件
+ uni.createInterstitialAd = function () {
+ console.warn("api: uni.createInterstitialAd 插屏广告组件 在当前平台不支持,执行失败")
+ }
+ }
+}
+
+/**
+ * 第三方
+ */
+function pluginsPolyfill () {
+ if (isApiNotImplemented("getProvider")) {
+ // 获取服务供应商
+ uni.getProvider = function (options) {
+ console.warn("api: uni.getProvider 获取服务供应商 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("showShareMenu")) {
+ // 小程序的原生菜单中显示分享按钮
+ uni.showShareMenu = function (options) {
+ console.warn("api: uni.showShareMenu 小程序的原生菜单中显示分享按钮 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("hideShareMenu")) {
+ // 小程序的原生菜单中显示分享按钮
+ uni.hideShareMenu = function (options) {
+ console.warn("api: uni.hideShareMenu 小程序的原生菜单中隐藏分享按钮 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("requestPayment")) {
+ // 支付
+ uni.requestPayment = function (options) {
+ console.error("api: uni.requestPayment 支付 在当前平台不支持(需自行参考文档封装),执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("createWorker")) {
+ // 创建一个 Worker 线程
+ uni.createWorker = function () {
+ console.error("api: uni.createWorker 创建一个 Worker 线程 在当前平台不支持,执行失败")
+ }
+ }
+}
+
+/**
+ * 其他
+ */
+function otherPolyfill () {
+ if (isApiNotImplemented("authorize")) {
+ // 提前向用户发起授权请求
+ uni.authorize = function (options) {
+ console.warn("api: uni.authorize 提前向用户发起授权请求 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("openSetting")) {
+ // 调起客户端小程序设置界面
+ uni.openSetting = function (options) {
+ console.warn("api: uni.openSetting 调起客户端小程序设置界面 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("getSetting")) {
+ // 获取用户的当前设置
+ uni.getSetting = function (options) {
+ console.warn("api: uni.getSetting 获取用户的当前设置 在当前平台不支持,【关键流程函数】回调成功")
+ options.success && options.success({
+ authSetting: {
+ scope: {
+ userInfo: false
+ }
+ }
+ })
+ }
+ }
+
+ if (isApiNotImplemented("chooseAddress")) {
+ // 获取用户收货地址
+ uni.chooseAddress = function (options) {
+ console.warn("api: uni.chooseAddress 获取用户收货地址 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("chooseInvoiceTitle")) {
+ // 选择用户的发票抬头
+ uni.chooseInvoiceTitle = function (options) {
+ console.warn("api: uni.chooseInvoiceTitle 选择用户的发票抬头 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("navigateToMiniProgram")) {
+ // 打开另一个小程序
+ uni.navigateToMiniProgram = function (options) {
+ console.warn("api: uni.navigateToMiniProgram 打开另一个小程序 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("navigateBackMiniProgram")) {
+ // 跳转回上一个小程序
+ uni.navigateBackMiniProgram = function (options) {
+ console.warn("api: uni.navigateBackMiniProgram 跳转回上一个小程序 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("getAccountInfoSync")) {
+ // 获取当前帐号信息
+ uni.getAccountInfoSync = function (options) {
+ console.warn("api: uni.getAccountInfoSync 获取当前帐号信息 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+
+ if (isApiNotImplemented("requestSubscribeMessage")) {
+ // 订阅消息
+ uni.requestSubscribeMessage = function (options) {
+ console.warn("api: uni.requestSubscribeMessage 订阅消息 在当前平台不支持,执行失败")
+ options.fail && options.fail()
+ }
+ }
+ if (isApiNotImplemented("getUpdateManager")) {
+ // 管理小程序更新
+ uni.getUpdateManager = function (options) {
+ console.error("api: uni.getUpdateManager 管理小程序更新 在当前平台不支持,执行失败")
+ }
+ }
+ if (isApiNotImplemented("setEnableDebug")) {
+ // 设置是否打开调试开关
+ uni.setEnableDebug = function (options) {
+ console.error("api: uni.setEnableDebug 设置是否打开调试开关 在当前平台不支持,执行失败")
+ }
+ }
+ if (isApiNotImplemented("getExtConfig")) {
+ // 获取第三方平台自定义的数据字段
+ uni.getExtConfig = function (options) {
+ console.error("api: uni.getExtConfig 获取第三方平台自定义的数据字段 在当前平台不支持,执行失败")
+ }
+ }
+ if (isApiNotImplemented("getExtConfigSync")) {
+ // uni.getExtConfig 的同步版本
+ uni.getExtConfigSync = function (options) {
+ console.error("api: uni.getExtConfigSync uni.getExtConfig 的同步版本 在当前平台不支持,执行失败")
+ }
+ }
+}
+
+/**
+ * 认证
+ */
+function soterAuthPolyfill () {
+ if (isApiNotImplemented("startSoterAuthentication")) {
+ // 开始 SOTER 生物认证
+ uni.startSoterAuthentication = function (options) {
+ console.warn("api: uni.startSoterAuthentication 开始 SOTER 生物认证 在当前平台不支持")
+ options.success && options.success()
+ }
+ }
+ if (isApiNotImplemented("checkIsSupportSoterAuthentication")) {
+ // 获取本机支持的 SOTER 生物认证方式
+ uni.checkIsSupportSoterAuthentication = function (options) {
+ console.warn("api: uni.checkIsSupportSoterAuthentication 开获取本机支持的 SOTER 生物认证方式 在当前平台不支持")
+ options.success && options.success()
+ }
+ }
+ if (isApiNotImplemented("checkIsSoterEnrolledInDevice")) {
+ // 获取设备内是否录入如指纹等生物信息的接口
+ uni.checkIsSoterEnrolledInDevice = function (options) {
+ console.warn("api: uni.checkIsSoterEnrolledInDevice 获取设备内是否录入如指纹等生物信息的接口 在当前平台不支持")
+ options.success && options.success()
+ }
+ }
+}
+
+/**
+ * nfc
+ */
+function nfcPolyfill () {
+ //微信小程序
+ if (isApiNotImplemented("startHCE")) {
+ // 初始化 NFC 模块
+ uni.startHCE = function (options) {
+ console.warn("api: uni.startHCE 初始化 NFC 模块 在当前平台不支持")
+ options.success && options.success()
+ }
+ }
+}
+
+/**
+ * 电量
+ */
+function batteryPolyfill () {
+ //微信小程序
+ if (isApiNotImplemented("getBatteryInfo")) {
+ // 获取设备电量
+ uni.getBatteryInfo = function (options) {
+ console.warn("api: uni.getBatteryInfo 获取设备电量 在当前平台不支持")
+ options.success && options.success()
+ }
+ }
+ //微信小程序
+ if (isApiNotImplemented("getBatteryInfoSync")) {
+ // 同步获取设备电量
+ uni.getBatteryInfoSync = function (options) {
+ console.warn("api: uni.getBatteryInfoSync 同步获取设备电量 在当前平台不支持")
+ }
+ }
+}
+
+/**
+ * wifi
+ */
+function wifiPolyfill () {
+ //微信小程序
+ if (isApiNotImplemented("startWifi")) {
+ // 初始化 Wi-Fi 模块
+ uni.startWifi = function (options) {
+ console.warn("api: uni.startWifi 初始化 Wi-Fi 模块 在当前平台不支持")
+ options.success && options.success()
+ }
+ }
+ //字节跳动
+ if (isApiNotImplemented("getConnectedWifi")) {
+ // 获取设备当前所连的 WiFi 信息
+ uni.getConnectedWifi = function (options) {
+ console.warn("api: uni.getConnectedWifi 初获取设备当前所连的 WiFi 信息 在当前平台不支持")
+ options.success && options.success()
+ }
+ }
+}
+
+/**
+ * 蓝牙
+ */
+function bluetoothPolyfill () {
+ //蓝牙
+ if (isApiNotImplemented("openBluetoothAdapter")) {
+ // 初始化蓝牙模块
+ uni.openBluetoothAdapter = function (object) {
+ console.warn("api: uni.openBluetoothAdapter 初始化蓝牙模块 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("startBluetoothDevicesDiscovery")) {
+ // 开始搜寻附近的蓝牙外围设备
+ uni.startBluetoothDevicesDiscovery = function (callback) {
+ console.warn("api: uni.startBluetoothDevicesDiscovery 开始搜寻附近的蓝牙外围设备 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("onBluetoothDeviceFound")) {
+ // 监听寻找到新设备的事件
+ uni.onBluetoothDeviceFound = function (callback) {
+ console.warn("api: uni.onBluetoothDeviceFound 监听寻找到新设备的事件 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("stopBluetoothDevicesDiscovery")) {
+ // 停止搜寻附近的蓝牙外围设备
+ uni.stopBluetoothDevicesDiscovery = function (callback) {
+ console.warn("api: uni.stopBluetoothDevicesDiscovery 停止搜寻附近的蓝牙外围设备 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("onBluetoothAdapterStateChange")) {
+ // 监听蓝牙适配器状态变化事件
+ uni.onBluetoothAdapterStateChange = function (callback) {
+ console.warn("api: uni.onBluetoothAdapterStateChange 监听蓝牙适配器状态变化事件 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("getConnectedBluetoothDevices")) {
+ // 根据 uuid 获取处于已连接状态的设备
+ uni.getConnectedBluetoothDevices = function (callback) {
+ console.warn("api: uni.getConnectedBluetoothDevices 根据 uuid 获取处于已连接状态的设备 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("getBluetoothDevices")) {
+ // 获取在蓝牙模块生效期间所有已发现的蓝牙设备
+ uni.getBluetoothDevices = function (callback) {
+ console.warn("api: uni.getBluetoothDevices 获取在蓝牙模块生效期间所有已发现的蓝牙设备 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("getBluetoothAdapterState")) {
+ // 获取本机蓝牙适配器状态
+ uni.getBluetoothAdapterState = function (callback) {
+ console.warn("api: uni.getBluetoothAdapterState 获取本机蓝牙适配器状态 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("closeBluetoothAdapter")) {
+ // 关闭蓝牙模块
+ uni.closeBluetoothAdapter = function (callback) {
+ console.warn("api: uni.closeBluetoothAdapter 关闭蓝牙模块 在当前平台不支持")
+ }
+ }
+}
+
+/**
+ * 低功耗蓝牙
+ */
+function blePolyfill () {
+ if (isApiNotImplemented("setBLEMTU")) {
+ // 设置蓝牙最大传输单元
+ uni.setBLEMTU = function (callback) {
+ console.warn("api: uni.setBLEMTU 设置蓝牙最大传输单元 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("readBLECharacteristicValue")) {
+ // 读取低功耗蓝牙设备的特征值的二进制数据值
+ uni.readBLECharacteristicValue = function (callback) {
+ console.warn("api: uni.readBLECharacteristicValue 读取低功耗蓝牙设备的特征值的二进制数据值 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("onBLEConnectionStateChange")) {
+ // 关闭蓝牙模块
+ uni.onBLEConnectionStateChange = function (callback) {
+ console.warn("api: uni.onBLEConnectionStateChange 监听低功耗蓝牙连接状态的改变事件 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("notifyBLECharacteristicValueChange")) {
+ // 启用低功耗蓝牙设备特征值变化时的 notify 功能
+ uni.notifyBLECharacteristicValueChange = function (callback) {
+ console.warn("api: uni.notifyBLECharacteristicValueChange 启用低功耗蓝牙设备特征值变化时的 notify 功能 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("getBLEDeviceServices")) {
+ // 获取蓝牙设备所有服务
+ uni.getBLEDeviceServices = function (callback) {
+ console.warn("api: uni.getBLEDeviceServices 获取蓝牙设备所有服务 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("getBLEDeviceRSSI")) {
+ // 获取蓝牙设备的信号强度
+ uni.getBLEDeviceRSSI = function (callback) {
+ console.warn("api: uni.getBLEDeviceRSSI 获取蓝牙设备的信号强度 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("createBLEConnection")) {
+ // 连接低功耗蓝牙设备
+ uni.createBLEConnection = function (callback) {
+ console.warn("api: uni.createBLEConnection 连接低功耗蓝牙设备 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("closeBLEConnection")) {
+ // 断开与低功耗蓝牙设备的连接
+ uni.closeBLEConnection = function (callback) {
+ console.warn("api: uni.closeBLEConnection 断开与低功耗蓝牙设备的连接 在当前平台不支持")
+ }
+ }
+}
+
+/**
+ * iBeacon
+ */
+function iBeaconPolyfill () {
+ if (isApiNotImplemented("onBeaconServiceChange")) {
+ // 监听 iBeacon 服务状态变化事件
+ uni.onBeaconServiceChange = function (callback) {
+ console.warn("api: uni.onBeaconServiceChange 监听 iBeacon 服务状态变化事件 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("onBeaconUpdate")) {
+ // 监听 iBeacon 设备更新事件
+ uni.onBeaconUpdate = function (callback) {
+ console.warn("api: uni.onBeaconUpdate 监听 iBeacon 设备更新事件 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("getBeacons")) {
+ // 获取所有已搜索到的 iBeacon 设备
+ uni.getBeacons = function (callback) {
+ console.warn("api: uni.getBeacons 获取所有已搜索到的 iBeacon 设备 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("startBeaconDiscovery")) {
+ // 开始搜索附近的 iBeacon 设备
+ uni.startBeaconDiscovery = function (callback) {
+ console.warn("api: uni.startBeaconDiscovery 开始搜索附近的 iBeacon 设备 在当前平台不支持")
+ }
+ }
+ if (isApiNotImplemented("stopBeaconDiscovery")) {
+ // 停止搜索附近的 iBeacon 设备
+ uni.stopBeaconDiscovery = function (callback) {
+ console.warn("api: uni.stopBeaconDiscovery 停止搜索附近的 iBeacon 设备 在当前平台不支持")
+ }
+ }
+}
+
+/**
+* uni.navigateTo 和 uni.redirectTo 不能直接跳转tabbar里面的页面,拦截fail,并当它为tabbar页面时,直接调用uni.switchTab()
+*/
+function routerPolyfill () {
+ var routerApiFailEventHandle = function (res, options) {
+ if (res.errMsg.indexOf('tabbar page') > -1) {
+ console.error('res.errMsg: ' + res.errMsg)
+ var apiName = res.errMsg.match(/not\s(\w+)\sa/)[1]
+ console.log(apiName)
+ var url = options.url
+ if (url) {
+ var queryString = url.split('?')[1]
+ if (queryString) {
+ console.error(apiName + " 的参数将被忽略:" + queryString)
+ }
+ uni.switchTab({
+ url: url
+ })
+ }
+ }
+ }
+
+ var routerApiHandle = function (oriLogFunc) {
+ return function (options) {
+ try {
+ if (options.fail) {
+ options.fail = (function fail (failFun) {
+ return function (res) {
+ routerApiFailEventHandle(res, options)
+ failFun(res)
+ }
+ })(options.fail)
+ } else {
+ options.fail = function (res) {
+ routerApiFailEventHandle(res, options)
+ }
+ }
+ oriLogFunc.call(oriLogFunc, options)
+ } catch (e) {
+ console.error('uni.navigateTo or uni.redirectTo error', e)
+ }
+ }
+ }
+
+ uni.navigateTo = routerApiHandle(uni.navigateTo)
+ uni.redirectTo = routerApiHandle(uni.redirectTo)
+}
+
+var isInit = false
+/**
+ * polyfill 入口
+ */
+function init () {
+ if (isInit) return
+ isInit = true
+
+ console.log("Api polyfill start")
+ //条件编译
+ platformPolyfill()
+ //登录
+ loginPolyfill()
+ //base64
+ base64Polyfill()
+ //地图
+ mapPolyfill()
+ //设备
+ devicePolyfill()
+
+ //媒体相关
+ mediaPolyfill()
+
+ //蓝牙
+ bluetoothPolyfill()
+ //低功耗蓝牙
+ blePolyfill()
+ //iBeacon
+ iBeaconPolyfill()
+ //wifi
+ wifiPolyfill()
+ //电量信息
+ batteryPolyfill()
+ //nfc
+ nfcPolyfill()
+ //auth
+ soterAuthPolyfill()
+
+ //ui
+ uiPolyfill()
+ //file
+ filePolyfill()
+ //canvas
+ canvasPolyfill()
+ //ad
+ adPolyfill()
+ //plugins
+ pluginsPolyfill()
+ //other
+ otherPolyfill()
+
+ //router
+ routerPolyfill()
+}
+
+
+module.exports = {
+ init,
+ guid
+}
diff --git a/litemall-wx_uni/project.config.json b/litemall-wx_uni/project.config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f482d9ba5e79986daf043c66c28bda2b188e08b8
--- /dev/null
+++ b/litemall-wx_uni/project.config.json
@@ -0,0 +1,330 @@
+{
+ "description": "项目配置文件。",
+ "setting": {
+ "urlCheck": false,
+ "es6": true,
+ "enhance": true,
+ "postcss": true,
+ "preloadBackgroundData": false,
+ "minified": true,
+ "newFeature": true,
+ "coverView": true,
+ "nodeModules": true,
+ "autoAudits": false,
+ "showShadowRootInWxmlPanel": true,
+ "scopeDataCheck": false,
+ "uglifyFileName": true,
+ "checkInvalidKey": true,
+ "checkSiteMap": true,
+ "uploadWithSourceMap": true,
+ "compileHotReLoad": false,
+ "lazyloadPlaceholderEnable": false,
+ "useMultiFrameRuntime": true,
+ "useApiHook": true,
+ "useApiHostProcess": true,
+ "babelSetting": {
+ "ignore": [],
+ "disablePlugins": [],
+ "outputPath": ""
+ },
+ "enableEngineNative": false,
+ "useIsolateContext": false,
+ "userConfirmedBundleSwitch": false,
+ "packNpmManually": false,
+ "packNpmRelationList": [],
+ "minifyWXSS": true,
+ "disableUseStrict": false,
+ "showES6CompileOption": false,
+ "useCompilerPlugins": false
+ },
+ "compileType": "miniprogram",
+ "libVersion": "2.4.0",
+ "appid": "wx5e4cd1d279a5fca0",
+ "projectname": "litemall-wx",
+ "simulatorType": "wechat",
+ "simulatorPluginLibVersion": {},
+ "condition": {
+ "search": {
+ "list": []
+ },
+ "conversation": {
+ "list": []
+ },
+ "plugin": {
+ "list": []
+ },
+ "game": {
+ "list": []
+ },
+ "gamePlugin": {
+ "list": []
+ },
+ "miniprogram": {
+ "list": [
+ {
+ "id": -1,
+ "name": "首页",
+ "pathName": "pages/index/index",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "专题",
+ "pathName": "pages/topic/topic",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "专题详情",
+ "pathName": "pages/topicDetail/topicDetail",
+ "query": "id=314"
+ },
+ {
+ "id": -1,
+ "name": "专题评论列表",
+ "pathName": "pages/topicComment/topicComment",
+ "query": "valueId=314&type=1"
+ },
+ {
+ "id": -1,
+ "name": "专题评论添加",
+ "pathName": "pages/topicCommentPost/topicCommentPost",
+ "query": "valueId=314&type=1"
+ },
+ {
+ "id": -1,
+ "name": "品牌",
+ "pathName": "pages/brand/brand",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "品牌详情",
+ "pathName": "pages/brandDetail/brandDetail",
+ "query": "id=1001000"
+ },
+ {
+ "id": -1,
+ "name": "人气推荐",
+ "pathName": "pages/hotGoods/hotGoods",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "新品首发",
+ "pathName": "pages/newGoods/newGoods",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "分类",
+ "pathName": "pages/catalog/catalog",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "分类详情",
+ "pathName": "pages/category/category",
+ "query": "id=1008002"
+ },
+ {
+ "id": -1,
+ "name": "查找",
+ "pathName": "pages/search/search",
+ "query": ""
+ },
+ {
+ "id": 12,
+ "name": "商品",
+ "pathName": "pages/goods/goods",
+ "query": "id=1181003"
+ },
+ {
+ "id": -1,
+ "name": "商品评论列表",
+ "pathName": "pages/comment/comment",
+ "query": "valueId=1181000&type=0"
+ },
+ {
+ "id": -1,
+ "name": "购物车",
+ "pathName": "pages/cart/cart",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "下单",
+ "pathName": "pages/checkout/checkout",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "支付结果",
+ "pathName": "pages/payResult/payResult",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "我的",
+ "pathName": "pages/ucenter/index/index",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "我的订单列表",
+ "pathName": "pages/ucenter/order/order",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "我的订单详情",
+ "pathName": "pages/ucenter/orderDetail/orderDetail",
+ "query": "id=1"
+ },
+ {
+ "id": 22,
+ "name": "待评价的订单详情",
+ "pathName": "pages/ucenter/orderDetail/orderDetail",
+ "query": "id=1"
+ },
+ {
+ "id": -1,
+ "name": "购买商品评价",
+ "pathName": "pages/commentPost/commentPost",
+ "query": "orderId=2&type=0&valueId=1116011"
+ },
+ {
+ "id": 22,
+ "name": "我的优惠券",
+ "pathName": "pages/ucenter/couponList/couponList",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "我的收藏",
+ "pathName": "pages/ucenter/collect/collect",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "我的足迹",
+ "pathName": "pages/ucenter/footprint/footprint",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "我的地址",
+ "pathName": "pages/ucenter/address/address",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "我的地址添加",
+ "pathName": "pages/ucenter/addressAdd/addressAdd",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "登录",
+ "pathName": "pages/auth/login/login",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "账号登录",
+ "pathName": "pages/auth/accountLogin/accountLogin",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "注册",
+ "pathName": "pages/auth/register/register",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "找回密码",
+ "pathName": "pages/auth/reset/reset",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "关于",
+ "pathName": "pages/about/about",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "测试更新",
+ "pathName": "pages/index/index",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "意见反馈",
+ "pathName": "pages/ucenter/feedback/feedback",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "团购专区",
+ "pathName": "pages/groupon/grouponList/grouponList",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "选择优惠券",
+ "pathName": "pages/ucenter/couponSelect/couponSelect",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "我的优惠券列表",
+ "pathName": "pages/ucenter/couponList/couponList",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "优惠券列表",
+ "pathName": "pages/coupon/coupon",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "帮助中心",
+ "pathName": "pages/help/help",
+ "query": "",
+ "scene": null
+ },
+ {
+ "id": -1,
+ "name": "我的团购",
+ "pathName": "pages/groupon/myGroupon/myGroupon",
+ "query": "",
+ "scene": null
+ },
+ {
+ "id": -1,
+ "name": "申请售后",
+ "pathName": "pages/ucenter/aftersale/aftersale",
+ "query": "id=2",
+ "scene": null
+ },
+ {
+ "id": -1,
+ "name": "售后列表",
+ "pathName": "pages/ucenter/aftersaleList/aftersaleList",
+ "query": "",
+ "scene": null
+ },
+ {
+ "id": -1,
+ "name": "售后详情",
+ "pathName": "pages/ucenter/aftersaleDetail/aftersaleDetail",
+ "query": "id=1",
+ "scene": null
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/sitemap.json b/litemall-wx_uni/sitemap.json
new file mode 100644
index 0000000000000000000000000000000000000000..940dce4609f59316d7da443f4d1582e85a7a559d
--- /dev/null
+++ b/litemall-wx_uni/sitemap.json
@@ -0,0 +1,21 @@
+{
+ "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
+ "rules": [
+ {
+ "action": "disallow",
+ "page": "pages/checkout/checkout"
+ },
+ {
+ "action": "disallow",
+ "page": "pages/payResult/payResult"
+ },
+ {
+ "action": "disallow",
+ "page": "pages/ucenter/index/index"
+ },
+ {
+ "action": "allow",
+ "page": "*"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/static/images/about.png b/litemall-wx_uni/static/images/about.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbc47874543031cfff5a3f62bcfe910c066d41f1
Binary files /dev/null and b/litemall-wx_uni/static/images/about.png differ
diff --git a/litemall-wx_uni/static/images/address.png b/litemall-wx_uni/static/images/address.png
new file mode 100644
index 0000000000000000000000000000000000000000..df6e3a93b86a36ff13720a7380db48113364653b
Binary files /dev/null and b/litemall-wx_uni/static/images/address.png differ
diff --git a/litemall-wx_uni/static/images/aftersale.png b/litemall-wx_uni/static/images/aftersale.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed338acedb0920aa8a60635f4bfc3e7149f87158
Binary files /dev/null and b/litemall-wx_uni/static/images/aftersale.png differ
diff --git a/litemall-wx_uni/static/images/cart.png b/litemall-wx_uni/static/images/cart.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c9a08ce4a9fe378815caeadc1fa419d4c782cad
Binary files /dev/null and b/litemall-wx_uni/static/images/cart.png differ
diff --git a/litemall-wx_uni/static/images/cart@selected.png b/litemall-wx_uni/static/images/cart@selected.png
new file mode 100644
index 0000000000000000000000000000000000000000..d46f0de182e0b9e70a3291ca5036c8cc2454f73f
Binary files /dev/null and b/litemall-wx_uni/static/images/cart@selected.png differ
diff --git a/litemall-wx_uni/static/images/category.png b/litemall-wx_uni/static/images/category.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ffb7c844eb9f51a2f2bf1fd6a78b6793532085b
Binary files /dev/null and b/litemall-wx_uni/static/images/category.png differ
diff --git a/litemall-wx_uni/static/images/category@selected.png b/litemall-wx_uni/static/images/category@selected.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9e7efc0d386f4ab54fdc034d5dbb965b785a74a
Binary files /dev/null and b/litemall-wx_uni/static/images/category@selected.png differ
diff --git a/litemall-wx_uni/static/images/collect.png b/litemall-wx_uni/static/images/collect.png
new file mode 100644
index 0000000000000000000000000000000000000000..b156033680082e1d36801e78625e2df2cbf53c25
Binary files /dev/null and b/litemall-wx_uni/static/images/collect.png differ
diff --git a/litemall-wx_uni/static/images/comment.png b/litemall-wx_uni/static/images/comment.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b2722fa84051e3a8b284bff61ec1e37913beb0d
Binary files /dev/null and b/litemall-wx_uni/static/images/comment.png differ
diff --git a/litemall-wx_uni/static/images/coupon.png b/litemall-wx_uni/static/images/coupon.png
new file mode 100644
index 0000000000000000000000000000000000000000..7efd62bf47c0a9793f7f57bdb6a14a168f7fd6bb
Binary files /dev/null and b/litemall-wx_uni/static/images/coupon.png differ
diff --git a/litemall-wx_uni/static/images/customer.png b/litemall-wx_uni/static/images/customer.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4fb4ece0cec36d5623fc381dd4225df11841b8b
Binary files /dev/null and b/litemall-wx_uni/static/images/customer.png differ
diff --git a/litemall-wx_uni/static/images/feedback.png b/litemall-wx_uni/static/images/feedback.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa80d4f9eef7790818d16d1231ed6f4fce9b0ccf
Binary files /dev/null and b/litemall-wx_uni/static/images/feedback.png differ
diff --git a/litemall-wx_uni/static/images/footprint.png b/litemall-wx_uni/static/images/footprint.png
new file mode 100644
index 0000000000000000000000000000000000000000..32d24f7a808220d57572d402dd343333b876bc43
Binary files /dev/null and b/litemall-wx_uni/static/images/footprint.png differ
diff --git a/litemall-wx_uni/static/images/friend.png b/litemall-wx_uni/static/images/friend.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8a372b2c8fa353452c5b677018d3a1f8b1cd2d5
Binary files /dev/null and b/litemall-wx_uni/static/images/friend.png differ
diff --git a/litemall-wx_uni/static/images/group.png b/litemall-wx_uni/static/images/group.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8eb0a04d2095c3e3904bc6ca3d0af2376717334
Binary files /dev/null and b/litemall-wx_uni/static/images/group.png differ
diff --git a/litemall-wx_uni/static/images/help.png b/litemall-wx_uni/static/images/help.png
new file mode 100644
index 0000000000000000000000000000000000000000..4adc4b80b352757bfe628d4879445fafaa0f1ab5
Binary files /dev/null and b/litemall-wx_uni/static/images/help.png differ
diff --git a/litemall-wx_uni/static/images/home.png b/litemall-wx_uni/static/images/home.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e3df7884636bb7551563beeb09582844e66e2d0
Binary files /dev/null and b/litemall-wx_uni/static/images/home.png differ
diff --git a/litemall-wx_uni/static/images/home@selected.png b/litemall-wx_uni/static/images/home@selected.png
new file mode 100644
index 0000000000000000000000000000000000000000..b1d3723b3b3c2f6d124ff7b37193110adaed9274
Binary files /dev/null and b/litemall-wx_uni/static/images/home@selected.png differ
diff --git a/litemall-wx_uni/static/images/hot.png b/litemall-wx_uni/static/images/hot.png
new file mode 100644
index 0000000000000000000000000000000000000000..3bc7a7266db7034bbbfef83ba386495e602a3bfd
Binary files /dev/null and b/litemall-wx_uni/static/images/hot.png differ
diff --git a/litemall-wx_uni/static/images/icon_error.png b/litemall-wx_uni/static/images/icon_error.png
new file mode 100644
index 0000000000000000000000000000000000000000..b13c94ba6c9c11713b10a7d31c6a4364a4cf8a98
Binary files /dev/null and b/litemall-wx_uni/static/images/icon_error.png differ
diff --git a/litemall-wx_uni/static/images/mobile.png b/litemall-wx_uni/static/images/mobile.png
new file mode 100644
index 0000000000000000000000000000000000000000..d48b2bc7a2352886cf012a9794b26f40538d5b10
Binary files /dev/null and b/litemall-wx_uni/static/images/mobile.png differ
diff --git a/litemall-wx_uni/static/images/my.png b/litemall-wx_uni/static/images/my.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a401a8b34707cb5dfe3999f28b2439f4bb4d458
Binary files /dev/null and b/litemall-wx_uni/static/images/my.png differ
diff --git a/litemall-wx_uni/static/images/my@selected.png b/litemall-wx_uni/static/images/my@selected.png
new file mode 100644
index 0000000000000000000000000000000000000000..32aa4aada4723fcb8dfe9938689bbc6f5ad71309
Binary files /dev/null and b/litemall-wx_uni/static/images/my@selected.png differ
diff --git a/litemall-wx_uni/static/images/new.png b/litemall-wx_uni/static/images/new.png
new file mode 100644
index 0000000000000000000000000000000000000000..e003f91ccdee64998cab25d32178f6130e811f2b
Binary files /dev/null and b/litemall-wx_uni/static/images/new.png differ
diff --git a/litemall-wx_uni/static/images/pendpay.png b/litemall-wx_uni/static/images/pendpay.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ab0c263a0dbc22aa76e8315e481ff6b4ee849e3
Binary files /dev/null and b/litemall-wx_uni/static/images/pendpay.png differ
diff --git a/litemall-wx_uni/static/images/receive.png b/litemall-wx_uni/static/images/receive.png
new file mode 100644
index 0000000000000000000000000000000000000000..bad66f4c372de5f1ebc14c373db83ee19ee65540
Binary files /dev/null and b/litemall-wx_uni/static/images/receive.png differ
diff --git a/litemall-wx_uni/static/images/send.png b/litemall-wx_uni/static/images/send.png
new file mode 100644
index 0000000000000000000000000000000000000000..d8e481810b14891407863b1e990b5cb8aa3efb64
Binary files /dev/null and b/litemall-wx_uni/static/images/send.png differ
diff --git a/litemall-wx_uni/static/images/wechat.png b/litemall-wx_uni/static/images/wechat.png
new file mode 100644
index 0000000000000000000000000000000000000000..222857cbe34f8428de10b2ce6683784d6122329e
Binary files /dev/null and b/litemall-wx_uni/static/images/wechat.png differ
diff --git a/litemall-wx_uni/uni.scss b/litemall-wx_uni/uni.scss
new file mode 100644
index 0000000000000000000000000000000000000000..a05adb4a7e5b2fb8fc31efdfd0c4e6c41551d1ea
--- /dev/null
+++ b/litemall-wx_uni/uni.scss
@@ -0,0 +1,76 @@
+/**
+ * 这里是uni-app内置的常用样式变量
+ *
+ * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
+ * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
+ *
+ */
+
+/**
+ * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
+ *
+ * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
+ */
+
+/* 颜色变量 */
+
+/* 行为相关颜色 */
+$uni-color-primary: #007aff;
+$uni-color-success: #4cd964;
+$uni-color-warning: #f0ad4e;
+$uni-color-error: #dd524d;
+
+/* 文字基本颜色 */
+$uni-text-color:#333;//基本色
+$uni-text-color-inverse:#fff;//反色
+$uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息
+$uni-text-color-placeholder: #808080;
+$uni-text-color-disable:#c0c0c0;
+
+/* 背景颜色 */
+$uni-bg-color:#ffffff;
+$uni-bg-color-grey:#f8f8f8;
+$uni-bg-color-hover:#f1f1f1;//点击状态颜色
+$uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色
+
+/* 边框颜色 */
+$uni-border-color:#c8c7cc;
+
+/* 尺寸变量 */
+
+/* 文字尺寸 */
+$uni-font-size-sm:12px;
+$uni-font-size-base:14px;
+$uni-font-size-lg:16;
+
+/* 图片尺寸 */
+$uni-img-size-sm:20px;
+$uni-img-size-base:26px;
+$uni-img-size-lg:40px;
+
+/* Border Radius */
+$uni-border-radius-sm: 2px;
+$uni-border-radius-base: 3px;
+$uni-border-radius-lg: 6px;
+$uni-border-radius-circle: 50%;
+
+/* 水平间距 */
+$uni-spacing-row-sm: 5px;
+$uni-spacing-row-base: 10px;
+$uni-spacing-row-lg: 15px;
+
+/* 垂直间距 */
+$uni-spacing-col-sm: 4px;
+$uni-spacing-col-base: 8px;
+$uni-spacing-col-lg: 12px;
+
+/* 透明度 */
+$uni-opacity-disabled: 0.3; // 组件禁用态的透明度
+
+/* 文章场景相关 */
+$uni-color-title: #2C405A; // 文章标题颜色
+$uni-font-size-title:20px;
+$uni-color-subtitle: #555555; // 二级标题颜色
+$uni-font-size-subtitle:26px;
+$uni-color-paragraph: #3F536E; // 文章段落颜色
+$uni-font-size-paragraph:15px;
diff --git a/litemall-wx_uni/uni_modules/mp-html/README.md b/litemall-wx_uni/uni_modules/mp-html/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..efd81b386b92ed626f39448ac2ff397dfe37bf45
--- /dev/null
+++ b/litemall-wx_uni/uni_modules/mp-html/README.md
@@ -0,0 +1,160 @@
+## 功能介绍
+- 全端支持(含 `v3、NVUE`)
+- 支持丰富的标签(包括 `table`、`video`、`svg` 等)
+- 支持丰富的事件效果(自动预览图片、链接处理等)
+- 支持设置占位图(加载中、出错时、预览时)
+- 支持锚点跳转、长按复制等丰富功能
+- 支持大部分 *html* 实体
+- 丰富的插件(关键词搜索、内容 **编辑** 等)
+- 效率高、容错性强且轻量化
+
+查看 [功能介绍](https://jin-yufeng.gitee.io/mp-html/#/overview/feature) 了解更多
+
+## 使用方法
+- 源码方式
+ 1. 点击上方的使用 `HBuilder X` 导入插件或将下载的插件包拷贝到项目根目录下
+ 由于插件市场的 **非 uni_modules 版本** 无法更新,若需使用请从 [github](https://github.com/jin-yufeng/mp-html/tree/master/dist/uni-app) 或 [gitee](https://gitee.com/jin-yufeng/mp-html/tree/master/dist/uni-app) 获取最新版本
+ 2. 在需要使用页面的 `(n)vue` 文件中添加
+ ```html
+
+ ```
+ ```javascript
+ import mpHtml from '@/components/mp-html/mp-html'
+ export default {
+ // HBuilderX 2.5.5+ 可以通过 easycom 自动引入
+ components: {
+ mpHtml
+ },
+ data() {
+ return {
+ html: 'Hello World!'
+ }
+ }
+ }
+ ```
+
+- npm 方式
+ 1. 在项目根目录下执行
+ ```bash
+ npm install mp-html
+ ```
+ 2. 在需要使用页面的 `(n)vue` 文件中添加
+ ```html
+
+ ```
+ ```javascript
+ import mpHtml from 'mp-html/dist/uni-app/components/mp-html/mp-html'
+ export default {
+ // 不可省略
+ components: {
+ mpHtml
+ },
+ data() {
+ return {
+ html: 'Hello World!'
+ }
+ }
+ }
+ ```
+
+ 使用 *cli* 方式运行的项目,通过 *npm* 方式引入时,需要在 *vue.config.js* 中配置 *transpileDependencies*,详情可见 [#330](https://github.com/jin-yufeng/mp-html/issues/330#issuecomment-913617687)
+ 如果在 **nvue** 中使用还要将 `dist/uni-app/static` 目录下的内容拷贝到项目的 `static` 目录下,否则无法运行
+
+查看 [快速开始](https://jin-yufeng.gitee.io/mp-html/#/overview/quickstart) 了解更多
+
+## 组件属性
+
+| 属性 | 类型 | 默认值 | 说明 |
+|:---:|:---:|:---:|---|
+| container-style | String | | 容器的样式([2.1.0+](https://jin-yufeng.gitee.io/mp-html/#/changelog/changelog#v210)) |
+| content | String | | 用于渲染的 html 字符串 |
+| copy-link | Boolean | true | 是否允许外部链接被点击时自动复制 |
+| domain | String | | 主域名(用于链接拼接) |
+| error-img | String | | 图片出错时的占位图链接 |
+| lazy-load | Boolean | false | 是否开启图片懒加载 |
+| loading-img | String | | 图片加载过程中的占位图链接 |
+| pause-video | Boolean | true | 是否在播放一个视频时自动暂停其他视频 |
+| preview-img | Boolean | true | 是否允许图片被点击时自动预览 |
+| scroll-table | Boolean | false | 是否给每个表格添加一个滚动层使其能单独横向滚动 |
+| selectable | Boolean | false | 是否开启文本长按复制 |
+| set-title | Boolean | true | 是否将 title 标签的内容设置到页面标题 |
+| show-img-menu | Boolean | true | 是否允许图片被长按时显示菜单 |
+| tag-style | Object | | 设置标签的默认样式 |
+| use-anchor | Boolean | false | 是否使用锚点链接 |
+
+查看 [属性](https://jin-yufeng.gitee.io/mp-html/#/basic/prop) 了解更多
+
+## 组件事件
+
+| 名称 | 触发时机 |
+|:---:|---|
+| load | dom 树加载完毕时 |
+| ready | 图片加载完毕时 |
+| error | 发生渲染错误时 |
+| imgtap | 图片被点击时 |
+| linktap | 链接被点击时 |
+
+查看 [事件](https://jin-yufeng.gitee.io/mp-html/#/basic/event) 了解更多
+
+## api
+组件实例上提供了一些 `api` 方法可供调用
+
+| 名称 | 作用 |
+|:---:|---|
+| in | 将锚点跳转的范围限定在一个 scroll-view 内 |
+| navigateTo | 锚点跳转 |
+| getText | 获取文本内容 |
+| getRect | 获取富文本内容的位置和大小 |
+| setContent | 设置富文本内容 |
+| imgList | 获取所有图片的数组 |
+
+查看 [api](https://jin-yufeng.gitee.io/mp-html/#/advanced/api) 了解更多
+
+## 插件扩展
+除基本功能外,本组件还提供了丰富的扩展,可按照需要选用
+
+| 名称 | 作用 |
+|:---:|---|
+| audio | 音乐播放器 |
+| editable | 富文本编辑([示例项目](https://6874-html-foe72-1259071903.tcb.qcloud.la/editable.zip?sign=cc0017be203fb3dbca62d33a0c15792e&t=1608447445)) |
+| emoji | 解析 emoji |
+| highlight | 代码块高亮显示 |
+| markdown | 渲染 markdown |
+| search | 关键词搜索 |
+| style | 匹配 style 标签中的样式 |
+| txv-video | 使用腾讯视频 |
+| img-cache | 图片缓存 by [@PentaTea](https://github.com/PentaTea) |
+
+从插件市场导入的包中 **不含有** 扩展插件,需要使用插件参考以下方法:
+1. 获取完整组件包
+ ```bash
+ npm install mp-html
+ ```
+2. 编辑 `tools/config.js` 中的 `plugins` 项,选择需要的插件
+3. 生成新的组件包
+ 在 `node_modules/mp-html` 目录下执行
+ ```bash
+ npm install
+ npm run build:uni-app
+ ```
+4. 拷贝 `dist/uni-app` 中的内容到项目根目录
+
+查看 [插件](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin) 了解更多
+
+## 示例体验
+
+
+## 关于 nvue
+`nvue` 使用原生渲染,不支持部分 `css` 样式,为实现和 `html` 相同的效果,组件内部通过 `web-view` 进行渲染,性能上差于原生,根据 `weex` 官方建议,`web` 标签仅应用在非常规的降级场景。因此,如果通过原生的方式(如 `richtext`)能够满足需要,则不建议使用本组件,如果有较多的富文本内容,则可以直接使用 `vue` 页面
+由于渲染方式与其他端不同,有以下限制:
+1. 不支持 `lazy-load` 属性
+2. 视频不支持全屏播放
+
+纯 `nvue` 模式下,[此问题](https://ask.dcloud.net.cn/question/119678) 修复前,不支持通过 `uni_modules` 引入,需要本地引入(将 [dist/uni-app](https://github.com/jin-yufeng/mp-html/tree/master/dist/uni-app) 中的内容拷贝到项目根目录下)
+
+## 问题反馈
+遇到问题时,请先查阅 [常见问题](https://jin-yufeng.gitee.io/mp-html/#/question/faq) 和 [issue](https://github.com/jin-yufeng/mp-html/issues) 中是否已有相同的问题
+可通过 [issue](https://github.com/jin-yufeng/mp-html/issues/new/choose) 、插件问答或发送邮件到 [mp_html@126.com](mailto:mp_html@126.com) 提问,不建议在评论区提问(不方便回复)
+提问请严格按照 [issue 模板](https://github.com/jin-yufeng/mp-html/issues/new/choose) ,描述清楚使用环境、`html` 内容或可复现的 `demo` 项目以及复现方式,对于 **描述不清**、**无法复现** 或重复的问题将不予回复
+
+查看 [问题反馈](https://jin-yufeng.gitee.io/mp-html/#/question/feedback) 了解更多
\ No newline at end of file
diff --git a/litemall-wx_uni/uni_modules/mp-html/changelog.md b/litemall-wx_uni/uni_modules/mp-html/changelog.md
new file mode 100644
index 0000000000000000000000000000000000000000..8512c304a1d1bfbdcb1f7430e43cfcc4f315875b
--- /dev/null
+++ b/litemall-wx_uni/uni_modules/mp-html/changelog.md
@@ -0,0 +1,62 @@
+## v2.2.0(2021-10-12)
+1. `A` 增加 `customElements` 配置项,便于添加自定义功能性标签 [详细](https://github.com/jin-yufeng/mp-html/issues/350)
+2. `A` `editable` 插件增加切换音视频自动播放状态的功能 [详细](https://github.com/jin-yufeng/mp-html/pull/341) by [@leeseett](https://github.com/leeseett)
+3. `A` `editable` 插件删除媒体标签时触发 `remove` 事件,便于删除已上传的文件
+4. `U` `editable` 插件 `insertImg` 方法支持同时插入多张图片 [详细](https://github.com/jin-yufeng/mp-html/issues/342)
+5. `U` `editable` 插入图片和音视频时支持拼接 `domian` 主域名
+6. `F` 修复了内部链接参数中包含 `://` 时被认为是外部链接的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/356)
+7. `F` 修复了部分 `svg` 标签名或属性名大小写不正确时不生效的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/351)
+8. `F` 修复了 `nvue` 页面运行到非 `app` 平台时可能样式错误的问题
+## v2.1.5(2021-08-13)
+1. `A` 增加支持标签的 `dir` 属性
+2. `F` 修复了 `ruby` 标签文字与拼音没有居中对齐的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/325)
+3. `F` 修复了音视频标签内有 `a` 标签时可能无法播放的问题
+4. `F` 修复了 `externStyle` 中的 `class` 名包含下划线或数字时可能失效的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/326)
+5. `F` 修复了 `h5` 端引入 `externStyle` 可能不生效的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/326)
+## v2.1.4(2021-07-14)
+1. `F` 修复了 `rt` 标签无法设置样式的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/318)
+2. `F` 修复了表格中有单元格同时合并行和列时可能显示不正确的问题
+3. `F` 修复了 `app` 端无法关闭图片长按菜单的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/322)
+4. `F` 修复了 `editable` 插件只能添加图片链接不能修改的问题 [详细](https://github.com/jin-yufeng/mp-html/pull/312) by [@leeseett](https://github.com/leeseett)
+## v2.1.3(2021-06-12)
+1. `A` `editable` 插件增加 `insertTable` 方法
+2. `U` `editable` 插件支持编辑表格中的空白单元格 [详细](https://github.com/jin-yufeng/mp-html/issues/310)
+3. `F` 修复了 `externStyle` 中使用伪类可能失效的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/298)
+4. `F` 修复了多个组件同时使用时 `tag-style` 属性时可能互相影响的问题 [详细](https://github.com/jin-yufeng/mp-html/pull/305) by [@woodguoyu](https://github.com/woodguoyu)
+5. `F` 修复了包含 `linearGradient` 的 `svg` 可能无法显示的问题
+6. `F` 修复了编译到头条小程序时可能报错的问题
+7. `F` 修复了 `nvue` 端不触发 `click` 事件的问题
+8. `F` 修复了 `editable` 插件尾部插入时无法撤销的问题
+9. `F` 修复了 `editable` 插件的 `insertHtml` 方法只能在末尾插入的问题
+10. `F` 修复了 `editable` 插件插入音频不显示的问题
+## v2.1.2(2021-04-24)
+1. `A` 增加了 [img-cache](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin#img-cache) 插件,可以在 `app` 端缓存图片 [详细](https://github.com/jin-yufeng/mp-html/issues/292) by [@PentaTea](https://github.com/PentaTea)
+2. `U` 支持通过 `container-style` 属性设置 `white-space` 来保留连续空格和换行符 [详细](https://jin-yufeng.gitee.io/mp-html/#/question/faq#space)
+3. `U` 代码风格符合 [standard](https://standardjs.com) 标准
+4. `U` `editable` 插件编辑状态下支持预览视频 [详细](https://github.com/jin-yufeng/mp-html/issues/286)
+5. `F` 修复了 `svg` 标签内嵌 `svg` 时无法显示的问题
+6. `F` 修复了编译到支付宝和头条小程序时部分区域不可复制的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/291)
+## v2.1.1(2021-04-09)
+1. 修复了对 `p` 标签设置 `tag-style` 可能不生效的问题
+2. 修复了 `svg` 标签中的文本无法显示的问题
+3. 修复了使用 `editable` 插件编辑表格时可能报错的问题
+4. 修复了使用 `highlight` 插件运行到头条小程序时可能没有样式的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/280)
+5. 修复了使用 `editable` 插件 `editable` 属性为 `false` 时会报错的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/284)
+6. 修复了 `style` 插件连续子选择器失效的问题
+7. 修复了 `editable` 插件无法修改图片和字体大小的问题
+## v2.1.0.2(2021-03-21)
+修复了 `nvue` 端使用可能报错的问题
+## v2.1.0(2021-03-20)
+1. `A` 增加了 [container-style](https://jin-yufeng.gitee.io/mp-html/#/basic/prop#container-style) 属性 [详细](https://gitee.com/jin-yufeng/mp-html/pulls/1)
+2. `A` 增加支持 `strike` 标签
+3. `A` `editable` 插件增加 `placeholder` 属性 [详细](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin#editable)
+4. `A` `editable` 插件增加 `insertHtml` 方法 [详细](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin#editable)
+5. `U` 外部样式支持标签名选择器 [详细](https://jin-yufeng.gitee.io/mp-html/#/overview/quickstart#setting)
+6. `F` 修复了 `nvue` 端部分情况下可能不显示的问题
+## v2.0.5(2021-03-12)
+1. `U` [linktap](https://jin-yufeng.gitee.io/mp-html/#/basic/event#linktap) 事件增加返回内部文本内容 `innerText` [详细](https://github.com/jin-yufeng/mp-html/issues/271)
+2. `U` [selectable](https://jin-yufeng.gitee.io/mp-html/#/basic/prop#selectable) 属性设置为 `force` 时能够在微信 `iOS` 端生效(文本块会变成 `inline-block`) [详细](https://github.com/jin-yufeng/mp-html/issues/267)
+3. `F` 修复了部分情况下竖向无法滚动的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/182)
+4. `F` 修复了多次修改富文本数据时部分内容可能不显示的问题
+5. `F` 修复了 [腾讯视频](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin#txv-video) 插件可能无法播放的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/265)
+6. `F` 修复了 [highlight](https://jin-yufeng.gitee.io/mp-html/#/advanced/plugin#highlight) 插件没有设置高亮语言时没有应用默认样式的问题 [详细](https://github.com/jin-yufeng/mp-html/issues/276) by [@fuzui](https://github.com/fuzui)
diff --git a/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue b/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue
new file mode 100644
index 0000000000000000000000000000000000000000..85ccc0a45323a806069bc09eaf00ec7d90f7fca4
--- /dev/null
+++ b/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue
@@ -0,0 +1,432 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue b/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue
new file mode 100644
index 0000000000000000000000000000000000000000..a31996c7bcc5a030124a7951fee141bb9505c99e
--- /dev/null
+++ b/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue
@@ -0,0 +1,524 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{n.text}}
+
+ \n
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/uni_modules/mp-html/components/mp-html/parser.js b/litemall-wx_uni/uni_modules/mp-html/components/mp-html/parser.js
new file mode 100644
index 0000000000000000000000000000000000000000..81ab62494267e98e273d06c07f9c7bddb7cf9d28
--- /dev/null
+++ b/litemall-wx_uni/uni_modules/mp-html/components/mp-html/parser.js
@@ -0,0 +1,1223 @@
+/**
+ * @fileoverview html 解析器
+ */
+
+// 配置
+const config = {
+ // 信任的标签(保持标签名不变)
+ trustTags: makeMap('a,abbr,ad,audio,b,blockquote,br,code,col,colgroup,dd,del,dl,dt,div,em,fieldset,h1,h2,h3,h4,h5,h6,hr,i,img,ins,label,legend,li,ol,p,q,ruby,rt,source,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,title,ul,video'),
+
+ // 块级标签(转为 div,其他的非信任标签转为 span)
+ blockTags: makeMap('address,article,aside,body,caption,center,cite,footer,header,html,nav,pre,section'),
+
+ // 要移除的标签
+ ignoreTags: makeMap('area,base,canvas,embed,frame,head,iframe,input,link,map,meta,param,rp,script,source,style,textarea,title,track,wbr'),
+
+ // 自闭合的标签
+ voidTags: makeMap('area,base,br,col,circle,ellipse,embed,frame,hr,img,input,line,link,meta,param,path,polygon,rect,source,track,use,wbr'),
+
+ // html 实体
+ entities: {
+ lt: '<',
+ gt: '>',
+ quot: '"',
+ apos: "'",
+ ensp: '\u2002',
+ emsp: '\u2003',
+ nbsp: '\xA0',
+ semi: ';',
+ ndash: '–',
+ mdash: '—',
+ middot: '·',
+ lsquo: '‘',
+ rsquo: '’',
+ ldquo: '“',
+ rdquo: '”',
+ bull: '•',
+ hellip: '…'
+ },
+
+ // 默认的标签样式
+ tagStyle: {
+ // #ifndef APP-PLUS-NVUE
+ address: 'font-style:italic',
+ big: 'display:inline;font-size:1.2em',
+ caption: 'display:table-caption;text-align:center',
+ center: 'text-align:center',
+ cite: 'font-style:italic',
+ dd: 'margin-left:40px',
+ mark: 'background-color:yellow',
+ pre: 'font-family:monospace;white-space:pre',
+ s: 'text-decoration:line-through',
+ small: 'display:inline;font-size:0.8em',
+ strike: 'text-decoration:line-through',
+ u: 'text-decoration:underline'
+ // #endif
+ },
+
+ // svg 大小写对照表
+ svgDict: {
+ animatetransform: 'animateTransform',
+ lineargradient: 'linearGradient',
+ viewbox: 'viewBox',
+ attributename: 'attributeName',
+ repeatcount: 'repeatCount',
+ repeatdur: 'repeatDur'
+ }
+}
+const tagSelector={}
+const {
+ windowWidth,
+ // #ifdef MP-WEIXIN
+ system
+ // #endif
+} = uni.getSystemInfoSync()
+const blankChar = makeMap(' ,\r,\n,\t,\f')
+let idIndex = 0
+
+// #ifdef H5 || APP-PLUS
+config.ignoreTags.iframe = undefined
+config.trustTags.iframe = true
+config.ignoreTags.embed = undefined
+config.trustTags.embed = true
+// #endif
+// #ifdef APP-PLUS-NVUE
+config.ignoreTags.source = undefined
+config.ignoreTags.style = undefined
+// #endif
+
+/**
+ * @description 创建 map
+ * @param {String} str 逗号分隔
+ */
+function makeMap (str) {
+ const map = Object.create(null)
+ const list = str.split(',')
+ for (let i = list.length; i--;) {
+ map[list[i]] = true
+ }
+ return map
+}
+
+/**
+ * @description 解码 html 实体
+ * @param {String} str 要解码的字符串
+ * @param {Boolean} amp 要不要解码 &
+ * @returns {String} 解码后的字符串
+ */
+function decodeEntity (str, amp) {
+ let i = str.indexOf('&')
+ while (i !== -1) {
+ const j = str.indexOf(';', i + 3)
+ let code
+ if (j === -1) break
+ if (str[i + 1] === '#') {
+ // { 形式的实体
+ code = parseInt((str[i + 2] === 'x' ? '0' : '') + str.substring(i + 2, j))
+ if (!isNaN(code)) {
+ str = str.substr(0, i) + String.fromCharCode(code) + str.substr(j + 1)
+ }
+ } else {
+ // 形式的实体
+ code = str.substring(i + 1, j)
+ if (config.entities[code] || (code === 'amp' && amp)) {
+ str = str.substr(0, i) + (config.entities[code] || '&') + str.substr(j + 1)
+ }
+ }
+ i = str.indexOf('&', i + 1)
+ }
+ return str
+}
+
+/**
+ * @description html 解析器
+ * @param {Object} vm 组件实例
+ */
+function Parser (vm) {
+ this.options = vm || {}
+ this.tagStyle = Object.assign({}, config.tagStyle, this.options.tagStyle)
+ this.imgList = vm.imgList || []
+ this.plugins = vm.plugins || []
+ this.attrs = Object.create(null)
+ this.stack = []
+ this.nodes = []
+ this.pre = (this.options.containerStyle || '').includes('white-space') && this.options.containerStyle.includes('pre') ? 2 : 0
+}
+
+/**
+ * @description 执行解析
+ * @param {String} content 要解析的文本
+ */
+Parser.prototype.parse = function (content) {
+ // 插件处理
+ for (let i = this.plugins.length; i--;) {
+ if (this.plugins[i].onUpdate) {
+ content = this.plugins[i].onUpdate(content, config) || content
+ }
+ }
+
+ new Lexer(this).parse(content)
+ // 出栈未闭合的标签
+ while (this.stack.length) {
+ this.popNode()
+ }
+ return this.nodes
+}
+
+/**
+ * @description 将标签暴露出来(不被 rich-text 包含)
+ */
+Parser.prototype.expose = function () {
+ // #ifndef APP-PLUS-NVUE
+ for (let i = this.stack.length; i--;) {
+ const item = this.stack[i]
+ if (item.c || item.name === 'a' || item.name === 'video' || item.name === 'audio') return
+ item.c = 1
+ }
+ // #endif
+}
+
+/**
+ * @description 处理插件
+ * @param {Object} node 要处理的标签
+ * @returns {Boolean} 是否要移除此标签
+ */
+Parser.prototype.hook = function (node) {
+ for (let i = this.plugins.length; i--;) {
+ if (this.plugins[i].onParse && this.plugins[i].onParse(node, this) === false) {
+ return false
+ }
+ }
+ return true
+}
+
+/**
+ * @description 将链接拼接上主域名
+ * @param {String} url 需要拼接的链接
+ * @returns {String} 拼接后的链接
+ */
+Parser.prototype.getUrl = function (url) {
+ const domain = this.options.domain
+ if (url[0] === '/') {
+ if (url[1] === '/') {
+ // // 开头的补充协议名
+ url = (domain ? domain.split('://')[0] : 'http') + ':' + url
+ } else if (domain) {
+ // 否则补充整个域名
+ url = domain + url
+ }
+ } else if (domain && !url.includes('data:') && !url.includes('://')) {
+ url = domain + '/' + url
+ }
+ return url
+}
+
+/**
+ * @description 解析样式表
+ * @param {Object} node 标签
+ * @returns {Object}
+ */
+Parser.prototype.parseStyle = function (node) {
+ const attrs = node.attrs
+ const list = (this.tagStyle[node.name] || '').split(';').concat((attrs.style || '').split(';'))
+ const styleObj = {}
+ let tmp = ''
+
+ if (attrs.id && !this.xml) {
+ // 暴露锚点
+ if (this.options.useAnchor) {
+ this.expose()
+ } else if (node.name !== 'img' && node.name !== 'a' && node.name !== 'video' && node.name !== 'audio') {
+ attrs.id = undefined
+ }
+ }
+
+ // 转换 width 和 height 属性
+ if (attrs.width) {
+ styleObj.width = parseFloat(attrs.width) + (attrs.width.includes('%') ? '%' : 'px')
+ attrs.width = undefined
+ }
+ if (attrs.height) {
+ styleObj.height = parseFloat(attrs.height) + (attrs.height.includes('%') ? '%' : 'px')
+ attrs.height = undefined
+ }
+
+ for (let i = 0, len = list.length; i < len; i++) {
+ const info = list[i].split(':')
+ if (info.length < 2) continue
+ const key = info.shift().trim().toLowerCase()
+ let value = info.join(':').trim()
+ if ((value[0] === '-' && value.lastIndexOf('-') > 0) || value.includes('safe')) {
+ // 兼容性的 css 不压缩
+ tmp += `;${key}:${value}`
+ } else if (!styleObj[key] || value.includes('import') || !styleObj[key].includes('import')) {
+ // 重复的样式进行覆盖
+ if (value.includes('url')) {
+ // 填充链接
+ let j = value.indexOf('(') + 1
+ if (j) {
+ while (value[j] === '"' || value[j] === "'" || blankChar[value[j]]) {
+ j++
+ }
+ value = value.substr(0, j) + this.getUrl(value.substr(j))
+ }
+ } else if (value.includes('rpx')) {
+ // 转换 rpx(rich-text 内部不支持 rpx)
+ value = value.replace(/[0-9.]+\s*rpx/g, $ => parseFloat($) * windowWidth / 750 + 'px')
+ }
+ styleObj[key] = value
+ }
+ }
+
+ node.attrs.style = tmp
+ return styleObj
+}
+
+/**
+ * @description 解析到标签名
+ * @param {String} name 标签名
+ * @private
+ */
+Parser.prototype.onTagName = function (name) {
+ this.tagName = this.xml ? name : name.toLowerCase()
+ if (this.tagName === 'svg') {
+ this.xml = (this.xml || 0) + 1 // svg 标签内大小写敏感
+ }
+}
+
+/**
+ * @description 解析到属性名
+ * @param {String} name 属性名
+ * @private
+ */
+Parser.prototype.onAttrName = function (name) {
+ name = this.xml ? name : name.toLowerCase()
+ if (name.substr(0, 5) === 'data-') {
+ if (name === 'data-src' && !this.attrs.src) {
+ // data-src 自动转为 src
+ this.attrName = 'src'
+ } else if (this.tagName === 'img' || this.tagName === 'a') {
+ // a 和 img 标签保留 data- 的属性,可以在 imgtap 和 linktap 事件中使用
+ this.attrName = name
+ } else {
+ // 剩余的移除以减小大小
+ this.attrName = undefined
+ }
+ } else {
+ this.attrName = name
+ this.attrs[name] = 'T' // boolean 型属性缺省设置
+ }
+}
+
+/**
+ * @description 解析到属性值
+ * @param {String} val 属性值
+ * @private
+ */
+Parser.prototype.onAttrVal = function (val) {
+ const name = this.attrName || ''
+ if (name === 'style' || name === 'href') {
+ // 部分属性进行实体解码
+ this.attrs[name] = decodeEntity(val, true)
+ } else if (name.includes('src')) {
+ // 拼接主域名
+ this.attrs[name] = this.getUrl(decodeEntity(val, true))
+ } else if (name) {
+ this.attrs[name] = val
+ }
+}
+
+/**
+ * @description 解析到标签开始
+ * @param {Boolean} selfClose 是否有自闭合标识 />
+ * @private
+ */
+Parser.prototype.onOpenTag = function (selfClose) {
+ // 拼装 node
+ const node = Object.create(null)
+ node.name = this.tagName
+ node.attrs = this.attrs
+ // 避免因为自动 diff 使得 type 被设置为 null 导致部分内容不显示
+ if (this.options.nodes.length) {
+ node.type = 'node'
+ }
+ this.attrs = Object.create(null)
+
+ const attrs = node.attrs
+ const parent = this.stack[this.stack.length - 1]
+ const siblings = parent ? parent.children : this.nodes
+ const close = this.xml ? selfClose : config.voidTags[node.name]
+
+ // 替换标签名选择器
+ if (tagSelector[node.name]) {
+ attrs.class = tagSelector[node.name] + (attrs.class ? ' ' + attrs.class : '')
+ }
+
+ // 转换 embed 标签
+ if (node.name === 'embed') {
+ // #ifndef H5 || APP-PLUS
+ const src = attrs.src || ''
+ // 按照后缀名和 type 将 embed 转为 video 或 audio
+ if (src.includes('.mp4') || src.includes('.3gp') || src.includes('.m3u8') || (attrs.type || '').includes('video')) {
+ node.name = 'video'
+ } else if (src.includes('.mp3') || src.includes('.wav') || src.includes('.aac') || src.includes('.m4a') || (attrs.type || '').includes('audio')) {
+ node.name = 'audio'
+ }
+ if (attrs.autostart) {
+ attrs.autoplay = 'T'
+ }
+ attrs.controls = 'T'
+ // #endif
+ // #ifdef H5 || APP-PLUS
+ this.expose()
+ // #endif
+ }
+
+ // #ifndef APP-PLUS-NVUE
+ // 处理音视频
+ if (node.name === 'video' || node.name === 'audio') {
+ // 设置 id 以便获取 context
+ if (node.name === 'video' && !attrs.id) {
+ attrs.id = 'v' + idIndex++
+ }
+ // 没有设置 controls 也没有设置 autoplay 的自动设置 controls
+ if (!attrs.controls && !attrs.autoplay) {
+ attrs.controls = 'T'
+ }
+ // 用数组存储所有可用的 source
+ node.src = []
+ if (attrs.src) {
+ node.src.push(attrs.src)
+ attrs.src = undefined
+ }
+ this.expose()
+ }
+ // #endif
+
+ // 处理自闭合标签
+ if (close) {
+ if (!this.hook(node) || config.ignoreTags[node.name]) {
+ // 通过 base 标签设置主域名
+ if (node.name === 'base' && !this.options.domain) {
+ this.options.domain = attrs.href
+ } /* #ifndef APP-PLUS-NVUE */ else if (node.name === 'source' && parent && (parent.name === 'video' || parent.name === 'audio') && attrs.src) {
+ // 设置 source 标签(仅父节点为 video 或 audio 时有效)
+ parent.src.push(attrs.src)
+ } /* #endif */
+ return
+ }
+
+ // 解析 style
+ const styleObj = this.parseStyle(node)
+
+ // 处理图片
+ if (node.name === 'img') {
+ if (attrs.src) {
+ // 标记 webp
+ if (attrs.src.includes('webp')) {
+ node.webp = 'T'
+ }
+ // data url 图片如果没有设置 original-src 默认为不可预览的小图片
+ if (attrs.src.includes('data:') && !attrs['original-src']) {
+ attrs.ignore = 'T'
+ }
+ if (!attrs.ignore || node.webp || attrs.src.includes('cloud://')) {
+ for (let i = this.stack.length; i--;) {
+ const item = this.stack[i]
+ if (item.name === 'a') {
+ node.a = item.attrs
+ break
+ }
+ // #ifndef H5 || APP-PLUS
+ const style = item.attrs.style || ''
+ if (style.includes('flex:') && !style.includes('flex:0') && !style.includes('flex: 0') && (!styleObj.width || !styleObj.width.includes('%'))) {
+ styleObj.width = '100% !important'
+ styleObj.height = ''
+ for (let j = i + 1; j < this.stack.length; j++) {
+ this.stack[j].attrs.style = (this.stack[j].attrs.style || '').replace('inline-', '')
+ }
+ } else if (style.includes('flex') && styleObj.width === '100%') {
+ for (let j = i + 1; j < this.stack.length; j++) {
+ const style = this.stack[j].attrs.style || ''
+ if (!style.includes(';width') && !style.includes(' width') && style.indexOf('width') !== 0) {
+ styleObj.width = ''
+ break
+ }
+ }
+ } else if (style.includes('inline-block')) {
+ if (styleObj.width && styleObj.width[styleObj.width.length - 1] === '%') {
+ item.attrs.style += ';max-width:' + styleObj.width
+ styleObj.width = ''
+ } else {
+ item.attrs.style += ';max-width:100%'
+ }
+ }
+ // #endif
+ item.c = 1
+ }
+ attrs.i = this.imgList.length.toString()
+ let src = attrs['original-src'] || attrs.src
+ // #ifndef H5 || MP-ALIPAY || APP-PLUS || MP-360
+ if (this.imgList.includes(src)) {
+ // 如果有重复的链接则对域名进行随机大小写变换避免预览时错位
+ let i = src.indexOf('://')
+ if (i !== -1) {
+ i += 3
+ let newSrc = src.substr(0, i)
+ for (; i < src.length; i++) {
+ if (src[i] === '/') break
+ newSrc += Math.random() > 0.5 ? src[i].toUpperCase() : src[i]
+ }
+ newSrc += src.substr(i)
+ src = newSrc
+ }
+ }
+ // #endif
+ this.imgList.push(src)
+ // #ifdef H5 || APP-PLUS
+ if (this.options.lazyLoad) {
+ attrs['data-src'] = attrs.src
+ attrs.src = undefined
+ }
+ // #endif
+ }
+ }
+ if (styleObj.display === 'inline') {
+ styleObj.display = ''
+ }
+ // #ifndef APP-PLUS-NVUE
+ if (attrs.ignore) {
+ styleObj['max-width'] = styleObj['max-width'] || '100%'
+ attrs.style += ';-webkit-touch-callout:none'
+ }
+ // #endif
+ // 设置的宽度超出屏幕,为避免变形,高度转为自动
+ if (parseInt(styleObj.width) > windowWidth) {
+ styleObj.height = undefined
+ }
+ // 记录是否设置了宽高
+ if (styleObj.width) {
+ if (styleObj.width.includes('auto')) {
+ styleObj.width = ''
+ } else {
+ node.w = 'T'
+ if (styleObj.height && !styleObj.height.includes('auto')) {
+ node.h = 'T'
+ }
+ }
+ }
+ } else if (node.name === 'svg') {
+ siblings.push(node)
+ this.stack.push(node)
+ this.popNode()
+ return
+ }
+ for (const key in styleObj) {
+ if (styleObj[key]) {
+ attrs.style += `;${key}:${styleObj[key].replace(' !important', '')}`
+ }
+ }
+ attrs.style = attrs.style.substr(1) || undefined
+ } else {
+ if ((node.name === 'pre' || ((attrs.style || '').includes('white-space') && attrs.style.includes('pre'))) && this.pre !== 2) {
+ this.pre = node.pre = 1
+ }
+ node.children = []
+ this.stack.push(node)
+ }
+
+ // 加入节点树
+ siblings.push(node)
+}
+
+/**
+ * @description 解析到标签结束
+ * @param {String} name 标签名
+ * @private
+ */
+Parser.prototype.onCloseTag = function (name) {
+ // 依次出栈到匹配为止
+ name = this.xml ? name : name.toLowerCase()
+ let i
+ for (i = this.stack.length; i--;) {
+ if (this.stack[i].name === name) break
+ }
+ if (i !== -1) {
+ while (this.stack.length > i) {
+ this.popNode()
+ }
+ } else if (name === 'p' || name === 'br') {
+ const siblings = this.stack.length ? this.stack[this.stack.length - 1].children : this.nodes
+ siblings.push({
+ name,
+ attrs: {
+ class: tagSelector[name],
+ style: this.tagStyle[name]
+ }
+ })
+ }
+}
+
+/**
+ * @description 处理标签出栈
+ * @private
+ */
+Parser.prototype.popNode = function () {
+ const node = this.stack.pop()
+ let attrs = node.attrs
+ const children = node.children
+ const parent = this.stack[this.stack.length - 1]
+ const siblings = parent ? parent.children : this.nodes
+
+ if (!this.hook(node) || config.ignoreTags[node.name]) {
+ // 获取标题
+ if (node.name === 'title' && children.length && children[0].type === 'text' && this.options.setTitle) {
+ uni.setNavigationBarTitle({
+ title: children[0].text
+ })
+ }
+ siblings.pop()
+ return
+ }
+
+ if (node.pre && this.pre !== 2) {
+ // 是否合并空白符标识
+ this.pre = node.pre = undefined
+ for (let i = this.stack.length; i--;) {
+ if (this.stack[i].pre) {
+ this.pre = 1
+ }
+ }
+ }
+
+ const styleObj = {}
+
+ // 转换 svg
+ if (node.name === 'svg') {
+ if (this.xml > 1) {
+ // 多层 svg 嵌套
+ this.xml--
+ return
+ }
+ // #ifdef APP-PLUS-NVUE
+ (function traversal (node) {
+ if (node.name) {
+ // 调整 svg 的大小写
+ node.name = config.svgDict[node.name] || node.name
+ for (const item in node.attrs) {
+ if (config.svgDict[item]) {
+ node.attrs[config.svgDict[item]] = node.attrs[item]
+ node.attrs[item] = undefined
+ }
+ }
+ for (let i = 0; i < (node.children || []).length; i++) {
+ traversal(node.children[i])
+ }
+ }
+ })(node)
+ // #endif
+ // #ifndef APP-PLUS-NVUE
+ let src = ''
+ const style = attrs.style
+ attrs.style = ''
+ attrs.xmlns = 'http://www.w3.org/2000/svg';
+ (function traversal (node) {
+ if (node.type === 'text') {
+ src += node.text
+ return
+ }
+ const name = config.svgDict[node.name] || node.name
+ src += '<' + name
+ for (const item in node.attrs) {
+ const val = node.attrs[item]
+ if (val) {
+ src += ` ${config.svgDict[item] || item}="${val}"`
+ }
+ }
+ if (!node.children) {
+ src += '/>'
+ } else {
+ src += '>'
+ for (let i = 0; i < node.children.length; i++) {
+ traversal(node.children[i])
+ }
+ src += '' + name + '>'
+ }
+ })(node)
+ node.name = 'img'
+ node.attrs = {
+ src: 'data:image/svg+xml;utf8,' + src.replace(/#/g, '%23'),
+ style,
+ ignore: 'T'
+ }
+ node.children = undefined
+ // #endif
+ this.xml = false
+ return
+ }
+
+ // #ifndef APP-PLUS-NVUE
+ // 转换 align 属性
+ if (attrs.align) {
+ if (node.name === 'table') {
+ if (attrs.align === 'center') {
+ styleObj['margin-inline-start'] = styleObj['margin-inline-end'] = 'auto'
+ } else {
+ styleObj.float = attrs.align
+ }
+ } else {
+ styleObj['text-align'] = attrs.align
+ }
+ attrs.align = undefined
+ }
+
+ // 转换 dir 属性
+ if (attrs.dir) {
+ styleObj.direction = attrs.dir
+ attrs.dir = undefined
+ }
+
+ // 转换 font 标签的属性
+ if (node.name === 'font') {
+ if (attrs.color) {
+ styleObj.color = attrs.color
+ attrs.color = undefined
+ }
+ if (attrs.face) {
+ styleObj['font-family'] = attrs.face
+ attrs.face = undefined
+ }
+ if (attrs.size) {
+ let size = parseInt(attrs.size)
+ if (!isNaN(size)) {
+ if (size < 1) {
+ size = 1
+ } else if (size > 7) {
+ size = 7
+ }
+ styleObj['font-size'] = ['xx-small', 'x-small', 'small', 'medium', 'large', 'x-large', 'xx-large'][size - 1]
+ }
+ attrs.size = undefined
+ }
+ }
+ // #endif
+
+ // 一些编辑器的自带 class
+ if ((attrs.class || '').includes('align-center')) {
+ styleObj['text-align'] = 'center'
+ }
+
+ Object.assign(styleObj, this.parseStyle(node))
+
+ if (node.name !== 'table' && parseInt(styleObj.width) > windowWidth) {
+ styleObj['max-width'] = '100%'
+ styleObj['box-sizing'] = 'border-box'
+ }
+
+ // #ifndef APP-PLUS-NVUE
+ if (config.blockTags[node.name]) {
+ node.name = 'div'
+ } else if (!config.trustTags[node.name] && !this.xml) {
+ // 未知标签转为 span,避免无法显示
+ node.name = 'span'
+ }
+
+ if (node.name === 'a' || node.name === 'ad'
+ // #ifdef H5 || APP-PLUS
+ || node.name === 'iframe' // eslint-disable-line
+ // #endif
+ ) {
+ this.expose()
+ } /* #ifdef APP-PLUS */ else if (node.name === 'video') {
+ let str = ''
+ node.html = str
+ } /* #endif */ else if ((node.name === 'ul' || node.name === 'ol') && node.c) {
+ // 列表处理
+ const types = {
+ a: 'lower-alpha',
+ A: 'upper-alpha',
+ i: 'lower-roman',
+ I: 'upper-roman'
+ }
+ if (types[attrs.type]) {
+ attrs.style += ';list-style-type:' + types[attrs.type]
+ attrs.type = undefined
+ }
+ for (let i = children.length; i--;) {
+ if (children[i].name === 'li') {
+ children[i].c = 1
+ }
+ }
+ } else if (node.name === 'table') {
+ // 表格处理
+ // cellpadding、cellspacing、border 这几个常用表格属性需要通过转换实现
+ let padding = parseFloat(attrs.cellpadding)
+ let spacing = parseFloat(attrs.cellspacing)
+ const border = parseFloat(attrs.border)
+ if (node.c) {
+ // padding 和 spacing 默认 2
+ if (isNaN(padding)) {
+ padding = 2
+ }
+ if (isNaN(spacing)) {
+ spacing = 2
+ }
+ }
+ if (border) {
+ attrs.style += ';border:' + border + 'px solid gray'
+ }
+ if (node.flag && node.c) {
+ // 有 colspan 或 rowspan 且含有链接的表格通过 grid 布局实现
+ styleObj.display = 'grid'
+ if (spacing) {
+ styleObj['grid-gap'] = spacing + 'px'
+ styleObj.padding = spacing + 'px'
+ } else if (border) {
+ // 无间隔的情况下避免边框重叠
+ attrs.style += ';border-left:0;border-top:0'
+ }
+
+ const width = [] // 表格的列宽
+ const trList = [] // tr 列表
+ const cells = [] // 保存新的单元格
+ const map = {}; // 被合并单元格占用的格子
+
+ (function traversal (nodes) {
+ for (let i = 0; i < nodes.length; i++) {
+ if (nodes[i].name === 'tr') {
+ trList.push(nodes[i])
+ } else {
+ traversal(nodes[i].children || [])
+ }
+ }
+ })(children)
+
+ for (let row = 1; row <= trList.length; row++) {
+ let col = 1
+ for (let j = 0; j < trList[row - 1].children.length; j++, col++) {
+ const td = trList[row - 1].children[j]
+ if (td.name === 'td' || td.name === 'th') {
+ // 这个格子被上面的单元格占用,则列号++
+ while (map[row + '.' + col]) {
+ col++
+ }
+ let style = td.attrs.style || ''
+ const start = style.indexOf('width') ? style.indexOf(';width') : 0
+ // 提取出 td 的宽度
+ if (start !== -1) {
+ let end = style.indexOf(';', start + 6)
+ if (end === -1) {
+ end = style.length
+ }
+ if (!td.attrs.colspan) {
+ width[col] = style.substring(start ? start + 7 : 6, end)
+ }
+ style = style.substr(0, start) + style.substr(end)
+ }
+ style += (border ? `;border:${border}px solid gray` + (spacing ? '' : ';border-right:0;border-bottom:0') : '') + (padding ? `;padding:${padding}px` : '')
+ // 处理列合并
+ if (td.attrs.colspan) {
+ style += `;grid-column-start:${col};grid-column-end:${col + parseInt(td.attrs.colspan)}`
+ if (!td.attrs.rowspan) {
+ style += `;grid-row-start:${row};grid-row-end:${row + 1}`
+ }
+ col += parseInt(td.attrs.colspan) - 1
+ }
+ // 处理行合并
+ if (td.attrs.rowspan) {
+ style += `;grid-row-start:${row};grid-row-end:${row + parseInt(td.attrs.rowspan)}`
+ if (!td.attrs.colspan) {
+ style += `;grid-column-start:${col};grid-column-end:${col + 1}`
+ }
+ // 记录下方单元格被占用
+ for (let rowspan = 1; rowspan < td.attrs.rowspan; rowspan++) {
+ for (let colspan = 0; colspan < (td.attrs.colspan || 1); colspan++) {
+ map[(row + rowspan) + '.' + (col - colspan)] = 1
+ }
+ }
+ }
+ if (style) {
+ td.attrs.style = style
+ }
+ cells.push(td)
+ }
+ }
+ if (row === 1) {
+ let temp = ''
+ for (let i = 1; i < col; i++) {
+ temp += (width[i] ? width[i] : 'auto') + ' '
+ }
+ styleObj['grid-template-columns'] = temp
+ }
+ }
+ node.children = cells
+ } else {
+ // 没有使用合并单元格的表格通过 table 布局实现
+ if (node.c) {
+ styleObj.display = 'table'
+ }
+ if (!isNaN(spacing)) {
+ styleObj['border-spacing'] = spacing + 'px'
+ }
+ if (border || padding) {
+ // 遍历
+ (function traversal (nodes) {
+ for (let i = 0; i < nodes.length; i++) {
+ const td = nodes[i]
+ if (td.name === 'th' || td.name === 'td') {
+ if (border) {
+ td.attrs.style = `border:${border}px solid gray;${td.attrs.style || ''}`
+ }
+ if (padding) {
+ td.attrs.style = `padding:${padding}px;${td.attrs.style || ''}`
+ }
+ } else if (td.children) {
+ traversal(td.children)
+ }
+ }
+ })(children)
+ }
+ }
+ // 给表格添加一个单独的横向滚动层
+ if (this.options.scrollTable && !(attrs.style || '').includes('inline')) {
+ const table = Object.assign({}, node)
+ node.name = 'div'
+ node.attrs = {
+ style: 'overflow:auto'
+ }
+ node.children = [table]
+ attrs = table.attrs
+ }
+ } else if ((node.name === 'td' || node.name === 'th') && (attrs.colspan || attrs.rowspan)) {
+ for (let i = this.stack.length; i--;) {
+ if (this.stack[i].name === 'table') {
+ this.stack[i].flag = 1 // 指示含有合并单元格
+ break
+ }
+ }
+ } else if (node.name === 'ruby') {
+ // 转换 ruby
+ node.name = 'span'
+ for (let i = 0; i < children.length - 1; i++) {
+ if (children[i].type === 'text' && children[i + 1].name === 'rt') {
+ children[i] = {
+ name: 'div',
+ attrs: {
+ style: 'display:inline-block;text-align:center'
+ },
+ children: [{
+ name: 'div',
+ attrs: {
+ style: 'font-size:50%;' + (children[i + 1].attrs.style || '')
+ },
+ children: children[i + 1].children
+ }, children[i]]
+ }
+ children.splice(i + 1, 1)
+ }
+ }
+ } else if (node.c) {
+ node.c = 2
+ for (let i = node.children.length; i--;) {
+ if (!node.children[i].c || node.children[i].name === 'table') {
+ node.c = 1
+ }
+ }
+ }
+
+ if ((styleObj.display || '').includes('flex') && !node.c) {
+ for (let i = children.length; i--;) {
+ const item = children[i]
+ if (item.f) {
+ item.attrs.style = (item.attrs.style || '') + item.f
+ item.f = undefined
+ }
+ }
+ }
+ // flex 布局时部分样式需要提取到 rich-text 外层
+ const flex = parent && (parent.attrs.style || '').includes('flex')
+ // #ifdef MP-WEIXIN
+ // 检查基础库版本 virtualHost 是否可用
+ && !(node.c && wx.getNFCAdapter) // eslint-disable-line
+ // #endif
+ // #ifndef MP-WEIXIN || MP-QQ || MP-BAIDU || MP-TOUTIAO
+ && !node.c // eslint-disable-line
+ // #endif
+ if (flex) {
+ node.f = ';max-width:100%'
+ }
+ // #endif
+
+ for (const key in styleObj) {
+ if (styleObj[key]) {
+ const val = `;${key}:${styleObj[key].replace(' !important', '')}`
+ /* #ifndef APP-PLUS-NVUE */
+ if (flex && ((key.includes('flex') && key !== 'flex-direction') || key === 'align-self' || styleObj[key][0] === '-' || (key === 'width' && val.includes('%')))) {
+ node.f += val
+ if (key === 'width') {
+ attrs.style += ';width:100%'
+ }
+ } else /* #endif */ {
+ attrs.style += val
+ }
+ }
+ }
+ attrs.style = attrs.style.substr(1) || undefined
+}
+
+/**
+ * @description 解析到文本
+ * @param {String} text 文本内容
+ */
+Parser.prototype.onText = function (text) {
+ if (!this.pre) {
+ // 合并空白符
+ let trim = ''
+ let flag
+ for (let i = 0, len = text.length; i < len; i++) {
+ if (!blankChar[text[i]]) {
+ trim += text[i]
+ } else {
+ if (trim[trim.length - 1] !== ' ') {
+ trim += ' '
+ }
+ if (text[i] === '\n' && !flag) {
+ flag = true
+ }
+ }
+ }
+ // 去除含有换行符的空串
+ if (trim === ' ' && flag) return
+ text = trim
+ }
+ const node = Object.create(null)
+ node.type = 'text'
+ node.text = decodeEntity(text)
+ if (this.hook(node)) {
+ // #ifdef MP-WEIXIN
+ if (this.options.selectable === 'force' && system.includes('iOS')) {
+ this.expose()
+ node.us = 'T'
+ }
+ // #endif
+ const siblings = this.stack.length ? this.stack[this.stack.length - 1].children : this.nodes
+ siblings.push(node)
+ }
+}
+
+/**
+ * @description html 词法分析器
+ * @param {Object} handler 高层处理器
+ */
+function Lexer (handler) {
+ this.handler = handler
+}
+
+/**
+ * @description 执行解析
+ * @param {String} content 要解析的文本
+ */
+Lexer.prototype.parse = function (content) {
+ this.content = content || ''
+ this.i = 0 // 标记解析位置
+ this.start = 0 // 标记一个单词的开始位置
+ this.state = this.text // 当前状态
+ for (let len = this.content.length; this.i !== -1 && this.i < len;) {
+ this.state()
+ }
+}
+
+/**
+ * @description 检查标签是否闭合
+ * @param {String} method 如果闭合要进行的操作
+ * @returns {Boolean} 是否闭合
+ * @private
+ */
+Lexer.prototype.checkClose = function (method) {
+ const selfClose = this.content[this.i] === '/'
+ if (this.content[this.i] === '>' || (selfClose && this.content[this.i + 1] === '>')) {
+ if (method) {
+ this.handler[method](this.content.substring(this.start, this.i))
+ }
+ this.i += selfClose ? 2 : 1
+ this.start = this.i
+ this.handler.onOpenTag(selfClose)
+ if (this.handler.tagName === 'script') {
+ this.i = this.content.indexOf('', this.i)
+ if (this.i !== -1) {
+ this.i += 2
+ this.start = this.i
+ }
+ this.state = this.endTag
+ } else {
+ this.state = this.text
+ }
+ return true
+ }
+ return false
+}
+
+/**
+ * @description 文本状态
+ * @private
+ */
+Lexer.prototype.text = function () {
+ this.i = this.content.indexOf('<', this.i) // 查找最近的标签
+ if (this.i === -1) {
+ // 没有标签了
+ if (this.start < this.content.length) {
+ this.handler.onText(this.content.substring(this.start, this.content.length))
+ }
+ return
+ }
+ const c = this.content[this.i + 1]
+ if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) {
+ // 标签开头
+ if (this.start !== this.i) {
+ this.handler.onText(this.content.substring(this.start, this.i))
+ }
+ this.start = ++this.i
+ this.state = this.tagName
+ } else if (c === '/' || c === '!' || c === '?') {
+ if (this.start !== this.i) {
+ this.handler.onText(this.content.substring(this.start, this.i))
+ }
+ const next = this.content[this.i + 2]
+ if (c === '/' && ((next >= 'a' && next <= 'z') || (next >= 'A' && next <= 'Z'))) {
+ // 标签结尾
+ this.i += 2
+ this.start = this.i
+ this.state = this.endTag
+ return
+ }
+ // 处理注释
+ let end = '-->'
+ if (c !== '!' || this.content[this.i + 2] !== '-' || this.content[this.i + 3] !== '-') {
+ end = '>'
+ }
+ this.i = this.content.indexOf(end, this.i)
+ if (this.i !== -1) {
+ this.i += end.length
+ this.start = this.i
+ }
+ } else {
+ this.i++
+ }
+}
+
+/**
+ * @description 标签名状态
+ * @private
+ */
+Lexer.prototype.tagName = function () {
+ if (blankChar[this.content[this.i]]) {
+ // 解析到标签名
+ this.handler.onTagName(this.content.substring(this.start, this.i))
+ while (blankChar[this.content[++this.i]]);
+ if (this.i < this.content.length && !this.checkClose()) {
+ this.start = this.i
+ this.state = this.attrName
+ }
+ } else if (!this.checkClose('onTagName')) {
+ this.i++
+ }
+}
+
+/**
+ * @description 属性名状态
+ * @private
+ */
+Lexer.prototype.attrName = function () {
+ let c = this.content[this.i]
+ if (blankChar[c] || c === '=') {
+ // 解析到属性名
+ this.handler.onAttrName(this.content.substring(this.start, this.i))
+ let needVal = c === '='
+ const len = this.content.length
+ while (++this.i < len) {
+ c = this.content[this.i]
+ if (!blankChar[c]) {
+ if (this.checkClose()) return
+ if (needVal) {
+ // 等号后遇到第一个非空字符
+ this.start = this.i
+ this.state = this.attrVal
+ return
+ }
+ if (this.content[this.i] === '=') {
+ needVal = true
+ } else {
+ this.start = this.i
+ this.state = this.attrName
+ return
+ }
+ }
+ }
+ } else if (!this.checkClose('onAttrName')) {
+ this.i++
+ }
+}
+
+/**
+ * @description 属性值状态
+ * @private
+ */
+Lexer.prototype.attrVal = function () {
+ const c = this.content[this.i]
+ const len = this.content.length
+ if (c === '"' || c === "'") {
+ // 有冒号的属性
+ this.start = ++this.i
+ this.i = this.content.indexOf(c, this.i)
+ if (this.i === -1) return
+ this.handler.onAttrVal(this.content.substring(this.start, this.i))
+ } else {
+ // 没有冒号的属性
+ for (; this.i < len; this.i++) {
+ if (blankChar[this.content[this.i]]) {
+ this.handler.onAttrVal(this.content.substring(this.start, this.i))
+ break
+ } else if (this.checkClose('onAttrVal')) return
+ }
+ }
+ while (blankChar[this.content[++this.i]]);
+ if (this.i < len && !this.checkClose()) {
+ this.start = this.i
+ this.state = this.attrName
+ }
+}
+
+/**
+ * @description 结束标签状态
+ * @returns {String} 结束的标签名
+ * @private
+ */
+Lexer.prototype.endTag = function () {
+ const c = this.content[this.i]
+ if (blankChar[c] || c === '>' || c === '/') {
+ this.handler.onCloseTag(this.content.substring(this.start, this.i))
+ if (c !== '>') {
+ this.i = this.content.indexOf('>', this.i)
+ if (this.i === -1) return
+ }
+ this.start = ++this.i
+ this.state = this.text
+ } else {
+ this.i++
+ }
+}
+
+module.exports = Parser
diff --git a/litemall-wx_uni/uni_modules/mp-html/package.json b/litemall-wx_uni/uni_modules/mp-html/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..0f1269c9745daf493ad2b78f79f353a8edbd4e36
--- /dev/null
+++ b/litemall-wx_uni/uni_modules/mp-html/package.json
@@ -0,0 +1,79 @@
+{
+ "id": "mp-html",
+ "displayName": "mp-html 富文本组件【全端支持,可编辑】",
+ "version": "v2.2.0",
+ "description": "一个强大的富文本组件,高效轻量,功能丰富",
+ "keywords": [
+ "富文本",
+ "编辑器",
+ "html",
+ "rich-text",
+ "editor"
+ ],
+ "repository": "https://github.com/jin-yufeng/mp-html",
+ "dcloudext": {
+ "category": [
+ "前端组件",
+ "通用组件"
+ ],
+ "sale": {
+ "regular": {
+ "price": "0.00"
+ },
+ "sourcecode": {
+ "price": "0.00"
+ }
+ },
+ "contact": {
+ "qq": ""
+ },
+ "declaration": {
+ "ads": "无",
+ "data": "无",
+ "permissions": "无"
+ },
+ "npmurl": "https://www.npmjs.com/package/mp-html"
+ },
+ "uni_modules": {
+ "platforms": {
+ "cloud": {
+ "tcb": "y",
+ "aliyun": "y"
+ },
+ "client": {
+ "App": {
+ "app-vue": "y",
+ "app-nvue": "y"
+ },
+ "H5-mobile": {
+ "Safari": "y",
+ "Android Browser": "y",
+ "微信浏览器(Android)": "y",
+ "QQ浏览器(Android)": "y"
+ },
+ "H5-pc": {
+ "Chrome": "y",
+ "IE": "u",
+ "Edge": "y",
+ "Firefox": "y",
+ "Safari": "y"
+ },
+ "小程序": {
+ "微信": "y",
+ "阿里": "y",
+ "百度": "y",
+ "字节跳动": "y",
+ "QQ": "y"
+ },
+ "快应用": {
+ "华为": "y",
+ "联盟": "y"
+ },
+ "Vue": {
+ "vue2": "y",
+ "vue3": "u"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/uni_modules/mp-html/static/app-plus/mp-html/js/handler.js b/litemall-wx_uni/uni_modules/mp-html/static/app-plus/mp-html/js/handler.js
new file mode 100644
index 0000000000000000000000000000000000000000..8312a462d65d3d96d278993b048268bc5ca3b63f
--- /dev/null
+++ b/litemall-wx_uni/uni_modules/mp-html/static/app-plus/mp-html/js/handler.js
@@ -0,0 +1 @@
+"use strict";function t(t){for(var e=Object.create(null),n=t.attributes.length;n--;)e[t.attributes[n].name]=t.attributes[n].value;return e}function e(){o[1]&&(this.src=o[1],this.onerror=null),this.onclick=null,this.ontouchstart=null,uni.postMessage({data:{action:"onError",source:"img",attrs:t(this)}})}function n(r,i,s){for(var c=0;c0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("navigateTo",{url:encodeURI(n)})},navigateBack:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.delta;a("navigateBack",{delta:parseInt(n)||1})},switchTab:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("switchTab",{url:encodeURI(n)})},reLaunch:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("reLaunch",{url:encodeURI(n)})},redirectTo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url;a("redirectTo",{url:encodeURI(n)})},getEnv:function(e){window.plus?e({plus:!0}):e({h5:!0})},postMessage:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};a("postMessage",e.data||{})}},r=/uni-app/i.test(navigator.userAgent),d=/Html5Plus/i.test(navigator.userAgent),s=/complete|loaded|interactive/;var w=window.my&&navigator.userAgent.indexOf("AlipayClient")>-1;var u=window.swan&&window.swan.webView&&/swan/i.test(navigator.userAgent);var c=window.qq&&window.qq.miniProgram&&/QQ/i.test(navigator.userAgent)&&/miniProgram/i.test(navigator.userAgent);var g=window.tt&&window.tt.miniProgram&&/toutiaomicroapp/i.test(navigator.userAgent);var v=window.wx&&window.wx.miniProgram&&/micromessenger/i.test(navigator.userAgent)&&/miniProgram/i.test(navigator.userAgent);var p=window.qa&&/quickapp/i.test(navigator.userAgent);for(var l,_=function(){window.UniAppJSBridge=!0,document.dispatchEvent(new CustomEvent("UniAppJSBridgeReady",{bubbles:!0,cancelable:!0}))},f=[function(e){if(r||d)return window.__dcloud_weex_postMessage||window.__dcloud_weex_?document.addEventListener("DOMContentLoaded",e):window.plus&&s.test(document.readyState)?setTimeout(e,0):document.addEventListener("plusready",e),o},function(e){if(v)return window.WeixinJSBridge&&window.WeixinJSBridge.invoke?setTimeout(e,0):document.addEventListener("WeixinJSBridgeReady",e),window.wx.miniProgram},function(e){if(c)return window.QQJSBridge&&window.QQJSBridge.invoke?setTimeout(e,0):document.addEventListener("QQJSBridgeReady",e),window.qq.miniProgram},function(e){if(w){document.addEventListener("DOMContentLoaded",e);var n=window.my;return{navigateTo:n.navigateTo,navigateBack:n.navigateBack,switchTab:n.switchTab,reLaunch:n.reLaunch,redirectTo:n.redirectTo,postMessage:n.postMessage,getEnv:n.getEnv}}},function(e){if(u)return document.addEventListener("DOMContentLoaded",e),window.swan.webView},function(e){if(g)return document.addEventListener("DOMContentLoaded",e),window.tt.miniProgram},function(e){if(p){window.QaJSBridge&&window.QaJSBridge.invoke?setTimeout(e,0):document.addEventListener("QaJSBridgeReady",e);var n=window.qa;return{navigateTo:n.navigateTo,navigateBack:n.navigateBack,switchTab:n.switchTab,reLaunch:n.reLaunch,redirectTo:n.redirectTo,postMessage:n.postMessage,getEnv:n.getEnv}}},function(e){return document.addEventListener("DOMContentLoaded",e),o}],m=0;m
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.automator/mp-weixin/.automator.json b/litemall-wx_uni/unpackage/dist/dev/.automator/mp-weixin/.automator.json
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/common/main.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/common/main.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..e0f31a9401e866b810cb7d5495e0109142866a31
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/common/main.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/App.vue?c16b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/App.vue?03d9","uni-app:///App.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/App.vue?3f0f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/App.vue?1c7f"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","Polyfill","init","Vue","mixin","Mixin","config","productionTip","App","mpType","app","$mount"],"mappings":";;;;;;;;;iDAAA,wCAA8E;;;AAG9E;;;;AAIA;;;AAGA,qE,wnCAVmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC,CAInBC,kBAASC,IAAT,G,CAEA;;AAMAC,aAAIC,KAAJ,CAAUC,eAAV;AACAF,aAAIG,MAAJ,CAAWC,aAAX,GAA2B,KAA3B;AACAC,aAAIC,MAAJ,GAAa,KAAb;AACA,IAAMC,GAAG,GAAG,IAAIP,YAAJ;AACLK,YADK,EAAZ;;AAGA,UAAAE,GAAG,EAACC,MAAJ,G;;;;;;;;;;;;;;;;;AClBA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACuD;AACL;AACa;;;AAG/D;AACiL;AACjL,gBAAgB,2LAAU;AAC1B,EAAE,yEAAM;AACR;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACe,gF;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAsqB,CAAgB,mrBAAG,EAAC,C;;;;;;;;;;;;ACC1rB;;AAEA;;AAEA,0D;;AAEA;AACA,MADA,kBACA;AACA;AACA,GAHA;AAIA;AACA;AACA;AACA;AACA;AACA;AACA,OAHA;AAIA;AACA;AACA;AACA,SAFA;AAGA,OARA;;AAUA,KAZA;;AAcA;AACA;AACA;AACA,qBADA;AAEA,mCAFA;AAGA;AACA;AACA;AACA;AACA;AACA,SARA;;AAUA,KAXA;AAYA,GAhCA;AAiCA;AACA;AACA,QADA,CACA;AACA;AACA,KAHA;AAIA,SAJA,CAIA;AACA;AACA,KANA;AAOA,GAzCA;AA0CA;AACA,mBADA,EA1CA,E;;;;;;;;;;;;;;;ACPA;AAAA;AAAA;AAAA;AAAq9B,CAAgB,o8BAAG,EAAC,C;;;;;;;;;;ACAz+B;AACA,OAAO,KAAU,EAAE,kBAKd","file":"common/main.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;import App from './App';\n\n// Api函数polyfill(目前为实验版本,如不需要,可删除!)';\nimport Polyfill from './polyfill/polyfill';\nPolyfill.init();\n\n// 全局mixins,用于实现setData等功能,请勿删除!';\nimport Mixin from './polyfill/mixins';\n\n\nimport Vue from 'vue';\n\nVue.mixin(Mixin);\nVue.config.productionTip = false;\nApp.mpType = 'app';\nconst app = new Vue({\n ...App\n});\napp.$mount();","var render, staticRenderFns, recyclableRender, components\nvar renderjs\nimport script from \"./App.vue?vue&type=script&lang=js&\"\nexport * from \"./App.vue?vue&type=script&lang=js&\"\nimport style0 from \"./App.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"App.vue\"\nexport default component.exports","import mod from \"-!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./App.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./App.vue?vue&type=script&lang=js&\"","\n\n","import mod from \"-!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./App.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./App.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275181\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/common/runtime.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/common/runtime.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..dd44e0cfe0d9ec2458101ad537000ecb87bcca83
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/common/runtime.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":[null],"names":[],"mappings":";QAAA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA;QACA,QAAQ,oBAAoB;QAC5B;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA,iBAAiB,4BAA4B;QAC7C;QACA;QACA,kBAAkB,2BAA2B;QAC7C;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;;QAEA;;QAEA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;;QAEA;QACA;QACA;QACA;;;QAGA;QACA,oBAAoB;QACpB;QACA;QACA;QACA,uBAAuB,wMAAwM;QAC/N;QACA;QACA,mBAAmB,6BAA6B;QAChD;QACA;QACA;QACA;QACA;QACA,mBAAmB,8BAA8B;QACjD;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA,KAAK;QACL;QACA,KAAK;QACL;;QAEA;;QAEA;QACA,iCAAiC;;QAEjC;QACA;QACA;QACA,KAAK;QACL;QACA;QACA;QACA,MAAM;QACN;;QAEA;QACA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA,wBAAwB,kCAAkC;QAC1D,MAAM;QACN;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA,0CAA0C,gCAAgC;QAC1E;QACA;;QAEA;QACA;QACA;QACA,wDAAwD,kBAAkB;QAC1E;QACA,iDAAiD,cAAc;QAC/D;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA,yCAAyC,iCAAiC;QAC1E,gHAAgH,mBAAmB,EAAE;QACrI;QACA;;QAEA;QACA;QACA;QACA,2BAA2B,0BAA0B,EAAE;QACvD,iCAAiC,eAAe;QAChD;QACA;QACA;;QAEA;QACA,sDAAsD,+DAA+D;;QAErH;QACA;;QAEA;QACA,0CAA0C,oBAAoB,WAAW;;QAEzE;QACA;QACA;QACA;QACA,gBAAgB,uBAAuB;QACvC;;;QAGA;QACA","file":"common/runtime.js","sourcesContent":[" \t// install a JSONP callback for chunk loading\n \tfunction webpackJsonpCallback(data) {\n \t\tvar chunkIds = data[0];\n \t\tvar moreModules = data[1];\n \t\tvar executeModules = data[2];\n\n \t\t// add \"moreModules\" to the modules object,\n \t\t// then flag all \"chunkIds\" as loaded and fire callback\n \t\tvar moduleId, chunkId, i = 0, resolves = [];\n \t\tfor(;i < chunkIds.length; i++) {\n \t\t\tchunkId = chunkIds[i];\n \t\t\tif(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {\n \t\t\t\tresolves.push(installedChunks[chunkId][0]);\n \t\t\t}\n \t\t\tinstalledChunks[chunkId] = 0;\n \t\t}\n \t\tfor(moduleId in moreModules) {\n \t\t\tif(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {\n \t\t\t\tmodules[moduleId] = moreModules[moduleId];\n \t\t\t}\n \t\t}\n \t\tif(parentJsonpFunction) parentJsonpFunction(data);\n\n \t\twhile(resolves.length) {\n \t\t\tresolves.shift()();\n \t\t}\n\n \t\t// add entry modules from loaded chunk to deferred list\n \t\tdeferredModules.push.apply(deferredModules, executeModules || []);\n\n \t\t// run deferred modules when all chunks ready\n \t\treturn checkDeferredModules();\n \t};\n \tfunction checkDeferredModules() {\n \t\tvar result;\n \t\tfor(var i = 0; i < deferredModules.length; i++) {\n \t\t\tvar deferredModule = deferredModules[i];\n \t\t\tvar fulfilled = true;\n \t\t\tfor(var j = 1; j < deferredModule.length; j++) {\n \t\t\t\tvar depId = deferredModule[j];\n \t\t\t\tif(installedChunks[depId] !== 0) fulfilled = false;\n \t\t\t}\n \t\t\tif(fulfilled) {\n \t\t\t\tdeferredModules.splice(i--, 1);\n \t\t\t\tresult = __webpack_require__(__webpack_require__.s = deferredModule[0]);\n \t\t\t}\n \t\t}\n\n \t\treturn result;\n \t}\n\n \t// The module cache\n \tvar installedModules = {};\n\n \t// object to store loaded CSS chunks\n \tvar installedCssChunks = {\n \t\t\"common/runtime\": 0\n \t}\n\n \t// object to store loaded and loading chunks\n \t// undefined = chunk not loaded, null = chunk preloaded/prefetched\n \t// Promise = chunk loading, 0 = chunk loaded\n \tvar installedChunks = {\n \t\t\"common/runtime\": 0\n \t};\n\n \tvar deferredModules = [];\n\n \t// script path function\n \tfunction jsonpScriptSrc(chunkId) {\n \t\treturn __webpack_require__.p + \"\" + chunkId + \".js\"\n \t}\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n \t// This file contains only the entry chunk.\n \t// The chunk loading function for additional chunks\n \t__webpack_require__.e = function requireEnsure(chunkId) {\n \t\tvar promises = [];\n\n\n \t\t// mini-css-extract-plugin CSS loading\n \t\tvar cssChunks = {\"uni_modules/mp-html/components/mp-html/mp-html\":1,\"uni_modules/mp-html/components/mp-html/node/node\":1};\n \t\tif(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);\n \t\telse if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {\n \t\t\tpromises.push(installedCssChunks[chunkId] = new Promise(function(resolve, reject) {\n \t\t\t\tvar href = \"\" + ({\"uni_modules/mp-html/components/mp-html/mp-html\":\"uni_modules/mp-html/components/mp-html/mp-html\",\"uni_modules/mp-html/components/mp-html/node/node\":\"uni_modules/mp-html/components/mp-html/node/node\"}[chunkId]||chunkId) + \".wxss\";\n \t\t\t\tvar fullhref = __webpack_require__.p + href;\n \t\t\t\tvar existingLinkTags = document.getElementsByTagName(\"link\");\n \t\t\t\tfor(var i = 0; i < existingLinkTags.length; i++) {\n \t\t\t\t\tvar tag = existingLinkTags[i];\n \t\t\t\t\tvar dataHref = tag.getAttribute(\"data-href\") || tag.getAttribute(\"href\");\n \t\t\t\t\tif(tag.rel === \"stylesheet\" && (dataHref === href || dataHref === fullhref)) return resolve();\n \t\t\t\t}\n \t\t\t\tvar existingStyleTags = document.getElementsByTagName(\"style\");\n \t\t\t\tfor(var i = 0; i < existingStyleTags.length; i++) {\n \t\t\t\t\tvar tag = existingStyleTags[i];\n \t\t\t\t\tvar dataHref = tag.getAttribute(\"data-href\");\n \t\t\t\t\tif(dataHref === href || dataHref === fullhref) return resolve();\n \t\t\t\t}\n \t\t\t\tvar linkTag = document.createElement(\"link\");\n \t\t\t\tlinkTag.rel = \"stylesheet\";\n \t\t\t\tlinkTag.type = \"text/css\";\n \t\t\t\tlinkTag.onload = resolve;\n \t\t\t\tlinkTag.onerror = function(event) {\n \t\t\t\t\tvar request = event && event.target && event.target.src || fullhref;\n \t\t\t\t\tvar err = new Error(\"Loading CSS chunk \" + chunkId + \" failed.\\n(\" + request + \")\");\n \t\t\t\t\terr.code = \"CSS_CHUNK_LOAD_FAILED\";\n \t\t\t\t\terr.request = request;\n \t\t\t\t\tdelete installedCssChunks[chunkId]\n \t\t\t\t\tlinkTag.parentNode.removeChild(linkTag)\n \t\t\t\t\treject(err);\n \t\t\t\t};\n \t\t\t\tlinkTag.href = fullhref;\n\n \t\t\t\tvar head = document.getElementsByTagName(\"head\")[0];\n \t\t\t\thead.appendChild(linkTag);\n \t\t\t}).then(function() {\n \t\t\t\tinstalledCssChunks[chunkId] = 0;\n \t\t\t}));\n \t\t}\n\n \t\t// JSONP chunk loading for javascript\n\n \t\tvar installedChunkData = installedChunks[chunkId];\n \t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n \t\t\t// a Promise means \"currently loading\".\n \t\t\tif(installedChunkData) {\n \t\t\t\tpromises.push(installedChunkData[2]);\n \t\t\t} else {\n \t\t\t\t// setup Promise in chunk cache\n \t\t\t\tvar promise = new Promise(function(resolve, reject) {\n \t\t\t\t\tinstalledChunkData = installedChunks[chunkId] = [resolve, reject];\n \t\t\t\t});\n \t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n \t\t\t\t// start chunk loading\n \t\t\t\tvar script = document.createElement('script');\n \t\t\t\tvar onScriptComplete;\n\n \t\t\t\tscript.charset = 'utf-8';\n \t\t\t\tscript.timeout = 120;\n \t\t\t\tif (__webpack_require__.nc) {\n \t\t\t\t\tscript.setAttribute(\"nonce\", __webpack_require__.nc);\n \t\t\t\t}\n \t\t\t\tscript.src = jsonpScriptSrc(chunkId);\n\n \t\t\t\t// create error before stack unwound to get useful stacktrace later\n \t\t\t\tvar error = new Error();\n \t\t\t\tonScriptComplete = function (event) {\n \t\t\t\t\t// avoid mem leaks in IE.\n \t\t\t\t\tscript.onerror = script.onload = null;\n \t\t\t\t\tclearTimeout(timeout);\n \t\t\t\t\tvar chunk = installedChunks[chunkId];\n \t\t\t\t\tif(chunk !== 0) {\n \t\t\t\t\t\tif(chunk) {\n \t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n \t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n \t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n \t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n \t\t\t\t\t\t\terror.type = errorType;\n \t\t\t\t\t\t\terror.request = realSrc;\n \t\t\t\t\t\t\tchunk[1](error);\n \t\t\t\t\t\t}\n \t\t\t\t\t\tinstalledChunks[chunkId] = undefined;\n \t\t\t\t\t}\n \t\t\t\t};\n \t\t\t\tvar timeout = setTimeout(function(){\n \t\t\t\t\tonScriptComplete({ type: 'timeout', target: script });\n \t\t\t\t}, 120000);\n \t\t\t\tscript.onerror = script.onload = onScriptComplete;\n \t\t\t\tdocument.head.appendChild(script);\n \t\t\t}\n \t\t}\n \t\treturn Promise.all(promises);\n \t};\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/\";\n\n \t// on error function for async loading\n \t__webpack_require__.oe = function(err) { console.error(err); throw err; };\n\n \tvar jsonpArray = global[\"webpackJsonp\"] = global[\"webpackJsonp\"] || [];\n \tvar oldJsonpFunction = jsonpArray.push.bind(jsonpArray);\n \tjsonpArray.push = webpackJsonpCallback;\n \tjsonpArray = jsonpArray.slice();\n \tfor(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);\n \tvar parentJsonpFunction = oldJsonpFunction;\n\n\n \t// run deferred modules from other chunks\n \tcheckDeferredModules();\n"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..c84a6441e831642797d89017c386bd53e97bd4f3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./node_modules/@dcloudio/uni-mp-weixin/dist/index.js?543d","uni-app:///config/api.js","uni-app:///utils/user.js","webpack:///./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js?f0c5","uni-app:///polyfill/polyfill.js","uni-app:///polyfill/base64Binary.js","uni-app:///polyfill/mixins.js",null,"webpack:///./node_modules/@dcloudio/vue-cli-plugin-uni/packages/mp-vue/dist/mp.runtime.esm.js?66fd","uni-app:///uni_modules/mp-html/components/mp-html/parser.js","webpack:///./node_modules/@dcloudio/uni-i18n/dist/uni-i18n.es.js?37dc","uni-app:///utils/check.js","uni-app:///utils/area.js","uni-app:///utils/util.js"],"names":["realAtob","b64","b64re","atob","str","String","replace","test","Error","slice","length","bitmap","result","r1","r2","i","indexOf","charAt","fromCharCode","b64DecodeUnicode","decodeURIComponent","split","map","c","charCodeAt","toString","join","getCurrentUserInfo","token","wx","getStorageSync","tokenArr","uid","role","permission","tokenExpired","userInfo","JSON","parse","error","message","exp","iat","uniIdMixin","Vue","prototype","uniIDHasRole","roleId","uniIDHasPermission","permissionId","uniIDTokenValid","Date","now","_toString","Object","hasOwnProperty","isFn","fn","isStr","isPlainObject","obj","call","hasOwn","key","noop","cached","cache","create","cachedFn","hit","camelizeRE","camelize","_","toUpperCase","HOOKS","globalInterceptors","scopedInterceptors","mergeHook","parentVal","childVal","res","concat","Array","isArray","dedupeHooks","hooks","push","removeHook","hook","index","splice","mergeInterceptorHook","interceptor","option","keys","forEach","removeInterceptorHook","addInterceptor","method","removeInterceptor","wrapperHook","data","isPromise","then","queue","promise","Promise","resolve","callback","wrapperOptions","options","name","oldCallback","callbackInterceptor","wrapperReturnValue","returnValue","returnValueHooks","getApiInterceptorHooks","scopedInterceptor","invokeApi","api","params","invoke","promiseInterceptor","reject","SYNC_API_RE","CONTEXT_API_RE","CONTEXT_API_RE_EXC","ASYNC_API","CALLBACK_API_RE","isContextApi","isSyncApi","isCallbackApi","handlePromise","catch","err","shouldPromise","finally","constructor","value","reason","promisify","promiseApi","success","fail","complete","assign","EPS","BASE_DEVICE_WIDTH","isIOS","deviceWidth","deviceDPR","checkDeviceWidth","getSystemInfoSync","platform","pixelRatio","windowWidth","upx2px","number","newDeviceWidth","Number","Math","floor","getLocale","app","getApp","allowDefault","$vm","$locale","language","setLocale","locale","oldLocale","onLocaleChangeCallbacks","onLocaleChange","global","interceptors","baseApi","freeze","__proto__","findExistsPageIndex","url","pages","getCurrentPages","len","page","$page","fullPath","redirectTo","fromArgs","exists","delta","args","existsPageIndex","previewImage","currentIndex","parseInt","current","isNaN","urls","filter","item","indicator","loop","UUID_KEY","deviceId","addUuid","random","setStorage","addSafeAreaInsets","safeArea","safeAreaInsets","top","left","right","bottom","windowHeight","getSystemInfo","protocols","todos","canIUses","CALLBACKS","processCallback","methodName","processReturnValue","processArgs","argsOption","keepFromArgs","toArgs","keyOption","console","warn","keepReturnValue","wrapper","protocol","arg1","arg2","apply","todoApis","TODOS","createTodoApi","todoApi","errMsg","providers","oauth","share","payment","getProvider","service","provider","extraApi","getEmitter","Emitter","getUniEmitter","ctx","$on","arguments","$off","$once","$emit","eventApi","MPPage","Page","MPComponent","Component","customizeRE","customize","initTriggerEvent","mpInstance","oldTriggerEvent","triggerEvent","event","initHook","isComponent","oldHook","__$wrappered","after","PAGE_EVENT_HOOKS","initMocks","vm","mocks","$mp","mpType","mock","hasHook","vueOptions","default","extendOptions","super","mixins","find","mixin","initHooks","mpOptions","__call_hook","initVueComponent","VueComponent","extend","initSlots","vueSlots","$slots","slotName","$scopedSlots","initVueIds","vueIds","_$vueId","_$vuePid","initData","context","methods","e","process","VUE_APP_DEBUG","stringify","__lifecycle_hooks__","PROP_TYPES","Boolean","createObserver","observer","newVal","oldVal","initBehaviors","initBehavior","vueBehaviors","behaviors","vueExtends","extends","vueMixins","vueProps","props","behavior","type","properties","initProperties","vueMixin","parsePropType","defaultValue","file","isBehavior","vueId","generic","scopedSlotsCompiler","setData","opts","wrapper$1","mp","stopPropagation","preventDefault","target","detail","markerId","getExtraValue","dataPathsArray","dataPathArray","dataPath","propPath","valuePath","vFor","isInteger","substr","__get_value","vForItem","vForKey","processEventExtra","extra","extraObj","__args__","getObjByArray","arr","element","processEventArgs","isCustom","isCustomMPEvent","currentTarget","dataset","comType","ret","arg","ONCE","CUSTOM","isMatchEventType","eventType","optType","getContextVm","$parent","$options","$scope","handleEvent","eventOpts","eventOpt","eventsArray","isOnce","eventArray","handlerCtx","handler","once","i18n","t","i18nMixin","beforeCreate","unwatch","watchLocale","$forceUpdate","$$t","values","setLocale$1","getLocale$1","initAppLocale","appVm","state","observable","localeWatchers","$watchLocale","defineProperty","get","set","v","watch","eventChannels","eventChannelStack","getEventChannel","id","eventChannel","shift","initEventChannel","getOpenerEventChannel","callHook","__id__","__eventChannel__","initScopedSlotsParams","center","parents","$hasScopedSlotsParams","has","$getScopedSlotsParams","object","$setScopedSlotsParams","propsData","destroyed","parseBaseApp","initRefs","store","$store","mpHost","$i18n","_i18n","appOptions","onLaunch","canIUse","globalData","_isMounted","findVmByVueId","vuePid","$children","childVm","parentVm","Behavior","isPage","route","initRelation","selectAllComponents","selector","$refs","components","component","ref","vueGeneric","scopedComponent","forComponents","handleLink","parent","parseApp","createApp","App","encodeReserveRE","encodeReserveReplacer","commaRE","encode","encodeURIComponent","stringifyQuery","encodeStr","val","undefined","val2","x","parseBaseComponent","vueComponentOptions","multipleSlots","addGlobalClass","componentOptions","__file","lifetimes","attached","$mount","ready","detached","$destroy","pageLifetimes","show","hide","resize","size","__l","__e","externalClasses","wxsCallMethods","callMethod","parseComponent","hooks$1","parseBasePage","vuePageOptions","pageOptions","onLoad","query","copyQuery","is","parsePage","createPage","createComponent","createSubpackageApp","onShow","onAppShow","onHide","onAppHide","getLaunchOptionsSync","createPlugin","canIUseApi","apiName","uni","Proxy","uni$1","WxApiRoot","module","exports","IndexUrl","AboutUrl","CatalogList","CatalogCurrent","AuthLoginByWeixin","AuthLoginByAccount","AuthLogout","AuthRegister","AuthReset","AuthRegisterCaptcha","AuthBindPhone","GoodsCount","GoodsList","GoodsCategory","GoodsDetail","GoodsRelated","BrandList","BrandDetail","CartList","CartAdd","CartFastAdd","CartUpdate","CartDelete","CartChecked","CartGoodsCount","CartCheckout","CollectList","CollectAddOrDelete","CommentList","CommentCount","CommentPost","TopicList","TopicDetail","TopicRelated","SearchIndex","SearchResult","SearchHelper","SearchClearHistory","AddressList","AddressDetail","AddressSave","AddressDelete","ExpressQuery","RegionList","OrderSubmit","OrderPrepay","OrderList","OrderDetail","OrderCancel","OrderRefund","OrderDelete","OrderConfirm","OrderGoods","OrderComment","AftersaleSubmit","AftersaleList","AftersaleDetail","FeedbackAdd","FootprintList","FootprintDelete","GroupOnList","GroupOnMy","GroupOnDetail","GroupOnJoin","CouponList","CouponMyList","CouponSelectList","CouponReceive","CouponExchange","StorageUpload","UserIndex","IssueList","util","require","checkSession","login","code","loginByWeixin","request","errno","setStorageSync","checkLogin","base64Binary","guid","r","isApiNotImplemented","platformPolyfill","loginPolyfill","getUserInfo","getUserProfile","mapPolyfill","chooseLocation","openLocation","createMapContext","mapId","$getAppMap","getCenterLocation","moveToLocation","translateMarker","includePoints","getRegion","getScale","base64Polyfill","base64ToArrayBuffer","base64","arrayBufferToBase64","buffer","mediaPolyfill","saveImageToPhotosAlbum","compressImage","chooseMessageFile","getRecorderManager","getBackgroundAudioManager","chooseMedia","saveVideoToPhotosAlbum","getVideoInfo","compressVideo","openVideoEditor","devicePolyfill","startDeviceMotionListening","onMemoryWarning","offNetworkStatusChange","offAccelerometerChange","startAccelerometer","offCompassChange","startCompass","onGyroscopeChange","startGyroscope","stopGyroscope","scanCode","setClipboardData","getClipboardData","setScreenBrightness","getScreenBrightness","setKeepScreenOn","onUserCaptureScreen","addPhoneContact","uiPolyfill","hideNavigationBarLoading","hideHomeButton","setTabBarItem","setTabBarStyle","hideTabBar","showTabBar","setTabBarBadge","removeTabBarBadge","showTabBarRedDot","hideTabBarRedDot","setBackgroundColor","setBackgroundTextStyle","onWindowResize","offWindowResize","loadFontFace","getMenuButtonBoundingClientRect","filePolyfill","saveFile","getSavedFileList","getSavedFileInfo","removeSavedFile","getFileInfo","openDocument","getFileSystemManager","canvasPolyfill","createOffscreenCanvas","canvasToTempFilePath","adPolyfill","createRewardedVideoAd","offLoad","load","onError","offError","onClose","offClose","createInterstitialAd","pluginsPolyfill","showShareMenu","hideShareMenu","requestPayment","createWorker","otherPolyfill","authorize","openSetting","getSetting","authSetting","scope","chooseAddress","chooseInvoiceTitle","navigateToMiniProgram","navigateBackMiniProgram","getAccountInfoSync","requestSubscribeMessage","getUpdateManager","setEnableDebug","getExtConfig","getExtConfigSync","soterAuthPolyfill","startSoterAuthentication","checkIsSupportSoterAuthentication","checkIsSoterEnrolledInDevice","nfcPolyfill","startHCE","batteryPolyfill","getBatteryInfo","getBatteryInfoSync","wifiPolyfill","startWifi","getConnectedWifi","bluetoothPolyfill","openBluetoothAdapter","startBluetoothDevicesDiscovery","onBluetoothDeviceFound","stopBluetoothDevicesDiscovery","onBluetoothAdapterStateChange","getConnectedBluetoothDevices","getBluetoothDevices","getBluetoothAdapterState","closeBluetoothAdapter","blePolyfill","setBLEMTU","readBLECharacteristicValue","onBLEConnectionStateChange","notifyBLECharacteristicValueChange","getBLEDeviceServices","getBLEDeviceRSSI","createBLEConnection","closeBLEConnection","iBeaconPolyfill","onBeaconServiceChange","onBeaconUpdate","getBeacons","startBeaconDiscovery","stopBeaconDiscovery","routerPolyfill","routerApiFailEventHandle","match","log","queryString","switchTab","routerApiHandle","oriLogFunc","failFun","navigateTo","isInit","init","b64ch","b64chs","b64tab","a","tab","_fromCC","bind","btoaPolyfill","bin","u32","c0","c1","c2","asc","pad","TypeError","substring","atobPolyfill","u24","binaryStr","byteLength","bytes","Uint8Array","binary","escape2Html","arrEntities","all","html2Escape","sHtml","that","handleData","tepData","tepKey","afterKey","tepData2","reg","front","index_after","lastIndexOf","$data","newValue","enumerable","configurable","$set","$nextTick","parseEventDynamicCode","eval","deepClone","config","trustTags","makeMap","blockTags","ignoreTags","voidTags","entities","lt","gt","quot","apos","ensp","emsp","nbsp","semi","ndash","mdash","middot","lsquo","rsquo","ldquo","rdquo","bull","hellip","tagStyle","address","big","caption","cite","dd","mark","pre","s","small","strike","u","svgDict","animatetransform","lineargradient","viewbox","attributename","repeatcount","repeatdur","tagSelector","system","blankChar","idIndex","list","decodeEntity","amp","j","Parser","imgList","plugins","attrs","stack","nodes","containerStyle","includes","content","onUpdate","Lexer","popNode","expose","node","onParse","getUrl","domain","parseStyle","style","styleObj","tmp","xml","useAnchor","width","parseFloat","height","info","trim","toLowerCase","$","onTagName","tagName","onAttrName","src","attrName","onAttrVal","onOpenTag","selfClose","siblings","children","close","class","autostart","autoplay","controls","href","webp","ignore","newSrc","display","w","h","onCloseTag","pop","setTitle","setNavigationBarTitle","title","text","xmlns","traversal","align","float","dir","direction","color","face","types","A","I","padding","cellpadding","spacing","cellspacing","border","flag","trList","cells","row","col","td","start","end","colspan","rowspan","temp","scrollTable","table","f","flex","getNFCAdapter","onText","selectable","us","checkClose","endTag","next","needVal","attrVal","isObject","defaultDelimiters","BaseFormatter","_caches","delimiters","tokens","compile","RE_TOKEN_LIST_VALUE","RE_TOKEN_NAMED_VALUE","format","startDelimiter","endDelimiter","position","char","sub","isClosed","compiled","mode","LOCALE_ZH_HANS","LOCALE_ZH_HANT","LOCALE_EN","LOCALE_FR","LOCALE_ES","defaultFormatter","include","parts","part","startsWith","normalizeLocale","messages","lang","I18n","fallbackLocale","watcher","formater","watchers","override","curMessages","interpolate","watchAppLocale","newLocale","$watch","getDefaultLocale","initVueI18n","__uniConfig","isWatchedAppLocale","add","isString","hasI18nJson","jsonObj","walkJsonObj","isI18nStr","parseI18nJson","compileStr","compileI18nJsonStr","jsonStr","locales","localeValues","unshift","compileJsonObj","compileValue","valueLocales","localValue","walk","resolveLocale","resolveLocaleChain","chain","isValidPhone","myreg","areaList","province_list","city_list","county_list","getConfig","getList","getIndex","compareNum","formatTime","date","year","getFullYear","month","getMonth","day","getDate","hour","getHours","minute","getMinutes","second","getSeconds","formatNumber","n","header","statusCode","removeStorageSync","redirect","showErrorToast","msg","showToast","image"],"mappings":"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,KAAK0sB,SAAL,CAAe1sB,QAAf,CAAlB;AACH,KA3FI;AA4FL;;;;;AAKA2sB,yBAjGK,iCAiGkB9wB,GAjGlB,EAiGuB;AACxB,UAAI,OAAQ+wB,IAAI,CAAC,UAAU/wB,GAAX,CAAZ,KAAiC,UAArC,EAAiD;AAC7C+wB,YAAI,CAAC,UAAU/wB,GAAV,GAAgB,IAAjB,CAAJ;AACH;AACJ,KArGI;AAsGL;;;;;;;AAOAgxB,aA7GK,qBA6GM7d,MA7GN,EA6Gc;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAOvT,IAAI,CAACC,KAAL,CAAWD,IAAI,CAACoR,SAAL,CAAe7P,GAAf,CAAX,CAAP;AACH,KAlII,EADE,E;;;;;;;;;;;ACXf;;AAEA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;;AAEA;AACA;AACA,4CAA4C;;AAE5C;;;;;;;;;;;;;ACnBA;AAAA;AACA;AACA;AACA;AACA;AACA;;AAEA,kCAAkC;;AAElC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,iBAAiB;AAClC;AACA;AACA;AACA,sBAAsB,+BAA+B;AACrD,sBAAsB,iBAAiB;AACvC;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA,kDAAkD,iCAAiC,EAAE;AACrF,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,iBAAiB,gBAAgB;AACjC;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,6BAA6B,cAAc;;AAE3C;;AAEA;AACA;AACA;AACA,6BAA6B,UAAU;;AAEvC;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,OAAO;AACP;AACA,OAAO;AACP;AACA;AACA;AACA;AACA,SAAS;AACT,OAAO;AACP;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,gBAAgB;AACjC,kCAAkC;AAClC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;AAIA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,iBAAiB,aAAoB;;AAErC;AACA;AACA;AACA,YAAY,aAAoB;;AAEhC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,CAAC;;AAED;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,qBAAqB;AACxC,iBAAiB;AACjB;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;AACA,KAAK,GAAG;AACR;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,GAAG;AACH;;AAEA;;AAEA;AACA;AACA,oCAAoC;AACpC;;AAEA,IAAI,IAAqC;AACzC;AACA;AACA,iCAAiC;AACjC,uCAAuC,wBAAwB,EAAE;AACjE,0BAA0B;;AAE1B;AACA;;AAEA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,8CAA8C;AAC9C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,wBAAwB,YAAY;AACpC,kBAAkB,YAAY;AAC9B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B;AAC/B;AACA,wCAAwC,EAAE;AAC1C;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA,+BAA+B,oBAAoB,EAAE;AACrD;AACA,kCAAkC,OAAO;AACzC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,0BAA0B,SAAS,qBAAqB;;AAExD;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,2BAA2B;AAC9C;AACA;AACA;AACA,GAAG;AACH,CAAC;;AAED;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,iBAAiB;AAClC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,mCAAmC,OAAO;AAC1C;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC,OAAO;AACzC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,KAAqC;AAC/C;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,KAAqC;AACzC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,KAAqC;AACzC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,iDAAiD,OAAO;AACxD;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,IAAI,IAAqC;AACzC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,cAAc;AACd;;AAEA;AACA;AACA;;AAEA,iBAAiB,iBAAiB;AAClC;AACA;AACA,2BAA2B;AAC3B;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,iBAAiB,kBAAkB;AACnC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,KAAqC;AACzC;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC,uBAAuB;AACzD,iCAAiC,sBAAsB;AACvD;AACA,kBAAkB;AAClB,MAAM,IAAqC;AAC3C;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kBAAkB,aAAoB;AACtC;AACA;AACA,mBAAmB;AACnB;AACA;AACA,iBAAiB,uBAAuB;AACxC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB,OAAO,UAAU,IAAqC;AACtD;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA,GAAG,UAAU,IAAqC;AAClD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB;AACA;AACA,mBAAmB,mBAAmB;AACtC,+BAA+B;AAC/B;AACA,GAAG;AACH;AACA;AACA;AACA,kBAAkB,YAAY;AAC9B,WAAW;AACX;AACA,GAAG,UAAU,IAAqC;AAClD;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,IAAqC;AAC3C;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8CAA8C,OAAO;AACrD;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B;AAC3B;AACA,oCAAoC;AACpC;AACA,qCAAqC;AACrC;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;AAIA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,IAEQ;AACZ;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,2BAA2B;AAC9C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,6CAA6C,SAAS;AACtD;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA,6CAA6C,qCAAqC,EAAE;AACpF;;AAEA;AACA;AACA;;AAEA,oCAAoC,yCAAyC,EAAE;AAC/E;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yBAAyB,kBAAkB;AAC3C;AACA;AACA,4BAA4B;AAC5B,aAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,sDAAsD,EAAE;AACtF;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,MAAM,IAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,iBAAiB,mBAAmB;AACpC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB,kBAAkB;AAClC;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;AACL;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;;AAEA;;AAEA;;AAEA;;AAEA,IAAI,IAAqC;AACzC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkC,iCAAiC;AACnE,cAAc,6BAA6B;AAC3C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,kCAAkC,iCAAiC;AACnE,cAAc,6BAA6B;AAC3C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,yBAAyB;AAC1C,GAAG;AACH;AACA;AACA,iBAAiB,+BAA+B;AAChD;AACA;;AAEA;AACA;;AAEA,IAAI,IAAqC;AACzC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA2B,uBAAuB;AAClD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,uCAAuC;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;;AAEA;AACA;AACA;AACA,qBAAqB,mBAAmB;AACxC;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wDAAwD;AACxD;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,IAAqC;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB,qBAAqB;AACtC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,aAAa,qBAAqB;AAClC;AACA,+CAA+C;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,IAAqC;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT,OAAO,MAAM,EAEN;AACP,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,mBAAmB,iBAAiB;AACpC;AACA;AACA,6BAA6B;AAC7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS,UAAU,IAAqC;AACxD;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;AAIA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sCAAsC,OAAO;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,kEAAkE;AAClE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA,sBAAsB,mBAAmB;AACzC;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+BAA+B,OAAO;AACtC,uCAAuC;AACvC;AACA,GAAG;AACH;AACA,eAAe,SAAS;AACxB,sCAAsC;AACtC;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,2DAA2D;AAC3D;AACA;AACA,KAAK;AACL;AACA;AACA,kCAAkC,OAAO;AACzC;AACA,6CAA6C;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qBAAqB;AACrB;AACA;AACA,UAAU,KAAqC;AAC/C;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA;AACA;AACA,GAAG;AACH;AACA;;AAEA;AACA;AACA,4CAA4C,eAAe;AAC3D,GAAG;AACH;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,kDAAkD;AAClD,4CAA4C;AAC5C;AACA;AACA;AACA;AACA;;AAEA;AACA,6CAA6C;AAC7C;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,iBAAiB;AACpC;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA,KAAK;AACL,4CAA4C;AAC5C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAgB;AAChB,iBAAiB,gBAAgB;AACjC;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA,iBAAiB,mBAAmB;AACpC;AACA;AACA;AACA,KAAK,UAAU,KAAqC;AACpD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH,qCAAqC,gEAAgE;AACrG;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH,4BAA4B,+BAA+B;AAC3D,4BAA4B,+BAA+B;AAC3D;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,GAAG;AACH;AACA;AACA,mBAAmB,mBAAmB;AACtC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,IAAqC;AAC3C,kDAAkD;AAClD;AACA;AACA,mCAAmC;AACnC;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,QAAQ,IAAqC;AAC7C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,sEAAsE;;AAEtE;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK,uFAAuF;AAC5F;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,0CAA0C;AAC1C,iBAAiB,yBAAyB;AAC1C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG,+BAA+B;AAClC,mCAAmC;AACnC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,KAAqC;AACzC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,KAAqC;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA,GAAG;AACH,oBAAoB,oBAAoB;AACxC,sBAAsB,4BAA4B;AAClD;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8CAA8C,OAAO;AACrD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA,mBAAmB;AACnB,yBAAyB;AACzB;AACA,qDAAqD;AACrD;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iCAAiC,6CAA6C;AAC9E;AACA;AACA,6CAA6C,4CAA4C;;AAEzF;AACA;AACA;;AAEA;AACA,MAAM,IAAqC;AAC3C;AACA;AACA,KAAK;AACL;AACA;AACA,KAAK;AACL,GAAG,MAAM,EAGN;AACH;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,UAAU,KAAqC;AAC/C;AACA;AACA,SAAS;AACT;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,UAAU,KAAqC;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oBAAoB;AACpB;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,KAAK,2CAA2C,8BAA8B,EAAE;;AAEhF;AACA,wCAAwC,OAAO;AAC/C;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA,KAAK;;AAEL;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;;AAEL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAAW;AACX;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,gBAAgB,KAAqC;AACrD;AACA,oBAAoB,SAAI;AACxB;AACA;AACA,WAAW;AACX;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,mBAAmB,qBAAqB;AACxC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,+CAA+C;AAC/C;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,uCAAuC,OAAO;AAC9C;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,yCAAyC,SAAS;AAClD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,QAAQ,IAAqC;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,qCAAqC,OAAO;AAC5C;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,IAAqC;AAC3C;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,0BAA0B;;AAE1B,kBAAkB;AAClB;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB,qBAAqB;AACxC;AACA,0CAA0C;AAC1C;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,MAAM,IAAqC;AAC3C;AACA;AACA;;AAEA;AACA;AACA,uBAAuB;AACvB;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA,mBAAmB,yBAAyB;AAC5C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,mBAAmB,yBAAyB;AAC5C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,wCAAwC,OAAO;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,IAAqC;AAC3C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0B,0BAA0B;AACpD;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,8BAA8B,oBAAoB,EAAE;;AAEpD;AACA;AACA,iBAAiB,sBAAsB;AACvC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,KAAqC;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,iBAAiB,kBAAkB;AACnC;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,UAAU,KAAqC;AAC/C;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;AAIA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,oBAAoB;AACpB;AACA,yBAAyB;AACzB;AACA;AACA;AACA;AACA,oBAAoB,KAAqC;AACzD;AACA,MAAM,SAAE;AACR;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,KAAK;AACL;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,mBAAmB,2BAA2B;AAC9C,qBAAqB,+BAA+B;AACpD;AACA;AACA,GAAG;AACH,yBAAyB;AACzB;AACA,sBAAsB,iCAAiC;AACvD;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,IAAqC;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wEAAwE;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP,KAAK,MAAM,EAEN;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,KAAqC;AACzC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,IAAqC;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA,8BAA8B;;AAE9B;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,QAAQ,KAAqC;AAC7C;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK,UAAU,IAAqC;AACpD;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,oCAAoC;AACpC;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,QAAQ,IAAqC;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,qBAAqB,oBAAoB;AACzC;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,6BAA6B;AAC7B;AACA,8BAA8B;AAC9B,MAAM,IAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,QAAQ,KAAqC;AAC7C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA,QAAQ,IAAqC;AAC7C;AACA,KAAK,MAAM,EAEN;AACL;AACA;AACA;AACA;AACA;AACA;AACA,yCAAyC;AACzC;AACA,sCAAsC;AACtC,8C;;AAEA;AACA,QAAQ,KAAqC;AAC7C;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,sBAAsB,eAAe;AACrC;AACA;AACA;AACA;AACA;;AAEA;AACA,MAAM,KAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,sEAAsE;AACtE;AACA;AACA;;AAEA;AACA,QAAQ,KAAqC;AAC7C;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,iCAAiC;;AAEjC;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA,YAAY,KAAqC;AACjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;AAEA;;;;AAIA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA,GAAG;;AAEH;AACA;;AAEA;AACA,0CAA0C,2BAA2B,EAAE;AACvE,KAAK;AACL;AACA,0CAA0C,4BAA4B,EAAE;AACxE,KAAK;AACL,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,+BAA+B,eAAe;AAC9C,MAAM,IAAqC;AAC3C;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA,CAAC;;AAED;AACA;AACA;AACA,CAAC;;AAED;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA,aAAa;AACb;AACA;AACA;;AAEA;AACA,0BAA0B;AAC1B;AACA;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,iBAAiB;AACjB;AACA;AACA,qBAAqB;AACrB;AACA;AACA,yBAAyB;AACzB;AACA;AACA,6BAA6B;AAC7B;AACA;AACA,iBAAiB;AACjB;AACA;AACA,qBAAqB;AACrB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,KAAK;AACL;AACA;AACA,SAAS;AACT;AACA;AACA,aAAa;AACb;AACA;AACA,iBAAiB;AACjB;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,YAAY,6GAAW;AACvB;AACA;AACA;AACA;AACA;AACA;AACA,uBAAuB,mBAAmB;AAC1C;AACA;AACA;AACA;;AAEA;AACA,0CAA0C,gCAAgC,EAAE;AAC5E;;AAEA;AACA;AACA;AACA;AACA,WAAW,6GAAW;AACtB;AACA;AACA;AACA;AACA;AACA,KAAK;AACL,WAAW,6GAAW;AACtB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;AACA;AACA,SAAS;AACT;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,SAAS;AACT;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA,8BAA8B;AAC9B,0CAA0C;;AAE1C;AACA;AACA;AACA,GAAG;;AAEH;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;;AAEA;AACA,sCAAsC;AACtC;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA,uBAAuB;AACvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK;AACL;AACA;AACA;AACA;AACA,8CAA8C;AAC9C;AACA,KAAK;AACL;AACA;AACA,UAAU,6GAAW;AACrB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP,KAAK;AACL;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA,mBAAmB;AACnB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,IAAqC;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,mCAAmC,OAAO;AAC1C;AACA,gBAAgB,YAAY;AAC5B;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,gBAAgB,YAAY;AAC5B;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,wBAAwB;AACxB;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA,kCAAkC;AAClC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP;AACA;AACA;AACA;AACA;AACA,GAAG;;AAEH;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,0CAA0C,OAAO;AACjD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,sDAAsD,qDAAqD,EAAE,SAAS;AACtH;;AAEA;AACA;AACA;AACA;AACA;AACA,iCAAiC,OAAO;AACxC;AACA;AACA;AACA,KAAK;AACL;AACA;AACA,kCAAkC,OAAO;AACzC;AACA;AACA;AACA;AACA,KAAK;AACL;AACA,0BAA0B,OAAO;AACjC;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,aAAa;AACb;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,KAAK;;AAEL;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEe,kEAAG,EAAC;;;;;;;;;;;;;AC75LnB;;;;AAIA;AACA,IAAM8vB,MAAM,GAAG;AACb;AACAC,WAAS,EAAEC,OAAO,CAAC,yNAAD,CAFL;;AAIb;AACAC,WAAS,EAAED,OAAO,CAAC,mFAAD,CALL;;AAOb;AACAE,YAAU,EAAEF,OAAO,CAAC,oHAAD,CARN;;AAUb;AACAG,UAAQ,EAAEH,OAAO,CAAC,sHAAD,CAXJ;;AAab;AACAI,UAAQ,EAAE;AACRC,MAAE,EAAE,GADI;AAERC,MAAE,EAAE,GAFI;AAGRC,QAAI,EAAE,GAHE;AAIRC,QAAI,EAAE,GAJE;AAKRC,QAAI,EAAE,QALE;AAMRC,QAAI,EAAE,QANE;AAORC,QAAI,EAAE,MAPE;AAQRC,QAAI,EAAE,GARE;AASRC,SAAK,EAAE,GATC;AAURC,SAAK,EAAE,GAVC;AAWRC,UAAM,EAAE,GAXA;AAYRC,SAAK,EAAE,GAZC;AAaRC,SAAK,EAAE,GAbC;AAcRC,SAAK,EAAE,GAdC;AAeRC,SAAK,EAAE,GAfC;AAgBRC,QAAI,EAAE,GAhBE;AAiBRC,UAAM,EAAE,GAjBA,EAdG;;;AAkCb;AACAC,UAAQ,EAAE;;AAERC,WAAO,EAAE,mBAFD;AAGRC,OAAG,EAAE,gCAHG;AAIRC,WAAO,EAAE,yCAJD;AAKRva,UAAM,EAAE,mBALA;AAMRwa,QAAI,EAAE,mBANE;AAORC,MAAE,EAAE,kBAPI;AAQRC,QAAI,EAAE,yBARE;AASRC,OAAG,EAAE,uCATG;AAURC,KAAC,EAAE,8BAVK;AAWRC,SAAK,EAAE,gCAXC;AAYRC,UAAM,EAAE,8BAZA;AAaRC,KAAC,EAAE,2BAbK,EAnCG;;;;AAoDb;AACAC,SAAO,EAAE;AACPC,oBAAgB,EAAE,kBADX;AAEPC,kBAAc,EAAE,gBAFT;AAGPC,WAAO,EAAE,SAHF;AAIPC,iBAAa,EAAE,eAJR;AAKPC,eAAW,EAAE,aALN;AAMPC,aAAS,EAAE,WANJ,EArDI,EAAf;;;AA8DA,IAAMC,WAAW,GAAC,EAAlB,C;;;;;;AAMIrV,GAAG,CAACvX,iBAAJ,E,CAJFG,W,yBAAAA,W,CAEA0sB,M,yBAAAA,M;AAGF,IAAMC,SAAS,GAAG3C,OAAO,CAAC,eAAD,CAAzB;AACA,IAAI4C,OAAO,GAAG,CAAd;;;;;;;;;;;;;AAaA;;;;AAIA,SAAS5C,OAAT,CAAkBxzB,GAAlB,EAAuB;AACrB,MAAMkB,GAAG,GAAGgC,MAAM,CAACa,MAAP,CAAc,IAAd,CAAZ;AACA,MAAMsyB,IAAI,GAAGr2B,GAAG,CAACiB,KAAJ,CAAU,GAAV,CAAb;AACA,OAAK,IAAIN,CAAC,GAAG01B,IAAI,CAAC/1B,MAAlB,EAA0BK,CAAC,EAA3B,GAAgC;AAC9BO,OAAG,CAACm1B,IAAI,CAAC11B,CAAD,CAAL,CAAH,GAAe,IAAf;AACD;AACD,SAAOO,GAAP;AACD;;AAED;;;;;;AAMA,SAASo1B,YAAT,CAAuBt2B,GAAvB,EAA4Bu2B,GAA5B,EAAiC;AAC/B,MAAI51B,CAAC,GAAGX,GAAG,CAACY,OAAJ,CAAY,GAAZ,CAAR;AACA,SAAOD,CAAC,KAAK,CAAC,CAAd,EAAiB;AACf,QAAM61B,CAAC,GAAGx2B,GAAG,CAACY,OAAJ,CAAY,GAAZ,EAAiBD,CAAC,GAAG,CAArB,CAAV;AACA,QAAImlB,IAAI,SAAR;AACA,QAAI0Q,CAAC,KAAK,CAAC,CAAX,EAAc;AACd,QAAIx2B,GAAG,CAACW,CAAC,GAAG,CAAL,CAAH,KAAe,GAAnB,EAAwB;AACtB;AACAmlB,UAAI,GAAG9Z,QAAQ,CAAC,CAAChM,GAAG,CAACW,CAAC,GAAG,CAAL,CAAH,KAAe,GAAf,GAAqB,GAArB,GAA2B,EAA5B,IAAkCX,GAAG,CAACsxB,SAAJ,CAAc3wB,CAAC,GAAG,CAAlB,EAAqB61B,CAArB,CAAnC,CAAf;AACA,UAAI,CAACtqB,KAAK,CAAC4Z,IAAD,CAAV,EAAkB;AAChB9lB,WAAG,GAAGA,GAAG,CAACmW,MAAJ,CAAW,CAAX,EAAcxV,CAAd,IAAmBV,MAAM,CAACa,YAAP,CAAoBglB,IAApB,CAAnB,GAA+C9lB,GAAG,CAACmW,MAAJ,CAAWqgB,CAAC,GAAG,CAAf,CAArD;AACD;AACF,KAND,MAMO;AACL;AACA1Q,UAAI,GAAG9lB,GAAG,CAACsxB,SAAJ,CAAc3wB,CAAC,GAAG,CAAlB,EAAqB61B,CAArB,CAAP;AACA,UAAIlD,MAAM,CAACM,QAAP,CAAgB9N,IAAhB,KAA0BA,IAAI,KAAK,KAAT,IAAkByQ,GAAhD,EAAsD;AACpDv2B,WAAG,GAAGA,GAAG,CAACmW,MAAJ,CAAW,CAAX,EAAcxV,CAAd,KAAoB2yB,MAAM,CAACM,QAAP,CAAgB9N,IAAhB,KAAyB,GAA7C,IAAoD9lB,GAAG,CAACmW,MAAJ,CAAWqgB,CAAC,GAAG,CAAf,CAA1D;AACD;AACF;AACD71B,KAAC,GAAGX,GAAG,CAACY,OAAJ,CAAY,GAAZ,EAAiBD,CAAC,GAAG,CAArB,CAAJ;AACD;AACD,SAAOX,GAAP;AACD;;AAED;;;;AAIA,SAASy2B,MAAT,CAAiBtlB,EAAjB,EAAqB;AACnB,OAAKzK,OAAL,GAAeyK,EAAE,IAAI,EAArB;AACA,OAAK2jB,QAAL,GAAgB5xB,MAAM,CAAC4F,MAAP,CAAc,EAAd,EAAkBwqB,MAAM,CAACwB,QAAzB,EAAmC,KAAKpuB,OAAL,CAAaouB,QAAhD,CAAhB;AACA,OAAK4B,OAAL,GAAevlB,EAAE,CAACulB,OAAH,IAAc,EAA7B;AACA,OAAKC,OAAL,GAAexlB,EAAE,CAACwlB,OAAH,IAAc,EAA7B;AACA,OAAKC,KAAL,GAAa1zB,MAAM,CAACa,MAAP,CAAc,IAAd,CAAb;AACA,OAAK8yB,KAAL,GAAa,EAAb;AACA,OAAKC,KAAL,GAAa,EAAb;AACA,OAAKzB,GAAL,GAAW,CAAC,KAAK3uB,OAAL,CAAaqwB,cAAb,IAA+B,EAAhC,EAAoCC,QAApC,CAA6C,aAA7C,KAA+D,KAAKtwB,OAAL,CAAaqwB,cAAb,CAA4BC,QAA5B,CAAqC,KAArC,CAA/D,GAA6G,CAA7G,GAAiH,CAA5H;AACD;;AAED;;;;AAIAP,MAAM,CAACh0B,SAAP,CAAiBP,KAAjB,GAAyB,UAAU+0B,OAAV,EAAmB;AAC1C;AACA,OAAK,IAAIt2B,CAAC,GAAG,KAAKg2B,OAAL,CAAar2B,MAA1B,EAAkCK,CAAC,EAAnC,GAAwC;AACtC,QAAI,KAAKg2B,OAAL,CAAah2B,CAAb,EAAgBu2B,QAApB,EAA8B;AAC5BD,aAAO,GAAG,KAAKN,OAAL,CAAah2B,CAAb,EAAgBu2B,QAAhB,CAAyBD,OAAzB,EAAkC3D,MAAlC,KAA6C2D,OAAvD;AACD;AACF;;AAED,MAAIE,KAAJ,CAAU,IAAV,EAAgBj1B,KAAhB,CAAsB+0B,OAAtB;AACA;AACA,SAAO,KAAKJ,KAAL,CAAWv2B,MAAlB,EAA0B;AACxB,SAAK82B,OAAL;AACD;AACD,SAAO,KAAKN,KAAZ;AACD,CAdD;;AAgBA;;;AAGAL,MAAM,CAACh0B,SAAP,CAAiB40B,MAAjB,GAA0B,YAAY;;AAEpC,OAAK,IAAI12B,CAAC,GAAG,KAAKk2B,KAAL,CAAWv2B,MAAxB,EAAgCK,CAAC,EAAjC,GAAsC;AACpC,QAAM0L,IAAI,GAAG,KAAKwqB,KAAL,CAAWl2B,CAAX,CAAb;AACA,QAAI0L,IAAI,CAAClL,CAAL,IAAUkL,IAAI,CAAC1F,IAAL,KAAc,GAAxB,IAA+B0F,IAAI,CAAC1F,IAAL,KAAc,OAA7C,IAAwD0F,IAAI,CAAC1F,IAAL,KAAc,OAA1E,EAAmF;AACnF0F,QAAI,CAAClL,CAAL,GAAS,CAAT;AACD;;AAEF,CARD;;AAUA;;;;;AAKAs1B,MAAM,CAACh0B,SAAP,CAAiB2C,IAAjB,GAAwB,UAAUkyB,IAAV,EAAgB;AACtC,OAAK,IAAI32B,CAAC,GAAG,KAAKg2B,OAAL,CAAar2B,MAA1B,EAAkCK,CAAC,EAAnC,GAAwC;AACtC,QAAI,KAAKg2B,OAAL,CAAah2B,CAAb,EAAgB42B,OAAhB,IAA2B,KAAKZ,OAAL,CAAah2B,CAAb,EAAgB42B,OAAhB,CAAwBD,IAAxB,EAA8B,IAA9B,MAAwC,KAAvE,EAA8E;AAC5E,aAAO,KAAP;AACD;AACF;AACD,SAAO,IAAP;AACD,CAPD;;AASA;;;;;AAKAb,MAAM,CAACh0B,SAAP,CAAiB+0B,MAAjB,GAA0B,UAAUvsB,GAAV,EAAe;AACvC,MAAMwsB,MAAM,GAAG,KAAK/wB,OAAL,CAAa+wB,MAA5B;AACA,MAAIxsB,GAAG,CAAC,CAAD,CAAH,KAAW,GAAf,EAAoB;AAClB,QAAIA,GAAG,CAAC,CAAD,CAAH,KAAW,GAAf,EAAoB;AAClB;AACAA,SAAG,GAAG,CAACwsB,MAAM,GAAGA,MAAM,CAACx2B,KAAP,CAAa,KAAb,EAAoB,CAApB,CAAH,GAA4B,MAAnC,IAA6C,GAA7C,GAAmDgK,GAAzD;AACD,KAHD,MAGO,IAAIwsB,MAAJ,EAAY;AACjB;AACAxsB,SAAG,GAAGwsB,MAAM,GAAGxsB,GAAf;AACD;AACF,GARD,MAQO,IAAIwsB,MAAM,IAAI,CAACxsB,GAAG,CAAC+rB,QAAJ,CAAa,OAAb,CAAX,IAAoC,CAAC/rB,GAAG,CAAC+rB,QAAJ,CAAa,KAAb,CAAzC,EAA8D;AACnE/rB,OAAG,GAAGwsB,MAAM,GAAG,GAAT,GAAexsB,GAArB;AACD;AACD,SAAOA,GAAP;AACD,CAdD;;AAgBA;;;;;AAKAwrB,MAAM,CAACh0B,SAAP,CAAiBi1B,UAAjB,GAA8B,UAAUJ,IAAV,EAAgB;AAC5C,MAAMV,KAAK,GAAGU,IAAI,CAACV,KAAnB;AACA,MAAMP,IAAI,GAAG,CAAC,KAAKvB,QAAL,CAAcwC,IAAI,CAAC3wB,IAAnB,KAA4B,EAA7B,EAAiC1F,KAAjC,CAAuC,GAAvC,EAA4C4D,MAA5C,CAAmD,CAAC+xB,KAAK,CAACe,KAAN,IAAe,EAAhB,EAAoB12B,KAApB,CAA0B,GAA1B,CAAnD,CAAb;AACA,MAAM22B,QAAQ,GAAG,EAAjB;AACA,MAAIC,GAAG,GAAG,EAAV;;AAEA,MAAIjB,KAAK,CAAC3c,EAAN,IAAY,CAAC,KAAK6d,GAAtB,EAA2B;AACzB;AACA,QAAI,KAAKpxB,OAAL,CAAaqxB,SAAjB,EAA4B;AAC1B,WAAKV,MAAL;AACD,KAFD,MAEO,IAAIC,IAAI,CAAC3wB,IAAL,KAAc,KAAd,IAAuB2wB,IAAI,CAAC3wB,IAAL,KAAc,GAArC,IAA4C2wB,IAAI,CAAC3wB,IAAL,KAAc,OAA1D,IAAqE2wB,IAAI,CAAC3wB,IAAL,KAAc,OAAvF,EAAgG;AACrGiwB,WAAK,CAAC3c,EAAN,GAAW6D,SAAX;AACD;AACF;;AAED;AACA,MAAI8Y,KAAK,CAACoB,KAAV,EAAiB;AACfJ,YAAQ,CAACI,KAAT,GAAiBC,UAAU,CAACrB,KAAK,CAACoB,KAAP,CAAV,IAA2BpB,KAAK,CAACoB,KAAN,CAAYhB,QAAZ,CAAqB,GAArB,IAA4B,GAA5B,GAAkC,IAA7D,CAAjB;AACAJ,SAAK,CAACoB,KAAN,GAAcla,SAAd;AACD;AACD,MAAI8Y,KAAK,CAACsB,MAAV,EAAkB;AAChBN,YAAQ,CAACM,MAAT,GAAkBD,UAAU,CAACrB,KAAK,CAACsB,MAAP,CAAV,IAA4BtB,KAAK,CAACsB,MAAN,CAAalB,QAAb,CAAsB,GAAtB,IAA6B,GAA7B,GAAmC,IAA/D,CAAlB;AACAJ,SAAK,CAACsB,MAAN,GAAepa,SAAf;AACD;;AAED,OAAK,IAAInd,CAAC,GAAG,CAAR,EAAWyK,GAAG,GAAGirB,IAAI,CAAC/1B,MAA3B,EAAmCK,CAAC,GAAGyK,GAAvC,EAA4CzK,CAAC,EAA7C,EAAiD;AAC/C,QAAMw3B,IAAI,GAAG9B,IAAI,CAAC11B,CAAD,CAAJ,CAAQM,KAAR,CAAc,GAAd,CAAb;AACA,QAAIk3B,IAAI,CAAC73B,MAAL,GAAc,CAAlB,EAAqB;AACrB,QAAMqD,GAAG,GAAGw0B,IAAI,CAAChe,KAAL,GAAaie,IAAb,GAAoBC,WAApB,EAAZ;AACA,QAAI9vB,KAAK,GAAG4vB,IAAI,CAAC72B,IAAL,CAAU,GAAV,EAAe82B,IAAf,EAAZ;AACA,QAAK7vB,KAAK,CAAC,CAAD,CAAL,KAAa,GAAb,IAAoBA,KAAK,CAACqqB,WAAN,CAAkB,GAAlB,IAAyB,CAA9C,IAAoDrqB,KAAK,CAACyuB,QAAN,CAAe,MAAf,CAAxD,EAAgF;AAC9E;AACAa,SAAG,eAAQl0B,GAAR,cAAe4E,KAAf,CAAH;AACD,KAHD,MAGO,IAAI,CAACqvB,QAAQ,CAACj0B,GAAD,CAAT,IAAkB4E,KAAK,CAACyuB,QAAN,CAAe,QAAf,CAAlB,IAA8C,CAACY,QAAQ,CAACj0B,GAAD,CAAR,CAAcqzB,QAAd,CAAuB,QAAvB,CAAnD,EAAqF;AAC1F;AACA,UAAIzuB,KAAK,CAACyuB,QAAN,CAAe,KAAf,CAAJ,EAA2B;AACzB;AACA,YAAIR,CAAC,GAAGjuB,KAAK,CAAC3H,OAAN,CAAc,GAAd,IAAqB,CAA7B;AACA,YAAI41B,CAAJ,EAAO;AACL,iBAAOjuB,KAAK,CAACiuB,CAAD,CAAL,KAAa,GAAb,IAAoBjuB,KAAK,CAACiuB,CAAD,CAAL,KAAa,GAAjC,IAAwCL,SAAS,CAAC5tB,KAAK,CAACiuB,CAAD,CAAN,CAAxD,EAAoE;AAClEA,aAAC;AACF;AACDjuB,eAAK,GAAGA,KAAK,CAAC4N,MAAN,CAAa,CAAb,EAAgBqgB,CAAhB,IAAqB,KAAKgB,MAAL,CAAYjvB,KAAK,CAAC4N,MAAN,CAAaqgB,CAAb,CAAZ,CAA7B;AACD;AACF,OATD,MASO,IAAIjuB,KAAK,CAACyuB,QAAN,CAAe,KAAf,CAAJ,EAA2B;AAChC;AACAzuB,aAAK,GAAGA,KAAK,CAACrI,OAAN,CAAc,gBAAd,EAAgC,UAAAo4B,CAAC,UAAIL,UAAU,CAACK,CAAD,CAAV,GAAgB9uB,WAAhB,GAA8B,GAA9B,GAAoC,IAAxC,EAAjC,CAAR;AACD;AACDouB,cAAQ,CAACj0B,GAAD,CAAR,GAAgB4E,KAAhB;AACD;AACF;;AAED+uB,MAAI,CAACV,KAAL,CAAWe,KAAX,GAAmBE,GAAnB;AACA,SAAOD,QAAP;AACD,CAtDD;;AAwDA;;;;;AAKAnB,MAAM,CAACh0B,SAAP,CAAiB81B,SAAjB,GAA6B,UAAU5xB,IAAV,EAAgB;AAC3C,OAAK6xB,OAAL,GAAe,KAAKV,GAAL,GAAWnxB,IAAX,GAAkBA,IAAI,CAAC0xB,WAAL,EAAjC;AACA,MAAI,KAAKG,OAAL,KAAiB,KAArB,EAA4B;AAC1B,SAAKV,GAAL,GAAW,CAAC,KAAKA,GAAL,IAAY,CAAb,IAAkB,CAA7B,CAD0B,CACK;AAChC;AACF,CALD;;AAOA;;;;;AAKArB,MAAM,CAACh0B,SAAP,CAAiBg2B,UAAjB,GAA8B,UAAU9xB,IAAV,EAAgB;AAC5CA,MAAI,GAAG,KAAKmxB,GAAL,GAAWnxB,IAAX,GAAkBA,IAAI,CAAC0xB,WAAL,EAAzB;AACA,MAAI1xB,IAAI,CAACwP,MAAL,CAAY,CAAZ,EAAe,CAAf,MAAsB,OAA1B,EAAmC;AACjC,QAAIxP,IAAI,KAAK,UAAT,IAAuB,CAAC,KAAKiwB,KAAL,CAAW8B,GAAvC,EAA4C;AAC1C;AACA,WAAKC,QAAL,GAAgB,KAAhB;AACD,KAHD,MAGO,IAAI,KAAKH,OAAL,KAAiB,KAAjB,IAA0B,KAAKA,OAAL,KAAiB,GAA/C,EAAoD;AACzD;AACA,WAAKG,QAAL,GAAgBhyB,IAAhB;AACD,KAHM,MAGA;AACL;AACA,WAAKgyB,QAAL,GAAgB7a,SAAhB;AACD;AACF,GAXD,MAWO;AACL,SAAK6a,QAAL,GAAgBhyB,IAAhB;AACA,SAAKiwB,KAAL,CAAWjwB,IAAX,IAAmB,GAAnB,CAFK,CAEkB;AACxB;AACF,CAjBD;;AAmBA;;;;;AAKA8vB,MAAM,CAACh0B,SAAP,CAAiBm2B,SAAjB,GAA6B,UAAU/a,GAAV,EAAe;AAC1C,MAAMlX,IAAI,GAAG,KAAKgyB,QAAL,IAAiB,EAA9B;AACA,MAAIhyB,IAAI,KAAK,OAAT,IAAoBA,IAAI,KAAK,MAAjC,EAAyC;AACvC;AACA,SAAKiwB,KAAL,CAAWjwB,IAAX,IAAmB2vB,YAAY,CAACzY,GAAD,EAAM,IAAN,CAA/B;AACD,GAHD,MAGO,IAAIlX,IAAI,CAACqwB,QAAL,CAAc,KAAd,CAAJ,EAA0B;AAC/B;AACA,SAAKJ,KAAL,CAAWjwB,IAAX,IAAmB,KAAK6wB,MAAL,CAAYlB,YAAY,CAACzY,GAAD,EAAM,IAAN,CAAxB,CAAnB;AACD,GAHM,MAGA,IAAIlX,IAAJ,EAAU;AACf,SAAKiwB,KAAL,CAAWjwB,IAAX,IAAmBkX,GAAnB;AACD;AACF,CAXD;;AAaA;;;;;AAKA4Y,MAAM,CAACh0B,SAAP,CAAiBo2B,SAAjB,GAA6B,UAAUC,SAAV,EAAqB;AAChD;AACA,MAAMxB,IAAI,GAAGp0B,MAAM,CAACa,MAAP,CAAc,IAAd,CAAb;AACAuzB,MAAI,CAAC3wB,IAAL,GAAY,KAAK6xB,OAAjB;AACAlB,MAAI,CAACV,KAAL,GAAa,KAAKA,KAAlB;AACA;AACA,MAAI,KAAKlwB,OAAL,CAAaowB,KAAb,CAAmBx2B,MAAvB,EAA+B;AAC7Bg3B,QAAI,CAAC/iB,IAAL,GAAY,MAAZ;AACD;AACD,OAAKqiB,KAAL,GAAa1zB,MAAM,CAACa,MAAP,CAAc,IAAd,CAAb;;AAEA,MAAM6yB,KAAK,GAAGU,IAAI,CAACV,KAAnB;AACA,MAAM1Z,MAAM,GAAG,KAAK2Z,KAAL,CAAW,KAAKA,KAAL,CAAWv2B,MAAX,GAAoB,CAA/B,CAAf;AACA,MAAMy4B,QAAQ,GAAG7b,MAAM,GAAGA,MAAM,CAAC8b,QAAV,GAAqB,KAAKlC,KAAjD;AACA,MAAMmC,KAAK,GAAG,KAAKnB,GAAL,GAAWgB,SAAX,GAAuBxF,MAAM,CAACK,QAAP,CAAgB2D,IAAI,CAAC3wB,IAArB,CAArC;;AAEA;AACA,MAAIsvB,WAAW,CAACqB,IAAI,CAAC3wB,IAAN,CAAf,EAA4B;AAC1BiwB,SAAK,CAACsC,KAAN,GAAcjD,WAAW,CAACqB,IAAI,CAAC3wB,IAAN,CAAX,IAA0BiwB,KAAK,CAACsC,KAAN,GAAc,MAAMtC,KAAK,CAACsC,KAA1B,GAAkC,EAA5D,CAAd;AACD;;AAED;AACA,MAAI5B,IAAI,CAAC3wB,IAAL,KAAc,OAAlB,EAA2B;;AAEzB,QAAM+xB,GAAG,GAAG9B,KAAK,CAAC8B,GAAN,IAAa,EAAzB;AACA;AACA,QAAIA,GAAG,CAAC1B,QAAJ,CAAa,MAAb,KAAwB0B,GAAG,CAAC1B,QAAJ,CAAa,MAAb,CAAxB,IAAgD0B,GAAG,CAAC1B,QAAJ,CAAa,OAAb,CAAhD,IAAyE,CAACJ,KAAK,CAACriB,IAAN,IAAc,EAAf,EAAmByiB,QAAnB,CAA4B,OAA5B,CAA7E,EAAmH;AACjHM,UAAI,CAAC3wB,IAAL,GAAY,OAAZ;AACD,KAFD,MAEO,IAAI+xB,GAAG,CAAC1B,QAAJ,CAAa,MAAb,KAAwB0B,GAAG,CAAC1B,QAAJ,CAAa,MAAb,CAAxB,IAAgD0B,GAAG,CAAC1B,QAAJ,CAAa,MAAb,CAAhD,IAAwE0B,GAAG,CAAC1B,QAAJ,CAAa,MAAb,CAAxE,IAAgG,CAACJ,KAAK,CAACriB,IAAN,IAAc,EAAf,EAAmByiB,QAAnB,CAA4B,OAA5B,CAApG,EAA0I;AAC/IM,UAAI,CAAC3wB,IAAL,GAAY,OAAZ;AACD;AACD,QAAIiwB,KAAK,CAACuC,SAAV,EAAqB;AACnBvC,WAAK,CAACwC,QAAN,GAAiB,GAAjB;AACD;AACDxC,SAAK,CAACyC,QAAN,GAAiB,GAAjB;;;;;AAKD;;;AAGD;AACA,MAAI/B,IAAI,CAAC3wB,IAAL,KAAc,OAAd,IAAyB2wB,IAAI,CAAC3wB,IAAL,KAAc,OAA3C,EAAoD;AAClD;AACA,QAAI2wB,IAAI,CAAC3wB,IAAL,KAAc,OAAd,IAAyB,CAACiwB,KAAK,CAAC3c,EAApC,EAAwC;AACtC2c,WAAK,CAAC3c,EAAN,GAAW,MAAMmc,OAAO,EAAxB;AACD;AACD;AACA,QAAI,CAACQ,KAAK,CAACyC,QAAP,IAAmB,CAACzC,KAAK,CAACwC,QAA9B,EAAwC;AACtCxC,WAAK,CAACyC,QAAN,GAAiB,GAAjB;AACD;AACD;AACA/B,QAAI,CAACoB,GAAL,GAAW,EAAX;AACA,QAAI9B,KAAK,CAAC8B,GAAV,EAAe;AACbpB,UAAI,CAACoB,GAAL,CAASxzB,IAAT,CAAc0xB,KAAK,CAAC8B,GAApB;AACA9B,WAAK,CAAC8B,GAAN,GAAY5a,SAAZ;AACD;AACD,SAAKuZ,MAAL;AACD;;;AAGD;AACA,MAAI4B,KAAJ,EAAW;AACT,QAAI,CAAC,KAAK7zB,IAAL,CAAUkyB,IAAV,CAAD,IAAoBhE,MAAM,CAACI,UAAP,CAAkB4D,IAAI,CAAC3wB,IAAvB,CAAxB,EAAsD;AACpD;AACA,UAAI2wB,IAAI,CAAC3wB,IAAL,KAAc,MAAd,IAAwB,CAAC,KAAKD,OAAL,CAAa+wB,MAA1C,EAAkD;AAChD,aAAK/wB,OAAL,CAAa+wB,MAAb,GAAsBb,KAAK,CAAC0C,IAA5B;AACD,OAFD,MAEO,IAAIhC,IAAI,CAAC3wB,IAAL,KAAc,QAAd,IAA0BuW,MAA1B,KAAqCA,MAAM,CAACvW,IAAP,KAAgB,OAAhB,IAA2BuW,MAAM,CAACvW,IAAP,KAAgB,OAAhF,KAA4FiwB,KAAK,CAAC8B,GAAtG,EAA2G;AAChH;AACAxb,cAAM,CAACwb,GAAP,CAAWxzB,IAAX,CAAgB0xB,KAAK,CAAC8B,GAAtB;AACD;AACD;AACD;;AAED;AACA,QAAMd,QAAQ,GAAG,KAAKF,UAAL,CAAgBJ,IAAhB,CAAjB;;AAEA;AACA,QAAIA,IAAI,CAAC3wB,IAAL,KAAc,KAAlB,EAAyB;AACvB,UAAIiwB,KAAK,CAAC8B,GAAV,EAAe;AACb;AACA,YAAI9B,KAAK,CAAC8B,GAAN,CAAU1B,QAAV,CAAmB,MAAnB,CAAJ,EAAgC;AAC9BM,cAAI,CAACiC,IAAL,GAAY,GAAZ;AACD;AACD;AACA,YAAI3C,KAAK,CAAC8B,GAAN,CAAU1B,QAAV,CAAmB,OAAnB,KAA+B,CAACJ,KAAK,CAAC,cAAD,CAAzC,EAA2D;AACzDA,eAAK,CAAC4C,MAAN,GAAe,GAAf;AACD;AACD,YAAI,CAAC5C,KAAK,CAAC4C,MAAP,IAAiBlC,IAAI,CAACiC,IAAtB,IAA8B3C,KAAK,CAAC8B,GAAN,CAAU1B,QAAV,CAAmB,UAAnB,CAAlC,EAAkE;AAChE,eAAK,IAAIr2B,CAAC,GAAG,KAAKk2B,KAAL,CAAWv2B,MAAxB,EAAgCK,CAAC,EAAjC,GAAsC;AACpC,gBAAM0L,IAAI,GAAG,KAAKwqB,KAAL,CAAWl2B,CAAX,CAAb;AACA,gBAAI0L,IAAI,CAAC1F,IAAL,KAAc,GAAlB,EAAuB;AACrB2wB,kBAAI,CAAC7G,CAAL,GAASpkB,IAAI,CAACuqB,KAAd;AACA;AACD;;AAED,gBAAMe,KAAK,GAAGtrB,IAAI,CAACuqB,KAAL,CAAWe,KAAX,IAAoB,EAAlC;AACA,gBAAIA,KAAK,CAACX,QAAN,CAAe,OAAf,KAA2B,CAACW,KAAK,CAACX,QAAN,CAAe,QAAf,CAA5B,IAAwD,CAACW,KAAK,CAACX,QAAN,CAAe,SAAf,CAAzD,KAAuF,CAACY,QAAQ,CAACI,KAAV,IAAmB,CAACJ,QAAQ,CAACI,KAAT,CAAehB,QAAf,CAAwB,GAAxB,CAA3G,CAAJ,EAA8I;AAC5IY,sBAAQ,CAACI,KAAT,GAAiB,iBAAjB;AACAJ,sBAAQ,CAACM,MAAT,GAAkB,EAAlB;AACA,mBAAK,IAAI1B,CAAC,GAAG71B,CAAC,GAAG,CAAjB,EAAoB61B,CAAC,GAAG,KAAKK,KAAL,CAAWv2B,MAAnC,EAA2Ck2B,CAAC,EAA5C,EAAgD;AAC9C,qBAAKK,KAAL,CAAWL,CAAX,EAAcI,KAAd,CAAoBe,KAApB,GAA4B,CAAC,KAAKd,KAAL,CAAWL,CAAX,EAAcI,KAAd,CAAoBe,KAApB,IAA6B,EAA9B,EAAkCz3B,OAAlC,CAA0C,SAA1C,EAAqD,EAArD,CAA5B;AACD;AACF,aAND,MAMO,IAAIy3B,KAAK,CAACX,QAAN,CAAe,MAAf,KAA0BY,QAAQ,CAACI,KAAT,KAAmB,MAAjD,EAAyD;AAC9D,mBAAK,IAAIxB,EAAC,GAAG71B,CAAC,GAAG,CAAjB,EAAoB61B,EAAC,GAAG,KAAKK,KAAL,CAAWv2B,MAAnC,EAA2Ck2B,EAAC,EAA5C,EAAgD;AAC9C,oBAAMmB,MAAK,GAAG,KAAKd,KAAL,CAAWL,EAAX,EAAcI,KAAd,CAAoBe,KAApB,IAA6B,EAA3C;AACA,oBAAI,CAACA,MAAK,CAACX,QAAN,CAAe,QAAf,CAAD,IAA6B,CAACW,MAAK,CAACX,QAAN,CAAe,QAAf,CAA9B,IAA0DW,MAAK,CAAC/2B,OAAN,CAAc,OAAd,MAA2B,CAAzF,EAA4F;AAC1Fg3B,0BAAQ,CAACI,KAAT,GAAiB,EAAjB;AACA;AACD;AACF;AACF,aARM,MAQA,IAAIL,KAAK,CAACX,QAAN,CAAe,cAAf,CAAJ,EAAoC;AACzC,kBAAIY,QAAQ,CAACI,KAAT,IAAkBJ,QAAQ,CAACI,KAAT,CAAeJ,QAAQ,CAACI,KAAT,CAAe13B,MAAf,GAAwB,CAAvC,MAA8C,GAApE,EAAyE;AACvE+L,oBAAI,CAACuqB,KAAL,CAAWe,KAAX,IAAoB,gBAAgBC,QAAQ,CAACI,KAA7C;AACAJ,wBAAQ,CAACI,KAAT,GAAiB,EAAjB;AACD,eAHD,MAGO;AACL3rB,oBAAI,CAACuqB,KAAL,CAAWe,KAAX,IAAoB,iBAApB;AACD;AACF;;AAEDtrB,gBAAI,CAAClL,CAAL,GAAS,CAAT;AACD;AACDy1B,eAAK,CAACj2B,CAAN,GAAU,KAAK+1B,OAAL,CAAap2B,MAAb,CAAoBe,QAApB,EAAV;AACA,cAAIq3B,IAAG,GAAG9B,KAAK,CAAC,cAAD,CAAL,IAAyBA,KAAK,CAAC8B,GAAzC;;AAEA,cAAI,KAAKhC,OAAL,CAAaM,QAAb,CAAsB0B,IAAtB,CAAJ,EAAgC;AAC9B;AACA,gBAAI/3B,EAAC,GAAG+3B,IAAG,CAAC93B,OAAJ,CAAY,KAAZ,CAAR;AACA,gBAAID,EAAC,KAAK,CAAC,CAAX,EAAc;AACZA,gBAAC,IAAI,CAAL;AACA,kBAAI84B,MAAM,GAAGf,IAAG,CAACviB,MAAJ,CAAW,CAAX,EAAcxV,EAAd,CAAb;AACA,qBAAOA,EAAC,GAAG+3B,IAAG,CAACp4B,MAAf,EAAuBK,EAAC,EAAxB,EAA4B;AAC1B,oBAAI+3B,IAAG,CAAC/3B,EAAD,CAAH,KAAW,GAAf,EAAoB;AACpB84B,sBAAM,IAAI5vB,IAAI,CAAC8C,MAAL,KAAgB,GAAhB,GAAsB+rB,IAAG,CAAC/3B,EAAD,CAAH,CAAO0D,WAAP,EAAtB,GAA6Cq0B,IAAG,CAAC/3B,EAAD,CAA1D;AACD;AACD84B,oBAAM,IAAIf,IAAG,CAACviB,MAAJ,CAAWxV,EAAX,CAAV;AACA+3B,kBAAG,GAAGe,MAAN;AACD;AACF;;AAED,eAAK/C,OAAL,CAAaxxB,IAAb,CAAkBwzB,IAAlB;;;;;;;AAOD;AACF;AACD,UAAId,QAAQ,CAAC8B,OAAT,KAAqB,QAAzB,EAAmC;AACjC9B,gBAAQ,CAAC8B,OAAT,GAAmB,EAAnB;AACD;;AAED,UAAI9C,KAAK,CAAC4C,MAAV,EAAkB;AAChB5B,gBAAQ,CAAC,WAAD,CAAR,GAAwBA,QAAQ,CAAC,WAAD,CAAR,IAAyB,MAAjD;AACAhB,aAAK,CAACe,KAAN,IAAe,6BAAf;AACD;;AAED;AACA,UAAI3rB,QAAQ,CAAC4rB,QAAQ,CAACI,KAAV,CAAR,GAA2BxuB,WAA/B,EAA4C;AAC1CouB,gBAAQ,CAACM,MAAT,GAAkBpa,SAAlB;AACD;AACD;AACA,UAAI8Z,QAAQ,CAACI,KAAb,EAAoB;AAClB,YAAIJ,QAAQ,CAACI,KAAT,CAAehB,QAAf,CAAwB,MAAxB,CAAJ,EAAqC;AACnCY,kBAAQ,CAACI,KAAT,GAAiB,EAAjB;AACD,SAFD,MAEO;AACLV,cAAI,CAACqC,CAAL,GAAS,GAAT;AACA,cAAI/B,QAAQ,CAACM,MAAT,IAAmB,CAACN,QAAQ,CAACM,MAAT,CAAgBlB,QAAhB,CAAyB,MAAzB,CAAxB,EAA0D;AACxDM,gBAAI,CAACsC,CAAL,GAAS,GAAT;AACD;AACF;AACF;AACF,KA/FD,MA+FO,IAAItC,IAAI,CAAC3wB,IAAL,KAAc,KAAlB,EAAyB;AAC9BoyB,cAAQ,CAAC7zB,IAAT,CAAcoyB,IAAd;AACA,WAAKT,KAAL,CAAW3xB,IAAX,CAAgBoyB,IAAhB;AACA,WAAKF,OAAL;AACA;AACD;AACD,SAAK,IAAMzzB,GAAX,IAAkBi0B,QAAlB,EAA4B;AAC1B,UAAIA,QAAQ,CAACj0B,GAAD,CAAZ,EAAmB;AACjBizB,aAAK,CAACe,KAAN,eAAmBh0B,GAAnB,cAA0Bi0B,QAAQ,CAACj0B,GAAD,CAAR,CAAczD,OAAd,CAAsB,aAAtB,EAAqC,EAArC,CAA1B;AACD;AACF;AACD02B,SAAK,CAACe,KAAN,GAAcf,KAAK,CAACe,KAAN,CAAYxhB,MAAZ,CAAmB,CAAnB,KAAyB2H,SAAvC;AACD,GA3HD,MA2HO;AACL,QAAI,CAACwZ,IAAI,CAAC3wB,IAAL,KAAc,KAAd,IAAwB,CAACiwB,KAAK,CAACe,KAAN,IAAe,EAAhB,EAAoBX,QAApB,CAA6B,aAA7B,KAA+CJ,KAAK,CAACe,KAAN,CAAYX,QAAZ,CAAqB,KAArB,CAAxE,KAAyG,KAAK3B,GAAL,KAAa,CAA1H,EAA6H;AAC3H,WAAKA,GAAL,GAAWiC,IAAI,CAACjC,GAAL,GAAW,CAAtB;AACD;AACDiC,QAAI,CAAC0B,QAAL,GAAgB,EAAhB;AACA,SAAKnC,KAAL,CAAW3xB,IAAX,CAAgBoyB,IAAhB;AACD;;AAED;AACAyB,UAAQ,CAAC7zB,IAAT,CAAcoyB,IAAd;AACD,CApMD;;AAsMA;;;;;AAKAb,MAAM,CAACh0B,SAAP,CAAiBo3B,UAAjB,GAA8B,UAAUlzB,IAAV,EAAgB;AAC5C;AACAA,MAAI,GAAG,KAAKmxB,GAAL,GAAWnxB,IAAX,GAAkBA,IAAI,CAAC0xB,WAAL,EAAzB;AACA,MAAI13B,CAAJ;AACA,OAAKA,CAAC,GAAG,KAAKk2B,KAAL,CAAWv2B,MAApB,EAA4BK,CAAC,EAA7B,GAAkC;AAChC,QAAI,KAAKk2B,KAAL,CAAWl2B,CAAX,EAAcgG,IAAd,KAAuBA,IAA3B,EAAiC;AAClC;AACD,MAAIhG,CAAC,KAAK,CAAC,CAAX,EAAc;AACZ,WAAO,KAAKk2B,KAAL,CAAWv2B,MAAX,GAAoBK,CAA3B,EAA8B;AAC5B,WAAKy2B,OAAL;AACD;AACF,GAJD,MAIO,IAAIzwB,IAAI,KAAK,GAAT,IAAgBA,IAAI,KAAK,IAA7B,EAAmC;AACxC,QAAMoyB,QAAQ,GAAG,KAAKlC,KAAL,CAAWv2B,MAAX,GAAoB,KAAKu2B,KAAL,CAAW,KAAKA,KAAL,CAAWv2B,MAAX,GAAoB,CAA/B,EAAkC04B,QAAtD,GAAiE,KAAKlC,KAAvF;AACAiC,YAAQ,CAAC7zB,IAAT,CAAc;AACZyB,UAAI,EAAJA,IADY;AAEZiwB,WAAK,EAAE;AACLsC,aAAK,EAAEjD,WAAW,CAACtvB,IAAD,CADb;AAELgxB,aAAK,EAAE,KAAK7C,QAAL,CAAcnuB,IAAd,CAFF,EAFK,EAAd;;;AAOD;AACF,CArBD;;AAuBA;;;;AAIA8vB,MAAM,CAACh0B,SAAP,CAAiB20B,OAAjB,GAA2B,YAAY;AACrC,MAAME,IAAI,GAAG,KAAKT,KAAL,CAAWiD,GAAX,EAAb;AACA,MAAIlD,KAAK,GAAGU,IAAI,CAACV,KAAjB;AACA,MAAMoC,QAAQ,GAAG1B,IAAI,CAAC0B,QAAtB;AACA,MAAM9b,MAAM,GAAG,KAAK2Z,KAAL,CAAW,KAAKA,KAAL,CAAWv2B,MAAX,GAAoB,CAA/B,CAAf;AACA,MAAMy4B,QAAQ,GAAG7b,MAAM,GAAGA,MAAM,CAAC8b,QAAV,GAAqB,KAAKlC,KAAjD;;AAEA,MAAI,CAAC,KAAK1xB,IAAL,CAAUkyB,IAAV,CAAD,IAAoBhE,MAAM,CAACI,UAAP,CAAkB4D,IAAI,CAAC3wB,IAAvB,CAAxB,EAAsD;AACpD;AACA,QAAI2wB,IAAI,CAAC3wB,IAAL,KAAc,OAAd,IAAyBqyB,QAAQ,CAAC14B,MAAlC,IAA4C04B,QAAQ,CAAC,CAAD,CAAR,CAAYzkB,IAAZ,KAAqB,MAAjE,IAA2E,KAAK7N,OAAL,CAAaqzB,QAA5F,EAAsG;AACpGnZ,SAAG,CAACoZ,qBAAJ,CAA0B;AACxBC,aAAK,EAAEjB,QAAQ,CAAC,CAAD,CAAR,CAAYkB,IADK,EAA1B;;AAGD;AACDnB,YAAQ,CAACe,GAAT;AACA;AACD;;AAED,MAAIxC,IAAI,CAACjC,GAAL,IAAY,KAAKA,GAAL,KAAa,CAA7B,EAAgC;AAC9B;AACA,SAAKA,GAAL,GAAWiC,IAAI,CAACjC,GAAL,GAAWvX,SAAtB;AACA,SAAK,IAAInd,CAAC,GAAG,KAAKk2B,KAAL,CAAWv2B,MAAxB,EAAgCK,CAAC,EAAjC,GAAsC;AACpC,UAAI,KAAKk2B,KAAL,CAAWl2B,CAAX,EAAc00B,GAAlB,EAAuB;AACrB,aAAKA,GAAL,GAAW,CAAX;AACD;AACF;AACF;;AAED,MAAMuC,QAAQ,GAAG,EAAjB;;AAEA;AACA,MAAIN,IAAI,CAAC3wB,IAAL,KAAc,KAAlB,EAAyB;AACvB,QAAI,KAAKmxB,GAAL,GAAW,CAAf,EAAkB;AAChB;AACA,WAAKA,GAAL;AACA;AACD;;;;;;;;;;;;;;;;;;;AAmBD,QAAIY,GAAG,GAAG,EAAV;AACA,QAAMf,KAAK,GAAGf,KAAK,CAACe,KAApB;AACAf,SAAK,CAACe,KAAN,GAAc,EAAd;AACAf,SAAK,CAACuD,KAAN,GAAc,4BAAd;AACA,KAAC,SAASC,SAAT,CAAoB9C,IAApB,EAA0B;AACzB,UAAIA,IAAI,CAAC/iB,IAAL,KAAc,MAAlB,EAA0B;AACxBmkB,WAAG,IAAIpB,IAAI,CAAC4C,IAAZ;AACA;AACD;AACD,UAAMvzB,IAAI,GAAG2sB,MAAM,CAACoC,OAAP,CAAe4B,IAAI,CAAC3wB,IAApB,KAA6B2wB,IAAI,CAAC3wB,IAA/C;AACA+xB,SAAG,IAAI,MAAM/xB,IAAb;AACA,WAAK,IAAM0F,IAAX,IAAmBirB,IAAI,CAACV,KAAxB,EAA+B;AAC7B,YAAM/Y,GAAG,GAAGyZ,IAAI,CAACV,KAAL,CAAWvqB,IAAX,CAAZ;AACA,YAAIwR,GAAJ,EAAS;AACP6a,aAAG,eAAQpF,MAAM,CAACoC,OAAP,CAAerpB,IAAf,KAAwBA,IAAhC,gBAAyCwR,GAAzC,OAAH;AACD;AACF;AACD,UAAI,CAACyZ,IAAI,CAAC0B,QAAV,EAAoB;AAClBN,WAAG,IAAI,IAAP;AACD,OAFD,MAEO;AACLA,WAAG,IAAI,GAAP;AACA,aAAK,IAAI/3B,GAAC,GAAG,CAAb,EAAgBA,GAAC,GAAG22B,IAAI,CAAC0B,QAAL,CAAc14B,MAAlC,EAA0CK,GAAC,EAA3C,EAA+C;AAC7Cy5B,mBAAS,CAAC9C,IAAI,CAAC0B,QAAL,CAAcr4B,GAAd,CAAD,CAAT;AACD;AACD+3B,WAAG,IAAI,OAAO/xB,IAAP,GAAc,GAArB;AACD;AACF,KAtBD,EAsBG2wB,IAtBH;AAuBAA,QAAI,CAAC3wB,IAAL,GAAY,KAAZ;AACA2wB,QAAI,CAACV,KAAL,GAAa;AACX8B,SAAG,EAAE,6BAA6BA,GAAG,CAACx4B,OAAJ,CAAY,IAAZ,EAAkB,KAAlB,CADvB;AAEXy3B,WAAK,EAALA,KAFW;AAGX6B,YAAM,EAAE,GAHG,EAAb;;AAKAlC,QAAI,CAAC0B,QAAL,GAAgBlb,SAAhB;;AAEA,SAAKga,GAAL,GAAW,KAAX;AACA;AACD;;;AAGD;AACA,MAAIlB,KAAK,CAACyD,KAAV,EAAiB;AACf,QAAI/C,IAAI,CAAC3wB,IAAL,KAAc,OAAlB,EAA2B;AACzB,UAAIiwB,KAAK,CAACyD,KAAN,KAAgB,QAApB,EAA8B;AAC5BzC,gBAAQ,CAAC,qBAAD,CAAR,GAAkCA,QAAQ,CAAC,mBAAD,CAAR,GAAgC,MAAlE;AACD,OAFD,MAEO;AACLA,gBAAQ,CAAC0C,KAAT,GAAiB1D,KAAK,CAACyD,KAAvB;AACD;AACF,KAND,MAMO;AACLzC,cAAQ,CAAC,YAAD,CAAR,GAAyBhB,KAAK,CAACyD,KAA/B;AACD;AACDzD,SAAK,CAACyD,KAAN,GAAcvc,SAAd;AACD;;AAED;AACA,MAAI8Y,KAAK,CAAC2D,GAAV,EAAe;AACb3C,YAAQ,CAAC4C,SAAT,GAAqB5D,KAAK,CAAC2D,GAA3B;AACA3D,SAAK,CAAC2D,GAAN,GAAYzc,SAAZ;AACD;;AAED;AACA,MAAIwZ,IAAI,CAAC3wB,IAAL,KAAc,MAAlB,EAA0B;AACxB,QAAIiwB,KAAK,CAAC6D,KAAV,EAAiB;AACf7C,cAAQ,CAAC6C,KAAT,GAAiB7D,KAAK,CAAC6D,KAAvB;AACA7D,WAAK,CAAC6D,KAAN,GAAc3c,SAAd;AACD;AACD,QAAI8Y,KAAK,CAAC8D,IAAV,EAAgB;AACd9C,cAAQ,CAAC,aAAD,CAAR,GAA0BhB,KAAK,CAAC8D,IAAhC;AACA9D,WAAK,CAAC8D,IAAN,GAAa5c,SAAb;AACD;AACD,QAAI8Y,KAAK,CAAC3X,IAAV,EAAgB;AACd,UAAIA,IAAI,GAAGjT,QAAQ,CAAC4qB,KAAK,CAAC3X,IAAP,CAAnB;AACA,UAAI,CAAC/S,KAAK,CAAC+S,IAAD,CAAV,EAAkB;AAChB,YAAIA,IAAI,GAAG,CAAX,EAAc;AACZA,cAAI,GAAG,CAAP;AACD,SAFD,MAEO,IAAIA,IAAI,GAAG,CAAX,EAAc;AACnBA,cAAI,GAAG,CAAP;AACD;AACD2Y,gBAAQ,CAAC,WAAD,CAAR,GAAwB,CAAC,UAAD,EAAa,SAAb,EAAwB,OAAxB,EAAiC,QAAjC,EAA2C,OAA3C,EAAoD,SAApD,EAA+D,UAA/D,EAA2E3Y,IAAI,GAAG,CAAlF,CAAxB;AACD;AACD2X,WAAK,CAAC3X,IAAN,GAAanB,SAAb;AACD;AACF;;;AAGD;AACA,MAAI,CAAC8Y,KAAK,CAACsC,KAAN,IAAe,EAAhB,EAAoBlC,QAApB,CAA6B,cAA7B,CAAJ,EAAkD;AAChDY,YAAQ,CAAC,YAAD,CAAR,GAAyB,QAAzB;AACD;;AAED10B,QAAM,CAAC4F,MAAP,CAAc8uB,QAAd,EAAwB,KAAKF,UAAL,CAAgBJ,IAAhB,CAAxB;;AAEA,MAAIA,IAAI,CAAC3wB,IAAL,KAAc,OAAd,IAAyBqF,QAAQ,CAAC4rB,QAAQ,CAACI,KAAV,CAAR,GAA2BxuB,WAAxD,EAAqE;AACnEouB,YAAQ,CAAC,WAAD,CAAR,GAAwB,MAAxB;AACAA,YAAQ,CAAC,YAAD,CAAR,GAAyB,YAAzB;AACD;;;AAGD,MAAItE,MAAM,CAACG,SAAP,CAAiB6D,IAAI,CAAC3wB,IAAtB,CAAJ,EAAiC;AAC/B2wB,QAAI,CAAC3wB,IAAL,GAAY,KAAZ;AACD,GAFD,MAEO,IAAI,CAAC2sB,MAAM,CAACC,SAAP,CAAiB+D,IAAI,CAAC3wB,IAAtB,CAAD,IAAgC,CAAC,KAAKmxB,GAA1C,EAA+C;AACpD;AACAR,QAAI,CAAC3wB,IAAL,GAAY,MAAZ;AACD;;AAED,MAAI2wB,IAAI,CAAC3wB,IAAL,KAAc,GAAd,IAAqB2wB,IAAI,CAAC3wB,IAAL,KAAc,IAAvC;;;;AAIE;AACA,SAAK0wB,MAAL;AACD,GAND;;;;;;;;;;;;;;;;AAsBI,MAAI,CAACC,IAAI,CAAC3wB,IAAL,KAAc,IAAd,IAAsB2wB,IAAI,CAAC3wB,IAAL,KAAc,IAArC,KAA8C2wB,IAAI,CAACn2B,CAAvD,EAA0D;AAC5D;AACA,QAAMw5B,KAAK,GAAG;AACZlK,OAAC,EAAE,aADS;AAEZmK,OAAC,EAAE,aAFS;AAGZj6B,OAAC,EAAE,aAHS;AAIZk6B,OAAC,EAAE,aAJS,EAAd;;AAMA,QAAIF,KAAK,CAAC/D,KAAK,CAACriB,IAAP,CAAT,EAAuB;AACrBqiB,WAAK,CAACe,KAAN,IAAe,sBAAsBgD,KAAK,CAAC/D,KAAK,CAACriB,IAAP,CAA1C;AACAqiB,WAAK,CAACriB,IAAN,GAAauJ,SAAb;AACD;AACD,SAAK,IAAInd,GAAC,GAAGq4B,QAAQ,CAAC14B,MAAtB,EAA8BK,GAAC,EAA/B,GAAoC;AAClC,UAAIq4B,QAAQ,CAACr4B,GAAD,CAAR,CAAYgG,IAAZ,KAAqB,IAAzB,EAA+B;AAC7BqyB,gBAAQ,CAACr4B,GAAD,CAAR,CAAYQ,CAAZ,GAAgB,CAAhB;AACD;AACF;AACF,GAjBG,MAiBG,IAAIm2B,IAAI,CAAC3wB,IAAL,KAAc,OAAlB,EAA2B;AAChC;AACA;AACA,QAAIm0B,OAAO,GAAG7C,UAAU,CAACrB,KAAK,CAACmE,WAAP,CAAxB;AACA,QAAIC,OAAO,GAAG/C,UAAU,CAACrB,KAAK,CAACqE,WAAP,CAAxB;AACA,QAAMC,MAAM,GAAGjD,UAAU,CAACrB,KAAK,CAACsE,MAAP,CAAzB;AACA,QAAI5D,IAAI,CAACn2B,CAAT,EAAY;AACV;AACA,UAAI+K,KAAK,CAAC4uB,OAAD,CAAT,EAAoB;AAClBA,eAAO,GAAG,CAAV;AACD;AACD,UAAI5uB,KAAK,CAAC8uB,OAAD,CAAT,EAAoB;AAClBA,eAAO,GAAG,CAAV;AACD;AACF;AACD,QAAIE,MAAJ,EAAY;AACVtE,WAAK,CAACe,KAAN,IAAe,aAAauD,MAAb,GAAsB,eAArC;AACD;AACD,QAAI5D,IAAI,CAAC6D,IAAL,IAAa7D,IAAI,CAACn2B,CAAtB,EAAyB;AACvB;AACAy2B,cAAQ,CAAC8B,OAAT,GAAmB,MAAnB;AACA,UAAIsB,OAAJ,EAAa;AACXpD,gBAAQ,CAAC,UAAD,CAAR,GAAuBoD,OAAO,GAAG,IAAjC;AACApD,gBAAQ,CAACkD,OAAT,GAAmBE,OAAO,GAAG,IAA7B;AACD,OAHD,MAGO,IAAIE,MAAJ,EAAY;AACjB;AACAtE,aAAK,CAACe,KAAN,IAAe,6BAAf;AACD;;AAED,UAAMK,KAAK,GAAG,EAAd,CAXuB,CAWN;AACjB,UAAMoD,MAAM,GAAG,EAAf,CAZuB,CAYL;AAClB,UAAMC,KAAK,GAAG,EAAd,CAbuB,CAaN;AACjB,UAAMn6B,GAAG,GAAG,EAAZ,CAduB,CAcP;;AAEhB,OAAC,SAASk5B,SAAT,CAAoBtD,KAApB,EAA2B;AAC1B,aAAK,IAAIn2B,GAAC,GAAG,CAAb,EAAgBA,GAAC,GAAGm2B,KAAK,CAACx2B,MAA1B,EAAkCK,GAAC,EAAnC,EAAuC;AACrC,cAAIm2B,KAAK,CAACn2B,GAAD,CAAL,CAASgG,IAAT,KAAkB,IAAtB,EAA4B;AAC1By0B,kBAAM,CAACl2B,IAAP,CAAY4xB,KAAK,CAACn2B,GAAD,CAAjB;AACD,WAFD,MAEO;AACLy5B,qBAAS,CAACtD,KAAK,CAACn2B,GAAD,CAAL,CAASq4B,QAAT,IAAqB,EAAtB,CAAT;AACD;AACF;AACF,OARD,EAQGA,QARH;;AAUA,WAAK,IAAIsC,GAAG,GAAG,CAAf,EAAkBA,GAAG,IAAIF,MAAM,CAAC96B,MAAhC,EAAwCg7B,GAAG,EAA3C,EAA+C;AAC7C,YAAIC,GAAG,GAAG,CAAV;AACA,aAAK,IAAI/E,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAG4E,MAAM,CAACE,GAAG,GAAG,CAAP,CAAN,CAAgBtC,QAAhB,CAAyB14B,MAA7C,EAAqDk2B,CAAC,IAAI+E,GAAG,EAA7D,EAAiE;AAC/D,cAAMC,EAAE,GAAGJ,MAAM,CAACE,GAAG,GAAG,CAAP,CAAN,CAAgBtC,QAAhB,CAAyBxC,CAAzB,CAAX;AACA,cAAIgF,EAAE,CAAC70B,IAAH,KAAY,IAAZ,IAAoB60B,EAAE,CAAC70B,IAAH,KAAY,IAApC,EAA0C;AACxC;AACA,mBAAOzF,GAAG,CAACo6B,GAAG,GAAG,GAAN,GAAYC,GAAb,CAAV,EAA6B;AAC3BA,iBAAG;AACJ;AACD,gBAAI5D,OAAK,GAAG6D,EAAE,CAAC5E,KAAH,CAASe,KAAT,IAAkB,EAA9B;AACA,gBAAM8D,KAAK,GAAG9D,OAAK,CAAC/2B,OAAN,CAAc,OAAd,IAAyB+2B,OAAK,CAAC/2B,OAAN,CAAc,QAAd,CAAzB,GAAmD,CAAjE;AACA;AACA,gBAAI66B,KAAK,KAAK,CAAC,CAAf,EAAkB;AAChB,kBAAIC,GAAG,GAAG/D,OAAK,CAAC/2B,OAAN,CAAc,GAAd,EAAmB66B,KAAK,GAAG,CAA3B,CAAV;AACA,kBAAIC,GAAG,KAAK,CAAC,CAAb,EAAgB;AACdA,mBAAG,GAAG/D,OAAK,CAACr3B,MAAZ;AACD;AACD,kBAAI,CAACk7B,EAAE,CAAC5E,KAAH,CAAS+E,OAAd,EAAuB;AACrB3D,qBAAK,CAACuD,GAAD,CAAL,GAAa5D,OAAK,CAACrG,SAAN,CAAgBmK,KAAK,GAAGA,KAAK,GAAG,CAAX,GAAe,CAApC,EAAuCC,GAAvC,CAAb;AACD;AACD/D,qBAAK,GAAGA,OAAK,CAACxhB,MAAN,CAAa,CAAb,EAAgBslB,KAAhB,IAAyB9D,OAAK,CAACxhB,MAAN,CAAaulB,GAAb,CAAjC;AACD;AACD/D,mBAAK,IAAI,CAACuD,MAAM,GAAG,kBAAWA,MAAX,sBAAoCF,OAAO,GAAG,EAAH,GAAQ,iCAAnD,CAAH,GAA2F,EAAlG,KAAyGF,OAAO,sBAAeA,OAAf,UAA6B,EAA7I,CAAT;AACA;AACA,gBAAIU,EAAE,CAAC5E,KAAH,CAAS+E,OAAb,EAAsB;AACpBhE,qBAAK,iCAA0B4D,GAA1B,8BAAiDA,GAAG,GAAGvvB,QAAQ,CAACwvB,EAAE,CAAC5E,KAAH,CAAS+E,OAAV,CAA/D,CAAL;AACA,kBAAI,CAACH,EAAE,CAAC5E,KAAH,CAASgF,OAAd,EAAuB;AACrBjE,uBAAK,8BAAuB2D,GAAvB,2BAA2CA,GAAG,GAAG,CAAjD,CAAL;AACD;AACDC,iBAAG,IAAIvvB,QAAQ,CAACwvB,EAAE,CAAC5E,KAAH,CAAS+E,OAAV,CAAR,GAA6B,CAApC;AACD;AACD;AACA,gBAAIH,EAAE,CAAC5E,KAAH,CAASgF,OAAb,EAAsB;AACpBjE,qBAAK,8BAAuB2D,GAAvB,2BAA2CA,GAAG,GAAGtvB,QAAQ,CAACwvB,EAAE,CAAC5E,KAAH,CAASgF,OAAV,CAAzD,CAAL;AACA,kBAAI,CAACJ,EAAE,CAAC5E,KAAH,CAAS+E,OAAd,EAAuB;AACrBhE,uBAAK,iCAA0B4D,GAA1B,8BAAiDA,GAAG,GAAG,CAAvD,CAAL;AACD;AACD;AACA,mBAAK,IAAIK,OAAO,GAAG,CAAnB,EAAsBA,OAAO,GAAGJ,EAAE,CAAC5E,KAAH,CAASgF,OAAzC,EAAkDA,OAAO,EAAzD,EAA6D;AAC3D,qBAAK,IAAID,OAAO,GAAG,CAAnB,EAAsBA,OAAO,IAAIH,EAAE,CAAC5E,KAAH,CAAS+E,OAAT,IAAoB,CAAxB,CAA7B,EAAyDA,OAAO,EAAhE,EAAoE;AAClEz6B,qBAAG,CAAEo6B,GAAG,GAAGM,OAAP,GAAkB,GAAlB,IAAyBL,GAAG,GAAGI,OAA/B,CAAD,CAAH,GAA+C,CAA/C;AACD;AACF;AACF;AACD,gBAAIhE,OAAJ,EAAW;AACT6D,gBAAE,CAAC5E,KAAH,CAASe,KAAT,GAAiBA,OAAjB;AACD;AACD0D,iBAAK,CAACn2B,IAAN,CAAWs2B,EAAX;AACD;AACF;AACD,YAAIF,GAAG,KAAK,CAAZ,EAAe;AACb,cAAIO,IAAI,GAAG,EAAX;AACA,eAAK,IAAIl7B,GAAC,GAAG,CAAb,EAAgBA,GAAC,GAAG46B,GAApB,EAAyB56B,GAAC,EAA1B,EAA8B;AAC5Bk7B,gBAAI,IAAI,CAAC7D,KAAK,CAACr3B,GAAD,CAAL,GAAWq3B,KAAK,CAACr3B,GAAD,CAAhB,GAAsB,MAAvB,IAAiC,GAAzC;AACD;AACDi3B,kBAAQ,CAAC,uBAAD,CAAR,GAAoCiE,IAApC;AACD;AACF;AACDvE,UAAI,CAAC0B,QAAL,GAAgBqC,KAAhB;AACD,KArFD,MAqFO;AACL;AACA,UAAI/D,IAAI,CAACn2B,CAAT,EAAY;AACVy2B,gBAAQ,CAAC8B,OAAT,GAAmB,OAAnB;AACD;AACD,UAAI,CAACxtB,KAAK,CAAC8uB,OAAD,CAAV,EAAqB;AACnBpD,gBAAQ,CAAC,gBAAD,CAAR,GAA6BoD,OAAO,GAAG,IAAvC;AACD;AACD,UAAIE,MAAM,IAAIJ,OAAd,EAAuB;AACrB;AACA,SAAC,SAASV,SAAT,CAAoBtD,KAApB,EAA2B;AAC1B,eAAK,IAAIn2B,GAAC,GAAG,CAAb,EAAgBA,GAAC,GAAGm2B,KAAK,CAACx2B,MAA1B,EAAkCK,GAAC,EAAnC,EAAuC;AACrC,gBAAM66B,GAAE,GAAG1E,KAAK,CAACn2B,GAAD,CAAhB;AACA,gBAAI66B,GAAE,CAAC70B,IAAH,KAAY,IAAZ,IAAoB60B,GAAE,CAAC70B,IAAH,KAAY,IAApC,EAA0C;AACxC,kBAAIu0B,MAAJ,EAAY;AACVM,mBAAE,CAAC5E,KAAH,CAASe,KAAT,oBAA2BuD,MAA3B,2BAAkDM,GAAE,CAAC5E,KAAH,CAASe,KAAT,IAAkB,EAApE;AACD;AACD,kBAAImD,OAAJ,EAAa;AACXU,mBAAE,CAAC5E,KAAH,CAASe,KAAT,qBAA4BmD,OAA5B,gBAAyCU,GAAE,CAAC5E,KAAH,CAASe,KAAT,IAAkB,EAA3D;AACD;AACF,aAPD,MAOO,IAAI6D,GAAE,CAACxC,QAAP,EAAiB;AACtBoB,uBAAS,CAACoB,GAAE,CAACxC,QAAJ,CAAT;AACD;AACF;AACF,SAdD,EAcGA,QAdH;AAeD;AACF;AACD;AACA,QAAI,KAAKtyB,OAAL,CAAao1B,WAAb,IAA4B,CAAC,CAAClF,KAAK,CAACe,KAAN,IAAe,EAAhB,EAAoBX,QAApB,CAA6B,QAA7B,CAAjC,EAAyE;AACvE,UAAM+E,KAAK,GAAG74B,MAAM,CAAC4F,MAAP,CAAc,EAAd,EAAkBwuB,IAAlB,CAAd;AACAA,UAAI,CAAC3wB,IAAL,GAAY,KAAZ;AACA2wB,UAAI,CAACV,KAAL,GAAa;AACXe,aAAK,EAAE,eADI,EAAb;;AAGAL,UAAI,CAAC0B,QAAL,GAAgB,CAAC+C,KAAD,CAAhB;AACAnF,WAAK,GAAGmF,KAAK,CAACnF,KAAd;AACD;AACF,GA5IM,MA4IA,IAAI,CAACU,IAAI,CAAC3wB,IAAL,KAAc,IAAd,IAAsB2wB,IAAI,CAAC3wB,IAAL,KAAc,IAArC,MAA+CiwB,KAAK,CAAC+E,OAAN,IAAiB/E,KAAK,CAACgF,OAAtE,CAAJ,EAAoF;AACzF,SAAK,IAAIj7B,GAAC,GAAG,KAAKk2B,KAAL,CAAWv2B,MAAxB,EAAgCK,GAAC,EAAjC,GAAsC;AACpC,UAAI,KAAKk2B,KAAL,CAAWl2B,GAAX,EAAcgG,IAAd,KAAuB,OAA3B,EAAoC;AAClC,aAAKkwB,KAAL,CAAWl2B,GAAX,EAAcw6B,IAAd,GAAqB,CAArB,CADkC,CACX;AACvB;AACD;AACF;AACF,GAPM,MAOA,IAAI7D,IAAI,CAAC3wB,IAAL,KAAc,MAAlB,EAA0B;AAC/B;AACA2wB,QAAI,CAAC3wB,IAAL,GAAY,MAAZ;AACA,SAAK,IAAIhG,GAAC,GAAG,CAAb,EAAgBA,GAAC,GAAGq4B,QAAQ,CAAC14B,MAAT,GAAkB,CAAtC,EAAyCK,GAAC,EAA1C,EAA8C;AAC5C,UAAIq4B,QAAQ,CAACr4B,GAAD,CAAR,CAAY4T,IAAZ,KAAqB,MAArB,IAA+BykB,QAAQ,CAACr4B,GAAC,GAAG,CAAL,CAAR,CAAgBgG,IAAhB,KAAyB,IAA5D,EAAkE;AAChEqyB,gBAAQ,CAACr4B,GAAD,CAAR,GAAc;AACZgG,cAAI,EAAE,KADM;AAEZiwB,eAAK,EAAE;AACLe,iBAAK,EAAE,wCADF,EAFK;;AAKZqB,kBAAQ,EAAE,CAAC;AACTryB,gBAAI,EAAE,KADG;AAETiwB,iBAAK,EAAE;AACLe,mBAAK,EAAE,oBAAoBqB,QAAQ,CAACr4B,GAAC,GAAG,CAAL,CAAR,CAAgBi2B,KAAhB,CAAsBe,KAAtB,IAA+B,EAAnD,CADF,EAFE;;AAKTqB,oBAAQ,EAAEA,QAAQ,CAACr4B,GAAC,GAAG,CAAL,CAAR,CAAgBq4B,QALjB,EAAD;AAMPA,kBAAQ,CAACr4B,GAAD,CAND,CALE,EAAd;;AAaAq4B,gBAAQ,CAAC1zB,MAAT,CAAgB3E,GAAC,GAAG,CAApB,EAAuB,CAAvB;AACD;AACF;AACF,GArBM,MAqBA,IAAI22B,IAAI,CAACn2B,CAAT,EAAY;AACjBm2B,QAAI,CAACn2B,CAAL,GAAS,CAAT;AACA,SAAK,IAAIR,GAAC,GAAG22B,IAAI,CAAC0B,QAAL,CAAc14B,MAA3B,EAAmCK,GAAC,EAApC,GAAyC;AACvC,UAAI,CAAC22B,IAAI,CAAC0B,QAAL,CAAcr4B,GAAd,EAAiBQ,CAAlB,IAAuBm2B,IAAI,CAAC0B,QAAL,CAAcr4B,GAAd,EAAiBgG,IAAjB,KAA0B,OAArD,EAA8D;AAC5D2wB,YAAI,CAACn2B,CAAL,GAAS,CAAT;AACD;AACF;AACF;;AAED,MAAI,CAACy2B,QAAQ,CAAC8B,OAAT,IAAoB,EAArB,EAAyB1C,QAAzB,CAAkC,MAAlC,KAA6C,CAACM,IAAI,CAACn2B,CAAvD,EAA0D;AACxD,SAAK,IAAIR,IAAC,GAAGq4B,QAAQ,CAAC14B,MAAtB,EAA8BK,IAAC,EAA/B,GAAoC;AAClC,UAAM0L,IAAI,GAAG2sB,QAAQ,CAACr4B,IAAD,CAArB;AACA,UAAI0L,IAAI,CAAC2vB,CAAT,EAAY;AACV3vB,YAAI,CAACuqB,KAAL,CAAWe,KAAX,GAAmB,CAACtrB,IAAI,CAACuqB,KAAL,CAAWe,KAAX,IAAoB,EAArB,IAA2BtrB,IAAI,CAAC2vB,CAAnD;AACA3vB,YAAI,CAAC2vB,CAAL,GAASle,SAAT;AACD;AACF;AACF;AACD;AACA,MAAMme,IAAI,GAAG/e,MAAM,IAAI,CAACA,MAAM,CAAC0Z,KAAP,CAAae,KAAb,IAAsB,EAAvB,EAA2BX,QAA3B,CAAoC,MAApC;;AAErB;AAFW,KAGR,EAAEM,IAAI,CAACn2B,CAAL,IAAUM,EAAE,CAACy6B,aAAf,CAHL,CAlYqC,CAqYF;;;;;AAKnC,MAAID,IAAJ,EAAU;AACR3E,QAAI,CAAC0E,CAAL,GAAS,iBAAT;AACD;;;AAGD,OAAK,IAAMr4B,GAAX,IAAkBi0B,QAAlB,EAA4B;AAC1B,QAAIA,QAAQ,CAACj0B,GAAD,CAAZ,EAAmB;AACjB,UAAMka,GAAG,cAAOla,GAAP,cAAci0B,QAAQ,CAACj0B,GAAD,CAAR,CAAczD,OAAd,CAAsB,aAAtB,EAAqC,EAArC,CAAd,CAAT;;AAEA,UAAI+7B,IAAI,KAAMt4B,GAAG,CAACqzB,QAAJ,CAAa,MAAb,KAAwBrzB,GAAG,KAAK,gBAAjC,IAAsDA,GAAG,KAAK,YAA9D,IAA8Ei0B,QAAQ,CAACj0B,GAAD,CAAR,CAAc,CAAd,MAAqB,GAAnG,IAA2GA,GAAG,KAAK,OAAR,IAAmBka,GAAG,CAACmZ,QAAJ,CAAa,GAAb,CAAnI,CAAR,EAAgK;AAC9JM,YAAI,CAAC0E,CAAL,IAAUne,GAAV;AACA,YAAIla,GAAG,KAAK,OAAZ,EAAqB;AACnBizB,eAAK,CAACe,KAAN,IAAe,aAAf;AACD;AACF,OALD,MAKO;AACLf,aAAK,CAACe,KAAN,IAAe9Z,GAAf;AACD;AACF;AACF;AACD+Y,OAAK,CAACe,KAAN,GAAcf,KAAK,CAACe,KAAN,CAAYxhB,MAAZ,CAAmB,CAAnB,KAAyB2H,SAAvC;AACD,CA9ZD;;AAgaA;;;;AAIA2Y,MAAM,CAACh0B,SAAP,CAAiB05B,MAAjB,GAA0B,UAAUjC,IAAV,EAAgB;AACxC,MAAI,CAAC,KAAK7E,GAAV,EAAe;AACb;AACA,QAAI+C,IAAI,GAAG,EAAX;AACA,QAAI+C,IAAJ;AACA,SAAK,IAAIx6B,CAAC,GAAG,CAAR,EAAWyK,GAAG,GAAG8uB,IAAI,CAAC55B,MAA3B,EAAmCK,CAAC,GAAGyK,GAAvC,EAA4CzK,CAAC,EAA7C,EAAiD;AAC/C,UAAI,CAACw1B,SAAS,CAAC+D,IAAI,CAACv5B,CAAD,CAAL,CAAd,EAAyB;AACvBy3B,YAAI,IAAI8B,IAAI,CAACv5B,CAAD,CAAZ;AACD,OAFD,MAEO;AACL,YAAIy3B,IAAI,CAACA,IAAI,CAAC93B,MAAL,GAAc,CAAf,CAAJ,KAA0B,GAA9B,EAAmC;AACjC83B,cAAI,IAAI,GAAR;AACD;AACD,YAAI8B,IAAI,CAACv5B,CAAD,CAAJ,KAAY,IAAZ,IAAoB,CAACw6B,IAAzB,EAA+B;AAC7BA,cAAI,GAAG,IAAP;AACD;AACF;AACF;AACD;AACA,QAAI/C,IAAI,KAAK,GAAT,IAAgB+C,IAApB,EAA0B;AAC1BjB,QAAI,GAAG9B,IAAP;AACD;AACD,MAAMd,IAAI,GAAGp0B,MAAM,CAACa,MAAP,CAAc,IAAd,CAAb;AACAuzB,MAAI,CAAC/iB,IAAL,GAAY,MAAZ;AACA+iB,MAAI,CAAC4C,IAAL,GAAY5D,YAAY,CAAC4D,IAAD,CAAxB;AACA,MAAI,KAAK90B,IAAL,CAAUkyB,IAAV,CAAJ,EAAqB;;AAEnB,QAAI,KAAK5wB,OAAL,CAAa01B,UAAb,KAA4B,OAA5B,IAAuClG,MAAM,CAACc,QAAP,CAAgB,KAAhB,CAA3C,EAAmE;AACjE,WAAKK,MAAL;AACAC,UAAI,CAAC+E,EAAL,GAAU,GAAV;AACD;;AAED,QAAMtD,QAAQ,GAAG,KAAKlC,KAAL,CAAWv2B,MAAX,GAAoB,KAAKu2B,KAAL,CAAW,KAAKA,KAAL,CAAWv2B,MAAX,GAAoB,CAA/B,EAAkC04B,QAAtD,GAAiE,KAAKlC,KAAvF;AACAiC,YAAQ,CAAC7zB,IAAT,CAAcoyB,IAAd;AACD;AACF,CAlCD;;AAoCA;;;;AAIA,SAASH,KAAT,CAAgB7e,OAAhB,EAAyB;AACvB,OAAKA,OAAL,GAAeA,OAAf;AACD;;AAED;;;;AAIA6e,KAAK,CAAC10B,SAAN,CAAgBP,KAAhB,GAAwB,UAAU+0B,OAAV,EAAmB;AACzC,OAAKA,OAAL,GAAeA,OAAO,IAAI,EAA1B;AACA,OAAKt2B,CAAL,GAAS,CAAT,CAFyC,CAE9B;AACX,OAAK86B,KAAL,GAAa,CAAb,CAHyC,CAG1B;AACf,OAAKpiB,KAAL,GAAa,KAAK6gB,IAAlB,CAJyC,CAIlB;AACvB,OAAK,IAAI9uB,GAAG,GAAG,KAAK6rB,OAAL,CAAa32B,MAA5B,EAAoC,KAAKK,CAAL,KAAW,CAAC,CAAZ,IAAiB,KAAKA,CAAL,GAASyK,GAA9D,GAAoE;AAClE,SAAKiO,KAAL;AACD;AACF,CARD;;AAUA;;;;;;AAMA8d,KAAK,CAAC10B,SAAN,CAAgB65B,UAAhB,GAA6B,UAAUx2B,MAAV,EAAkB;AAC7C,MAAMgzB,SAAS,GAAG,KAAK7B,OAAL,CAAa,KAAKt2B,CAAlB,MAAyB,GAA3C;AACA,MAAI,KAAKs2B,OAAL,CAAa,KAAKt2B,CAAlB,MAAyB,GAAzB,IAAiCm4B,SAAS,IAAI,KAAK7B,OAAL,CAAa,KAAKt2B,CAAL,GAAS,CAAtB,MAA6B,GAA/E,EAAqF;AACnF,QAAImF,MAAJ,EAAY;AACV,WAAKwS,OAAL,CAAaxS,MAAb,EAAqB,KAAKmxB,OAAL,CAAa3F,SAAb,CAAuB,KAAKmK,KAA5B,EAAmC,KAAK96B,CAAxC,CAArB;AACD;AACD,SAAKA,CAAL,IAAUm4B,SAAS,GAAG,CAAH,GAAO,CAA1B;AACA,SAAK2C,KAAL,GAAa,KAAK96B,CAAlB;AACA,SAAK2X,OAAL,CAAaugB,SAAb,CAAuBC,SAAvB;AACA,QAAI,KAAKxgB,OAAL,CAAakgB,OAAb,KAAyB,QAA7B,EAAuC;AACrC,WAAK73B,CAAL,GAAS,KAAKs2B,OAAL,CAAar2B,OAAb,CAAqB,IAArB,EAA2B,KAAKD,CAAhC,CAAT;AACA,UAAI,KAAKA,CAAL,KAAW,CAAC,CAAhB,EAAmB;AACjB,aAAKA,CAAL,IAAU,CAAV;AACA,aAAK86B,KAAL,GAAa,KAAK96B,CAAlB;AACD;AACD,WAAK0Y,KAAL,GAAa,KAAKkjB,MAAlB;AACD,KAPD,MAOO;AACL,WAAKljB,KAAL,GAAa,KAAK6gB,IAAlB;AACD;AACD,WAAO,IAAP;AACD;AACD,SAAO,KAAP;AACD,CAtBD;;AAwBA;;;;AAIA/C,KAAK,CAAC10B,SAAN,CAAgBy3B,IAAhB,GAAuB,YAAY;AACjC,OAAKv5B,CAAL,GAAS,KAAKs2B,OAAL,CAAar2B,OAAb,CAAqB,GAArB,EAA0B,KAAKD,CAA/B,CAAT,CADiC,CACU;AAC3C,MAAI,KAAKA,CAAL,KAAW,CAAC,CAAhB,EAAmB;AACjB;AACA,QAAI,KAAK86B,KAAL,GAAa,KAAKxE,OAAL,CAAa32B,MAA9B,EAAsC;AACpC,WAAKgY,OAAL,CAAa6jB,MAAb,CAAoB,KAAKlF,OAAL,CAAa3F,SAAb,CAAuB,KAAKmK,KAA5B,EAAmC,KAAKxE,OAAL,CAAa32B,MAAhD,CAApB;AACD;AACD;AACD;AACD,MAAMa,CAAC,GAAG,KAAK81B,OAAL,CAAa,KAAKt2B,CAAL,GAAS,CAAtB,CAAV;AACA,MAAKQ,CAAC,IAAI,GAAL,IAAYA,CAAC,IAAI,GAAlB,IAA2BA,CAAC,IAAI,GAAL,IAAYA,CAAC,IAAI,GAAhD,EAAsD;AACpD;AACA,QAAI,KAAKs6B,KAAL,KAAe,KAAK96B,CAAxB,EAA2B;AACzB,WAAK2X,OAAL,CAAa6jB,MAAb,CAAoB,KAAKlF,OAAL,CAAa3F,SAAb,CAAuB,KAAKmK,KAA5B,EAAmC,KAAK96B,CAAxC,CAApB;AACD;AACD,SAAK86B,KAAL,GAAa,EAAE,KAAK96B,CAApB;AACA,SAAK0Y,KAAL,GAAa,KAAKmf,OAAlB;AACD,GAPD,MAOO,IAAIr3B,CAAC,KAAK,GAAN,IAAaA,CAAC,KAAK,GAAnB,IAA0BA,CAAC,KAAK,GAApC,EAAyC;AAC9C,QAAI,KAAKs6B,KAAL,KAAe,KAAK96B,CAAxB,EAA2B;AACzB,WAAK2X,OAAL,CAAa6jB,MAAb,CAAoB,KAAKlF,OAAL,CAAa3F,SAAb,CAAuB,KAAKmK,KAA5B,EAAmC,KAAK96B,CAAxC,CAApB;AACD;AACD,QAAM67B,IAAI,GAAG,KAAKvF,OAAL,CAAa,KAAKt2B,CAAL,GAAS,CAAtB,CAAb;AACA,QAAIQ,CAAC,KAAK,GAAN,KAAeq7B,IAAI,IAAI,GAAR,IAAeA,IAAI,IAAI,GAAxB,IAAiCA,IAAI,IAAI,GAAR,IAAeA,IAAI,IAAI,GAAtE,CAAJ,EAAiF;AAC/E;AACA,WAAK77B,CAAL,IAAU,CAAV;AACA,WAAK86B,KAAL,GAAa,KAAK96B,CAAlB;AACA,WAAK0Y,KAAL,GAAa,KAAKkjB,MAAlB;AACA;AACD;AACD;AACA,QAAIb,GAAG,GAAG,KAAV;AACA,QAAIv6B,CAAC,KAAK,GAAN,IAAa,KAAK81B,OAAL,CAAa,KAAKt2B,CAAL,GAAS,CAAtB,MAA6B,GAA1C,IAAiD,KAAKs2B,OAAL,CAAa,KAAKt2B,CAAL,GAAS,CAAtB,MAA6B,GAAlF,EAAuF;AACrF+6B,SAAG,GAAG,GAAN;AACD;AACD,SAAK/6B,CAAL,GAAS,KAAKs2B,OAAL,CAAar2B,OAAb,CAAqB86B,GAArB,EAA0B,KAAK/6B,CAA/B,CAAT;AACA,QAAI,KAAKA,CAAL,KAAW,CAAC,CAAhB,EAAmB;AACjB,WAAKA,CAAL,IAAU+6B,GAAG,CAACp7B,MAAd;AACA,WAAKm7B,KAAL,GAAa,KAAK96B,CAAlB;AACD;AACF,GAtBM,MAsBA;AACL,SAAKA,CAAL;AACD;AACF,CA1CD;;AA4CA;;;;AAIAw2B,KAAK,CAAC10B,SAAN,CAAgB+1B,OAAhB,GAA0B,YAAY;AACpC,MAAIrC,SAAS,CAAC,KAAKc,OAAL,CAAa,KAAKt2B,CAAlB,CAAD,CAAb,EAAqC;AACnC;AACA,SAAK2X,OAAL,CAAaigB,SAAb,CAAuB,KAAKtB,OAAL,CAAa3F,SAAb,CAAuB,KAAKmK,KAA5B,EAAmC,KAAK96B,CAAxC,CAAvB;AACA,WAAOw1B,SAAS,CAAC,KAAKc,OAAL,CAAa,EAAE,KAAKt2B,CAApB,CAAD,CAAhB,GAAyC,CAAzC;AACA,QAAI,KAAKA,CAAL,GAAS,KAAKs2B,OAAL,CAAa32B,MAAtB,IAAgC,CAAC,KAAKg8B,UAAL,EAArC,EAAwD;AACtD,WAAKb,KAAL,GAAa,KAAK96B,CAAlB;AACA,WAAK0Y,KAAL,GAAa,KAAKsf,QAAlB;AACD;AACF,GARD,MAQO,IAAI,CAAC,KAAK2D,UAAL,CAAgB,WAAhB,CAAL,EAAmC;AACxC,SAAK37B,CAAL;AACD;AACF,CAZD;;AAcA;;;;AAIAw2B,KAAK,CAAC10B,SAAN,CAAgBk2B,QAAhB,GAA2B,YAAY;AACrC,MAAIx3B,CAAC,GAAG,KAAK81B,OAAL,CAAa,KAAKt2B,CAAlB,CAAR;AACA,MAAIw1B,SAAS,CAACh1B,CAAD,CAAT,IAAgBA,CAAC,KAAK,GAA1B,EAA+B;AAC7B;AACA,SAAKmX,OAAL,CAAamgB,UAAb,CAAwB,KAAKxB,OAAL,CAAa3F,SAAb,CAAuB,KAAKmK,KAA5B,EAAmC,KAAK96B,CAAxC,CAAxB;AACA,QAAI87B,OAAO,GAAGt7B,CAAC,KAAK,GAApB;AACA,QAAMiK,GAAG,GAAG,KAAK6rB,OAAL,CAAa32B,MAAzB;AACA,WAAO,EAAE,KAAKK,CAAP,GAAWyK,GAAlB,EAAuB;AACrBjK,OAAC,GAAG,KAAK81B,OAAL,CAAa,KAAKt2B,CAAlB,CAAJ;AACA,UAAI,CAACw1B,SAAS,CAACh1B,CAAD,CAAd,EAAmB;AACjB,YAAI,KAAKm7B,UAAL,EAAJ,EAAuB;AACvB,YAAIG,OAAJ,EAAa;AACX;AACA,eAAKhB,KAAL,GAAa,KAAK96B,CAAlB;AACA,eAAK0Y,KAAL,GAAa,KAAKqjB,OAAlB;AACA;AACD;AACD,YAAI,KAAKzF,OAAL,CAAa,KAAKt2B,CAAlB,MAAyB,GAA7B,EAAkC;AAChC87B,iBAAO,GAAG,IAAV;AACD,SAFD,MAEO;AACL,eAAKhB,KAAL,GAAa,KAAK96B,CAAlB;AACA,eAAK0Y,KAAL,GAAa,KAAKsf,QAAlB;AACA;AACD;AACF;AACF;AACF,GAxBD,MAwBO,IAAI,CAAC,KAAK2D,UAAL,CAAgB,YAAhB,CAAL,EAAoC;AACzC,SAAK37B,CAAL;AACD;AACF,CA7BD;;AA+BA;;;;AAIAw2B,KAAK,CAAC10B,SAAN,CAAgBi6B,OAAhB,GAA0B,YAAY;AACpC,MAAMv7B,CAAC,GAAG,KAAK81B,OAAL,CAAa,KAAKt2B,CAAlB,CAAV;AACA,MAAMyK,GAAG,GAAG,KAAK6rB,OAAL,CAAa32B,MAAzB;AACA,MAAIa,CAAC,KAAK,GAAN,IAAaA,CAAC,KAAK,GAAvB,EAA4B;AAC1B;AACA,SAAKs6B,KAAL,GAAa,EAAE,KAAK96B,CAApB;AACA,SAAKA,CAAL,GAAS,KAAKs2B,OAAL,CAAar2B,OAAb,CAAqBO,CAArB,EAAwB,KAAKR,CAA7B,CAAT;AACA,QAAI,KAAKA,CAAL,KAAW,CAAC,CAAhB,EAAmB;AACnB,SAAK2X,OAAL,CAAasgB,SAAb,CAAuB,KAAK3B,OAAL,CAAa3F,SAAb,CAAuB,KAAKmK,KAA5B,EAAmC,KAAK96B,CAAxC,CAAvB;AACD,GAND,MAMO;AACL;AACA,WAAO,KAAKA,CAAL,GAASyK,GAAhB,EAAqB,KAAKzK,CAAL,EAArB,EAA+B;AAC7B,UAAIw1B,SAAS,CAAC,KAAKc,OAAL,CAAa,KAAKt2B,CAAlB,CAAD,CAAb,EAAqC;AACnC,aAAK2X,OAAL,CAAasgB,SAAb,CAAuB,KAAK3B,OAAL,CAAa3F,SAAb,CAAuB,KAAKmK,KAA5B,EAAmC,KAAK96B,CAAxC,CAAvB;AACA;AACD,OAHD,MAGO,IAAI,KAAK27B,UAAL,CAAgB,WAAhB,CAAJ,EAAkC;AAC1C;AACF;AACD,SAAOnG,SAAS,CAAC,KAAKc,OAAL,CAAa,EAAE,KAAKt2B,CAApB,CAAD,CAAhB,GAAyC,CAAzC;AACA,MAAI,KAAKA,CAAL,GAASyK,GAAT,IAAgB,CAAC,KAAKkxB,UAAL,EAArB,EAAwC;AACtC,SAAKb,KAAL,GAAa,KAAK96B,CAAlB;AACA,SAAK0Y,KAAL,GAAa,KAAKsf,QAAlB;AACD;AACF,CAvBD;;AAyBA;;;;;AAKAxB,KAAK,CAAC10B,SAAN,CAAgB85B,MAAhB,GAAyB,YAAY;AACnC,MAAMp7B,CAAC,GAAG,KAAK81B,OAAL,CAAa,KAAKt2B,CAAlB,CAAV;AACA,MAAIw1B,SAAS,CAACh1B,CAAD,CAAT,IAAgBA,CAAC,KAAK,GAAtB,IAA6BA,CAAC,KAAK,GAAvC,EAA4C;AAC1C,SAAKmX,OAAL,CAAauhB,UAAb,CAAwB,KAAK5C,OAAL,CAAa3F,SAAb,CAAuB,KAAKmK,KAA5B,EAAmC,KAAK96B,CAAxC,CAAxB;AACA,QAAIQ,CAAC,KAAK,GAAV,EAAe;AACb,WAAKR,CAAL,GAAS,KAAKs2B,OAAL,CAAar2B,OAAb,CAAqB,GAArB,EAA0B,KAAKD,CAA/B,CAAT;AACA,UAAI,KAAKA,CAAL,KAAW,CAAC,CAAhB,EAAmB;AACpB;AACD,SAAK86B,KAAL,GAAa,EAAE,KAAK96B,CAApB;AACA,SAAK0Y,KAAL,GAAa,KAAK6gB,IAAlB;AACD,GARD,MAQO;AACL,SAAKv5B,CAAL;AACD;AACF,CAbD;;AAeAqgB,MAAM,CAACC,OAAP,GAAiBwV,MAAjB,C;;;;;;;;;;;;;4nFCtsCA,IAAM1xB,OAAO,GAAGD,KAAK,CAACC,OAAtB;AACA,IAAM43B,QAAQ,GAAG,SAAXA,QAAW,CAAC9e,GAAD,UAASA,GAAG,KAAK,IAAR,IAAgB,OAAOA,GAAP,KAAe,QAAxC,EAAjB;AACA,IAAM+e,iBAAiB,GAAG,CAAC,GAAD,EAAM,GAAN,CAA1B,C;AACMC,a;AACF,2BAAc;AACV,SAAKC,OAAL,GAAe55B,MAAM,CAACa,MAAP,CAAc,IAAd,CAAf;AACH,G;AACW3B,W,EAAS4W,M,EAAwC,KAAhC+jB,UAAgC,uEAAnBH,iBAAmB;AACzD,UAAI,CAAC5jB,MAAL,EAAa;AACT,eAAO,CAAC5W,OAAD,CAAP;AACH;AACD,UAAI46B,MAAM,GAAG,KAAKF,OAAL,CAAa16B,OAAb,CAAb;AACA,UAAI,CAAC46B,MAAL,EAAa;AACTA,cAAM,GAAG96B,KAAK,CAACE,OAAD,EAAU26B,UAAV,CAAd;AACA,aAAKD,OAAL,CAAa16B,OAAb,IAAwB46B,MAAxB;AACH;AACD,aAAOC,OAAO,CAACD,MAAD,EAAShkB,MAAT,CAAd;AACH,K;;AAEL,IAAMkkB,mBAAmB,GAAG,UAA5B;AACA,IAAMC,oBAAoB,GAAG,UAA7B;AACA,SAASj7B,KAAT,CAAek7B,MAAf,QAAuD,qCAA/BC,cAA+B,YAAfC,YAAe;AACnD,MAAMN,MAAM,GAAG,EAAf;AACA,MAAIO,QAAQ,GAAG,CAAf;AACA,MAAIrD,IAAI,GAAG,EAAX;AACA,SAAOqD,QAAQ,GAAGH,MAAM,CAAC98B,MAAzB,EAAiC;AAC7B,QAAIk9B,IAAI,GAAGJ,MAAM,CAACG,QAAQ,EAAT,CAAjB;AACA,QAAIC,IAAI,KAAKH,cAAb,EAA6B;AACzB,UAAInD,IAAJ,EAAU;AACN8C,cAAM,CAAC93B,IAAP,CAAY,EAAEqP,IAAI,EAAE,MAAR,EAAgBhM,KAAK,EAAE2xB,IAAvB,EAAZ;AACH;AACDA,UAAI,GAAG,EAAP;AACA,UAAIuD,GAAG,GAAG,EAAV;AACAD,UAAI,GAAGJ,MAAM,CAACG,QAAQ,EAAT,CAAb;AACA,aAAOC,IAAI,KAAK1f,SAAT,IAAsB0f,IAAI,KAAKF,YAAtC,EAAoD;AAChDG,WAAG,IAAID,IAAP;AACAA,YAAI,GAAGJ,MAAM,CAACG,QAAQ,EAAT,CAAb;AACH;AACD,UAAMG,QAAQ,GAAGF,IAAI,KAAKF,YAA1B;AACA,UAAM/oB,IAAI,GAAG2oB,mBAAmB,CAAC/8B,IAApB,CAAyBs9B,GAAzB;AACP,YADO;AAEPC,cAAQ,IAAIP,oBAAoB,CAACh9B,IAArB,CAA0Bs9B,GAA1B,CAAZ;AACI,aADJ;AAEI,eAJV;AAKAT,YAAM,CAAC93B,IAAP,CAAY,EAAEqD,KAAK,EAAEk1B,GAAT,EAAclpB,IAAI,EAAJA,IAAd,EAAZ;AACH;AACD;AACA;AACA;AACA;AACA;AACA;AAxBA,SAyBK;AACD2lB,YAAI,IAAIsD,IAAR;AACH;AACJ;AACDtD,MAAI,IAAI8C,MAAM,CAAC93B,IAAP,CAAY,EAAEqP,IAAI,EAAE,MAAR,EAAgBhM,KAAK,EAAE2xB,IAAvB,EAAZ,CAAR;AACA,SAAO8C,MAAP;AACH;AACD,SAASC,OAAT,CAAiBD,MAAjB,EAAyBhkB,MAAzB,EAAiC;AAC7B,MAAM2kB,QAAQ,GAAG,EAAjB;AACA,MAAIt4B,KAAK,GAAG,CAAZ;AACA,MAAMu4B,IAAI,GAAG74B,OAAO,CAACiU,MAAD,CAAP;AACP,QADO;AAEP2jB,UAAQ,CAAC3jB,MAAD,CAAR;AACI,SADJ;AAEI,WAJV;AAKA,MAAI4kB,IAAI,KAAK,SAAb,EAAwB;AACpB,WAAOD,QAAP;AACH;AACD,SAAOt4B,KAAK,GAAG23B,MAAM,CAAC18B,MAAtB,EAA8B;AAC1B,QAAMkB,KAAK,GAAGw7B,MAAM,CAAC33B,KAAD,CAApB;AACA,YAAQ7D,KAAK,CAAC+S,IAAd;AACI,WAAK,MAAL;AACIopB,gBAAQ,CAACz4B,IAAT,CAAc1D,KAAK,CAAC+G,KAApB;AACA;AACJ,WAAK,MAAL;AACIo1B,gBAAQ,CAACz4B,IAAT,CAAc8T,MAAM,CAAChN,QAAQ,CAACxK,KAAK,CAAC+G,KAAP,EAAc,EAAd,CAAT,CAApB;AACA;AACJ,WAAK,OAAL;AACI,YAAIq1B,IAAI,KAAK,OAAb,EAAsB;AAClBD,kBAAQ,CAACz4B,IAAT,CAAc8T,MAAM,CAACxX,KAAK,CAAC+G,KAAP,CAApB;AACH,SAFD;AAGK;AACD,cAAI4K,IAAJ,EAA2C;AACvCjF,mBAAO,CAACC,IAAR,0BAA+B3M,KAAK,CAAC+S,IAArC,oCAAmEqpB,IAAnE;AACH;AACJ;AACD;AACJ,WAAK,SAAL;AACI,YAAIzqB,IAAJ,EAA2C;AACvCjF,iBAAO,CAACC,IAAR;AACH;AACD,cArBR;;AAuBA9I,SAAK;AACR;AACD,SAAOs4B,QAAP;AACH;;AAED,IAAME,cAAc,GAAG,SAAvB,C;AACA,IAAMC,cAAc,GAAG,SAAvB,C;AACA,IAAMC,SAAS,GAAG,IAAlB,C;AACA,IAAMC,SAAS,GAAG,IAAlB,C;AACA,IAAMC,SAAS,GAAG,IAAlB,C;AACA,IAAM96B,cAAc,GAAGD,MAAM,CAACT,SAAP,CAAiBU,cAAxC;AACA,IAAMO,MAAM,GAAG,SAATA,MAAS,CAACma,GAAD,EAAMla,GAAN,UAAcR,cAAc,CAACM,IAAf,CAAoBoa,GAApB,EAAyBla,GAAzB,CAAd,EAAf;AACA,IAAMu6B,gBAAgB,GAAG,IAAIrB,aAAJ,EAAzB;AACA,SAASsB,OAAT,CAAiBn+B,GAAjB,EAAsBo+B,KAAtB,EAA6B;AACzB,SAAO,CAAC,CAACA,KAAK,CAACtsB,IAAN,CAAW,UAACusB,IAAD,UAAUr+B,GAAG,CAACY,OAAJ,CAAYy9B,IAAZ,MAAsB,CAAC,CAAjC,EAAX,CAAT;AACH;AACD,SAASC,UAAT,CAAoBt+B,GAApB,EAAyBo+B,KAAzB,EAAgC;AAC5B,SAAOA,KAAK,CAACtsB,IAAN,CAAW,UAACusB,IAAD,UAAUr+B,GAAG,CAACY,OAAJ,CAAYy9B,IAAZ,MAAsB,CAAhC,EAAX,CAAP;AACH;AACD,SAASE,eAAT,CAAyBh0B,MAAzB,EAAiCi0B,QAAjC,EAA2C;AACvC,MAAI,CAACj0B,MAAL,EAAa;AACT;AACH;AACDA,QAAM,GAAGA,MAAM,CAAC6tB,IAAP,GAAcl4B,OAAd,CAAsB,IAAtB,EAA4B,GAA5B,CAAT;AACA,MAAIs+B,QAAQ,IAAIA,QAAQ,CAACj0B,MAAD,CAAxB,EAAkC;AAC9B,WAAOA,MAAP;AACH;AACDA,QAAM,GAAGA,MAAM,CAAC8tB,WAAP,EAAT;AACA,MAAI9tB,MAAM,CAAC3J,OAAP,CAAe,IAAf,MAAyB,CAA7B,EAAgC;AAC5B,QAAI2J,MAAM,CAAC3J,OAAP,CAAe,OAAf,IAA0B,CAAC,CAA/B,EAAkC;AAC9B,aAAOi9B,cAAP;AACH;AACD,QAAItzB,MAAM,CAAC3J,OAAP,CAAe,OAAf,IAA0B,CAAC,CAA/B,EAAkC;AAC9B,aAAOk9B,cAAP;AACH;AACD,QAAIK,OAAO,CAAC5zB,MAAD,EAAS,CAAC,KAAD,EAAQ,KAAR,EAAe,KAAf,EAAsB,MAAtB,CAAT,CAAX,EAAoD;AAChD,aAAOuzB,cAAP;AACH;AACD,WAAOD,cAAP;AACH;AACD,MAAMY,IAAI,GAAGH,UAAU,CAAC/zB,MAAD,EAAS,CAACwzB,SAAD,EAAYC,SAAZ,EAAuBC,SAAvB,CAAT,CAAvB;AACA,MAAIQ,IAAJ,EAAU;AACN,WAAOA,IAAP;AACH;AACJ,C;AACKC,I;AACF,uBAAsE,KAAxDn0B,MAAwD,SAAxDA,MAAwD,CAAhDo0B,cAAgD,SAAhDA,cAAgD,CAAhCH,QAAgC,SAAhCA,QAAgC,CAAtBI,OAAsB,SAAtBA,OAAsB,CAAbC,QAAa,SAAbA,QAAa;AAClE,SAAKt0B,MAAL,GAAcwzB,SAAd;AACA,SAAKY,cAAL,GAAsBZ,SAAtB;AACA,SAAK37B,OAAL,GAAe,EAAf;AACA,SAAKo8B,QAAL,GAAgB,EAAhB;AACA,SAAKM,QAAL,GAAgB,EAAhB;AACA,QAAIH,cAAJ,EAAoB;AAChB,WAAKA,cAAL,GAAsBA,cAAtB;AACH;AACD,SAAKE,QAAL,GAAgBA,QAAQ,IAAIX,gBAA5B;AACA,SAAKM,QAAL,GAAgBA,QAAQ,IAAI,EAA5B;AACA,SAAKl0B,SAAL,CAAeC,MAAM,IAAIwzB,SAAzB;AACA,QAAIa,OAAJ,EAAa;AACT,WAAK/lB,WAAL,CAAiB+lB,OAAjB;AACH;AACJ,G;AACSr0B,U,EAAQ;AACd,UAAMC,SAAS,GAAG,KAAKD,MAAvB;AACA,WAAKA,MAAL,GAAcg0B,eAAe,CAACh0B,MAAD,EAAS,KAAKi0B,QAAd,CAAf,IAA0C,KAAKG,cAA7D;AACA,UAAI,CAAC,KAAKH,QAAL,CAAc,KAAKj0B,MAAnB,CAAL,EAAiC;AAC7B;AACA,aAAKi0B,QAAL,CAAc,KAAKj0B,MAAnB,IAA6B,EAA7B;AACH;AACD,WAAKnI,OAAL,GAAe,KAAKo8B,QAAL,CAAc,KAAKj0B,MAAnB,CAAf;AACA;AACA,UAAIC,SAAS,KAAK,KAAKD,MAAvB,EAA+B;AAC3B,aAAKu0B,QAAL,CAAcn5B,OAAd,CAAsB,UAACi5B,OAAD,EAAa;AAC/BA,iBAAO,CAAC,KAAI,CAACr0B,MAAN,EAAcC,SAAd,CAAP;AACH,SAFD;AAGH;AACJ,K;AACW;AACR,aAAO,KAAKD,MAAZ;AACH,K;AACWlH,M,EAAI;AACZ,UAAMgC,KAAK,GAAG,KAAKy5B,QAAL,CAAc55B,IAAd,CAAmB7B,EAAnB,IAAyB,CAAvC;AACA,aAAO,YAAM;AACT,cAAI,CAACy7B,QAAL,CAAcx5B,MAAd,CAAqBD,KAArB,EAA4B,CAA5B;AACH,OAFD;AAGH,K;AACGkF,U,EAAQnI,O,EAA0B,KAAjB28B,QAAiB,uEAAN,IAAM;AAClC,UAAMC,WAAW,GAAG,KAAKR,QAAL,CAAcj0B,MAAd,CAApB;AACA,UAAIy0B,WAAJ,EAAiB;AACb,YAAID,QAAJ,EAAc;AACV77B,gBAAM,CAAC4F,MAAP,CAAck2B,WAAd,EAA2B58B,OAA3B;AACH,SAFD;AAGK;AACDc,gBAAM,CAACwC,IAAP,CAAYtD,OAAZ,EAAqBuD,OAArB,CAA6B,UAAChC,GAAD,EAAS;AAClC,gBAAI,CAACD,MAAM,CAACs7B,WAAD,EAAcr7B,GAAd,CAAX,EAA+B;AAC3Bq7B,yBAAW,CAACr7B,GAAD,CAAX,GAAmBvB,OAAO,CAACuB,GAAD,CAA1B;AACH;AACJ,WAJD;AAKH;AACJ,OAXD;AAYK;AACD,aAAK66B,QAAL,CAAcj0B,MAAd,IAAwBnI,OAAxB;AACH;AACJ,K;AACCA,W,EAAS4W,M,EAAQ+jB,U,EAAY;AAC3B,aAAO,KAAK8B,QAAL,CAAcI,WAAd,CAA0B78B,OAA1B,EAAmC4W,MAAnC,EAA2C+jB,UAA3C,EAAuDz7B,IAAvD,CAA4D,EAA5D,CAAP;AACH,K;AACCqC,O,EAAK4G,M,EAAQyO,M,EAAQ;AACnB,UAAI5W,OAAO,GAAG,KAAKA,OAAnB;AACA,UAAI,OAAOmI,MAAP,KAAkB,QAAtB,EAAgC;AAC5BA,cAAM,GAAGg0B,eAAe,CAACh0B,MAAD,EAAS,KAAKi0B,QAAd,CAAxB;AACAj0B,cAAM,KAAKnI,OAAO,GAAG,KAAKo8B,QAAL,CAAcj0B,MAAd,CAAf,CAAN;AACH,OAHD;AAIK;AACDyO,cAAM,GAAGzO,MAAT;AACH;AACD,UAAI,CAAC7G,MAAM,CAACtB,OAAD,EAAUuB,GAAV,CAAX,EAA2B;AACvBuK,eAAO,CAACC,IAAR,iDAAsDxK,GAAtD;AACA,eAAOA,GAAP;AACH;AACD,aAAO,KAAKk7B,QAAL,CAAcI,WAAd,CAA0B78B,OAAO,CAACuB,GAAD,CAAjC,EAAwCqV,MAAxC,EAAgD1X,IAAhD,CAAqD,EAArD,CAAP;AACH,K;;;AAGL,SAAS49B,cAAT,CAAwB9lB,KAAxB,EAA+BZ,IAA/B,EAAqC;AACjC;AACA,MAAIY,KAAK,CAACI,YAAV,EAAwB;AACpB;AACAJ,SAAK,CAACI,YAAN,CAAmB,UAAC2lB,SAAD,EAAe;AAC9B3mB,UAAI,CAAClO,SAAL,CAAe60B,SAAf;AACH,KAFD;AAGH,GALD;AAMK;AACD/lB,SAAK,CAACgmB,MAAN,CAAa,oBAAMhmB,KAAK,CAAChP,OAAZ,EAAb,EAAkC,UAAC+0B,SAAD,EAAe;AAC7C3mB,UAAI,CAAClO,SAAL,CAAe60B,SAAf;AACH,KAFD;AAGH;AACJ;AACD,SAASE,gBAAT,GAA4B;AACxB,MAAI,OAAOze,GAAP,KAAe,WAAf,IAA8BA,GAAG,CAAC7W,SAAtC,EAAiD;AAC7C,WAAO6W,GAAG,CAAC7W,SAAJ,EAAP;AACH;AACD;AACA,MAAI,OAAOY,MAAP,KAAkB,WAAlB,IAAiCA,MAAM,CAACZ,SAA5C,EAAuD;AACnD,WAAOY,MAAM,CAACZ,SAAP,EAAP;AACH;AACD,SAAOg0B,SAAP;AACH;AACD,SAASuB,WAAT,CAAqB/0B,MAArB,EAAqE,KAAxCi0B,QAAwC,uEAA7B,EAA6B,KAAzBG,cAAyB,uDAATC,OAAS;AACjE;AACA,MAAI,OAAOr0B,MAAP,KAAkB,QAAtB,EAAgC;AACP;AACjBi0B,YADiB;AAEjBj0B,UAFiB,CADO,CAC3BA,MAD2B,YACnBi0B,QADmB;;AAK/B;AACD,MAAI,OAAOj0B,MAAP,KAAkB,QAAtB,EAAgC;AAC5B;AACAA,UAAM,GAAG80B,gBAAgB,EAAzB;AACH;AACD,MAAI,OAAOV,cAAP,KAA0B,QAA9B,EAAwC;AACpCA,kBAAc;AACT,WAAOY,WAAP,KAAuB,WAAvB,IAAsCA,WAAW,CAACZ,cAAnD;AACIZ,aAFR;AAGH;AACD,MAAMvlB,IAAI,GAAG,IAAIkmB,IAAJ,CAAS;AAClBn0B,UAAM,EAANA,MADkB;AAElBo0B,kBAAc,EAAdA,cAFkB;AAGlBH,YAAQ,EAARA,QAHkB;AAIlBI,WAAO,EAAPA,OAJkB,EAAT,CAAb;;AAMA,MAAInmB,EAAC,GAAG,WAAC9U,GAAD,EAAMqV,MAAN,EAAiB;AACrB,QAAI,OAAO/O,MAAP,KAAkB,UAAtB,EAAkC;AAC9B;AACA;AACAwO,QAAC,GAAG,WAAU9U,GAAV,EAAeqV,MAAf,EAAuB;AACvB,eAAOR,IAAI,CAACC,CAAL,CAAO9U,GAAP,EAAYqV,MAAZ,CAAP;AACH,OAFD;AAGH,KAND;AAOK;AACD,UAAIwmB,kBAAkB,GAAG,KAAzB;AACA/mB,QAAC,GAAG,WAAU9U,GAAV,EAAeqV,MAAf,EAAuB;AACvB,YAAMI,KAAK,GAAGnP,MAAM,GAAGE,GAAvB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAIiP,KAAJ,EAAW;AACP;AACAA,eAAK,CAAChP,OAAN;AACA,cAAI,CAACo1B,kBAAL,EAAyB;AACrBA,8BAAkB,GAAG,IAArB;AACAN,0BAAc,CAAC9lB,KAAD,EAAQZ,IAAR,CAAd;AACH;AACJ;AACD,eAAOA,IAAI,CAACC,CAAL,CAAO9U,GAAP,EAAYqV,MAAZ,CAAP;AACH,OAxBD;AAyBH;AACD,WAAOP,EAAC,CAAC9U,GAAD,EAAMqV,MAAN,CAAR;AACH,GArCD;AAsCA,SAAO;AACHR,QAAI,EAAJA,IADG;AAEHwjB,KAFG,aAED55B,OAFC,EAEQ4W,MAFR,EAEgB+jB,UAFhB,EAE4B;AAC3B,aAAOvkB,IAAI,CAACwjB,CAAL,CAAO55B,OAAP,EAAgB4W,MAAhB,EAAwB+jB,UAAxB,CAAP;AACH,KAJE;AAKHtkB,KALG,aAKD9U,GALC,EAKIqV,MALJ,EAKY;AACX,aAAOP,EAAC,CAAC9U,GAAD,EAAMqV,MAAN,CAAR;AACH,KAPE;AAQHymB,OARG,eAQCl1B,MARD,EAQSnI,OART,EAQmC,KAAjB28B,QAAiB,uEAAN,IAAM;AAClC,aAAOvmB,IAAI,CAACinB,GAAL,CAASl1B,MAAT,EAAiBnI,OAAjB,EAA0B28B,QAA1B,CAAP;AACH,KAVE;AAWHllB,SAXG,iBAWGxW,EAXH,EAWO;AACN,aAAOmV,IAAI,CAACK,WAAL,CAAiBxV,EAAjB,CAAP;AACH,KAbE;AAcH0G,aAdG,uBAcS;AACR,aAAOyO,IAAI,CAACzO,SAAL,EAAP;AACH,KAhBE;AAiBHO,aAjBG,qBAiBO60B,SAjBP,EAiBkB;AACjB,aAAO3mB,IAAI,CAAClO,SAAL,CAAe60B,SAAf,CAAP;AACH,KAnBE,EAAP;;AAqBH;;AAED,IAAMO,QAAQ,GAAG,SAAXA,QAAW,CAAC7hB,GAAD,UAAS,OAAOA,GAAP,KAAe,QAAxB,EAAjB,C;AACA,IAAIghB,QAAJ;AACA,SAASc,WAAT,CAAqBC,OAArB,EAA8B7C,UAA9B,EAA0C;AACtC,MAAI,CAAC8B,QAAL,EAAe;AACXA,YAAQ,GAAG,IAAIhC,aAAJ,EAAX;AACH;AACD,SAAOgD,WAAW,CAACD,OAAD,EAAU,UAACA,OAAD,EAAUj8B,GAAV,EAAkB;AAC1C,QAAM4E,KAAK,GAAGq3B,OAAO,CAACj8B,GAAD,CAArB;AACA,QAAI+7B,QAAQ,CAACn3B,KAAD,CAAZ,EAAqB;AACjB,UAAIu3B,SAAS,CAACv3B,KAAD,EAAQw0B,UAAR,CAAb,EAAkC;AAC9B,eAAO,IAAP;AACH;AACJ,KAJD;AAKK;AACD,aAAO4C,WAAW,CAACp3B,KAAD,EAAQw0B,UAAR,CAAlB;AACH;AACJ,GAViB,CAAlB;AAWH;AACD,SAASgD,aAAT,CAAuBH,OAAvB,EAAgC5mB,MAAhC,EAAwC+jB,UAAxC,EAAoD;AAChD,MAAI,CAAC8B,QAAL,EAAe;AACXA,YAAQ,GAAG,IAAIhC,aAAJ,EAAX;AACH;AACDgD,aAAW,CAACD,OAAD,EAAU,UAACA,OAAD,EAAUj8B,GAAV,EAAkB;AACnC,QAAM4E,KAAK,GAAGq3B,OAAO,CAACj8B,GAAD,CAArB;AACA,QAAI+7B,QAAQ,CAACn3B,KAAD,CAAZ,EAAqB;AACjB,UAAIu3B,SAAS,CAACv3B,KAAD,EAAQw0B,UAAR,CAAb,EAAkC;AAC9B6C,eAAO,CAACj8B,GAAD,CAAP,GAAeq8B,UAAU,CAACz3B,KAAD,EAAQyQ,MAAR,EAAgB+jB,UAAhB,CAAzB;AACH;AACJ,KAJD;AAKK;AACDgD,mBAAa,CAACx3B,KAAD,EAAQyQ,MAAR,EAAgB+jB,UAAhB,CAAb;AACH;AACJ,GAVU,CAAX;AAWA,SAAO6C,OAAP;AACH;AACD,SAASK,kBAAT,CAA4BC,OAA5B,SAAuE,KAAhC31B,MAAgC,SAAhCA,MAAgC,CAAxB41B,OAAwB,SAAxBA,OAAwB,CAAfpD,UAAe,SAAfA,UAAe;AACnE,MAAI,CAAC+C,SAAS,CAACI,OAAD,EAAUnD,UAAV,CAAd,EAAqC;AACjC,WAAOmD,OAAP;AACH;AACD,MAAI,CAACrB,QAAL,EAAe;AACXA,YAAQ,GAAG,IAAIhC,aAAJ,EAAX;AACH;AACD,MAAMuD,YAAY,GAAG,EAArB;AACAl9B,QAAM,CAACwC,IAAP,CAAYy6B,OAAZ,EAAqBx6B,OAArB,CAA6B,UAACgB,IAAD,EAAU;AACnC,QAAIA,IAAI,KAAK4D,MAAb,EAAqB;AACjB61B,kBAAY,CAACl7B,IAAb,CAAkB;AACdqF,cAAM,EAAE5D,IADM;AAEdqS,cAAM,EAAEmnB,OAAO,CAACx5B,IAAD,CAFD,EAAlB;;AAIH;AACJ,GAPD;AAQAy5B,cAAY,CAACC,OAAb,CAAqB,EAAE91B,MAAM,EAANA,MAAF,EAAUyO,MAAM,EAAEmnB,OAAO,CAAC51B,MAAD,CAAzB,EAArB;AACA,MAAI;AACA,WAAOtI,IAAI,CAACoR,SAAL,CAAeitB,cAAc,CAACr+B,IAAI,CAACC,KAAL,CAAWg+B,OAAX,CAAD,EAAsBE,YAAtB,EAAoCrD,UAApC,CAA7B,EAA8E,IAA9E,EAAoF,CAApF,CAAP;AACH;AACD,SAAO7pB,CAAP,EAAU,CAAG;AACb,SAAOgtB,OAAP;AACH;AACD,SAASJ,SAAT,CAAmBv3B,KAAnB,EAA0Bw0B,UAA1B,EAAsC;AAClC,SAAOx0B,KAAK,CAAC3H,OAAN,CAAcm8B,UAAU,CAAC,CAAD,CAAxB,IAA+B,CAAC,CAAvC;AACH;AACD,SAASiD,UAAT,CAAoBz3B,KAApB,EAA2ByQ,MAA3B,EAAmC+jB,UAAnC,EAA+C;AAC3C,SAAO8B,QAAQ,CAACI,WAAT,CAAqB12B,KAArB,EAA4ByQ,MAA5B,EAAoC+jB,UAApC,EAAgDz7B,IAAhD,CAAqD,EAArD,CAAP;AACH;AACD,SAASi/B,YAAT,CAAsBX,OAAtB,EAA+Bj8B,GAA/B,EAAoCy8B,YAApC,EAAkDrD,UAAlD,EAA8D;AAC1D,MAAMx0B,KAAK,GAAGq3B,OAAO,CAACj8B,GAAD,CAArB;AACA,MAAI+7B,QAAQ,CAACn3B,KAAD,CAAZ,EAAqB;AACjB;AACA,QAAIu3B,SAAS,CAACv3B,KAAD,EAAQw0B,UAAR,CAAb,EAAkC;AAC9B6C,aAAO,CAACj8B,GAAD,CAAP,GAAeq8B,UAAU,CAACz3B,KAAD,EAAQ63B,YAAY,CAAC,CAAD,CAAZ,CAAgBpnB,MAAxB,EAAgC+jB,UAAhC,CAAzB;AACA,UAAIqD,YAAY,CAAC9/B,MAAb,GAAsB,CAA1B,EAA6B;AACzB;AACA,YAAMkgC,YAAY,GAAIZ,OAAO,CAACj8B,GAAG,GAAG,SAAP,CAAP,GAA2B,EAAjD;AACAy8B,oBAAY,CAACz6B,OAAb,CAAqB,UAAC86B,UAAD,EAAgB;AACjCD,sBAAY,CAACC,UAAU,CAACl2B,MAAZ,CAAZ,GAAkCy1B,UAAU,CAACz3B,KAAD,EAAQk4B,UAAU,CAACznB,MAAnB,EAA2B+jB,UAA3B,CAA5C;AACH,SAFD;AAGH;AACJ;AACJ,GAZD;AAaK;AACDuD,kBAAc,CAAC/3B,KAAD,EAAQ63B,YAAR,EAAsBrD,UAAtB,CAAd;AACH;AACJ;AACD,SAASuD,cAAT,CAAwBV,OAAxB,EAAiCQ,YAAjC,EAA+CrD,UAA/C,EAA2D;AACvD8C,aAAW,CAACD,OAAD,EAAU,UAACA,OAAD,EAAUj8B,GAAV,EAAkB;AACnC48B,gBAAY,CAACX,OAAD,EAAUj8B,GAAV,EAAey8B,YAAf,EAA6BrD,UAA7B,CAAZ;AACH,GAFU,CAAX;AAGA,SAAO6C,OAAP;AACH;AACD,SAASC,WAAT,CAAqBD,OAArB,EAA8Bc,IAA9B,EAAoC;AAChC,MAAI37B,OAAO,CAAC66B,OAAD,CAAX,EAAsB;AAClB,SAAK,IAAIj/B,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAGi/B,OAAO,CAACt/B,MAA5B,EAAoCK,CAAC,EAArC,EAAyC;AACrC,UAAI+/B,IAAI,CAACd,OAAD,EAAUj/B,CAAV,CAAR,EAAsB;AAClB,eAAO,IAAP;AACH;AACJ;AACJ,GAND;AAOK,MAAIg8B,QAAQ,CAACiD,OAAD,CAAZ,EAAuB;AACxB,SAAK,IAAMj8B,GAAX,IAAkBi8B,OAAlB,EAA2B;AACvB,UAAIc,IAAI,CAACd,OAAD,EAAUj8B,GAAV,CAAR,EAAwB;AACpB,eAAO,IAAP;AACH;AACJ;AACJ;AACD,SAAO,KAAP;AACH;;AAED,SAASg9B,aAAT,CAAuBR,OAAvB,EAAgC;AAC5B,SAAO,UAAC51B,MAAD,EAAY;AACf,QAAI,CAACA,MAAL,EAAa;AACT,aAAOA,MAAP;AACH;AACDA,UAAM,GAAGg0B,eAAe,CAACh0B,MAAD,CAAf,IAA2BA,MAApC;AACA,WAAOq2B,kBAAkB,CAACr2B,MAAD,CAAlB,CAA2BuH,IAA3B,CAAgC,UAACvH,MAAD,UAAY41B,OAAO,CAACv/B,OAAR,CAAgB2J,MAAhB,IAA0B,CAAC,CAAvC,EAAhC,CAAP;AACH,GAND;AAOH;AACD,SAASq2B,kBAAT,CAA4Br2B,MAA5B,EAAoC;AAChC,MAAMs2B,KAAK,GAAG,EAAd;AACA,MAAM7D,MAAM,GAAGzyB,MAAM,CAACtJ,KAAP,CAAa,GAAb,CAAf;AACA,SAAO+7B,MAAM,CAAC18B,MAAd,EAAsB;AAClBugC,SAAK,CAAC37B,IAAN,CAAW83B,MAAM,CAAC17B,IAAP,CAAY,GAAZ,CAAX;AACA07B,UAAM,CAAClD,GAAP;AACH;AACD,SAAO+G,KAAP;AACH,C;;;;;;;;;;;;;;;;;;;;;;;ACncD,SAASC,YAAT,CAAsB9gC,GAAtB,EAA2B;AACvB,MAAI+gC,KAAK,GAAG,0BAAZ;;AAEA,MAAI,CAACA,KAAK,CAAC5gC,IAAN,CAAWH,GAAX,CAAL,EAAsB;AAClB,WAAO,KAAP;AACH,GAFD,MAEO;AACH,WAAO,IAAP;AACH;AACJ;;AAEDghB,MAAM,CAACC,OAAP,GAAiB;AACb6f,cAAY,EAAZA,YADa,EAAjB,C;;;;;;;;;;;ACVA,IAAIE,QAAQ,GAAG;AACXC,eAAa,EAAE;AACX,YAAQ,KADG;AAEX,YAAQ,KAFG;AAGX,YAAQ,KAHG;AAIX,YAAQ,KAJG;AAKX,YAAQ,QALG;AAMX,YAAQ,KANG;AAOX,YAAQ,KAPG;AAQX,YAAQ,MARG;AASX,YAAQ,KATG;AAUX,YAAQ,KAVG;AAWX,YAAQ,KAXG;AAYX,YAAQ,KAZG;AAaX,YAAQ,KAbG;AAcX,YAAQ,KAdG;AAeX,YAAQ,KAfG;AAgBX,YAAQ,KAhBG;AAiBX,YAAQ,KAjBG;AAkBX,YAAQ,KAlBG;AAmBX,YAAQ,KAnBG;AAoBX,YAAQ,SApBG;AAqBX,YAAQ,KArBG;AAsBX,YAAQ,KAtBG;AAuBX,YAAQ,KAvBG;AAwBX,YAAQ,KAxBG;AAyBX,YAAQ,KAzBG;AA0BX,YAAQ,OA1BG;AA2BX,YAAQ,KA3BG;AA4BX,YAAQ,KA5BG;AA6BX,YAAQ,KA7BG;AA8BX,YAAQ,SA9BG;AA+BX,YAAQ,UA/BG,EADJ;;AAkCXC,WAAS,EAAE;AACP,YAAQ,KADD;AAEP,YAAQ,KAFD;AAGP,YAAQ,MAHD;AAIP,YAAQ,KAJD;AAKP,YAAQ,MALD;AAMP,YAAQ,KAND;AAOP,YAAQ,KAPD;AAQP,YAAQ,KARD;AASP,YAAQ,MATD;AAUP,YAAQ,KAVD;AAWP,YAAQ,KAXD;AAYP,YAAQ,KAZD;AAaP,YAAQ,KAbD;AAcP,YAAQ,WAdD;AAeP,YAAQ,KAfD;AAgBP,YAAQ,KAhBD;AAiBP,YAAQ,KAjBD;AAkBP,YAAQ,KAlBD;AAmBP,YAAQ,KAnBD;AAoBP,YAAQ,KApBD;AAqBP,YAAQ,KArBD;AAsBP,YAAQ,KAtBD;AAuBP,YAAQ,KAvBD;AAwBP,YAAQ,KAxBD;AAyBP,YAAQ,KAzBD;AA0BP,YAAQ,OA1BD;AA2BP,YAAQ,KA3BD;AA4BP,YAAQ,KA5BD;AA6BP,YAAQ,KA7BD;AA8BP,YAAQ,KA9BD;AA+BP,YAAQ,OA/BD;AAgCP,YAAQ,OAhCD;AAiCP,YAAQ,OAjCD;AAkCP,YAAQ,OAlCD;AAmCP,YAAQ,KAnCD;AAoCP,YAAQ,OApCD;AAqCP,YAAQ,MArCD;AAsCP,YAAQ,KAtCD;AAuCP,YAAQ,KAvCD;AAwCP,YAAQ,KAxCD;AAyCP,YAAQ,KAzCD;AA0CP,YAAQ,KA1CD;AA2CP,YAAQ,KA3CD;AA4CP,YAAQ,KA5CD;AA6CP,YAAQ,KA7CD;AA8CP,YAAQ,KA9CD;AA+CP,YAAQ,KA/CD;AAgDP,YAAQ,KAhDD;AAiDP,YAAQ,KAjDD;AAkDP,YAAQ,KAlDD;AAmDP,YAAQ,MAnDD;AAoDP,YAAQ,KApDD;AAqDP,YAAQ,KArDD;AAsDP,YAAQ,KAtDD;AAuDP,YAAQ,KAvDD;AAwDP,YAAQ,KAxDD;AAyDP,YAAQ,KAzDD;AA0DP,YAAQ,KA1DD;AA2DP,YAAQ,KA3DD;AA4DP,YAAQ,UA5DD;AA6DP,YAAQ,MA7DD;AA8DP,YAAQ,OA9DD;AA+DP,YAAQ,KA/DD;AAgEP,YAAQ,KAhED;AAiEP,YAAQ,MAjED;AAkEP,YAAQ,KAlED;AAmEP,YAAQ,KAnED;AAoEP,YAAQ,MApED;AAqEP,YAAQ,MArED;AAsEP,YAAQ,MAtED;AAuEP,YAAQ,KAvED;AAwEP,YAAQ,KAxED;AAyEP,YAAQ,QAzED;AA0EP,YAAQ,KA1ED;AA2EP,YAAQ,KA3ED;AA4EP,YAAQ,KA5ED;AA6EP,YAAQ,KA7ED;AA8EP,YAAQ,KA9ED;AA+EP,YAAQ,KA/ED;AAgFP,YAAQ,KAhFD;AAiFP,YAAQ,MAjFD;AAkFP,YAAQ,KAlFD;AAmFP,YAAQ,KAnFD;AAoFP,YAAQ,KApFD;AAqFP,YAAQ,KArFD;AAsFP,YAAQ,KAtFD;AAuFP,YAAQ,KAvFD;AAwFP,YAAQ,KAxFD;AAyFP,YAAQ,KAzFD;AA0FP,YAAQ,KA1FD;AA2FP,YAAQ,KA3FD;AA4FP,YAAQ,KA5FD;AA6FP,YAAQ,KA7FD;AA8FP,YAAQ,KA9FD;AA+FP,YAAQ,KA/FD;AAgGP,YAAQ,KAhGD;AAiGP,YAAQ,KAjGD;AAkGP,YAAQ,KAlGD;AAmGP,YAAQ,KAnGD;AAoGP,YAAQ,KApGD;AAqGP,YAAQ,KArGD;AAsGP,YAAQ,KAtGD;AAuGP,YAAQ,MAvGD;AAwGP,YAAQ,KAxGD;AAyGP,YAAQ,KAzGD;AA0GP,YAAQ,KA1GD;AA2GP,YAAQ,KA3GD;AA4GP,YAAQ,KA5GD;AA6GP,YAAQ,KA7GD;AA8GP,YAAQ,KA9GD;AA+GP,YAAQ,KA/GD;AAgHP,YAAQ,KAhHD;AAiHP,YAAQ,KAjHD;AAkHP,YAAQ,KAlHD;AAmHP,YAAQ,KAnHD;AAoHP,YAAQ,KApHD;AAqHP,YAAQ,KArHD;AAsHP,YAAQ,KAtHD;AAuHP,YAAQ,KAvHD;AAwHP,YAAQ,KAxHD;AAyHP,YAAQ,KAzHD;AA0HP,YAAQ,KA1HD;AA2HP,YAAQ,KA3HD;AA4HP,YAAQ,KA5HD;AA6HP,YAAQ,MA7HD;AA8HP,YAAQ,KA9HD;AA+HP,YAAQ,KA/HD;AAgIP,YAAQ,KAhID;AAiIP,YAAQ,KAjID;AAkIP,YAAQ,KAlID;AAmIP,YAAQ,KAnID;AAoIP,YAAQ,KApID;AAqIP,YAAQ,KArID;AAsIP,YAAQ,KAtID;AAuIP,YAAQ,KAvID;AAwIP,YAAQ,KAxID;AAyIP,YAAQ,KAzID;AA0IP,YAAQ,KA1ID;AA2IP,YAAQ,KA3ID;AA4IP,YAAQ,KA5ID;AA6IP,YAAQ,KA7ID;AA8IP,YAAQ,KA9ID;AA+IP,YAAQ,KA/ID;AAgJP,YAAQ,KAhJD;AAiJP,YAAQ,KAjJD;AAkJP,YAAQ,KAlJD;AAmJP,YAAQ,KAnJD;AAoJP,YAAQ,KApJD;AAqJP,YAAQ,KArJD;AAsJP,YAAQ,KAtJD;AAuJP,YAAQ,KAvJD;AAwJP,YAAQ,KAxJD;AAyJP,YAAQ,KAzJD;AA0JP,YAAQ,KA1JD;AA2JP,YAAQ,MA3JD;AA4JP,YAAQ,KA5JD;AA6JP,YAAQ,KA7JD;AA8JP,YAAQ,KA9JD;AA+JP,YAAQ,KA/JD;AAgKP,YAAQ,KAhKD;AAiKP,YAAQ,KAjKD;AAkKP,YAAQ,KAlKD;AAmKP,YAAQ,MAnKD;AAoKP,YAAQ,KApKD;AAqKP,YAAQ,KArKD;AAsKP,YAAQ,KAtKD;AAuKP,YAAQ,KAvKD;AAwKP,YAAQ,MAxKD;AAyKP,YAAQ,WAzKD;AA0KP,YAAQ,KA1KD;AA2KP,YAAQ,KA3KD;AA4KP,YAAQ,KA5KD;AA6KP,YAAQ,KA7KD;AA8KP,YAAQ,KA9KD;AA+KP,YAAQ,KA/KD;AAgLP,YAAQ,KAhLD;AAiLP,YAAQ,KAjLD;AAkLP,YAAQ,KAlLD;AAmLP,YAAQ,KAnLD;AAoLP,YAAQ,KApLD;AAqLP,YAAQ,KArLD;AAsLP,YAAQ,YAtLD;AAuLP,YAAQ,WAvLD;AAwLP,YAAQ,KAxLD;AAyLP,YAAQ,KAzLD;AA0LP,YAAQ,KA1LD;AA2LP,YAAQ,KA3LD;AA4LP,YAAQ,KA5LD;AA6LP,YAAQ,KA7LD;AA8LP,YAAQ,KA9LD;AA+LP,YAAQ,MA/LD;AAgMP,YAAQ,KAhMD;AAiMP,YAAQ,KAjMD;AAkMP,YAAQ,KAlMD;AAmMP,YAAQ,KAnMD;AAoMP,YAAQ,KApMD;AAqMP,YAAQ,YArMD;AAsMP,YAAQ,KAtMD;AAuMP,YAAQ,KAvMD;AAwMP,YAAQ,KAxMD;AAyMP,YAAQ,KAzMD;AA0MP,YAAQ,KA1MD;AA2MP,YAAQ,KA3MD;AA4MP,YAAQ,KA5MD;AA6MP,YAAQ,KA7MD;AA8MP,YAAQ,KA9MD;AA+MP,YAAQ,KA/MD;AAgNP,YAAQ,KAhND;AAiNP,YAAQ,KAjND;AAkNP,YAAQ,KAlND;AAmNP,YAAQ,KAnND;AAoNP,YAAQ,KApND;AAqNP,YAAQ,KArND;AAsNP,YAAQ,KAtND;AAuNP,YAAQ,KAvND;AAwNP,YAAQ,KAxND;AAyNP,YAAQ,KAzND;AA0NP,YAAQ,KA1ND;AA2NP,YAAQ,KA3ND;AA4NP,YAAQ,KA5ND;AA6NP,YAAQ,KA7ND;AA8NP,YAAQ,KA9ND;AA+NP,YAAQ,KA/ND;AAgOP,YAAQ,MAhOD;AAiOP,YAAQ,KAjOD;AAkOP,YAAQ,KAlOD;AAmOP,YAAQ,KAnOD;AAoOP,YAAQ,KApOD;AAqOP,YAAQ,KArOD;AAsOP,YAAQ,KAtOD;AAuOP,YAAQ,KAvOD;AAwOP,YAAQ,KAxOD;AAyOP,YAAQ,KAzOD;AA0OP,YAAQ,KA1OD;AA2OP,YAAQ,KA3OD;AA4OP,YAAQ,KA5OD;AA6OP,YAAQ,WA7OD;AA8OP,YAAQ,KA9OD;AA+OP,YAAQ,GA/OD;AAgPP,YAAQ,KAhPD;AAiPP,YAAQ,KAjPD;AAkPP,YAAQ,MAlPD;AAmPP,YAAQ,KAnPD;AAoPP,YAAQ,KApPD;AAqPP,YAAQ,KArPD;AAsPP,YAAQ,KAtPD;AAuPP,YAAQ,KAvPD;AAwPP,YAAQ,KAxPD;AAyPP,YAAQ,KAzPD;AA0PP,YAAQ,KA1PD;AA2PP,YAAQ,KA3PD;AA4PP,YAAQ,KA5PD;AA6PP,YAAQ,KA7PD;AA8PP,YAAQ,KA9PD;AA+PP,YAAQ,KA/PD;AAgQP,YAAQ,KAhQD;AAiQP,YAAQ,KAjQD;AAkQP,YAAQ,WAlQD;AAmQP,YAAQ,SAnQD;AAoQP,YAAQ,SApQD;AAqQP,YAAQ,KArQD;AAsQP,YAAQ,MAtQD;AAuQP,YAAQ,KAvQD;AAwQP,YAAQ,KAxQD;AAyQP,YAAQ,KAzQD;AA0QP,YAAQ,KA1QD;AA2QP,YAAQ,aA3QD;AA4QP,YAAQ,YA5QD;AA6QP,YAAQ,YA7QD;AA8QP,YAAQ,KA9QD;AA+QP,YAAQ,KA/QD;AAgRP,YAAQ,KAhRD;AAiRP,YAAQ,KAjRD;AAkRP,YAAQ,KAlRD;AAmRP,YAAQ,KAnRD;AAoRP,YAAQ,KApRD;AAqRP,YAAQ,KArRD;AAsRP,YAAQ,SAtRD;AAuRP,YAAQ,YAvRD;AAwRP,YAAQ,WAxRD;AAyRP,YAAQ,WAzRD;AA0RP,YAAQ,SA1RD;AA2RP,YAAQ,YA3RD;AA4RP,YAAQ,UA5RD;AA6RP,YAAQ,SA7RD;AA8RP,YAAQ,KA9RD;AA+RP,YAAQ,MA/RD;AAgSP,YAAQ,KAhSD;AAiSP,YAAQ,KAjSD;AAkSP,YAAQ,KAlSD;AAmSP,YAAQ,MAnSD;AAoSP,YAAQ,MApSD;AAqSP,YAAQ,KArSD;AAsSP,YAAQ,KAtSD;AAuSP,YAAQ,KAvSD;AAwSP,YAAQ,KAxSD;AAySP,YAAQ,KAzSD;AA0SP,YAAQ,KA1SD;AA2SP,YAAQ,KA3SD;AA4SP,YAAQ,KA5SD;AA6SP,YAAQ,KA7SD;AA8SP,YAAQ,KA9SD;AA+SP,YAAQ,KA/SD;AAgTP,YAAQ,MAhTD;AAiTP,YAAQ,KAjTD;AAkTP,YAAQ,KAlTD;AAmTP,YAAQ,KAnTD;AAoTP,YAAQ,KApTD;AAqTP,YAAQ,KArTD;AAsTP,YAAQ,KAtTD;AAuTP,YAAQ,KAvTD;AAwTP,YAAQ,KAxTD;AAyTP,YAAQ,KAzTD;AA0TP,YAAQ,KA1TD;AA2TP,YAAQ,SA3TD;AA4TP,YAAQ,SA5TD;AA6TP,YAAQ,KA7TD;AA8TP,YAAQ,KA9TD;AA+TP,YAAQ,SA/TD;AAgUP,YAAQ,SAhUD;AAiUP,YAAQ,SAjUD;AAkUP,YAAQ,SAlUD;AAmUP,YAAQ,SAnUD;AAoUP,YAAQ,YApUD;AAqUP,YAAQ,KArUD;AAsUP,YAAQ,MAtUD;AAuUP,YAAQ,KAvUD;AAwUP,YAAQ,KAxUD;AAyUP,YAAQ,KAzUD;AA0UP,YAAQ,OA1UD;AA2UP,YAAQ,OA3UD;AA4UP,YAAQ,MA5UD;AA6UP,YAAQ,KA7UD;AA8UP,YAAQ,SA9UD;AA+UP,YAAQ,WA/UD;AAgVP,YAAQ,WAhVD;AAiVP,YAAQ,OAjVD;AAkVP,YAAQ,aAlVD;AAmVP,YAAQ,MAnVD;AAoVP,YAAQ,MApVD;AAqVP,YAAQ,UArVD;AAsVP,YAAQ,MAtVD;AAuVP,YAAQ,OAvVD;AAwVP,YAAQ,aAxVD,EAlCA;;AA4XXC,aAAW,EAAE;AACT,YAAQ,KADC;AAET,YAAQ,KAFC;AAGT,YAAQ,KAHC;AAIT,YAAQ,KAJC;AAKT,YAAQ,MALC;AAMT,YAAQ,KANC;AAOT,YAAQ,MAPC;AAQT,YAAQ,KARC;AAST,YAAQ,KATC;AAUT,YAAQ,KAVC;AAWT,YAAQ,KAXC;AAYT,YAAQ,KAZC;AAaT,YAAQ,KAbC;AAcT,YAAQ,KAdC;AAeT,YAAQ,KAfC;AAgBT,YAAQ,KAhBC;AAiBT,YAAQ,KAjBC;AAkBT,YAAQ,KAlBC;AAmBT,YAAQ,KAnBC;AAoBT,YAAQ,KApBC;AAqBT,YAAQ,KArBC;AAsBT,YAAQ,KAtBC;AAuBT,YAAQ,KAvBC;AAwBT,YAAQ,KAxBC;AAyBT,YAAQ,KAzBC;AA0BT,YAAQ,KA1BC;AA2BT,YAAQ,KA3BC;AA4BT,YAAQ,KA5BC;AA6BT,YAAQ,MA7BC;AA8BT,YAAQ,KA9BC;AA+BT,YAAQ,KA/BC;AAgCT,YAAQ,KAhCC;AAiCT,YAAQ,KAjCC;AAkCT,YAAQ,KAlCC;AAmCT,YAAQ,KAnCC;AAoCT,YAAQ,MApCC;AAqCT,YAAQ,KArCC;AAsCT,YAAQ,KAtCC;AAuCT,YAAQ,KAvCC;AAwCT,YAAQ,KAxCC;AAyCT,YAAQ,KAzCC;AA0CT,YAAQ,KA1CC;AA2CT,YAAQ,KA3CC;AA4CT,YAAQ,KA5CC;AA6CT,YAAQ,KA7CC;AA8CT,YAAQ,KA9CC;AA+CT,YAAQ,KA/CC;AAgDT,YAAQ,KAhDC;AAiDT,YAAQ,KAjDC;AAkDT,YAAQ,KAlDC;AAmDT,YAAQ,IAnDC;AAoDT,YAAQ,KApDC;AAqDT,YAAQ,KArDC;AAsDT,YAAQ,KAtDC;AAuDT,YAAQ,KAvDC;AAwDT,YAAQ,KAxDC;AAyDT,YAAQ,KAzDC;AA0DT,YAAQ,KA1DC;AA2DT,YAAQ,KA3DC;AA4DT,YAAQ,MA5DC;AA6DT,YAAQ,IA7DC;AA8DT,YAAQ,KA9DC;AA+DT,YAAQ,KA/DC;AAgET,YAAQ,KAhEC;AAiET,YAAQ,KAjEC;AAkET,YAAQ,KAlEC;AAmET,YAAQ,KAnEC;AAoET,YAAQ,KApEC;AAqET,YAAQ,MArEC;AAsET,YAAQ,MAtEC;AAuET,YAAQ,KAvEC;AAwET,YAAQ,SAxEC;AAyET,YAAQ,KAzEC;AA0ET,YAAQ,KA1EC;AA2ET,YAAQ,KA3EC;AA4ET,YAAQ,KA5EC;AA6ET,YAAQ,KA7EC;AA8ET,YAAQ,MA9EC;AA+ET,YAAQ,KA/EC;AAgFT,YAAQ,KAhFC;AAiFT,YAAQ,KAjFC;AAkFT,YAAQ,KAlFC;AAmFT,YAAQ,IAnFC;AAoFT,YAAQ,IApFC;AAqFT,YAAQ,KArFC;AAsFT,YAAQ,KAtFC;AAuFT,YAAQ,IAvFC;AAwFT,YAAQ,KAxFC;AAyFT,YAAQ,KAzFC;AA0FT,YAAQ,KA1FC;AA2FT,YAAQ,IA3FC;AA4FT,YAAQ,KA5FC;AA6FT,YAAQ,KA7FC;AA8FT,YAAQ,KA9FC;AA+FT,YAAQ,KA/FC;AAgGT,YAAQ,KAhGC;AAiGT,YAAQ,KAjGC;AAkGT,YAAQ,KAlGC;AAmGT,YAAQ,KAnGC;AAoGT,YAAQ,KApGC;AAqGT,YAAQ,IArGC;AAsGT,YAAQ,KAtGC;AAuGT,YAAQ,KAvGC;AAwGT,YAAQ,KAxGC;AAyGT,YAAQ,KAzGC;AA0GT,YAAQ,KA1GC;AA2GT,YAAQ,KA3GC;AA4GT,YAAQ,IA5GC;AA6GT,YAAQ,KA7GC;AA8GT,YAAQ,KA9GC;AA+GT,YAAQ,KA/GC;AAgHT,YAAQ,KAhHC;AAiHT,YAAQ,KAjHC;AAkHT,YAAQ,KAlHC;AAmHT,YAAQ,KAnHC;AAoHT,YAAQ,KApHC;AAqHT,YAAQ,KArHC;AAsHT,YAAQ,KAtHC;AAuHT,YAAQ,KAvHC;AAwHT,YAAQ,KAxHC;AAyHT,YAAQ,IAzHC;AA0HT,YAAQ,KA1HC;AA2HT,YAAQ,KA3HC;AA4HT,YAAQ,KA5HC;AA6HT,YAAQ,KA7HC;AA8HT,YAAQ,KA9HC;AA+HT,YAAQ,IA/HC;AAgIT,YAAQ,KAhIC;AAiIT,YAAQ,IAjIC;AAkIT,YAAQ,KAlIC;AAmIT,YAAQ,KAnIC;AAoIT,YAAQ,IApIC;AAqIT,YAAQ,KArIC;AAsIT,YAAQ,KAtIC;AAuIT,YAAQ,MAvIC;AAwIT,YAAQ,KAxIC;AAyIT,YAAQ,KAzIC;AA0IT,YAAQ,KA1IC;AA2IT,YAAQ,MA3IC;AA4IT,YAAQ,KA5IC;AA6IT,YAAQ,KA7IC;AA8IT,YAAQ,KA9IC;AA+IT,YAAQ,KA/IC;AAgJT,YAAQ,KAhJC;AAiJT,YAAQ,KAjJC;AAkJT,YAAQ,IAlJC;AAmJT,YAAQ,KAnJC;AAoJT,YAAQ,KApJC;AAqJT,YAAQ,KArJC;AAsJT,YAAQ,KAtJC;AAuJT,YAAQ,KAvJC;AAwJT,YAAQ,KAxJC;AAyJT,YAAQ,KAzJC;AA0JT,YAAQ,QA1JC;AA2JT,YAAQ,KA3JC;AA4JT,YAAQ,KA5JC;AA6JT,YAAQ,KA7JC;AA8JT,YAAQ,KA9JC;AA+JT,YAAQ,KA/JC;AAgKT,YAAQ,SAhKC;AAiKT,YAAQ,SAjKC;AAkKT,YAAQ,YAlKC;AAmKT,YAAQ,KAnKC;AAoKT,YAAQ,KApKC;AAqKT,YAAQ,IArKC;AAsKT,YAAQ,IAtKC;AAuKT,YAAQ,KAvKC;AAwKT,YAAQ,KAxKC;AAyKT,YAAQ,KAzKC;AA0KT,YAAQ,KA1KC;AA2KT,YAAQ,KA3KC;AA4KT,YAAQ,KA5KC;AA6KT,YAAQ,IA7KC;AA8KT,YAAQ,SA9KC;AA+KT,YAAQ,KA/KC;AAgLT,YAAQ,KAhLC;AAiLT,YAAQ,KAjLC;AAkLT,YAAQ,KAlLC;AAmLT,YAAQ,KAnLC;AAoLT,YAAQ,KApLC;AAqLT,YAAQ,KArLC;AAsLT,YAAQ,KAtLC;AAuLT,YAAQ,KAvLC;AAwLT,YAAQ,KAxLC;AAyLT,YAAQ,KAzLC;AA0LT,YAAQ,SA1LC;AA2LT,YAAQ,KA3LC;AA4LT,YAAQ,KA5LC;AA6LT,YAAQ,KA7LC;AA8LT,YAAQ,KA9LC;AA+LT,YAAQ,KA/LC;AAgMT,YAAQ,KAhMC;AAiMT,YAAQ,KAjMC;AAkMT,YAAQ,KAlMC;AAmMT,YAAQ,KAnMC;AAoMT,YAAQ,KApMC;AAqMT,YAAQ,IArMC;AAsMT,YAAQ,KAtMC;AAuMT,YAAQ,KAvMC;AAwMT,YAAQ,KAxMC;AAyMT,YAAQ,KAzMC;AA0MT,YAAQ,KA1MC;AA2MT,YAAQ,KA3MC;AA4MT,YAAQ,MA5MC;AA6MT,YAAQ,MA7MC;AA8MT,YAAQ,MA9MC;AA+MT,YAAQ,KA/MC;AAgNT,YAAQ,KAhNC;AAiNT,YAAQ,KAjNC;AAkNT,YAAQ,KAlNC;AAmNT,YAAQ,KAnNC;AAoNT,YAAQ,IApNC;AAqNT,YAAQ,IArNC;AAsNT,YAAQ,KAtNC;AAuNT,YAAQ,KAvNC;AAwNT,YAAQ,KAxNC;AAyNT,YAAQ,KAzNC;AA0NT,YAAQ,KA1NC;AA2NT,YAAQ,KA3NC;AA4NT,YAAQ,KA5NC;AA6NT,YAAQ,KA7NC;AA8NT,YAAQ,KA9NC;AA+NT,YAAQ,IA/NC;AAgOT,YAAQ,IAhOC;AAiOT,YAAQ,IAjOC;AAkOT,YAAQ,KAlOC;AAmOT,YAAQ,IAnOC;AAoOT,YAAQ,IApOC;AAqOT,YAAQ,IArOC;AAsOT,YAAQ,KAtOC;AAuOT,YAAQ,KAvOC;AAwOT,YAAQ,KAxOC;AAyOT,YAAQ,KAzOC;AA0OT,YAAQ,KA1OC;AA2OT,YAAQ,KA3OC;AA4OT,YAAQ,KA5OC;AA6OT,YAAQ,KA7OC;AA8OT,YAAQ,IA9OC;AA+OT,YAAQ,KA/OC;AAgPT,YAAQ,KAhPC;AAiPT,YAAQ,IAjPC;AAkPT,YAAQ,KAlPC;AAmPT,YAAQ,KAnPC;AAoPT,YAAQ,KApPC;AAqPT,YAAQ,KArPC;AAsPT,YAAQ,KAtPC;AAuPT,YAAQ,KAvPC;AAwPT,YAAQ,KAxPC;AAyPT,YAAQ,KAzPC;AA0PT,YAAQ,IA1PC;AA2PT,YAAQ,KA3PC;AA4PT,YAAQ,KA5PC;AA6PT,YAAQ,KA7PC;AA8PT,YAAQ,KA9PC;AA+PT,YAAQ,KA/PC;AAgQT,YAAQ,KAhQC;AAiQT,YAAQ,KAjQC;AAkQT,YAAQ,KAlQC;AAmQT,YAAQ,KAnQC;AAoQT,YAAQ,IApQC;AAqQT,YAAQ,KArQC;AAsQT,YAAQ,KAtQC;AAuQT,YAAQ,KAvQC;AAwQT,YAAQ,KAxQC;AAyQT,YAAQ,KAzQC;AA0QT,YAAQ,KA1QC;AA2QT,YAAQ,KA3QC;AA4QT,YAAQ,KA5QC;AA6QT,YAAQ,KA7QC;AA8QT,YAAQ,IA9QC;AA+QT,YAAQ,KA/QC;AAgRT,YAAQ,IAhRC;AAiRT,YAAQ,KAjRC;AAkRT,YAAQ,KAlRC;AAmRT,YAAQ,KAnRC;AAoRT,YAAQ,KApRC;AAqRT,YAAQ,KArRC;AAsRT,YAAQ,KAtRC;AAuRT,YAAQ,KAvRC;AAwRT,YAAQ,IAxRC;AAyRT,YAAQ,KAzRC;AA0RT,YAAQ,KA1RC;AA2RT,YAAQ,KA3RC;AA4RT,YAAQ,KA5RC;AA6RT,YAAQ,KA7RC;AA8RT,YAAQ,KA9RC;AA+RT,YAAQ,KA/RC;AAgST,YAAQ,KAhSC;AAiST,YAAQ,KAjSC;AAkST,YAAQ,KAlSC;AAmST,YAAQ,KAnSC;AAoST,YAAQ,KApSC;AAqST,YAAQ,KArSC;AAsST,YAAQ,KAtSC;AAuST,YAAQ,KAvSC;AAwST,YAAQ,IAxSC;AAyST,YAAQ,KAzSC;AA0ST,YAAQ,KA1SC;AA2ST,YAAQ,IA3SC;AA4ST,YAAQ,KA5SC;AA6ST,YAAQ,KA7SC;AA8ST,YAAQ,IA9SC;AA+ST,YAAQ,KA/SC;AAgTT,YAAQ,IAhTC;AAiTT,YAAQ,KAjTC;AAkTT,YAAQ,KAlTC;AAmTT,YAAQ,KAnTC;AAoTT,YAAQ,KApTC;AAqTT,YAAQ,KArTC;AAsTT,YAAQ,KAtTC;AAuTT,YAAQ,IAvTC;AAwTT,YAAQ,IAxTC;AAyTT,YAAQ,KAzTC;AA0TT,YAAQ,KA1TC;AA2TT,YAAQ,IA3TC;AA4TT,YAAQ,KA5TC;AA6TT,YAAQ,KA7TC;AA8TT,YAAQ,KA9TC;AA+TT,YAAQ,KA/TC;AAgUT,YAAQ,KAhUC;AAiUT,YAAQ,KAjUC;AAkUT,YAAQ,KAlUC;AAmUT,YAAQ,KAnUC;AAoUT,YAAQ,KApUC;AAqUT,YAAQ,OArUC;AAsUT,YAAQ,MAtUC;AAuUT,YAAQ,OAvUC;AAwUT,YAAQ,MAxUC;AAyUT,YAAQ,KAzUC;AA0UT,YAAQ,KA1UC;AA2UT,YAAQ,MA3UC;AA4UT,YAAQ,KA5UC;AA6UT,YAAQ,KA7UC;AA8UT,YAAQ,QA9UC;AA+UT,YAAQ,KA/UC;AAgVT,YAAQ,OAhVC;AAiVT,YAAQ,KAjVC;AAkVT,YAAQ,WAlVC;AAmVT,YAAQ,MAnVC;AAoVT,YAAQ,KApVC;AAqVT,YAAQ,KArVC;AAsVT,YAAQ,KAtVC;AAuVT,YAAQ,MAvVC;AAwVT,YAAQ,KAxVC;AAyVT,YAAQ,QAzVC;AA0VT,YAAQ,MA1VC;AA2VT,YAAQ,MA3VC;AA4VT,YAAQ,KA5VC;AA6VT,YAAQ,OA7VC;AA8VT,YAAQ,MA9VC;AA+VT,YAAQ,MA/VC;AAgWT,YAAQ,KAhWC;AAiWT,YAAQ,KAjWC;AAkWT,YAAQ,MAlWC;AAmWT,YAAQ,SAnWC;AAoWT,YAAQ,SApWC;AAqWT,YAAQ,KArWC;AAsWT,YAAQ,KAtWC;AAuWT,YAAQ,KAvWC;AAwWT,YAAQ,MAxWC;AAyWT,YAAQ,OAzWC;AA0WT,YAAQ,KA1WC;AA2WT,YAAQ,MA3WC;AA4WT,YAAQ,MA5WC;AA6WT,YAAQ,MA7WC;AA8WT,YAAQ,OA9WC;AA+WT,YAAQ,MA/WC;AAgXT,YAAQ,KAhXC;AAiXT,YAAQ,KAjXC;AAkXT,YAAQ,OAlXC;AAmXT,YAAQ,MAnXC;AAoXT,YAAQ,OApXC;AAqXT,YAAQ,KArXC;AAsXT,YAAQ,aAtXC;AAuXT,YAAQ,QAvXC;AAwXT,YAAQ,SAxXC;AAyXT,YAAQ,OAzXC;AA0XT,YAAQ,QA1XC;AA2XT,YAAQ,QA3XC;AA4XT,YAAQ,MA5XC;AA6XT,YAAQ,MA7XC;AA8XT,YAAQ,MA9XC;AA+XT,YAAQ,OA/XC;AAgYT,YAAQ,KAhYC;AAiYT,YAAQ,KAjYC;AAkYT,YAAQ,KAlYC;AAmYT,YAAQ,KAnYC;AAoYT,YAAQ,OApYC;AAqYT,YAAQ,OArYC;AAsYT,YAAQ,OAtYC;AAuYT,YAAQ,MAvYC;AAwYT,YAAQ,KAxYC;AAyYT,YAAQ,KAzYC;AA0YT,YAAQ,KA1YC;AA2YT,YAAQ,KA3YC;AA4YT,YAAQ,KA5YC;AA6YT,YAAQ,KA7YC;AA8YT,YAAQ,SA9YC;AA+YT,YAAQ,SA/YC;AAgZT,YAAQ,SAhZC;AAiZT,YAAQ,MAjZC;AAkZT,YAAQ,KAlZC;AAmZT,YAAQ,OAnZC;AAoZT,YAAQ,MApZC;AAqZT,YAAQ,SArZC;AAsZT,YAAQ,SAtZC;AAuZT,YAAQ,MAvZC;AAwZT,YAAQ,KAxZC;AAyZT,YAAQ,OAzZC;AA0ZT,YAAQ,OA1ZC;AA2ZT,YAAQ,MA3ZC;AA4ZT,YAAQ,OA5ZC;AA6ZT,YAAQ,OA7ZC;AA8ZT,YAAQ,QA9ZC;AA+ZT,YAAQ,QA/ZC;AAgaT,YAAQ,MAhaC;AAiaT,YAAQ,KAjaC;AAkaT,YAAQ,MAlaC;AAmaT,YAAQ,KAnaC;AAoaT,YAAQ,KApaC;AAqaT,YAAQ,OAraC;AAsaT,YAAQ,OAtaC;AAuaT,YAAQ,MAvaC;AAwaT,YAAQ,KAxaC;AAyaT,YAAQ,KAzaC;AA0aT,YAAQ,KA1aC;AA2aT,YAAQ,KA3aC;AA4aT,YAAQ,KA5aC;AA6aT,YAAQ,MA7aC;AA8aT,YAAQ,KA9aC;AA+aT,YAAQ,MA/aC;AAgbT,YAAQ,KAhbC;AAibT,YAAQ,KAjbC;AAkbT,YAAQ,KAlbC;AAmbT,YAAQ,KAnbC;AAobT,YAAQ,KApbC;AAqbT,YAAQ,KArbC;AAsbT,YAAQ,KAtbC;AAubT,YAAQ,MAvbC;AAwbT,YAAQ,MAxbC;AAybT,YAAQ,MAzbC;AA0bT,YAAQ,KA1bC;AA2bT,YAAQ,MA3bC;AA4bT,YAAQ,KA5bC;AA6bT,YAAQ,MA7bC;AA8bT,YAAQ,KA9bC;AA+bT,YAAQ,KA/bC;AAgcT,YAAQ,KAhcC;AAicT,YAAQ,KAjcC;AAkcT,YAAQ,KAlcC;AAmcT,YAAQ,KAncC;AAocT,YAAQ,SApcC;AAqcT,YAAQ,KArcC;AAscT,YAAQ,KAtcC;AAucT,YAAQ,KAvcC;AAwcT,YAAQ,KAxcC;AAycT,YAAQ,KAzcC;AA0cT,YAAQ,KA1cC;AA2cT,YAAQ,SA3cC;AA4cT,YAAQ,SA5cC;AA6cT,YAAQ,KA7cC;AA8cT,YAAQ,KA9cC;AA+cT,YAAQ,KA/cC;AAgdT,YAAQ,KAhdC;AAidT,YAAQ,SAjdC;AAkdT,YAAQ,SAldC;AAmdT,YAAQ,KAndC;AAodT,YAAQ,KApdC;AAqdT,YAAQ,KArdC;AAsdT,YAAQ,SAtdC;AAudT,YAAQ,KAvdC;AAwdT,YAAQ,KAxdC;AAydT,YAAQ,KAzdC;AA0dT,YAAQ,KA1dC;AA2dT,YAAQ,KA3dC;AA4dT,YAAQ,KA5dC;AA6dT,YAAQ,IA7dC;AA8dT,YAAQ,KA9dC;AA+dT,YAAQ,KA/dC;AAgeT,YAAQ,KAheC;AAieT,YAAQ,KAjeC;AAkeT,YAAQ,MAleC;AAmeT,YAAQ,KAneC;AAoeT,YAAQ,KApeC;AAqeT,YAAQ,MAreC;AAseT,YAAQ,KAteC;AAueT,YAAQ,KAveC;AAweT,YAAQ,KAxeC;AAyeT,YAAQ,MAzeC;AA0eT,YAAQ,KA1eC;AA2eT,YAAQ,UA3eC;AA4eT,YAAQ,KA5eC;AA6eT,YAAQ,KA7eC;AA8eT,YAAQ,KA9eC;AA+eT,YAAQ,KA/eC;AAgfT,YAAQ,MAhfC;AAifT,YAAQ,MAjfC;AAkfT,YAAQ,KAlfC;AAmfT,YAAQ,KAnfC;AAofT,YAAQ,MApfC;AAqfT,YAAQ,MArfC;AAsfT,YAAQ,KAtfC;AAufT,YAAQ,KAvfC;AAwfT,YAAQ,KAxfC;AAyfT,YAAQ,KAzfC;AA0fT,YAAQ,KA1fC;AA2fT,YAAQ,KA3fC;AA4fT,YAAQ,KA5fC;AA6fT,YAAQ,MA7fC;AA8fT,YAAQ,KA9fC;AA+fT,YAAQ,KA/fC;AAggBT,YAAQ,KAhgBC;AAigBT,YAAQ,KAjgBC;AAkgBT,YAAQ,KAlgBC;AAmgBT,YAAQ,aAngBC;AAogBT,YAAQ,KApgBC;AAqgBT,YAAQ,KArgBC;AAsgBT,YAAQ,KAtgBC;AAugBT,YAAQ,KAvgBC;AAwgBT,YAAQ,KAxgBC;AAygBT,YAAQ,KAzgBC;AA0gBT,YAAQ,KA1gBC;AA2gBT,YAAQ,KA3gBC;AA4gBT,YAAQ,KA5gBC;AA6gBT,YAAQ,KA7gBC;AA8gBT,YAAQ,KA9gBC;AA+gBT,YAAQ,KA/gBC;AAghBT,YAAQ,KAhhBC;AAihBT,YAAQ,KAjhBC;AAkhBT,YAAQ,KAlhBC;AAmhBT,YAAQ,KAnhBC;AAohBT,YAAQ,KAphBC;AAqhBT,YAAQ,KArhBC;AAshBT,YAAQ,KAthBC;AAuhBT,YAAQ,KAvhBC;AAwhBT,YAAQ,KAxhBC;AAyhBT,YAAQ,KAzhBC;AA0hBT,YAAQ,KA1hBC;AA2hBT,YAAQ,KA3hBC;AA4hBT,YAAQ,KA5hBC;AA6hBT,YAAQ,KA7hBC;AA8hBT,YAAQ,KA9hBC;AA+hBT,YAAQ,KA/hBC;AAgiBT,YAAQ,KAhiBC;AAiiBT,YAAQ,KAjiBC;AAkiBT,YAAQ,SAliBC;AAmiBT,YAAQ,MAniBC;AAoiBT,YAAQ,KApiBC;AAqiBT,YAAQ,KAriBC;AAsiBT,YAAQ,KAtiBC;AAuiBT,YAAQ,KAviBC;AAwiBT,YAAQ,KAxiBC;AAyiBT,YAAQ,KAziBC;AA0iBT,YAAQ,MA1iBC;AA2iBT,YAAQ,KA3iBC;AA4iBT,YAAQ,KA5iBC;AA6iBT,YAAQ,KA7iBC;AA8iBT,YAAQ,MA9iBC;AA+iBT,YAAQ,KA/iBC;AAgjBT,YAAQ,KAhjBC;AAijBT,YAAQ,KAjjBC;AAkjBT,YAAQ,KAljBC;AAmjBT,YAAQ,KAnjBC;AAojBT,YAAQ,UApjBC;AAqjBT,YAAQ,KArjBC;AAsjBT,YAAQ,KAtjBC;AAujBT,YAAQ,aAvjBC;AAwjBT,YAAQ,KAxjBC;AAyjBT,YAAQ,KAzjBC;AA0jBT,YAAQ,KA1jBC;AA2jBT,YAAQ,KA3jBC;AA4jBT,YAAQ,KA5jBC;AA6jBT,YAAQ,KA7jBC;AA8jBT,YAAQ,KA9jBC;AA+jBT,YAAQ,KA/jBC;AAgkBT,YAAQ,KAhkBC;AAikBT,YAAQ,KAjkBC;AAkkBT,YAAQ,KAlkBC;AAmkBT,YAAQ,KAnkBC;AAokBT,YAAQ,KApkBC;AAqkBT,YAAQ,KArkBC;AAskBT,YAAQ,KAtkBC;AAukBT,YAAQ,KAvkBC;AAwkBT,YAAQ,KAxkBC;AAykBT,YAAQ,KAzkBC;AA0kBT,YAAQ,KA1kBC;AA2kBT,YAAQ,KA3kBC;AA4kBT,YAAQ,KA5kBC;AA6kBT,YAAQ,KA7kBC;AA8kBT,YAAQ,KA9kBC;AA+kBT,YAAQ,KA/kBC;AAglBT,YAAQ,KAhlBC;AAilBT,YAAQ,KAjlBC;AAklBT,YAAQ,KAllBC;AAmlBT,YAAQ,IAnlBC;AAolBT,YAAQ,KAplBC;AAqlBT,YAAQ,KArlBC;AAslBT,YAAQ,KAtlBC;AAulBT,YAAQ,KAvlBC;AAwlBT,YAAQ,KAxlBC;AAylBT,YAAQ,KAzlBC;AA0lBT,YAAQ,KA1lBC;AA2lBT,YAAQ,KA3lBC;AA4lBT,YAAQ,KA5lBC;AA6lBT,YAAQ,MA7lBC;AA8lBT,YAAQ,OA9lBC;AA+lBT,YAAQ,MA/lBC;AAgmBT,YAAQ,UAhmBC;AAimBT,YAAQ,KAjmBC;AAkmBT,YAAQ,KAlmBC;AAmmBT,YAAQ,KAnmBC;AAomBT,YAAQ,KApmBC;AAqmBT,YAAQ,KArmBC;AAsmBT,YAAQ,KAtmBC;AAumBT,YAAQ,KAvmBC;AAwmBT,YAAQ,KAxmBC;AAymBT,YAAQ,KAzmBC;AA0mBT,YAAQ,KA1mBC;AA2mBT,YAAQ,KA3mBC;AA4mBT,YAAQ,KA5mBC;AA6mBT,YAAQ,KA7mBC;AA8mBT,YAAQ,MA9mBC;AA+mBT,YAAQ,KA/mBC;AAgnBT,YAAQ,KAhnBC;AAinBT,YAAQ,KAjnBC;AAknBT,YAAQ,KAlnBC;AAmnBT,YAAQ,KAnnBC;AAonBT,YAAQ,KApnBC;AAqnBT,YAAQ,KArnBC;AAsnBT,YAAQ,KAtnBC;AAunBT,YAAQ,KAvnBC;AAwnBT,YAAQ,KAxnBC;AAynBT,YAAQ,KAznBC;AA0nBT,YAAQ,KA1nBC;AA2nBT,YAAQ,KA3nBC;AA4nBT,YAAQ,KA5nBC;AA6nBT,YAAQ,MA7nBC;AA8nBT,YAAQ,KA9nBC;AA+nBT,YAAQ,KA/nBC;AAgoBT,YAAQ,KAhoBC;AAioBT,YAAQ,KAjoBC;AAkoBT,YAAQ,KAloBC;AAmoBT,YAAQ,MAnoBC;AAooBT,YAAQ,KApoBC;AAqoBT,YAAQ,MAroBC;AAsoBT,YAAQ,KAtoBC;AAuoBT,YAAQ,KAvoBC;AAwoBT,YAAQ,KAxoBC;AAyoBT,YAAQ,KAzoBC;AA0oBT,YAAQ,KA1oBC;AA2oBT,YAAQ,YA3oBC;AA4oBT,YAAQ,KA5oBC;AA6oBT,YAAQ,KA7oBC;AA8oBT,YAAQ,KA9oBC;AA+oBT,YAAQ,KA/oBC;AAgpBT,YAAQ,KAhpBC;AAipBT,YAAQ,KAjpBC;AAkpBT,YAAQ,KAlpBC;AAmpBT,YAAQ,MAnpBC;AAopBT,YAAQ,KAppBC;AAqpBT,YAAQ,MArpBC;AAspBT,YAAQ,MAtpBC;AAupBT,YAAQ,KAvpBC;AAwpBT,YAAQ,MAxpBC;AAypBT,YAAQ,KAzpBC;AA0pBT,YAAQ,MA1pBC;AA2pBT,YAAQ,KA3pBC;AA4pBT,YAAQ,KA5pBC;AA6pBT,YAAQ,KA7pBC;AA8pBT,YAAQ,KA9pBC;AA+pBT,YAAQ,KA/pBC;AAgqBT,YAAQ,IAhqBC;AAiqBT,YAAQ,KAjqBC;AAkqBT,YAAQ,KAlqBC;AAmqBT,YAAQ,KAnqBC;AAoqBT,YAAQ,KApqBC;AAqqBT,YAAQ,KArqBC;AAsqBT,YAAQ,KAtqBC;AAuqBT,YAAQ,KAvqBC;AAwqBT,YAAQ,KAxqBC;AAyqBT,YAAQ,MAzqBC;AA0qBT,YAAQ,KA1qBC;AA2qBT,YAAQ,KA3qBC;AA4qBT,YAAQ,KA5qBC;AA6qBT,YAAQ,KA7qBC;AA8qBT,YAAQ,KA9qBC;AA+qBT,YAAQ,KA/qBC;AAgrBT,YAAQ,MAhrBC;AAirBT,YAAQ,KAjrBC;AAkrBT,YAAQ,KAlrBC;AAmrBT,YAAQ,KAnrBC;AAorBT,YAAQ,KAprBC;AAqrBT,YAAQ,KArrBC;AAsrBT,YAAQ,KAtrBC;AAurBT,YAAQ,KAvrBC;AAwrBT,YAAQ,KAxrBC;AAyrBT,YAAQ,KAzrBC;AA0rBT,YAAQ,OA1rBC;AA2rBT,YAAQ,KA3rBC;AA4rBT,YAAQ,KA5rBC;AA6rBT,YAAQ,KA7rBC;AA8rBT,YAAQ,KA9rBC;AA+rBT,YAAQ,KA/rBC;AAgsBT,YAAQ,KAhsBC;AAisBT,YAAQ,KAjsBC;AAksBT,YAAQ,KAlsBC;AAmsBT,YAAQ,KAnsBC;AAosBT,YAAQ,KApsBC;AAqsBT,YAAQ,KArsBC;AAssBT,YAAQ,KAtsBC;AAusBT,YAAQ,KAvsBC;AAwsBT,YAAQ,KAxsBC;AAysBT,YAAQ,KAzsBC;AA0sBT,YAAQ,KA1sBC;AA2sBT,YAAQ,KA3sBC;AA4sBT,YAAQ,KA5sBC;AA6sBT,YAAQ,KA7sBC;AA8sBT,YAAQ,KA9sBC;AA+sBT,YAAQ,KA/sBC;AAgtBT,YAAQ,KAhtBC;AAitBT,YAAQ,KAjtBC;AAktBT,YAAQ,MAltBC;AAmtBT,YAAQ,KAntBC;AAotBT,YAAQ,KAptBC;AAqtBT,YAAQ,KArtBC;AAstBT,YAAQ,KAttBC;AAutBT,YAAQ,KAvtBC;AAwtBT,YAAQ,KAxtBC;AAytBT,YAAQ,KAztBC;AA0tBT,YAAQ,KA1tBC;AA2tBT,YAAQ,KA3tBC;AA4tBT,YAAQ,KA5tBC;AA6tBT,YAAQ,KA7tBC;AA8tBT,YAAQ,MA9tBC;AA+tBT,YAAQ,KA/tBC;AAguBT,YAAQ,KAhuBC;AAiuBT,YAAQ,KAjuBC;AAkuBT,YAAQ,KAluBC;AAmuBT,YAAQ,KAnuBC;AAouBT,YAAQ,KApuBC;AAquBT,YAAQ,KAruBC;AAsuBT,YAAQ,KAtuBC;AAuuBT,YAAQ,KAvuBC;AAwuBT,YAAQ,KAxuBC;AAyuBT,YAAQ,KAzuBC;AA0uBT,YAAQ,KA1uBC;AA2uBT,YAAQ,KA3uBC;AA4uBT,YAAQ,KA5uBC;AA6uBT,YAAQ,KA7uBC;AA8uBT,YAAQ,KA9uBC;AA+uBT,YAAQ,IA/uBC;AAgvBT,YAAQ,IAhvBC;AAivBT,YAAQ,KAjvBC;AAkvBT,YAAQ,KAlvBC;AAmvBT,YAAQ,KAnvBC;AAovBT,YAAQ,KApvBC;AAqvBT,YAAQ,KArvBC;AAsvBT,YAAQ,KAtvBC;AAuvBT,YAAQ,KAvvBC;AAwvBT,YAAQ,KAxvBC;AAyvBT,YAAQ,KAzvBC;AA0vBT,YAAQ,KA1vBC;AA2vBT,YAAQ,KA3vBC;AA4vBT,YAAQ,KA5vBC;AA6vBT,YAAQ,KA7vBC;AA8vBT,YAAQ,KA9vBC;AA+vBT,YAAQ,KA/vBC;AAgwBT,YAAQ,MAhwBC;AAiwBT,YAAQ,KAjwBC;AAkwBT,YAAQ,KAlwBC;AAmwBT,YAAQ,KAnwBC;AAowBT,YAAQ,KApwBC;AAqwBT,YAAQ,KArwBC;AAswBT,YAAQ,KAtwBC;AAuwBT,YAAQ,KAvwBC;AAwwBT,YAAQ,KAxwBC;AAywBT,YAAQ,KAzwBC;AA0wBT,YAAQ,KA1wBC;AA2wBT,YAAQ,KA3wBC;AA4wBT,YAAQ,KA5wBC;AA6wBT,YAAQ,KA7wBC;AA8wBT,YAAQ,KA9wBC;AA+wBT,YAAQ,KA/wBC;AAgxBT,YAAQ,KAhxBC;AAixBT,YAAQ,KAjxBC;AAkxBT,YAAQ,KAlxBC;AAmxBT,YAAQ,MAnxBC;AAoxBT,YAAQ,KApxBC;AAqxBT,YAAQ,KArxBC;AAsxBT,YAAQ,KAtxBC;AAuxBT,YAAQ,KAvxBC;AAwxBT,YAAQ,KAxxBC;AAyxBT,YAAQ,KAzxBC;AA0xBT,YAAQ,KA1xBC;AA2xBT,YAAQ,KA3xBC;AA4xBT,YAAQ,KA5xBC;AA6xBT,YAAQ,KA7xBC;AA8xBT,YAAQ,KA9xBC;AA+xBT,YAAQ,KA/xBC;AAgyBT,YAAQ,KAhyBC;AAiyBT,YAAQ,KAjyBC;AAkyBT,YAAQ,KAlyBC;AAmyBT,YAAQ,KAnyBC;AAoyBT,YAAQ,KApyBC;AAqyBT,YAAQ,KAryBC;AAsyBT,YAAQ,KAtyBC;AAuyBT,YAAQ,KAvyBC;AAwyBT,YAAQ,KAxyBC;AAyyBT,YAAQ,KAzyBC;AA0yBT,YAAQ,KA1yBC;AA2yBT,YAAQ,KA3yBC;AA4yBT,YAAQ,KA5yBC;AA6yBT,YAAQ,KA7yBC;AA8yBT,YAAQ,KA9yBC;AA+yBT,YAAQ,KA/yBC;AAgzBT,YAAQ,KAhzBC;AAizBT,YAAQ,KAjzBC;AAkzBT,YAAQ,KAlzBC;AAmzBT,YAAQ,KAnzBC;AAozBT,YAAQ,KApzBC;AAqzBT,YAAQ,KArzBC;AAszBT,YAAQ,KAtzBC;AAuzBT,YAAQ,KAvzBC;AAwzBT,YAAQ,KAxzBC;AAyzBT,YAAQ,KAzzBC;AA0zBT,YAAQ,KA1zBC;AA2zBT,YAAQ,KA3zBC;AA4zBT,YAAQ,KA5zBC;AA6zBT,YAAQ,KA7zBC;AA8zBT,YAAQ,KA9zBC;AA+zBT,YAAQ,KA/zBC;AAg0BT,YAAQ,KAh0BC;AAi0BT,YAAQ,KAj0BC;AAk0BT,YAAQ,KAl0BC;AAm0BT,YAAQ,KAn0BC;AAo0BT,YAAQ,KAp0BC;AAq0BT,YAAQ,KAr0BC;AAs0BT,YAAQ,KAt0BC;AAu0BT,YAAQ,KAv0BC;AAw0BT,YAAQ,KAx0BC;AAy0BT,YAAQ,KAz0BC;AA00BT,YAAQ,KA10BC;AA20BT,YAAQ,KA30BC;AA40BT,YAAQ,KA50BC;AA60BT,YAAQ,KA70BC;AA80BT,YAAQ,KA90BC;AA+0BT,YAAQ,KA/0BC;AAg1BT,YAAQ,KAh1BC;AAi1BT,YAAQ,KAj1BC;AAk1BT,YAAQ,KAl1BC;AAm1BT,YAAQ,KAn1BC;AAo1BT,YAAQ,KAp1BC;AAq1BT,YAAQ,KAr1BC;AAs1BT,YAAQ,KAt1BC;AAu1BT,YAAQ,KAv1BC;AAw1BT,YAAQ,KAx1BC;AAy1BT,YAAQ,KAz1BC;AA01BT,YAAQ,KA11BC;AA21BT,YAAQ,KA31BC;AA41BT,YAAQ,KA51BC;AA61BT,YAAQ,KA71BC;AA81BT,YAAQ,KA91BC;AA+1BT,YAAQ,KA/1BC;AAg2BT,YAAQ,KAh2BC;AAi2BT,YAAQ,KAj2BC;AAk2BT,YAAQ,KAl2BC;AAm2BT,YAAQ,KAn2BC;AAo2BT,YAAQ,KAp2BC;AAq2BT,YAAQ,KAr2BC;AAs2BT,YAAQ,KAt2BC;AAu2BT,YAAQ,KAv2BC;AAw2BT,YAAQ,KAx2BC;AAy2BT,YAAQ,KAz2BC;AA02BT,YAAQ,KA12BC;AA22BT,YAAQ,KA32BC;AA42BT,YAAQ,KA52BC;AA62BT,YAAQ,KA72BC;AA82BT,YAAQ,KA92BC;AA+2BT,YAAQ,KA/2BC;AAg3BT,YAAQ,KAh3BC;AAi3BT,YAAQ,KAj3BC;AAk3BT,YAAQ,KAl3BC;AAm3BT,YAAQ,KAn3BC;AAo3BT,YAAQ,KAp3BC;AAq3BT,YAAQ,KAr3BC;AAs3BT,YAAQ,KAt3BC;AAu3BT,YAAQ,KAv3BC;AAw3BT,YAAQ,KAx3BC;AAy3BT,YAAQ,KAz3BC;AA03BT,YAAQ,KA13BC;AA23BT,YAAQ,KA33BC;AA43BT,YAAQ,KA53BC;AA63BT,YAAQ,KA73BC;AA83BT,YAAQ,KA93BC;AA+3BT,YAAQ,KA/3BC;AAg4BT,YAAQ,KAh4BC;AAi4BT,YAAQ,KAj4BC;AAk4BT,YAAQ,KAl4BC;AAm4BT,YAAQ,KAn4BC;AAo4BT,YAAQ,KAp4BC;AAq4BT,YAAQ,KAr4BC;AAs4BT,YAAQ,KAt4BC;AAu4BT,YAAQ,KAv4BC;AAw4BT,YAAQ,KAx4BC;AAy4BT,YAAQ,KAz4BC;AA04BT,YAAQ,KA14BC;AA24BT,YAAQ,KA34BC;AA44BT,YAAQ,KA54BC;AA64BT,YAAQ,KA74BC;AA84BT,YAAQ,KA94BC;AA+4BT,YAAQ,KA/4BC;AAg5BT,YAAQ,SAh5BC;AAi5BT,YAAQ,KAj5BC;AAk5BT,YAAQ,KAl5BC;AAm5BT,YAAQ,KAn5BC;AAo5BT,YAAQ,KAp5BC;AAq5BT,YAAQ,KAr5BC;AAs5BT,YAAQ,KAt5BC;AAu5BT,YAAQ,KAv5BC;AAw5BT,YAAQ,KAx5BC;AAy5BT,YAAQ,KAz5BC;AA05BT,YAAQ,KA15BC;AA25BT,YAAQ,KA35BC;AA45BT,YAAQ,KA55BC;AA65BT,YAAQ,KA75BC;AA85BT,YAAQ,KA95BC;AA+5BT,YAAQ,KA/5BC;AAg6BT,YAAQ,KAh6BC;AAi6BT,YAAQ,KAj6BC;AAk6BT,YAAQ,KAl6BC;AAm6BT,YAAQ,MAn6BC;AAo6BT,YAAQ,KAp6BC;AAq6BT,YAAQ,KAr6BC;AAs6BT,YAAQ,KAt6BC;AAu6BT,YAAQ,KAv6BC;AAw6BT,YAAQ,KAx6BC;AAy6BT,YAAQ,KAz6BC;AA06BT,YAAQ,KA16BC;AA26BT,YAAQ,MA36BC;AA46BT,YAAQ,MA56BC;AA66BT,YAAQ,MA76BC;AA86BT,YAAQ,KA96BC;AA+6BT,YAAQ,KA/6BC;AAg7BT,YAAQ,IAh7BC;AAi7BT,YAAQ,KAj7BC;AAk7BT,YAAQ,KAl7BC;AAm7BT,YAAQ,KAn7BC;AAo7BT,YAAQ,KAp7BC;AAq7BT,YAAQ,KAr7BC;AAs7BT,YAAQ,IAt7BC;AAu7BT,YAAQ,KAv7BC;AAw7BT,YAAQ,KAx7BC;AAy7BT,YAAQ,KAz7BC;AA07BT,YAAQ,KA17BC;AA27BT,YAAQ,KA37BC;AA47BT,YAAQ,KA57BC;AA67BT,YAAQ,IA77BC;AA87BT,YAAQ,KA97BC;AA+7BT,YAAQ,KA/7BC;AAg8BT,YAAQ,KAh8BC;AAi8BT,YAAQ,KAj8BC;AAk8BT,YAAQ,KAl8BC;AAm8BT,YAAQ,KAn8BC;AAo8BT,YAAQ,KAp8BC;AAq8BT,YAAQ,KAr8BC;AAs8BT,YAAQ,KAt8BC;AAu8BT,YAAQ,KAv8BC;AAw8BT,YAAQ,KAx8BC;AAy8BT,YAAQ,KAz8BC;AA08BT,YAAQ,KA18BC;AA28BT,YAAQ,KA38BC;AA48BT,YAAQ,IA58BC;AA68BT,YAAQ,KA78BC;AA88BT,YAAQ,IA98BC;AA+8BT,YAAQ,KA/8BC;AAg9BT,YAAQ,KAh9BC;AAi9BT,YAAQ,KAj9BC;AAk9BT,YAAQ,KAl9BC;AAm9BT,YAAQ,KAn9BC;AAo9BT,YAAQ,KAp9BC;AAq9BT,YAAQ,KAr9BC;AAs9BT,YAAQ,KAt9BC;AAu9BT,YAAQ,KAv9BC;AAw9BT,YAAQ,KAx9BC;AAy9BT,YAAQ,KAz9BC;AA09BT,YAAQ,KA19BC;AA29BT,YAAQ,KA39BC;AA49BT,YAAQ,KA59BC;AA69BT,YAAQ,KA79BC;AA89BT,YAAQ,KA99BC;AA+9BT,YAAQ,KA/9BC;AAg+BT,YAAQ,KAh+BC;AAi+BT,YAAQ,KAj+BC;AAk+BT,YAAQ,IAl+BC;AAm+BT,YAAQ,KAn+BC;AAo+BT,YAAQ,IAp+BC;AAq+BT,YAAQ,KAr+BC;AAs+BT,YAAQ,KAt+BC;AAu+BT,YAAQ,KAv+BC;AAw+BT,YAAQ,KAx+BC;AAy+BT,YAAQ,KAz+BC;AA0+BT,YAAQ,KA1+BC;AA2+BT,YAAQ,KA3+BC;AA4+BT,YAAQ,KA5+BC;AA6+BT,YAAQ,KA7+BC;AA8+BT,YAAQ,KA9+BC;AA++BT,YAAQ,KA/+BC;AAg/BT,YAAQ,KAh/BC;AAi/BT,YAAQ,KAj/BC;AAk/BT,YAAQ,KAl/BC;AAm/BT,YAAQ,KAn/BC;AAo/BT,YAAQ,KAp/BC;AAq/BT,YAAQ,KAr/BC;AAs/BT,YAAQ,KAt/BC;AAu/BT,YAAQ,IAv/BC;AAw/BT,YAAQ,KAx/BC;AAy/BT,YAAQ,KAz/BC;AA0/BT,YAAQ,KA1/BC;AA2/BT,YAAQ,KA3/BC;AA4/BT,YAAQ,KA5/BC;AA6/BT,YAAQ,KA7/BC;AA8/BT,YAAQ,KA9/BC;AA+/BT,YAAQ,KA//BC;AAggCT,YAAQ,KAhgCC;AAigCT,YAAQ,KAjgCC;AAkgCT,YAAQ,KAlgCC;AAmgCT,YAAQ,KAngCC;AAogCT,YAAQ,KApgCC;AAqgCT,YAAQ,KArgCC;AAsgCT,YAAQ,KAtgCC;AAugCT,YAAQ,KAvgCC;AAwgCT,YAAQ,KAxgCC;AAygCT,YAAQ,KAzgCC;AA0gCT,YAAQ,KA1gCC;AA2gCT,YAAQ,KA3gCC;AA4gCT,YAAQ,KA5gCC;AA6gCT,YAAQ,KA7gCC;AA8gCT,YAAQ,KA9gCC;AA+gCT,YAAQ,KA/gCC;AAghCT,YAAQ,KAhhCC;AAihCT,YAAQ,KAjhCC;AAkhCT,YAAQ,KAlhCC;AAmhCT,YAAQ,KAnhCC;AAohCT,YAAQ,KAphCC;AAqhCT,YAAQ,KArhCC;AAshCT,YAAQ,KAthCC;AAuhCT,YAAQ,KAvhCC;AAwhCT,YAAQ,KAxhCC;AAyhCT,YAAQ,KAzhCC;AA0hCT,YAAQ,IA1hCC;AA2hCT,YAAQ,KA3hCC;AA4hCT,YAAQ,KA5hCC;AA6hCT,YAAQ,KA7hCC;AA8hCT,YAAQ,KA9hCC;AA+hCT,YAAQ,KA/hCC;AAgiCT,YAAQ,KAhiCC;AAiiCT,YAAQ,KAjiCC;AAkiCT,YAAQ,KAliCC;AAmiCT,YAAQ,KAniCC;AAoiCT,YAAQ,KApiCC;AAqiCT,YAAQ,KAriCC;AAsiCT,YAAQ,KAtiCC;AAuiCT,YAAQ,KAviCC;AAwiCT,YAAQ,KAxiCC;AAyiCT,YAAQ,KAziCC;AA0iCT,YAAQ,KA1iCC;AA2iCT,YAAQ,KA3iCC;AA4iCT,YAAQ,KA5iCC;AA6iCT,YAAQ,KA7iCC;AA8iCT,YAAQ,KA9iCC;AA+iCT,YAAQ,KA/iCC;AAgjCT,YAAQ,KAhjCC;AAijCT,YAAQ,KAjjCC;AAkjCT,YAAQ,KAljCC;AAmjCT,YAAQ,KAnjCC;AAojCT,YAAQ,KApjCC;AAqjCT,YAAQ,KArjCC;AAsjCT,YAAQ,KAtjCC;AAujCT,YAAQ,KAvjCC;AAwjCT,YAAQ,KAxjCC;AAyjCT,YAAQ,KAzjCC;AA0jCT,YAAQ,KA1jCC;AA2jCT,YAAQ,KA3jCC;AA4jCT,YAAQ,KA5jCC;AA6jCT,YAAQ,KA7jCC;AA8jCT,YAAQ,MA9jCC;AA+jCT,YAAQ,KA/jCC;AAgkCT,YAAQ,KAhkCC;AAikCT,YAAQ,KAjkCC;AAkkCT,YAAQ,KAlkCC;AAmkCT,YAAQ,KAnkCC;AAokCT,YAAQ,KApkCC;AAqkCT,YAAQ,KArkCC;AAskCT,YAAQ,KAtkCC;AAukCT,YAAQ,KAvkCC;AAwkCT,YAAQ,KAxkCC;AAykCT,YAAQ,KAzkCC;AA0kCT,YAAQ,KA1kCC;AA2kCT,YAAQ,KA3kCC;AA4kCT,YAAQ,KA5kCC;AA6kCT,YAAQ,KA7kCC;AA8kCT,YAAQ,KA9kCC;AA+kCT,YAAQ,KA/kCC;AAglCT,YAAQ,KAhlCC;AAilCT,YAAQ,KAjlCC;AAklCT,YAAQ,MAllCC;AAmlCT,YAAQ,KAnlCC;AAolCT,YAAQ,MAplCC;AAqlCT,YAAQ,KArlCC;AAslCT,YAAQ,KAtlCC;AAulCT,YAAQ,KAvlCC;AAwlCT,YAAQ,KAxlCC;AAylCT,YAAQ,KAzlCC;AA0lCT,YAAQ,KA1lCC;AA2lCT,YAAQ,KA3lCC;AA4lCT,YAAQ,KA5lCC;AA6lCT,YAAQ,KA7lCC;AA8lCT,YAAQ,KA9lCC;AA+lCT,YAAQ,KA/lCC;AAgmCT,YAAQ,KAhmCC;AAimCT,YAAQ,KAjmCC;AAkmCT,YAAQ,KAlmCC;AAmmCT,YAAQ,KAnmCC;AAomCT,YAAQ,KApmCC;AAqmCT,YAAQ,KArmCC;AAsmCT,YAAQ,KAtmCC;AAumCT,YAAQ,KAvmCC;AAwmCT,YAAQ,KAxmCC;AAymCT,YAAQ,KAzmCC;AA0mCT,YAAQ,KA1mCC;AA2mCT,YAAQ,KA3mCC;AA4mCT,YAAQ,KA5mCC;AA6mCT,YAAQ,MA7mCC;AA8mCT,YAAQ,KA9mCC;AA+mCT,YAAQ,KA/mCC;AAgnCT,YAAQ,KAhnCC;AAinCT,YAAQ,KAjnCC;AAknCT,YAAQ,KAlnCC;AAmnCT,YAAQ,KAnnCC;AAonCT,YAAQ,KApnCC;AAqnCT,YAAQ,KArnCC;AAsnCT,YAAQ,IAtnCC;AAunCT,YAAQ,KAvnCC;AAwnCT,YAAQ,KAxnCC;AAynCT,YAAQ,KAznCC;AA0nCT,YAAQ,KA1nCC;AA2nCT,YAAQ,KA3nCC;AA4nCT,YAAQ,KA5nCC;AA6nCT,YAAQ,KA7nCC;AA8nCT,YAAQ,KA9nCC;AA+nCT,YAAQ,KA/nCC;AAgoCT,YAAQ,KAhoCC;AAioCT,YAAQ,KAjoCC;AAkoCT,YAAQ,KAloCC;AAmoCT,YAAQ,KAnoCC;AAooCT,YAAQ,KApoCC;AAqoCT,YAAQ,KAroCC;AAsoCT,YAAQ,KAtoCC;AAuoCT,YAAQ,KAvoCC;AAwoCT,YAAQ,KAxoCC;AAyoCT,YAAQ,KAzoCC;AA0oCT,YAAQ,KA1oCC;AA2oCT,YAAQ,KA3oCC;AA4oCT,YAAQ,KA5oCC;AA6oCT,YAAQ,KA7oCC;AA8oCT,YAAQ,KA9oCC;AA+oCT,YAAQ,KA/oCC;AAgpCT,YAAQ,KAhpCC;AAipCT,YAAQ,KAjpCC;AAkpCT,YAAQ,MAlpCC;AAmpCT,YAAQ,KAnpCC;AAopCT,YAAQ,KAppCC;AAqpCT,YAAQ,KArpCC;AAspCT,YAAQ,KAtpCC;AAupCT,YAAQ,KAvpCC;AAwpCT,YAAQ,KAxpCC;AAypCT,YAAQ,KAzpCC;AA0pCT,YAAQ,KA1pCC;AA2pCT,YAAQ,KA3pCC;AA4pCT,YAAQ,KA5pCC;AA6pCT,YAAQ,KA7pCC;AA8pCT,YAAQ,KA9pCC;AA+pCT,YAAQ,KA/pCC;AAgqCT,YAAQ,KAhqCC;AAiqCT,YAAQ,KAjqCC;AAkqCT,YAAQ,KAlqCC;AAmqCT,YAAQ,KAnqCC;AAoqCT,YAAQ,KApqCC;AAqqCT,YAAQ,KArqCC;AAsqCT,YAAQ,KAtqCC;AAuqCT,YAAQ,KAvqCC;AAwqCT,YAAQ,KAxqCC;AAyqCT,YAAQ,KAzqCC;AA0qCT,YAAQ,KA1qCC;AA2qCT,YAAQ,KA3qCC;AA4qCT,YAAQ,KA5qCC;AA6qCT,YAAQ,KA7qCC;AA8qCT,YAAQ,KA9qCC;AA+qCT,YAAQ,KA/qCC;AAgrCT,YAAQ,KAhrCC;AAirCT,YAAQ,KAjrCC;AAkrCT,YAAQ,KAlrCC;AAmrCT,YAAQ,KAnrCC;AAorCT,YAAQ,KAprCC;AAqrCT,YAAQ,KArrCC;AAsrCT,YAAQ,KAtrCC;AAurCT,YAAQ,KAvrCC;AAwrCT,YAAQ,KAxrCC;AAyrCT,YAAQ,KAzrCC;AA0rCT,YAAQ,KA1rCC;AA2rCT,YAAQ,KA3rCC;AA4rCT,YAAQ,KA5rCC;AA6rCT,YAAQ,KA7rCC;AA8rCT,YAAQ,KA9rCC;AA+rCT,YAAQ,KA/rCC;AAgsCT,YAAQ,KAhsCC;AAisCT,YAAQ,KAjsCC;AAksCT,YAAQ,KAlsCC;AAmsCT,YAAQ,KAnsCC;AAosCT,YAAQ,KApsCC;AAqsCT,YAAQ,KArsCC;AAssCT,YAAQ,KAtsCC;AAusCT,YAAQ,KAvsCC;AAwsCT,YAAQ,KAxsCC;AAysCT,YAAQ,KAzsCC;AA0sCT,YAAQ,KA1sCC;AA2sCT,YAAQ,KA3sCC;AA4sCT,YAAQ,KA5sCC;AA6sCT,YAAQ,KA7sCC;AA8sCT,YAAQ,KA9sCC;AA+sCT,YAAQ,KA/sCC;AAgtCT,YAAQ,KAhtCC;AAitCT,YAAQ,KAjtCC;AAktCT,YAAQ,KAltCC;AAmtCT,YAAQ,MAntCC;AAotCT,YAAQ,KAptCC;AAqtCT,YAAQ,KArtCC;AAstCT,YAAQ,KAttCC;AAutCT,YAAQ,KAvtCC;AAwtCT,YAAQ,KAxtCC;AAytCT,YAAQ,KAztCC;AA0tCT,YAAQ,KA1tCC;AA2tCT,YAAQ,KA3tCC;AA4tCT,YAAQ,KA5tCC;AA6tCT,YAAQ,KA7tCC;AA8tCT,YAAQ,KA9tCC;AA+tCT,YAAQ,KA/tCC;AAguCT,YAAQ,KAhuCC;AAiuCT,YAAQ,KAjuCC;AAkuCT,YAAQ,KAluCC;AAmuCT,YAAQ,KAnuCC;AAouCT,YAAQ,KApuCC;AAquCT,YAAQ,KAruCC;AAsuCT,YAAQ,KAtuCC;AAuuCT,YAAQ,KAvuCC;AAwuCT,YAAQ,KAxuCC;AAyuCT,YAAQ,KAzuCC;AA0uCT,YAAQ,KA1uCC;AA2uCT,YAAQ,KA3uCC;AA4uCT,YAAQ,KA5uCC;AA6uCT,YAAQ,KA7uCC;AA8uCT,YAAQ,KA9uCC;AA+uCT,YAAQ,KA/uCC;AAgvCT,YAAQ,KAhvCC;AAivCT,YAAQ,KAjvCC;AAkvCT,YAAQ,KAlvCC;AAmvCT,YAAQ,KAnvCC;AAovCT,YAAQ,KApvCC;AAqvCT,YAAQ,KArvCC;AAsvCT,YAAQ,KAtvCC;AAuvCT,YAAQ,KAvvCC;AAwvCT,YAAQ,KAxvCC;AAyvCT,YAAQ,KAzvCC;AA0vCT,YAAQ,KA1vCC;AA2vCT,YAAQ,KA3vCC;AA4vCT,YAAQ,KA5vCC;AA6vCT,YAAQ,KA7vCC;AA8vCT,YAAQ,KA9vCC;AA+vCT,YAAQ,KA/vCC;AAgwCT,YAAQ,KAhwCC;AAiwCT,YAAQ,KAjwCC;AAkwCT,YAAQ,KAlwCC;AAmwCT,YAAQ,KAnwCC;AAowCT,YAAQ,KApwCC;AAqwCT,YAAQ,KArwCC;AAswCT,YAAQ,KAtwCC;AAuwCT,YAAQ,KAvwCC;AAwwCT,YAAQ,KAxwCC;AAywCT,YAAQ,KAzwCC;AA0wCT,YAAQ,KA1wCC;AA2wCT,YAAQ,IA3wCC;AA4wCT,YAAQ,KA5wCC;AA6wCT,YAAQ,KA7wCC;AA8wCT,YAAQ,KA9wCC;AA+wCT,YAAQ,KA/wCC;AAgxCT,YAAQ,KAhxCC;AAixCT,YAAQ,KAjxCC;AAkxCT,YAAQ,KAlxCC;AAmxCT,YAAQ,KAnxCC;AAoxCT,YAAQ,KApxCC;AAqxCT,YAAQ,IArxCC;AAsxCT,YAAQ,KAtxCC;AAuxCT,YAAQ,KAvxCC;AAwxCT,YAAQ,KAxxCC;AAyxCT,YAAQ,KAzxCC;AA0xCT,YAAQ,KA1xCC;AA2xCT,YAAQ,KA3xCC;AA4xCT,YAAQ,KA5xCC;AA6xCT,YAAQ,KA7xCC;AA8xCT,YAAQ,KA9xCC;AA+xCT,YAAQ,KA/xCC;AAgyCT,YAAQ,KAhyCC;AAiyCT,YAAQ,KAjyCC;AAkyCT,YAAQ,KAlyCC;AAmyCT,YAAQ,KAnyCC;AAoyCT,YAAQ,KApyCC;AAqyCT,YAAQ,MAryCC;AAsyCT,YAAQ,KAtyCC;AAuyCT,YAAQ,IAvyCC;AAwyCT,YAAQ,KAxyCC;AAyyCT,YAAQ,KAzyCC;AA0yCT,YAAQ,IA1yCC;AA2yCT,YAAQ,KA3yCC;AA4yCT,YAAQ,KA5yCC;AA6yCT,YAAQ,KA7yCC;AA8yCT,YAAQ,KA9yCC;AA+yCT,YAAQ,KA/yCC;AAgzCT,YAAQ,KAhzCC;AAizCT,YAAQ,KAjzCC;AAkzCT,YAAQ,KAlzCC;AAmzCT,YAAQ,KAnzCC;AAozCT,YAAQ,KApzCC;AAqzCT,YAAQ,KArzCC;AAszCT,YAAQ,IAtzCC;AAuzCT,YAAQ,IAvzCC;AAwzCT,YAAQ,KAxzCC;AAyzCT,YAAQ,KAzzCC;AA0zCT,YAAQ,KA1zCC;AA2zCT,YAAQ,KA3zCC;AA4zCT,YAAQ,KA5zCC;AA6zCT,YAAQ,KA7zCC;AA8zCT,YAAQ,KA9zCC;AA+zCT,YAAQ,OA/zCC;AAg0CT,YAAQ,KAh0CC;AAi0CT,YAAQ,KAj0CC;AAk0CT,YAAQ,KAl0CC;AAm0CT,YAAQ,KAn0CC;AAo0CT,YAAQ,KAp0CC;AAq0CT,YAAQ,KAr0CC;AAs0CT,YAAQ,KAt0CC;AAu0CT,YAAQ,KAv0CC;AAw0CT,YAAQ,KAx0CC;AAy0CT,YAAQ,KAz0CC;AA00CT,YAAQ,OA10CC;AA20CT,YAAQ,KA30CC;AA40CT,YAAQ,MA50CC;AA60CT,YAAQ,KA70CC;AA80CT,YAAQ,KA90CC;AA+0CT,YAAQ,IA/0CC;AAg1CT,YAAQ,KAh1CC;AAi1CT,YAAQ,KAj1CC;AAk1CT,YAAQ,KAl1CC;AAm1CT,YAAQ,KAn1CC;AAo1CT,YAAQ,KAp1CC;AAq1CT,YAAQ,OAr1CC;AAs1CT,YAAQ,KAt1CC;AAu1CT,YAAQ,KAv1CC;AAw1CT,YAAQ,KAx1CC;AAy1CT,YAAQ,KAz1CC;AA01CT,YAAQ,KA11CC;AA21CT,YAAQ,KA31CC;AA41CT,YAAQ,IA51CC;AA61CT,YAAQ,KA71CC;AA81CT,YAAQ,KA91CC;AA+1CT,YAAQ,KA/1CC;AAg2CT,YAAQ,KAh2CC;AAi2CT,YAAQ,KAj2CC;AAk2CT,YAAQ,KAl2CC;AAm2CT,YAAQ,KAn2CC;AAo2CT,YAAQ,KAp2CC;AAq2CT,YAAQ,KAr2CC;AAs2CT,YAAQ,KAt2CC;AAu2CT,YAAQ,IAv2CC;AAw2CT,YAAQ,KAx2CC;AAy2CT,YAAQ,IAz2CC;AA02CT,YAAQ,KA12CC;AA22CT,YAAQ,KA32CC;AA42CT,YAAQ,KA52CC;AA62CT,YAAQ,KA72CC;AA82CT,YAAQ,KA92CC;AA+2CT,YAAQ,KA/2CC;AAg3CT,YAAQ,KAh3CC;AAi3CT,YAAQ,KAj3CC;AAk3CT,YAAQ,IAl3CC;AAm3CT,YAAQ,KAn3CC;AAo3CT,YAAQ,KAp3CC;AAq3CT,YAAQ,KAr3CC;AAs3CT,YAAQ,KAt3CC;AAu3CT,YAAQ,KAv3CC;AAw3CT,YAAQ,IAx3CC;AAy3CT,YAAQ,IAz3CC;AA03CT,YAAQ,KA13CC;AA23CT,YAAQ,KA33CC;AA43CT,YAAQ,KA53CC;AA63CT,YAAQ,KA73CC;AA83CT,YAAQ,KA93CC;AA+3CT,YAAQ,KA/3CC;AAg4CT,YAAQ,KAh4CC;AAi4CT,YAAQ,KAj4CC;AAk4CT,YAAQ,KAl4CC;AAm4CT,YAAQ,KAn4CC;AAo4CT,YAAQ,KAp4CC;AAq4CT,YAAQ,KAr4CC;AAs4CT,YAAQ,KAt4CC;AAu4CT,YAAQ,KAv4CC;AAw4CT,YAAQ,KAx4CC;AAy4CT,YAAQ,KAz4CC;AA04CT,YAAQ,KA14CC;AA24CT,YAAQ,KA34CC;AA44CT,YAAQ,KA54CC;AA64CT,YAAQ,IA74CC;AA84CT,YAAQ,KA94CC;AA+4CT,YAAQ,KA/4CC;AAg5CT,YAAQ,KAh5CC;AAi5CT,YAAQ,KAj5CC;AAk5CT,YAAQ,KAl5CC;AAm5CT,YAAQ,IAn5CC;AAo5CT,YAAQ,KAp5CC;AAq5CT,YAAQ,KAr5CC;AAs5CT,YAAQ,KAt5CC;AAu5CT,YAAQ,KAv5CC;AAw5CT,YAAQ,KAx5CC;AAy5CT,YAAQ,KAz5CC;AA05CT,YAAQ,KA15CC;AA25CT,YAAQ,KA35CC;AA45CT,YAAQ,KA55CC;AA65CT,YAAQ,KA75CC;AA85CT,YAAQ,KA95CC;AA+5CT,YAAQ,KA/5CC;AAg6CT,YAAQ,KAh6CC;AAi6CT,YAAQ,KAj6CC;AAk6CT,YAAQ,KAl6CC;AAm6CT,YAAQ,KAn6CC;AAo6CT,YAAQ,KAp6CC;AAq6CT,YAAQ,KAr6CC;AAs6CT,YAAQ,KAt6CC;AAu6CT,YAAQ,KAv6CC;AAw6CT,YAAQ,KAx6CC;AAy6CT,YAAQ,KAz6CC;AA06CT,YAAQ,KA16CC;AA26CT,YAAQ,KA36CC;AA46CT,YAAQ,KA56CC;AA66CT,YAAQ,KA76CC;AA86CT,YAAQ,KA96CC;AA+6CT,YAAQ,KA/6CC;AAg7CT,YAAQ,KAh7CC;AAi7CT,YAAQ,KAj7CC;AAk7CT,YAAQ,KAl7CC;AAm7CT,YAAQ,KAn7CC;AAo7CT,YAAQ,KAp7CC;AAq7CT,YAAQ,KAr7CC;AAs7CT,YAAQ,KAt7CC;AAu7CT,YAAQ,IAv7CC;AAw7CT,YAAQ,KAx7CC;AAy7CT,YAAQ,KAz7CC;AA07CT,YAAQ,KA17CC;AA27CT,YAAQ,KA37CC;AA47CT,YAAQ,KA57CC;AA67CT,YAAQ,KA77CC;AA87CT,YAAQ,KA97CC;AA+7CT,YAAQ,KA/7CC;AAg8CT,YAAQ,KAh8CC;AAi8CT,YAAQ,IAj8CC;AAk8CT,YAAQ,KAl8CC;AAm8CT,YAAQ,KAn8CC;AAo8CT,YAAQ,KAp8CC;AAq8CT,YAAQ,KAr8CC;AAs8CT,YAAQ,IAt8CC;AAu8CT,YAAQ,KAv8CC;AAw8CT,YAAQ,KAx8CC;AAy8CT,YAAQ,KAz8CC;AA08CT,YAAQ,KA18CC;AA28CT,YAAQ,KA38CC;AA48CT,YAAQ,KA58CC;AA68CT,YAAQ,KA78CC;AA88CT,YAAQ,KA98CC;AA+8CT,YAAQ,KA/8CC;AAg9CT,YAAQ,KAh9CC;AAi9CT,YAAQ,KAj9CC;AAk9CT,YAAQ,KAl9CC;AAm9CT,YAAQ,KAn9CC;AAo9CT,YAAQ,KAp9CC;AAq9CT,YAAQ,KAr9CC;AAs9CT,YAAQ,KAt9CC;AAu9CT,YAAQ,KAv9CC;AAw9CT,YAAQ,KAx9CC;AAy9CT,YAAQ,KAz9CC;AA09CT,YAAQ,KA19CC;AA29CT,YAAQ,KA39CC;AA49CT,YAAQ,KA59CC;AA69CT,YAAQ,KA79CC;AA89CT,YAAQ,KA99CC;AA+9CT,YAAQ,KA/9CC;AAg+CT,YAAQ,KAh+CC;AAi+CT,YAAQ,KAj+CC;AAk+CT,YAAQ,KAl+CC;AAm+CT,YAAQ,MAn+CC;AAo+CT,YAAQ,KAp+CC;AAq+CT,YAAQ,KAr+CC;AAs+CT,YAAQ,KAt+CC;AAu+CT,YAAQ,KAv+CC;AAw+CT,YAAQ,KAx+CC;AAy+CT,YAAQ,MAz+CC;AA0+CT,YAAQ,MA1+CC;AA2+CT,YAAQ,KA3+CC;AA4+CT,YAAQ,KA5+CC;AA6+CT,YAAQ,KA7+CC;AA8+CT,YAAQ,KA9+CC;AA++CT,YAAQ,KA/+CC;AAg/CT,YAAQ,KAh/CC;AAi/CT,YAAQ,KAj/CC;AAk/CT,YAAQ,KAl/CC;AAm/CT,YAAQ,KAn/CC;AAo/CT,YAAQ,KAp/CC;AAq/CT,YAAQ,IAr/CC;AAs/CT,YAAQ,MAt/CC;AAu/CT,YAAQ,KAv/CC;AAw/CT,YAAQ,MAx/CC;AAy/CT,YAAQ,KAz/CC;AA0/CT,YAAQ,KA1/CC;AA2/CT,YAAQ,KA3/CC;AA4/CT,YAAQ,KA5/CC;AA6/CT,YAAQ,KA7/CC;AA8/CT,YAAQ,KA9/CC;AA+/CT,YAAQ,UA//CC;AAggDT,YAAQ,UAhgDC;AAigDT,YAAQ,KAjgDC;AAkgDT,YAAQ,KAlgDC;AAmgDT,YAAQ,KAngDC;AAogDT,YAAQ,KApgDC;AAqgDT,YAAQ,KArgDC;AAsgDT,YAAQ,KAtgDC;AAugDT,YAAQ,KAvgDC;AAwgDT,YAAQ,KAxgDC;AAygDT,YAAQ,KAzgDC;AA0gDT,YAAQ,MA1gDC;AA2gDT,YAAQ,KA3gDC;AA4gDT,YAAQ,KA5gDC;AA6gDT,YAAQ,MA7gDC;AA8gDT,YAAQ,KA9gDC;AA+gDT,YAAQ,KA/gDC;AAghDT,YAAQ,KAhhDC;AAihDT,YAAQ,KAjhDC;AAkhDT,YAAQ,KAlhDC;AAmhDT,YAAQ,KAnhDC;AAohDT,YAAQ,KAphDC;AAqhDT,YAAQ,KArhDC;AAshDT,YAAQ,KAthDC;AAuhDT,YAAQ,KAvhDC;AAwhDT,YAAQ,KAxhDC;AAyhDT,YAAQ,KAzhDC;AA0hDT,YAAQ,KA1hDC;AA2hDT,YAAQ,KA3hDC;AA4hDT,YAAQ,KA5hDC;AA6hDT,YAAQ,KA7hDC;AA8hDT,YAAQ,KA9hDC;AA+hDT,YAAQ,KA/hDC;AAgiDT,YAAQ,KAhiDC;AAiiDT,YAAQ,KAjiDC;AAkiDT,YAAQ,KAliDC;AAmiDT,YAAQ,KAniDC;AAoiDT,YAAQ,KApiDC;AAqiDT,YAAQ,KAriDC;AAsiDT,YAAQ,KAtiDC;AAuiDT,YAAQ,KAviDC;AAwiDT,YAAQ,KAxiDC;AAyiDT,YAAQ,KAziDC;AA0iDT,YAAQ,KA1iDC;AA2iDT,YAAQ,KA3iDC;AA4iDT,YAAQ,KA5iDC;AA6iDT,YAAQ,KA7iDC;AA8iDT,YAAQ,KA9iDC;AA+iDT,YAAQ,KA/iDC;AAgjDT,YAAQ,KAhjDC;AAijDT,YAAQ,KAjjDC;AAkjDT,YAAQ,KAljDC;AAmjDT,YAAQ,KAnjDC;AAojDT,YAAQ,KApjDC;AAqjDT,YAAQ,IArjDC;AAsjDT,YAAQ,KAtjDC;AAujDT,YAAQ,KAvjDC;AAwjDT,YAAQ,KAxjDC;AAyjDT,YAAQ,KAzjDC;AA0jDT,YAAQ,KA1jDC;AA2jDT,YAAQ,KA3jDC;AA4jDT,YAAQ,KA5jDC;AA6jDT,YAAQ,KA7jDC;AA8jDT,YAAQ,KA9jDC;AA+jDT,YAAQ,KA/jDC;AAgkDT,YAAQ,KAhkDC;AAikDT,YAAQ,KAjkDC;AAkkDT,YAAQ,OAlkDC;AAmkDT,YAAQ,KAnkDC;AAokDT,YAAQ,KApkDC;AAqkDT,YAAQ,KArkDC;AAskDT,YAAQ,KAtkDC;AAukDT,YAAQ,KAvkDC;AAwkDT,YAAQ,KAxkDC;AAykDT,YAAQ,KAzkDC;AA0kDT,YAAQ,KA1kDC;AA2kDT,YAAQ,KA3kDC;AA4kDT,YAAQ,KA5kDC;AA6kDT,YAAQ,KA7kDC;AA8kDT,YAAQ,KA9kDC;AA+kDT,YAAQ,KA/kDC;AAglDT,YAAQ,KAhlDC;AAilDT,YAAQ,IAjlDC;AAklDT,YAAQ,KAllDC;AAmlDT,YAAQ,KAnlDC;AAolDT,YAAQ,KAplDC;AAqlDT,YAAQ,KArlDC;AAslDT,YAAQ,KAtlDC;AAulDT,YAAQ,KAvlDC;AAwlDT,YAAQ,KAxlDC;AAylDT,YAAQ,KAzlDC;AA0lDT,YAAQ,KA1lDC;AA2lDT,YAAQ,KA3lDC;AA4lDT,YAAQ,KA5lDC;AA6lDT,YAAQ,KA7lDC;AA8lDT,YAAQ,KA9lDC;AA+lDT,YAAQ,KA/lDC;AAgmDT,YAAQ,KAhmDC;AAimDT,YAAQ,KAjmDC;AAkmDT,YAAQ,KAlmDC;AAmmDT,YAAQ,KAnmDC;AAomDT,YAAQ,KApmDC;AAqmDT,YAAQ,KArmDC;AAsmDT,YAAQ,KAtmDC;AAumDT,YAAQ,KAvmDC;AAwmDT,YAAQ,KAxmDC;AAymDT,YAAQ,KAzmDC;AA0mDT,YAAQ,KA1mDC;AA2mDT,YAAQ,KA3mDC;AA4mDT,YAAQ,KA5mDC;AA6mDT,YAAQ,KA7mDC;AA8mDT,YAAQ,KA9mDC;AA+mDT,YAAQ,KA/mDC;AAgnDT,YAAQ,SAhnDC;AAinDT,YAAQ,KAjnDC;AAknDT,YAAQ,MAlnDC;AAmnDT,YAAQ,KAnnDC;AAonDT,YAAQ,KApnDC;AAqnDT,YAAQ,KArnDC;AAsnDT,YAAQ,KAtnDC;AAunDT,YAAQ,KAvnDC;AAwnDT,YAAQ,KAxnDC;AAynDT,YAAQ,KAznDC;AA0nDT,YAAQ,KA1nDC;AA2nDT,YAAQ,KA3nDC;AA4nDT,YAAQ,KA5nDC;AA6nDT,YAAQ,KA7nDC;AA8nDT,YAAQ,KA9nDC;AA+nDT,YAAQ,IA/nDC;AAgoDT,YAAQ,KAhoDC;AAioDT,YAAQ,KAjoDC;AAkoDT,YAAQ,KAloDC;AAmoDT,YAAQ,KAnoDC;AAooDT,YAAQ,KApoDC;AAqoDT,YAAQ,MAroDC;AAsoDT,YAAQ,KAtoDC;AAuoDT,YAAQ,KAvoDC;AAwoDT,YAAQ,KAxoDC;AAyoDT,YAAQ,KAzoDC;AA0oDT,YAAQ,IA1oDC;AA2oDT,YAAQ,KA3oDC;AA4oDT,YAAQ,KA5oDC;AA6oDT,YAAQ,KA7oDC;AA8oDT,YAAQ,KA9oDC;AA+oDT,YAAQ,KA/oDC;AAgpDT,YAAQ,KAhpDC;AAipDT,YAAQ,KAjpDC;AAkpDT,YAAQ,KAlpDC;AAmpDT,YAAQ,KAnpDC;AAopDT,YAAQ,KAppDC;AAqpDT,YAAQ,KArpDC;AAspDT,YAAQ,KAtpDC;AAupDT,YAAQ,KAvpDC;AAwpDT,YAAQ,KAxpDC;AAypDT,YAAQ,KAzpDC;AA0pDT,YAAQ,MA1pDC;AA2pDT,YAAQ,KA3pDC;AA4pDT,YAAQ,KA5pDC;AA6pDT,YAAQ,KA7pDC;AA8pDT,YAAQ,IA9pDC;AA+pDT,YAAQ,KA/pDC;AAgqDT,YAAQ,KAhqDC;AAiqDT,YAAQ,KAjqDC;AAkqDT,YAAQ,KAlqDC;AAmqDT,YAAQ,SAnqDC;AAoqDT,YAAQ,KApqDC;AAqqDT,YAAQ,KArqDC;AAsqDT,YAAQ,KAtqDC;AAuqDT,YAAQ,KAvqDC;AAwqDT,YAAQ,KAxqDC;AAyqDT,YAAQ,KAzqDC;AA0qDT,YAAQ,SA1qDC;AA2qDT,YAAQ,SA3qDC;AA4qDT,YAAQ,SA5qDC;AA6qDT,YAAQ,WA7qDC;AA8qDT,YAAQ,SA9qDC;AA+qDT,YAAQ,KA/qDC;AAgrDT,YAAQ,KAhrDC;AAirDT,YAAQ,KAjrDC;AAkrDT,YAAQ,KAlrDC;AAmrDT,YAAQ,MAnrDC;AAorDT,YAAQ,KAprDC;AAqrDT,YAAQ,KArrDC;AAsrDT,YAAQ,KAtrDC;AAurDT,YAAQ,KAvrDC;AAwrDT,YAAQ,KAxrDC;AAyrDT,YAAQ,KAzrDC;AA0rDT,YAAQ,KA1rDC;AA2rDT,YAAQ,KA3rDC;AA4rDT,YAAQ,KA5rDC;AA6rDT,YAAQ,KA7rDC;AA8rDT,YAAQ,KA9rDC;AA+rDT,YAAQ,KA/rDC;AAgsDT,YAAQ,KAhsDC;AAisDT,YAAQ,KAjsDC;AAksDT,YAAQ,KAlsDC;AAmsDT,YAAQ,KAnsDC;AAosDT,YAAQ,KApsDC;AAqsDT,YAAQ,KArsDC;AAssDT,YAAQ,KAtsDC;AAusDT,YAAQ,KAvsDC;AAwsDT,YAAQ,KAxsDC;AAysDT,YAAQ,KAzsDC;AA0sDT,YAAQ,KA1sDC;AA2sDT,YAAQ,KA3sDC;AA4sDT,YAAQ,KA5sDC;AA6sDT,YAAQ,KA7sDC;AA8sDT,YAAQ,SA9sDC;AA+sDT,YAAQ,KA/sDC;AAgtDT,YAAQ,KAhtDC;AAitDT,YAAQ,KAjtDC;AAktDT,YAAQ,KAltDC;AAmtDT,YAAQ,KAntDC;AAotDT,YAAQ,KAptDC;AAqtDT,YAAQ,KArtDC;AAstDT,YAAQ,KAttDC;AAutDT,YAAQ,KAvtDC;AAwtDT,YAAQ,KAxtDC;AAytDT,YAAQ,KAztDC;AA0tDT,YAAQ,KA1tDC;AA2tDT,YAAQ,KA3tDC;AA4tDT,YAAQ,KA5tDC;AA6tDT,YAAQ,KA7tDC;AA8tDT,YAAQ,KA9tDC;AA+tDT,YAAQ,KA/tDC;AAguDT,YAAQ,KAhuDC;AAiuDT,YAAQ,KAjuDC;AAkuDT,YAAQ,KAluDC;AAmuDT,YAAQ,KAnuDC;AAouDT,YAAQ,KApuDC;AAquDT,YAAQ,KAruDC;AAsuDT,YAAQ,KAtuDC;AAuuDT,YAAQ,KAvuDC;AAwuDT,YAAQ,KAxuDC;AAyuDT,YAAQ,KAzuDC;AA0uDT,YAAQ,KA1uDC;AA2uDT,YAAQ,KA3uDC;AA4uDT,YAAQ,KA5uDC;AA6uDT,YAAQ,KA7uDC;AA8uDT,YAAQ,KA9uDC;AA+uDT,YAAQ,KA/uDC;AAgvDT,YAAQ,KAhvDC;AAivDT,YAAQ,KAjvDC;AAkvDT,YAAQ,KAlvDC;AAmvDT,YAAQ,KAnvDC;AAovDT,YAAQ,KApvDC;AAqvDT,YAAQ,KArvDC;AAsvDT,YAAQ,KAtvDC;AAuvDT,YAAQ,KAvvDC;AAwvDT,YAAQ,KAxvDC;AAyvDT,YAAQ,KAzvDC;AA0vDT,YAAQ,KA1vDC;AA2vDT,YAAQ,KA3vDC;AA4vDT,YAAQ,KA5vDC;AA6vDT,YAAQ,KA7vDC;AA8vDT,YAAQ,KA9vDC;AA+vDT,YAAQ,KA/vDC;AAgwDT,YAAQ,KAhwDC;AAiwDT,YAAQ,KAjwDC;AAkwDT,YAAQ,KAlwDC;AAmwDT,YAAQ,KAnwDC;AAowDT,YAAQ,KApwDC;AAqwDT,YAAQ,KArwDC;AAswDT,YAAQ,KAtwDC;AAuwDT,YAAQ,KAvwDC;AAwwDT,YAAQ,KAxwDC;AAywDT,YAAQ,KAzwDC;AA0wDT,YAAQ,KA1wDC;AA2wDT,YAAQ,KA3wDC;AA4wDT,YAAQ,KA5wDC;AA6wDT,YAAQ,KA7wDC;AA8wDT,YAAQ,KA9wDC;AA+wDT,YAAQ,KA/wDC;AAgxDT,YAAQ,KAhxDC;AAixDT,YAAQ,IAjxDC;AAkxDT,YAAQ,KAlxDC;AAmxDT,YAAQ,KAnxDC;AAoxDT,YAAQ,KApxDC;AAqxDT,YAAQ,KArxDC;AAsxDT,YAAQ,KAtxDC;AAuxDT,YAAQ,KAvxDC;AAwxDT,YAAQ,KAxxDC;AAyxDT,YAAQ,KAzxDC;AA0xDT,YAAQ,KA1xDC;AA2xDT,YAAQ,KA3xDC;AA4xDT,YAAQ,KA5xDC;AA6xDT,YAAQ,KA7xDC;AA8xDT,YAAQ,KA9xDC;AA+xDT,YAAQ,KA/xDC;AAgyDT,YAAQ,KAhyDC;AAiyDT,YAAQ,KAjyDC;AAkyDT,YAAQ,KAlyDC;AAmyDT,YAAQ,WAnyDC;AAoyDT,YAAQ,SApyDC;AAqyDT,YAAQ,KAryDC;AAsyDT,YAAQ,KAtyDC;AAuyDT,YAAQ,KAvyDC;AAwyDT,YAAQ,KAxyDC;AAyyDT,YAAQ,KAzyDC;AA0yDT,YAAQ,KA1yDC;AA2yDT,YAAQ,KA3yDC;AA4yDT,YAAQ,KA5yDC;AA6yDT,YAAQ,KA7yDC;AA8yDT,YAAQ,KA9yDC;AA+yDT,YAAQ,KA/yDC;AAgzDT,YAAQ,KAhzDC;AAizDT,YAAQ,KAjzDC;AAkzDT,YAAQ,KAlzDC;AAmzDT,YAAQ,KAnzDC;AAozDT,YAAQ,KApzDC;AAqzDT,YAAQ,KArzDC;AAszDT,YAAQ,KAtzDC;AAuzDT,YAAQ,KAvzDC;AAwzDT,YAAQ,KAxzDC;AAyzDT,YAAQ,MAzzDC;AA0zDT,YAAQ,KA1zDC;AA2zDT,YAAQ,KA3zDC;AA4zDT,YAAQ,KA5zDC;AA6zDT,YAAQ,KA7zDC;AA8zDT,YAAQ,KA9zDC;AA+zDT,YAAQ,KA/zDC;AAg0DT,YAAQ,KAh0DC;AAi0DT,YAAQ,IAj0DC;AAk0DT,YAAQ,KAl0DC;AAm0DT,YAAQ,KAn0DC;AAo0DT,YAAQ,KAp0DC;AAq0DT,YAAQ,KAr0DC;AAs0DT,YAAQ,KAt0DC;AAu0DT,YAAQ,KAv0DC;AAw0DT,YAAQ,KAx0DC;AAy0DT,YAAQ,KAz0DC;AA00DT,YAAQ,SA10DC;AA20DT,YAAQ,SA30DC;AA40DT,YAAQ,KA50DC;AA60DT,YAAQ,KA70DC;AA80DT,YAAQ,KA90DC;AA+0DT,YAAQ,KA/0DC;AAg1DT,YAAQ,KAh1DC;AAi1DT,YAAQ,KAj1DC;AAk1DT,YAAQ,KAl1DC;AAm1DT,YAAQ,KAn1DC;AAo1DT,YAAQ,KAp1DC;AAq1DT,YAAQ,KAr1DC;AAs1DT,YAAQ,KAt1DC;AAu1DT,YAAQ,KAv1DC;AAw1DT,YAAQ,SAx1DC;AAy1DT,YAAQ,KAz1DC;AA01DT,YAAQ,KA11DC;AA21DT,YAAQ,KA31DC;AA41DT,YAAQ,SA51DC;AA61DT,YAAQ,KA71DC;AA81DT,YAAQ,KA91DC;AA+1DT,YAAQ,KA/1DC;AAg2DT,YAAQ,KAh2DC;AAi2DT,YAAQ,IAj2DC;AAk2DT,YAAQ,KAl2DC;AAm2DT,YAAQ,KAn2DC;AAo2DT,YAAQ,KAp2DC;AAq2DT,YAAQ,KAr2DC;AAs2DT,YAAQ,MAt2DC;AAu2DT,YAAQ,KAv2DC;AAw2DT,YAAQ,KAx2DC;AAy2DT,YAAQ,KAz2DC;AA02DT,YAAQ,KA12DC;AA22DT,YAAQ,KA32DC;AA42DT,YAAQ,KA52DC;AA62DT,YAAQ,KA72DC;AA82DT,YAAQ,KA92DC;AA+2DT,YAAQ,KA/2DC;AAg3DT,YAAQ,KAh3DC;AAi3DT,YAAQ,KAj3DC;AAk3DT,YAAQ,KAl3DC;AAm3DT,YAAQ,KAn3DC;AAo3DT,YAAQ,KAp3DC;AAq3DT,YAAQ,KAr3DC;AAs3DT,YAAQ,KAt3DC;AAu3DT,YAAQ,IAv3DC;AAw3DT,YAAQ,KAx3DC;AAy3DT,YAAQ,KAz3DC;AA03DT,YAAQ,KA13DC;AA23DT,YAAQ,KA33DC;AA43DT,YAAQ,KA53DC;AA63DT,YAAQ,KA73DC;AA83DT,YAAQ,KA93DC;AA+3DT,YAAQ,KA/3DC;AAg4DT,YAAQ,KAh4DC;AAi4DT,YAAQ,KAj4DC;AAk4DT,YAAQ,KAl4DC;AAm4DT,YAAQ,KAn4DC;AAo4DT,YAAQ,KAp4DC;AAq4DT,YAAQ,KAr4DC;AAs4DT,YAAQ,SAt4DC;AAu4DT,YAAQ,KAv4DC;AAw4DT,YAAQ,KAx4DC;AAy4DT,YAAQ,KAz4DC;AA04DT,YAAQ,KA14DC;AA24DT,YAAQ,KA34DC;AA44DT,YAAQ,SA54DC;AA64DT,YAAQ,MA74DC;AA84DT,YAAQ,KA94DC;AA+4DT,YAAQ,KA/4DC;AAg5DT,YAAQ,KAh5DC;AAi5DT,YAAQ,KAj5DC;AAk5DT,YAAQ,UAl5DC;AAm5DT,YAAQ,UAn5DC;AAo5DT,YAAQ,SAp5DC;AAq5DT,YAAQ,SAr5DC;AAs5DT,YAAQ,SAt5DC;AAu5DT,YAAQ,KAv5DC;AAw5DT,YAAQ,KAx5DC;AAy5DT,YAAQ,KAz5DC;AA05DT,YAAQ,KA15DC;AA25DT,YAAQ,KA35DC;AA45DT,YAAQ,SA55DC;AA65DT,YAAQ,KA75DC;AA85DT,YAAQ,KA95DC;AA+5DT,YAAQ,KA/5DC;AAg6DT,YAAQ,KAh6DC;AAi6DT,YAAQ,KAj6DC;AAk6DT,YAAQ,KAl6DC;AAm6DT,YAAQ,KAn6DC;AAo6DT,YAAQ,KAp6DC;AAq6DT,YAAQ,KAr6DC;AAs6DT,YAAQ,KAt6DC;AAu6DT,YAAQ,KAv6DC;AAw6DT,YAAQ,KAx6DC;AAy6DT,YAAQ,KAz6DC;AA06DT,YAAQ,KA16DC;AA26DT,YAAQ,KA36DC;AA46DT,YAAQ,KA56DC;AA66DT,YAAQ,KA76DC;AA86DT,YAAQ,MA96DC;AA+6DT,YAAQ,MA/6DC;AAg7DT,YAAQ,aAh7DC;AAi7DT,YAAQ,KAj7DC;AAk7DT,YAAQ,MAl7DC;AAm7DT,YAAQ,KAn7DC;AAo7DT,YAAQ,KAp7DC;AAq7DT,YAAQ,KAr7DC;AAs7DT,YAAQ,KAt7DC;AAu7DT,YAAQ,KAv7DC;AAw7DT,YAAQ,KAx7DC;AAy7DT,YAAQ,KAz7DC;AA07DT,YAAQ,KA17DC;AA27DT,YAAQ,SA37DC;AA47DT,YAAQ,SA57DC;AA67DT,YAAQ,SA77DC;AA87DT,YAAQ,SA97DC;AA+7DT,YAAQ,WA/7DC;AAg8DT,YAAQ,WAh8DC;AAi8DT,YAAQ,KAj8DC;AAk8DT,YAAQ,KAl8DC;AAm8DT,YAAQ,KAn8DC;AAo8DT,YAAQ,MAp8DC;AAq8DT,YAAQ,KAr8DC;AAs8DT,YAAQ,MAt8DC;AAu8DT,YAAQ,MAv8DC;AAw8DT,YAAQ,KAx8DC;AAy8DT,YAAQ,KAz8DC;AA08DT,YAAQ,KA18DC;AA28DT,YAAQ,KA38DC;AA48DT,YAAQ,KA58DC;AA68DT,YAAQ,KA78DC;AA88DT,YAAQ,KA98DC;AA+8DT,YAAQ,KA/8DC;AAg9DT,YAAQ,KAh9DC;AAi9DT,YAAQ,KAj9DC;AAk9DT,YAAQ,KAl9DC;AAm9DT,YAAQ,KAn9DC;AAo9DT,YAAQ,KAp9DC;AAq9DT,YAAQ,KAr9DC;AAs9DT,YAAQ,KAt9DC;AAu9DT,YAAQ,KAv9DC;AAw9DT,YAAQ,KAx9DC;AAy9DT,YAAQ,KAz9DC;AA09DT,YAAQ,KA19DC;AA29DT,YAAQ,KA39DC;AA49DT,YAAQ,KA59DC;AA69DT,YAAQ,KA79DC;AA89DT,YAAQ,IA99DC;AA+9DT,YAAQ,KA/9DC;AAg+DT,YAAQ,KAh+DC;AAi+DT,YAAQ,KAj+DC;AAk+DT,YAAQ,KAl+DC;AAm+DT,YAAQ,UAn+DC;AAo+DT,YAAQ,YAp+DC;AAq+DT,YAAQ,YAr+DC;AAs+DT,YAAQ,YAt+DC;AAu+DT,YAAQ,KAv+DC;AAw+DT,YAAQ,KAx+DC;AAy+DT,YAAQ,KAz+DC;AA0+DT,YAAQ,KA1+DC;AA2+DT,YAAQ,KA3+DC;AA4+DT,YAAQ,MA5+DC;AA6+DT,YAAQ,MA7+DC;AA8+DT,YAAQ,KA9+DC;AA++DT,YAAQ,KA/+DC;AAg/DT,YAAQ,KAh/DC;AAi/DT,YAAQ,KAj/DC;AAk/DT,YAAQ,IAl/DC;AAm/DT,YAAQ,KAn/DC;AAo/DT,YAAQ,KAp/DC;AAq/DT,YAAQ,KAr/DC;AAs/DT,YAAQ,MAt/DC;AAu/DT,YAAQ,KAv/DC;AAw/DT,YAAQ,KAx/DC;AAy/DT,YAAQ,KAz/DC;AA0/DT,YAAQ,KA1/DC;AA2/DT,YAAQ,MA3/DC;AA4/DT,YAAQ,KA5/DC;AA6/DT,YAAQ,KA7/DC;AA8/DT,YAAQ,KA9/DC;AA+/DT,YAAQ,IA//DC;AAggET,YAAQ,KAhgEC;AAigET,YAAQ,IAjgEC;AAkgET,YAAQ,IAlgEC;AAmgET,YAAQ,KAngEC;AAogET,YAAQ,KApgEC;AAqgET,YAAQ,KArgEC;AAsgET,YAAQ,KAtgEC;AAugET,YAAQ,KAvgEC;AAwgET,YAAQ,MAxgEC;AAygET,YAAQ,IAzgEC;AA0gET,YAAQ,KA1gEC;AA2gET,YAAQ,KA3gEC;AA4gET,YAAQ,KA5gEC;AA6gET,YAAQ,KA7gEC;AA8gET,YAAQ,KA9gEC;AA+gET,YAAQ,KA/gEC;AAghET,YAAQ,KAhhEC;AAihET,YAAQ,KAjhEC;AAkhET,YAAQ,KAlhEC;AAmhET,YAAQ,KAnhEC;AAohET,YAAQ,KAphEC;AAqhET,YAAQ,KArhEC;AAshET,YAAQ,KAthEC;AAuhET,YAAQ,KAvhEC;AAwhET,YAAQ,KAxhEC;AAyhET,YAAQ,SAzhEC;AA0hET,YAAQ,KA1hEC;AA2hET,YAAQ,KA3hEC;AA4hET,YAAQ,KA5hEC;AA6hET,YAAQ,KA7hEC;AA8hET,YAAQ,KA9hEC;AA+hET,YAAQ,KA/hEC;AAgiET,YAAQ,KAhiEC;AAiiET,YAAQ,KAjiEC;AAkiET,YAAQ,KAliEC;AAmiET,YAAQ,KAniEC;AAoiET,YAAQ,KApiEC;AAqiET,YAAQ,KAriEC;AAsiET,YAAQ,KAtiEC;AAuiET,YAAQ,KAviEC;AAwiET,YAAQ,KAxiEC;AAyiET,YAAQ,KAziEC;AA0iET,YAAQ,KA1iEC;AA2iET,YAAQ,KA3iEC;AA4iET,YAAQ,KA5iEC;AA6iET,YAAQ,KA7iEC;AA8iET,YAAQ,KA9iEC;AA+iET,YAAQ,MA/iEC;AAgjET,YAAQ,MAhjEC;AAijET,YAAQ,KAjjEC;AAkjET,YAAQ,KAljEC;AAmjET,YAAQ,KAnjEC;AAojET,YAAQ,KApjEC;AAqjET,YAAQ,SArjEC;AAsjET,YAAQ,SAtjEC;AAujET,YAAQ,MAvjEC;AAwjET,YAAQ,KAxjEC;AAyjET,YAAQ,KAzjEC;AA0jET,YAAQ,KA1jEC;AA2jET,YAAQ,KA3jEC;AA4jET,YAAQ,KA5jEC;AA6jET,YAAQ,KA7jEC;AA8jET,YAAQ,KA9jEC;AA+jET,YAAQ,KA/jEC;AAgkET,YAAQ,KAhkEC;AAikET,YAAQ,KAjkEC;AAkkET,YAAQ,KAlkEC;AAmkET,YAAQ,KAnkEC;AAokET,YAAQ,KApkEC;AAqkET,YAAQ,KArkEC;AAskET,YAAQ,KAtkEC;AAukET,YAAQ,KAvkEC;AAwkET,YAAQ,KAxkEC;AAykET,YAAQ,KAzkEC;AA0kET,YAAQ,KA1kEC;AA2kET,YAAQ,KA3kEC;AA4kET,YAAQ,IA5kEC;AA6kET,YAAQ,IA7kEC;AA8kET,YAAQ,KA9kEC;AA+kET,YAAQ,KA/kEC;AAglET,YAAQ,KAhlEC;AAilET,YAAQ,KAjlEC;AAklET,YAAQ,KAllEC;AAmlET,YAAQ,KAnlEC;AAolET,YAAQ,KAplEC;AAqlET,YAAQ,KArlEC;AAslET,YAAQ,KAtlEC;AAulET,YAAQ,KAvlEC;AAwlET,YAAQ,KAxlEC;AAylET,YAAQ,KAzlEC;AA0lET,YAAQ,KA1lEC;AA2lET,YAAQ,KA3lEC;AA4lET,YAAQ,IA5lEC;AA6lET,YAAQ,KA7lEC;AA8lET,YAAQ,KA9lEC;AA+lET,YAAQ,KA/lEC;AAgmET,YAAQ,KAhmEC;AAimET,YAAQ,KAjmEC;AAkmET,YAAQ,KAlmEC;AAmmET,YAAQ,KAnmEC;AAomET,YAAQ,KApmEC;AAqmET,YAAQ,KArmEC;AAsmET,YAAQ,KAtmEC;AAumET,YAAQ,KAvmEC;AAwmET,YAAQ,KAxmEC;AAymET,YAAQ,KAzmEC;AA0mET,YAAQ,KA1mEC;AA2mET,YAAQ,KA3mEC;AA4mET,YAAQ,KA5mEC;AA6mET,YAAQ,KA7mEC;AA8mET,YAAQ,MA9mEC;AA+mET,YAAQ,KA/mEC;AAgnET,YAAQ,IAhnEC;AAinET,YAAQ,IAjnEC;AAknET,YAAQ,KAlnEC;AAmnET,YAAQ,MAnnEC;AAonET,YAAQ,KApnEC;AAqnET,YAAQ,KArnEC;AAsnET,YAAQ,KAtnEC;AAunET,YAAQ,KAvnEC;AAwnET,YAAQ,KAxnEC;AAynET,YAAQ,MAznEC;AA0nET,YAAQ,KA1nEC;AA2nET,YAAQ,KA3nEC;AA4nET,YAAQ,KA5nEC;AA6nET,YAAQ,KA7nEC;AA8nET,YAAQ,KA9nEC;AA+nET,YAAQ,KA/nEC;AAgoET,YAAQ,KAhoEC;AAioET,YAAQ,KAjoEC;AAkoET,YAAQ,KAloEC;AAmoET,YAAQ,KAnoEC;AAooET,YAAQ,KApoEC;AAqoET,YAAQ,KAroEC;AAsoET,YAAQ,KAtoEC;AAuoET,YAAQ,KAvoEC;AAwoET,YAAQ,KAxoEC;AAyoET,YAAQ,KAzoEC;AA0oET,YAAQ,KA1oEC;AA2oET,YAAQ,KA3oEC;AA4oET,YAAQ,KA5oEC;AA6oET,YAAQ,KA7oEC;AA8oET,YAAQ,SA9oEC;AA+oET,YAAQ,KA/oEC;AAgpET,YAAQ,KAhpEC;AAipET,YAAQ,KAjpEC;AAkpET,YAAQ,KAlpEC;AAmpET,YAAQ,KAnpEC;AAopET,YAAQ,KAppEC;AAqpET,YAAQ,KArpEC;AAspET,YAAQ,KAtpEC;AAupET,YAAQ,KAvpEC;AAwpET,YAAQ,KAxpEC;AAypET,YAAQ,KAzpEC;AA0pET,YAAQ,KA1pEC;AA2pET,YAAQ,KA3pEC;AA4pET,YAAQ,KA5pEC;AA6pET,YAAQ,KA7pEC;AA8pET,YAAQ,KA9pEC;AA+pET,YAAQ,KA/pEC;AAgqET,YAAQ,KAhqEC;AAiqET,YAAQ,KAjqEC;AAkqET,YAAQ,KAlqEC;AAmqET,YAAQ,MAnqEC;AAoqET,YAAQ,KApqEC;AAqqET,YAAQ,KArqEC;AAsqET,YAAQ,KAtqEC;AAuqET,YAAQ,KAvqEC;AAwqET,YAAQ,KAxqEC;AAyqET,YAAQ,MAzqEC;AA0qET,YAAQ,KA1qEC;AA2qET,YAAQ,IA3qEC;AA4qET,YAAQ,MA5qEC;AA6qET,YAAQ,KA7qEC;AA8qET,YAAQ,KA9qEC;AA+qET,YAAQ,KA/qEC;AAgrET,YAAQ,KAhrEC;AAirET,YAAQ,KAjrEC;AAkrET,YAAQ,YAlrEC;AAmrET,YAAQ,YAnrEC;AAorET,YAAQ,KAprEC;AAqrET,YAAQ,KArrEC;AAsrET,YAAQ,KAtrEC;AAurET,YAAQ,KAvrEC;AAwrET,YAAQ,KAxrEC;AAyrET,YAAQ,KAzrEC;AA0rET,YAAQ,KA1rEC;AA2rET,YAAQ,KA3rEC;AA4rET,YAAQ,KA5rEC;AA6rET,YAAQ,YA7rEC;AA8rET,YAAQ,YA9rEC;AA+rET,YAAQ,YA/rEC;AAgsET,YAAQ,MAhsEC;AAisET,YAAQ,KAjsEC;AAksET,YAAQ,KAlsEC;AAmsET,YAAQ,KAnsEC;AAosET,YAAQ,KApsEC;AAqsET,YAAQ,KArsEC;AAssET,YAAQ,aAtsEC;AAusET,YAAQ,KAvsEC;AAwsET,YAAQ,KAxsEC;AAysET,YAAQ,KAzsEC;AA0sET,YAAQ,KA1sEC;AA2sET,YAAQ,SA3sEC;AA4sET,YAAQ,KA5sEC;AA6sET,YAAQ,KA7sEC;AA8sET,YAAQ,YA9sEC;AA+sET,YAAQ,KA/sEC;AAgtET,YAAQ,UAhtEC;AAitET,YAAQ,SAjtEC;AAktET,YAAQ,KAltEC;AAmtET,YAAQ,KAntEC;AAotET,YAAQ,KAptEC;AAqtET,YAAQ,KArtEC;AAstET,YAAQ,KAttEC;AAutET,YAAQ,KAvtEC;AAwtET,YAAQ,KAxtEC;AAytET,YAAQ,KAztEC;AA0tET,YAAQ,KA1tEC;AA2tET,YAAQ,KA3tEC;AA4tET,YAAQ,KA5tEC;AA6tET,YAAQ,KA7tEC;AA8tET,YAAQ,KA9tEC;AA+tET,YAAQ,KA/tEC;AAguET,YAAQ,KAhuEC;AAiuET,YAAQ,KAjuEC;AAkuET,YAAQ,KAluEC;AAmuET,YAAQ,KAnuEC;AAouET,YAAQ,KApuEC;AAquET,YAAQ,KAruEC;AAsuET,YAAQ,KAtuEC;AAuuET,YAAQ,KAvuEC;AAwuET,YAAQ,KAxuEC;AAyuET,YAAQ,KAzuEC;AA0uET,YAAQ,KA1uEC;AA2uET,YAAQ,KA3uEC;AA4uET,YAAQ,KA5uEC;AA6uET,YAAQ,KA7uEC;AA8uET,YAAQ,KA9uEC;AA+uET,YAAQ,KA/uEC;AAgvET,YAAQ,KAhvEC;AAivET,YAAQ,KAjvEC;AAkvET,YAAQ,KAlvEC;AAmvET,YAAQ,KAnvEC;AAovET,YAAQ,KApvEC;AAqvET,YAAQ,SArvEC;AAsvET,YAAQ,KAtvEC;AAuvET,YAAQ,KAvvEC;AAwvET,YAAQ,KAxvEC;AAyvET,YAAQ,KAzvEC;AA0vET,YAAQ,KA1vEC;AA2vET,YAAQ,KA3vEC;AA4vET,YAAQ,KA5vEC;AA6vET,YAAQ,KA7vEC;AA8vET,YAAQ,KA9vEC;AA+vET,YAAQ,SA/vEC;AAgwET,YAAQ,KAhwEC;AAiwET,YAAQ,WAjwEC;AAkwET,YAAQ,WAlwEC;AAmwET,YAAQ,KAnwEC;AAowET,YAAQ,KApwEC;AAqwET,YAAQ,KArwEC;AAswET,YAAQ,KAtwEC;AAuwET,YAAQ,KAvwEC;AAwwET,YAAQ,KAxwEC;AAywET,YAAQ,KAzwEC;AA0wET,YAAQ,KA1wEC;AA2wET,YAAQ,KA3wEC;AA4wET,YAAQ,KA5wEC;AA6wET,YAAQ,KA7wEC;AA8wET,YAAQ,KA9wEC;AA+wET,YAAQ,KA/wEC;AAgxET,YAAQ,KAhxEC;AAixET,YAAQ,KAjxEC;AAkxET,YAAQ,KAlxEC;AAmxET,YAAQ,SAnxEC;AAoxET,YAAQ,WApxEC;AAqxET,YAAQ,cArxEC;AAsxET,YAAQ,KAtxEC;AAuxET,YAAQ,KAvxEC;AAwxET,YAAQ,KAxxEC;AAyxET,YAAQ,KAzxEC;AA0xET,YAAQ,KA1xEC;AA2xET,YAAQ,KA3xEC;AA4xET,YAAQ,KA5xEC;AA6xET,YAAQ,KA7xEC;AA8xET,YAAQ,KA9xEC;AA+xET,YAAQ,KA/xEC;AAgyET,YAAQ,KAhyEC;AAiyET,YAAQ,KAjyEC;AAkyET,YAAQ,KAlyEC;AAmyET,YAAQ,KAnyEC;AAoyET,YAAQ,KApyEC;AAqyET,YAAQ,KAryEC;AAsyET,YAAQ,KAtyEC;AAuyET,YAAQ,UAvyEC;AAwyET,YAAQ,KAxyEC;AAyyET,YAAQ,KAzyEC;AA0yET,YAAQ,SA1yEC;AA2yET,YAAQ,KA3yEC;AA4yET,YAAQ,YA5yEC;AA6yET,YAAQ,UA7yEC;AA8yET,YAAQ,SA9yEC;AA+yET,YAAQ,WA/yEC;AAgzET,YAAQ,eAhzEC;AAizET,YAAQ,YAjzEC;AAkzET,YAAQ,cAlzEC;AAmzET,YAAQ,UAnzEC;AAozET,YAAQ,SApzEC;AAqzET,YAAQ,KArzEC;AAszET,YAAQ,KAtzEC;AAuzET,YAAQ,IAvzEC;AAwzET,YAAQ,KAxzEC;AAyzET,YAAQ,KAzzEC;AA0zET,YAAQ,iBA1zEC;AA2zET,YAAQ,WA3zEC;AA4zET,YAAQ,SA5zEC;AA6zET,YAAQ,KA7zEC;AA8zET,YAAQ,KA9zEC;AA+zET,YAAQ,KA/zEC;AAg0ET,YAAQ,KAh0EC;AAi0ET,YAAQ,KAj0EC;AAk0ET,YAAQ,KAl0EC;AAm0ET,YAAQ,KAn0EC;AAo0ET,YAAQ,KAp0EC;AAq0ET,YAAQ,KAr0EC;AAs0ET,YAAQ,KAt0EC;AAu0ET,YAAQ,KAv0EC;AAw0ET,YAAQ,KAx0EC;AAy0ET,YAAQ,KAz0EC;AA00ET,YAAQ,KA10EC;AA20ET,YAAQ,SA30EC;AA40ET,YAAQ,KA50EC;AA60ET,YAAQ,KA70EC;AA80ET,YAAQ,KA90EC;AA+0ET,YAAQ,KA/0EC;AAg1ET,YAAQ,KAh1EC;AAi1ET,YAAQ,aAj1EC;AAk1ET,YAAQ,KAl1EC;AAm1ET,YAAQ,SAn1EC;AAo1ET,YAAQ,KAp1EC;AAq1ET,YAAQ,KAr1EC;AAs1ET,YAAQ,KAt1EC;AAu1ET,YAAQ,MAv1EC;AAw1ET,YAAQ,KAx1EC;AAy1ET,YAAQ,KAz1EC;AA01ET,YAAQ,KA11EC;AA21ET,YAAQ,KA31EC;AA41ET,YAAQ,KA51EC;AA61ET,YAAQ,KA71EC;AA81ET,YAAQ,KA91EC;AA+1ET,YAAQ,KA/1EC;AAg2ET,YAAQ,SAh2EC;AAi2ET,YAAQ,KAj2EC;AAk2ET,YAAQ,KAl2EC;AAm2ET,YAAQ,KAn2EC;AAo2ET,YAAQ,SAp2EC;AAq2ET,YAAQ,WAr2EC;AAs2ET,YAAQ,KAt2EC;AAu2ET,YAAQ,KAv2EC;AAw2ET,YAAQ,KAx2EC;AAy2ET,YAAQ,KAz2EC;AA02ET,YAAQ,KA12EC;AA22ET,YAAQ,KA32EC;AA42ET,YAAQ,IA52EC;AA62ET,YAAQ,KA72EC;AA82ET,YAAQ,KA92EC;AA+2ET,YAAQ,KA/2EC;AAg3ET,YAAQ,KAh3EC;AAi3ET,YAAQ,KAj3EC;AAk3ET,YAAQ,YAl3EC;AAm3ET,YAAQ,YAn3EC;AAo3ET,YAAQ,OAp3EC;AAq3ET,YAAQ,KAr3EC;AAs3ET,YAAQ,UAt3EC;AAu3ET,YAAQ,KAv3EC;AAw3ET,YAAQ,OAx3EC;AAy3ET,YAAQ,KAz3EC;AA03ET,YAAQ,KA13EC;AA23ET,YAAQ,KA33EC;AA43ET,YAAQ,KA53EC;AA63ET,YAAQ,KA73EC;AA83ET,YAAQ,OA93EC;AA+3ET,YAAQ,MA/3EC;AAg4ET,YAAQ,MAh4EC;AAi4ET,YAAQ,KAj4EC;AAk4ET,YAAQ,KAl4EC;AAm4ET,YAAQ,KAn4EC;AAo4ET,YAAQ,KAp4EC;AAq4ET,YAAQ,KAr4EC;AAs4ET,YAAQ,MAt4EC;AAu4ET,YAAQ,KAv4EC;AAw4ET,YAAQ,KAx4EC;AAy4ET,YAAQ,KAz4EC;AA04ET,YAAQ,KA14EC;AA24ET,YAAQ,KA34EC;AA44ET,YAAQ,KA54EC;AA64ET,YAAQ,KA74EC;AA84ET,YAAQ,MA94EC;AA+4ET,YAAQ,KA/4EC;AAg5ET,YAAQ,KAh5EC;AAi5ET,YAAQ,KAj5EC;AAk5ET,YAAQ,KAl5EC;AAm5ET,YAAQ,KAn5EC;AAo5ET,YAAQ,MAp5EC;AAq5ET,YAAQ,KAr5EC;AAs5ET,YAAQ,KAt5EC;AAu5ET,YAAQ,KAv5EC;AAw5ET,YAAQ,KAx5EC;AAy5ET,YAAQ,KAz5EC;AA05ET,YAAQ,KA15EC;AA25ET,YAAQ,KA35EC;AA45ET,YAAQ,KA55EC;AA65ET,YAAQ,OA75EC;AA85ET,YAAQ,KA95EC;AA+5ET,YAAQ,KA/5EC;AAg6ET,YAAQ,KAh6EC;AAi6ET,YAAQ,KAj6EC;AAk6ET,YAAQ,IAl6EC;AAm6ET,YAAQ,KAn6EC;AAo6ET,YAAQ,KAp6EC;AAq6ET,YAAQ,KAr6EC;AAs6ET,YAAQ,KAt6EC;AAu6ET,YAAQ,KAv6EC;AAw6ET,YAAQ,KAx6EC;AAy6ET,YAAQ,KAz6EC;AA06ET,YAAQ,KA16EC;AA26ET,YAAQ,KA36EC;AA46ET,YAAQ,KA56EC;AA66ET,YAAQ,KA76EC;AA86ET,YAAQ,MA96EC;AA+6ET,YAAQ,KA/6EC;AAg7ET,YAAQ,KAh7EC;AAi7ET,YAAQ,KAj7EC;AAk7ET,YAAQ,KAl7EC;AAm7ET,YAAQ,KAn7EC;AAo7ET,YAAQ,KAp7EC;AAq7ET,YAAQ,IAr7EC;AAs7ET,YAAQ,KAt7EC;AAu7ET,YAAQ,KAv7EC;AAw7ET,YAAQ,KAx7EC;AAy7ET,YAAQ,KAz7EC;AA07ET,YAAQ,KA17EC;AA27ET,YAAQ,KA37EC;AA47ET,YAAQ,KA57EC;AA67ET,YAAQ,KA77EC;AA87ET,YAAQ,KA97EC;AA+7ET,YAAQ,KA/7EC;AAg8ET,YAAQ,KAh8EC;AAi8ET,YAAQ,KAj8EC;AAk8ET,YAAQ,KAl8EC;AAm8ET,YAAQ,KAn8EC;AAo8ET,YAAQ,KAp8EC;AAq8ET,YAAQ,KAr8EC;AAs8ET,YAAQ,KAt8EC;AAu8ET,YAAQ,KAv8EC;AAw8ET,YAAQ,KAx8EC;AAy8ET,YAAQ,KAz8EC;AA08ET,YAAQ,KA18EC;AA28ET,YAAQ,KA38EC;AA48ET,YAAQ,KA58EC;AA68ET,YAAQ,IA78EC;AA88ET,YAAQ,KA98EC;AA+8ET,YAAQ,KA/8EC;AAg9ET,YAAQ,KAh9EC;AAi9ET,YAAQ,KAj9EC;AAk9ET,YAAQ,KAl9EC;AAm9ET,YAAQ,KAn9EC;AAo9ET,YAAQ,KAp9EC;AAq9ET,YAAQ,KAr9EC;AAs9ET,YAAQ,KAt9EC;AAu9ET,YAAQ,KAv9EC;AAw9ET,YAAQ,IAx9EC;AAy9ET,YAAQ,IAz9EC;AA09ET,YAAQ,KA19EC;AA29ET,YAAQ,KA39EC;AA49ET,YAAQ,IA59EC;AA69ET,YAAQ,KA79EC;AA89ET,YAAQ,KA99EC;AA+9ET,YAAQ,KA/9EC;AAg+ET,YAAQ,KAh+EC;AAi+ET,YAAQ,KAj+EC;AAk+ET,YAAQ,KAl+EC;AAm+ET,YAAQ,IAn+EC;AAo+ET,YAAQ,KAp+EC;AAq+ET,YAAQ,KAr+EC;AAs+ET,YAAQ,IAt+EC;AAu+ET,YAAQ,KAv+EC;AAw+ET,YAAQ,KAx+EC;AAy+ET,YAAQ,KAz+EC;AA0+ET,YAAQ,KA1+EC;AA2+ET,YAAQ,KA3+EC;AA4+ET,YAAQ,KA5+EC;AA6+ET,YAAQ,KA7+EC;AA8+ET,YAAQ,KA9+EC;AA++ET,YAAQ,KA/+EC;AAg/ET,YAAQ,KAh/EC;AAi/ET,YAAQ,KAj/EC;AAk/ET,YAAQ,KAl/EC;AAm/ET,YAAQ,KAn/EC;AAo/ET,YAAQ,KAp/EC;AAq/ET,YAAQ,KAr/EC;AAs/ET,YAAQ,KAt/EC;AAu/ET,YAAQ,KAv/EC;AAw/ET,YAAQ,KAx/EC;AAy/ET,YAAQ,KAz/EC;AA0/ET,YAAQ,KA1/EC;AA2/ET,YAAQ,KA3/EC;AA4/ET,YAAQ,KA5/EC;AA6/ET,YAAQ,KA7/EC;AA8/ET,YAAQ,KA9/EC;AA+/ET,YAAQ,IA//EC;AAggFT,YAAQ,KAhgFC;AAigFT,YAAQ,KAjgFC;AAkgFT,YAAQ,KAlgFC;AAmgFT,YAAQ,KAngFC;AAogFT,YAAQ,KApgFC;AAqgFT,YAAQ,KArgFC;AAsgFT,YAAQ,KAtgFC;AAugFT,YAAQ,IAvgFC;AAwgFT,YAAQ,KAxgFC;AAygFT,YAAQ,IAzgFC;AA0gFT,YAAQ,KA1gFC;AA2gFT,YAAQ,KA3gFC;AA4gFT,YAAQ,KA5gFC;AA6gFT,YAAQ,KA7gFC;AA8gFT,YAAQ,KA9gFC;AA+gFT,YAAQ,KA/gFC;AAghFT,YAAQ,KAhhFC;AAihFT,YAAQ,KAjhFC;AAkhFT,YAAQ,KAlhFC;AAmhFT,YAAQ,KAnhFC;AAohFT,YAAQ,KAphFC;AAqhFT,YAAQ,KArhFC;AAshFT,YAAQ,KAthFC;AAuhFT,YAAQ,IAvhFC;AAwhFT,YAAQ,KAxhFC;AAyhFT,YAAQ,KAzhFC;AA0hFT,YAAQ,KA1hFC;AA2hFT,YAAQ,KA3hFC;AA4hFT,YAAQ,KA5hFC;AA6hFT,YAAQ,KA7hFC;AA8hFT,YAAQ,KA9hFC;AA+hFT,YAAQ,KA/hFC;AAgiFT,YAAQ,KAhiFC;AAiiFT,YAAQ,KAjiFC;AAkiFT,YAAQ,KAliFC;AAmiFT,YAAQ,KAniFC;AAoiFT,YAAQ,KApiFC;AAqiFT,YAAQ,KAriFC;AAsiFT,YAAQ,KAtiFC;AAuiFT,YAAQ,KAviFC;AAwiFT,YAAQ,KAxiFC;AAyiFT,YAAQ,KAziFC;AA0iFT,YAAQ,KA1iFC;AA2iFT,YAAQ,KA3iFC;AA4iFT,YAAQ,KA5iFC;AA6iFT,YAAQ,MA7iFC;AA8iFT,YAAQ,KA9iFC;AA+iFT,YAAQ,KA/iFC;AAgjFT,YAAQ,KAhjFC;AAijFT,YAAQ,KAjjFC;AAkjFT,YAAQ,KAljFC;AAmjFT,YAAQ,KAnjFC;AAojFT,YAAQ,MApjFC;AAqjFT,YAAQ,KArjFC;AAsjFT,YAAQ,KAtjFC;AAujFT,YAAQ,KAvjFC;AAwjFT,YAAQ,KAxjFC;AAyjFT,YAAQ,KAzjFC;AA0jFT,YAAQ,KA1jFC;AA2jFT,YAAQ,KA3jFC;AA4jFT,YAAQ,KA5jFC;AA6jFT,YAAQ,KA7jFC;AA8jFT,YAAQ,KA9jFC;AA+jFT,YAAQ,KA/jFC;AAgkFT,YAAQ,KAhkFC;AAikFT,YAAQ,KAjkFC;AAkkFT,YAAQ,UAlkFC;AAmkFT,YAAQ,KAnkFC;AAokFT,YAAQ,KApkFC;AAqkFT,YAAQ,KArkFC;AAskFT,YAAQ,SAtkFC;AAukFT,YAAQ,KAvkFC;AAwkFT,YAAQ,UAxkFC;AAykFT,YAAQ,KAzkFC;AA0kFT,YAAQ,KA1kFC;AA2kFT,YAAQ,KA3kFC;AA4kFT,YAAQ,KA5kFC;AA6kFT,YAAQ,KA7kFC;AA8kFT,YAAQ,KA9kFC;AA+kFT,YAAQ,KA/kFC;AAglFT,YAAQ,KAhlFC;AAilFT,YAAQ,KAjlFC;AAklFT,YAAQ,KAllFC;AAmlFT,YAAQ,KAnlFC;AAolFT,YAAQ,KAplFC;AAqlFT,YAAQ,KArlFC;AAslFT,YAAQ,KAtlFC;AAulFT,YAAQ,UAvlFC;AAwlFT,YAAQ,YAxlFC;AAylFT,YAAQ,KAzlFC;AA0lFT,YAAQ,KA1lFC;AA2lFT,YAAQ,KA3lFC;AA4lFT,YAAQ,KA5lFC;AA6lFT,YAAQ,IA7lFC;AA8lFT,YAAQ,KA9lFC;AA+lFT,YAAQ,KA/lFC;AAgmFT,YAAQ,KAhmFC;AAimFT,YAAQ,IAjmFC;AAkmFT,YAAQ,KAlmFC;AAmmFT,YAAQ,KAnmFC;AAomFT,YAAQ,KApmFC;AAqmFT,YAAQ,KArmFC;AAsmFT,YAAQ,KAtmFC;AAumFT,YAAQ,KAvmFC;AAwmFT,YAAQ,IAxmFC;AAymFT,YAAQ,IAzmFC;AA0mFT,YAAQ,KA1mFC;AA2mFT,YAAQ,IA3mFC;AA4mFT,YAAQ,IA5mFC;AA6mFT,YAAQ,KA7mFC;AA8mFT,YAAQ,IA9mFC;AA+mFT,YAAQ,KA/mFC;AAgnFT,YAAQ,IAhnFC;AAinFT,YAAQ,IAjnFC;AAknFT,YAAQ,KAlnFC;AAmnFT,YAAQ,KAnnFC;AAonFT,YAAQ,KApnFC;AAqnFT,YAAQ,KArnFC;AAsnFT,YAAQ,KAtnFC;AAunFT,YAAQ,KAvnFC;AAwnFT,YAAQ,KAxnFC;AAynFT,YAAQ,QAznFC;AA0nFT,YAAQ,iBA1nFC;AA2nFT,YAAQ,KA3nFC;AA4nFT,YAAQ,KA5nFC;AA6nFT,YAAQ,KA7nFC;AA8nFT,YAAQ,KA9nFC;AA+nFT,YAAQ,KA/nFC;AAgoFT,YAAQ,KAhoFC;AAioFT,YAAQ,KAjoFC;AAkoFT,YAAQ,KAloFC;AAmoFT,YAAQ,KAnoFC;AAooFT,YAAQ,KApoFC;AAqoFT,YAAQ,KAroFC;AAsoFT,YAAQ,KAtoFC;AAuoFT,YAAQ,WAvoFC;AAwoFT,YAAQ,KAxoFC;AAyoFT,YAAQ,KAzoFC;AA0oFT,YAAQ,KA1oFC;AA2oFT,YAAQ,KA3oFC;AA4oFT,YAAQ,WA5oFC;AA6oFT,YAAQ,SA7oFC;AA8oFT,YAAQ,SA9oFC;AA+oFT,YAAQ,UA/oFC;AAgpFT,YAAQ,SAhpFC;AAipFT,YAAQ,KAjpFC;AAkpFT,YAAQ,KAlpFC;AAmpFT,YAAQ,KAnpFC;AAopFT,YAAQ,KAppFC;AAqpFT,YAAQ,KArpFC;AAspFT,YAAQ,KAtpFC;AAupFT,YAAQ,UAvpFC;AAwpFT,YAAQ,KAxpFC;AAypFT,YAAQ,KAzpFC;AA0pFT,YAAQ,KA1pFC;AA2pFT,YAAQ,KA3pFC;AA4pFT,YAAQ,KA5pFC;AA6pFT,YAAQ,KA7pFC;AA8pFT,YAAQ,KA9pFC;AA+pFT,YAAQ,KA/pFC;AAgqFT,YAAQ,KAhqFC;AAiqFT,YAAQ,KAjqFC;AAkqFT,YAAQ,KAlqFC;AAmqFT,YAAQ,KAnqFC;AAoqFT,YAAQ,KApqFC;AAqqFT,YAAQ,KArqFC;AAsqFT,YAAQ,KAtqFC;AAuqFT,YAAQ,KAvqFC;AAwqFT,YAAQ,MAxqFC;AAyqFT,YAAQ,MAzqFC;AA0qFT,YAAQ,MA1qFC;AA2qFT,YAAQ,KA3qFC;AA4qFT,YAAQ,KA5qFC;AA6qFT,YAAQ,KA7qFC;AA8qFT,YAAQ,KA9qFC;AA+qFT,YAAQ,KA/qFC;AAgrFT,YAAQ,KAhrFC;AAirFT,YAAQ,KAjrFC;AAkrFT,YAAQ,KAlrFC;AAmrFT,YAAQ,KAnrFC;AAorFT,YAAQ,MAprFC;AAqrFT,YAAQ,KArrFC;AAsrFT,YAAQ,KAtrFC;AAurFT,YAAQ,KAvrFC;AAwrFT,YAAQ,MAxrFC;AAyrFT,YAAQ,KAzrFC;AA0rFT,YAAQ,KA1rFC;AA2rFT,YAAQ,MA3rFC;AA4rFT,YAAQ,KA5rFC;AA6rFT,YAAQ,KA7rFC;AA8rFT,YAAQ,KA9rFC;AA+rFT,YAAQ,KA/rFC;AAgsFT,YAAQ,KAhsFC;AAisFT,YAAQ,MAjsFC;AAksFT,YAAQ,KAlsFC;AAmsFT,YAAQ,KAnsFC;AAosFT,YAAQ,KApsFC;AAqsFT,YAAQ,OArsFC;AAssFT,YAAQ,KAtsFC;AAusFT,YAAQ,MAvsFC;AAwsFT,YAAQ,MAxsFC;AAysFT,YAAQ,MAzsFC;AA0sFT,YAAQ,KA1sFC;AA2sFT,YAAQ,OA3sFC;AA4sFT,YAAQ,MA5sFC;AA6sFT,YAAQ,OA7sFC;AA8sFT,YAAQ,MA9sFC;AA+sFT,YAAQ,MA/sFC;AAgtFT,YAAQ,KAhtFC;AAitFT,YAAQ,KAjtFC;AAktFT,YAAQ,MAltFC;AAmtFT,YAAQ,KAntFC;AAotFT,YAAQ,WAptFC;AAqtFT,YAAQ,KArtFC;AAstFT,YAAQ,KAttFC;AAutFT,YAAQ,KAvtFC;AAwtFT,YAAQ,MAxtFC;AAytFT,YAAQ,MAztFC;AA0tFT,YAAQ,KA1tFC;AA2tFT,YAAQ,OA3tFC;AA4tFT,YAAQ,UA5tFC;AA6tFT,YAAQ,KA7tFC;AA8tFT,YAAQ,OA9tFC;AA+tFT,YAAQ,KA/tFC;AAguFT,YAAQ,KAhuFC;AAiuFT,YAAQ,MAjuFC;AAkuFT,YAAQ,KAluFC;AAmuFT,YAAQ,KAnuFC;AAouFT,YAAQ,KApuFC;AAquFT,YAAQ,KAruFC;AAsuFT,YAAQ,SAtuFC;AAuuFT,YAAQ,KAvuFC;AAwuFT,YAAQ,KAxuFC;AAyuFT,YAAQ,KAzuFC;AA0uFT,YAAQ,MA1uFC;AA2uFT,YAAQ,KA3uFC;AA4uFT,YAAQ,KA5uFC;AA6uFT,YAAQ,KA7uFC;AA8uFT,YAAQ,KA9uFC;AA+uFT,YAAQ,KA/uFC;AAgvFT,YAAQ,KAhvFC;AAivFT,YAAQ,MAjvFC;AAkvFT,YAAQ,KAlvFC;AAmvFT,YAAQ,MAnvFC;AAovFT,YAAQ,MApvFC;AAqvFT,YAAQ,MArvFC;AAsvFT,YAAQ,KAtvFC;AAuvFT,YAAQ,KAvvFC;AAwvFT,YAAQ,KAxvFC;AAyvFT,YAAQ,KAzvFC;AA0vFT,YAAQ,MA1vFC;AA2vFT,YAAQ,KA3vFC;AA4vFT,YAAQ,KA5vFC;AA6vFT,YAAQ,KA7vFC;AA8vFT,YAAQ,MA9vFC;AA+vFT,YAAQ,MA/vFC;AAgwFT,YAAQ,KAhwFC;AAiwFT,YAAQ,KAjwFC;AAkwFT,YAAQ,aAlwFC;AAmwFT,YAAQ,KAnwFC;AAowFT,YAAQ,KApwFC;AAqwFT,YAAQ,KArwFC;AAswFT,YAAQ,KAtwFC;AAuwFT,YAAQ,KAvwFC;AAwwFT,YAAQ,KAxwFC;AAywFT,YAAQ,KAzwFC;AA0wFT,YAAQ,KA1wFC;AA2wFT,YAAQ,KA3wFC;AA4wFT,YAAQ,KA5wFC;AA6wFT,YAAQ,OA7wFC;AA8wFT,YAAQ,KA9wFC;AA+wFT,YAAQ,WA/wFC;AAgxFT,YAAQ,KAhxFC;AAixFT,YAAQ,KAjxFC;AAkxFT,YAAQ,KAlxFC;AAmxFT,YAAQ,KAnxFC;AAoxFT,YAAQ,MApxFC;AAqxFT,YAAQ,MArxFC;AAsxFT,YAAQ,KAtxFC;AAuxFT,YAAQ,KAvxFC;AAwxFT,YAAQ,KAxxFC;AAyxFT,YAAQ,KAzxFC;AA0xFT,YAAQ,KA1xFC;AA2xFT,YAAQ,KA3xFC;AA4xFT,YAAQ,YA5xFC;AA6xFT,YAAQ,MA7xFC;AA8xFT,YAAQ,MA9xFC;AA+xFT,YAAQ,KA/xFC;AAgyFT,YAAQ,KAhyFC;AAiyFT,YAAQ,MAjyFC;AAkyFT,YAAQ,KAlyFC;AAmyFT,YAAQ,MAnyFC;AAoyFT,YAAQ,MApyFC;AAqyFT,YAAQ,MAryFC;AAsyFT,YAAQ,OAtyFC;AAuyFT,YAAQ,MAvyFC;AAwyFT,YAAQ,MAxyFC,EA5XF,EAAf;;;;AAwqGA,SAASC,SAAT,CAAmB7sB,IAAnB,EAAyB;AACrB,SAAQysB,QAAQ,IAAIA,QAAQ,WAAIzsB,IAAJ,WAArB,IAA0C,EAAjD;AACH;;AAED,SAAS8sB,OAAT,CAAiB9sB,IAAjB,EAAuBuR,IAAvB,EAA6B;AACzB,MAAItlB,MAAM,GAAG,EAAb;;AAEA,MAAI+T,IAAI,KAAK,UAAT,IAAuB,CAACuR,IAA5B,EAAkC;AAC9B,WAAOtlB,MAAP;AACH;;AAED,MAAM61B,IAAI,GAAG+K,SAAS,CAAC7sB,IAAD,CAAtB;AACA/T,QAAM,GAAG0C,MAAM,CAACwC,IAAP,CAAY2wB,IAAZ,EAAkBn1B,GAAlB,CAAsB,UAAC4kB,IAAD,UAAW;AACtCA,UAAI,EAAJA,IADsC;AAEtCnf,UAAI,EAAE0vB,IAAI,CAACvQ,IAAD,CAF4B,EAAX,EAAtB,CAAT;;;AAKA,MAAIA,IAAJ,EAAU;AACN;AACA,QAAIA,IAAI,CAAC,CAAD,CAAJ,KAAY,GAAZ,IAAmBvR,IAAI,KAAK,MAAhC,EAAwC;AACpCuR,UAAI,GAAG,GAAP;AACH;;AAEDtlB,UAAM,GAAGA,MAAM,CAAC4L,MAAP,CAAc,UAACC,IAAD,UAAUA,IAAI,CAACyZ,IAAL,CAAUllB,OAAV,CAAkBklB,IAAlB,MAA4B,CAAtC,EAAd,CAAT;AACH;;AAED,SAAOtlB,MAAP;AACH,C,CAAC;;AAEF,SAAS8gC,QAAT,CAAkB/sB,IAAlB,EAAwBuR,IAAxB,EAA8B;AAC1B,MAAIyb,UAAU,GAAGhtB,IAAI,KAAK,UAAT,GAAsB,CAAtB,GAA0BA,IAAI,KAAK,MAAT,GAAkB,CAAlB,GAAsB,CAAjE;AACA,MAAM8hB,IAAI,GAAGgL,OAAO,CAAC9sB,IAAD,EAAOuR,IAAI,CAACzlB,KAAL,CAAW,CAAX,EAAckhC,UAAU,GAAG,CAA3B,CAAP,CAApB,CAF0B,CAEiC;;AAE3D,MAAIzb,IAAI,CAAC,CAAD,CAAJ,KAAY,GAAZ,IAAmBvR,IAAI,KAAK,UAAhC,EAA4C;AACxCgtB,cAAU,GAAG,CAAb;AACH;;AAEDzb,MAAI,GAAGA,IAAI,CAACzlB,KAAL,CAAW,CAAX,EAAckhC,UAAd,CAAP;;AAEA,OAAK,IAAI5gC,CAAC,GAAG,CAAb,EAAgBA,CAAC,GAAG01B,IAAI,CAAC/1B,MAAzB,EAAiCK,CAAC,EAAlC,EAAsC;AAClC,QAAI01B,IAAI,CAAC11B,CAAD,CAAJ,CAAQmlB,IAAR,CAAazlB,KAAb,CAAmB,CAAnB,EAAsBkhC,UAAtB,MAAsCzb,IAA1C,EAAgD;AAC5C,aAAOnlB,CAAP;AACH;AACJ;;AAED,SAAO,CAAP;AACH,C,CAAC;AACF;;AAEAqgB,MAAM,CAACC,OAAP,GAAiB;AACb+f,UAAQ,EAAEA,QADG;AAEbK,SAAO,EAAEA,OAFI;AAGbC,UAAQ,EAAEA,QAHG,EAAjB,C;;;;;;;;;;;ACztGA,+CAAIl6B,GAAG,GAAGue,mBAAO,CAAC,yBAAD,CAAjB;;AAEA,IAAI3b,GAAG,GAAGC,MAAM,EAAhB;;AAEA,SAASu3B,UAAT,CAAoBC,IAApB,EAA0B;AACtB,MAAIC,IAAI,GAAGD,IAAI,CAACE,WAAL,EAAX;AACA,MAAIC,KAAK,GAAGH,IAAI,CAACI,QAAL,KAAkB,CAA9B;AACA,MAAIC,GAAG,GAAGL,IAAI,CAACM,OAAL,EAAV;AACA,MAAIC,IAAI,GAAGP,IAAI,CAACQ,QAAL,EAAX;AACA,MAAIC,MAAM,GAAGT,IAAI,CAACU,UAAL,EAAb;AACA,MAAIC,MAAM,GAAGX,IAAI,CAACY,UAAL,EAAb;AACA,SAAO,CAACX,IAAD,EAAOE,KAAP,EAAcE,GAAd,EAAmB5gC,GAAnB,CAAuBohC,YAAvB,EAAqChhC,IAArC,CAA0C,GAA1C,IAAiD,GAAjD,GAAuD,CAAC0gC,IAAD,EAAOE,MAAP,EAAeE,MAAf,EAAuBlhC,GAAvB,CAA2BohC,YAA3B,EAAyChhC,IAAzC,CAA8C,GAA9C,CAA9D;AACH;;AAED,SAASghC,YAAT,CAAsBC,CAAtB,EAAyB;AACrBA,GAAC,GAAGA,CAAC,CAAClhC,QAAF,EAAJ;AACA,SAAOkhC,CAAC,CAAC,CAAD,CAAD,GAAOA,CAAP,GAAW,MAAMA,CAAxB;AACH;AACD;;;;AAIA,SAASvc,OAAT,CAAiB/a,GAAjB,EAAiD,KAA3BhF,IAA2B,uEAApB,EAAoB,KAAhBH,MAAgB,uEAAP,KAAO;AAC7C,SAAO,IAAIQ,OAAJ,CAAY,UAAUC,OAAV,EAAmBiB,MAAnB,EAA2B;AAC1CoZ,OAAG,CAACoF,OAAJ,CAAY;AACR/a,SAAG,EAAEA,GADG;AAERhF,UAAI,EAAEA,IAFE;AAGRH,YAAM,EAAEA,MAHA;AAIR08B,YAAM,EAAE;AACJ,wBAAgB,kBADZ;AAEJ,4BAAoB5hB,GAAG,CAAClf,cAAJ,CAAmB,OAAnB,CAFhB,EAJA;;AAQRiH,aAAO,EAAE,iBAAU/D,GAAV,EAAe;AACpB,YAAIA,GAAG,CAAC69B,UAAJ,IAAkB,GAAtB,EAA2B;AACvB,cAAI79B,GAAG,CAACqB,IAAJ,CAASggB,KAAT,IAAkB,GAAtB,EAA2B;AACvB;AACA,gBAAI;AACArF,iBAAG,CAAC8hB,iBAAJ,CAAsB,UAAtB;AACA9hB,iBAAG,CAAC8hB,iBAAJ,CAAsB,OAAtB;AACH,aAHD,CAGE,OAAOxvB,CAAP,EAAU;;AAEX,aAFC,CACE;AACF;AAEF0N,eAAG,CAACuP,UAAJ,CAAe;AACXllB,iBAAG,EAAE,yBADM,EAAf;;AAGH,WAZD,MAYO;AACH1E,mBAAO,CAAC3B,GAAG,CAACqB,IAAL,CAAP;AACH;AACJ,SAhBD,MAgBO;AACHuB,gBAAM,CAAC5C,GAAG,CAACkK,MAAL,CAAN;AACH;AACJ,OA5BO;AA6BRlG,UAAI,EAAE,cAAUT,GAAV,EAAe;AACjBX,cAAM,CAACW,GAAD,CAAN;AACH,OA/BO,EAAZ;;AAiCH,GAlCM,CAAP;AAmCH;;AAED,SAASw6B,QAAT,CAAkB13B,GAAlB,EAAuB;AACnB;AACA,MAAI,KAAJ,EAAW,EAAX,MAKO;AACH2V,OAAG,CAACpV,UAAJ,CAAe;AACXP,SAAG,EAAEA,GADM,EAAf;;AAGH;AACJ;;AAED,SAAS23B,cAAT,CAAwBC,GAAxB,EAA6B;AACzBjiB,KAAG,CAACkiB,SAAJ,CAAc;AACV7I,SAAK,EAAE4I,GADG;AAEVE,SAAK,EAAE,+BAFG,EAAd;;AAIH;;AAED/hB,MAAM,CAACC,OAAP,GAAiB;AACbugB,YAAU,EAAVA,UADa;AAEbxb,SAAO,EAAPA,OAFa;AAGb2c,UAAQ,EAARA,QAHa;AAIbC,gBAAc,EAAdA,cAJa,EAAjB,C","file":"common/vendor.js","sourcesContent":["import Vue from 'vue';\r\nimport { initVueI18n } from '@dcloudio/uni-i18n';\r\n\r\nlet realAtob;\r\n\r\nconst b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';\r\nconst b64re = /^(?:[A-Za-z\\d+/]{4})*?(?:[A-Za-z\\d+/]{2}(?:==)?|[A-Za-z\\d+/]{3}=?)?$/;\r\n\r\nif (typeof atob !== 'function') {\r\n realAtob = function (str) {\r\n str = String(str).replace(/[\\t\\n\\f\\r ]+/g, '');\r\n if (!b64re.test(str)) { throw new Error(\"Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.\") }\r\n\r\n // Adding the padding if missing, for semplicity\r\n str += '=='.slice(2 - (str.length & 3));\r\n var bitmap; var result = ''; var r1; var r2; var i = 0;\r\n for (; i < str.length;) {\r\n bitmap = b64.indexOf(str.charAt(i++)) << 18 | b64.indexOf(str.charAt(i++)) << 12 |\r\n (r1 = b64.indexOf(str.charAt(i++))) << 6 | (r2 = b64.indexOf(str.charAt(i++)));\r\n\r\n result += r1 === 64 ? String.fromCharCode(bitmap >> 16 & 255)\r\n : r2 === 64 ? String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255)\r\n : String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255, bitmap & 255);\r\n }\r\n return result\r\n };\r\n} else {\r\n // 注意atob只能在全局对象上调用,例如:`const Base64 = {atob};Base64.atob('xxxx')`是错误的用法\r\n realAtob = atob;\r\n}\r\n\r\nfunction b64DecodeUnicode (str) {\r\n return decodeURIComponent(realAtob(str).split('').map(function (c) {\r\n return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2)\r\n }).join(''))\r\n}\r\n\r\nfunction getCurrentUserInfo () {\r\n const token = ( wx).getStorageSync('uni_id_token') || '';\r\n const tokenArr = token.split('.');\r\n if (!token || tokenArr.length !== 3) {\r\n return {\r\n uid: null,\r\n role: [],\r\n permission: [],\r\n tokenExpired: 0\r\n }\r\n }\r\n let userInfo;\r\n try {\r\n userInfo = JSON.parse(b64DecodeUnicode(tokenArr[1]));\r\n } catch (error) {\r\n throw new Error('获取当前用户信息出错,详细错误信息为:' + error.message)\r\n }\r\n userInfo.tokenExpired = userInfo.exp * 1000;\r\n delete userInfo.exp;\r\n delete userInfo.iat;\r\n return userInfo\r\n}\r\n\r\nfunction uniIdMixin (Vue) {\r\n Vue.prototype.uniIDHasRole = function (roleId) {\r\n const {\r\n role\r\n } = getCurrentUserInfo();\r\n return role.indexOf(roleId) > -1\r\n };\r\n Vue.prototype.uniIDHasPermission = function (permissionId) {\r\n const {\r\n permission\r\n } = getCurrentUserInfo();\r\n return this.uniIDHasRole('admin') || permission.indexOf(permissionId) > -1\r\n };\r\n Vue.prototype.uniIDTokenValid = function () {\r\n const {\r\n tokenExpired\r\n } = getCurrentUserInfo();\r\n return tokenExpired > Date.now()\r\n };\r\n}\r\n\r\nconst _toString = Object.prototype.toString;\r\nconst hasOwnProperty = Object.prototype.hasOwnProperty;\r\n\r\nfunction isFn (fn) {\r\n return typeof fn === 'function'\r\n}\r\n\r\nfunction isStr (str) {\r\n return typeof str === 'string'\r\n}\r\n\r\nfunction isPlainObject (obj) {\r\n return _toString.call(obj) === '[object Object]'\r\n}\r\n\r\nfunction hasOwn (obj, key) {\r\n return hasOwnProperty.call(obj, key)\r\n}\r\n\r\nfunction noop () {}\r\n\r\n/**\r\n * Create a cached version of a pure function.\r\n */\r\nfunction cached (fn) {\r\n const cache = Object.create(null);\r\n return function cachedFn (str) {\r\n const hit = cache[str];\r\n return hit || (cache[str] = fn(str))\r\n }\r\n}\r\n\r\n/**\r\n * Camelize a hyphen-delimited string.\r\n */\r\nconst camelizeRE = /-(\\w)/g;\r\nconst camelize = cached((str) => {\r\n return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : '')\r\n});\r\n\r\nconst HOOKS = [\r\n 'invoke',\r\n 'success',\r\n 'fail',\r\n 'complete',\r\n 'returnValue'\r\n];\r\n\r\nconst globalInterceptors = {};\r\nconst scopedInterceptors = {};\r\n\r\nfunction mergeHook (parentVal, childVal) {\r\n const res = childVal\r\n ? parentVal\r\n ? parentVal.concat(childVal)\r\n : Array.isArray(childVal)\r\n ? childVal : [childVal]\r\n : parentVal;\r\n return res\r\n ? dedupeHooks(res)\r\n : res\r\n}\r\n\r\nfunction dedupeHooks (hooks) {\r\n const res = [];\r\n for (let i = 0; i < hooks.length; i++) {\r\n if (res.indexOf(hooks[i]) === -1) {\r\n res.push(hooks[i]);\r\n }\r\n }\r\n return res\r\n}\r\n\r\nfunction removeHook (hooks, hook) {\r\n const index = hooks.indexOf(hook);\r\n if (index !== -1) {\r\n hooks.splice(index, 1);\r\n }\r\n}\r\n\r\nfunction mergeInterceptorHook (interceptor, option) {\r\n Object.keys(option).forEach(hook => {\r\n if (HOOKS.indexOf(hook) !== -1 && isFn(option[hook])) {\r\n interceptor[hook] = mergeHook(interceptor[hook], option[hook]);\r\n }\r\n });\r\n}\r\n\r\nfunction removeInterceptorHook (interceptor, option) {\r\n if (!interceptor || !option) {\r\n return\r\n }\r\n Object.keys(option).forEach(hook => {\r\n if (HOOKS.indexOf(hook) !== -1 && isFn(option[hook])) {\r\n removeHook(interceptor[hook], option[hook]);\r\n }\r\n });\r\n}\r\n\r\nfunction addInterceptor (method, option) {\r\n if (typeof method === 'string' && isPlainObject(option)) {\r\n mergeInterceptorHook(scopedInterceptors[method] || (scopedInterceptors[method] = {}), option);\r\n } else if (isPlainObject(method)) {\r\n mergeInterceptorHook(globalInterceptors, method);\r\n }\r\n}\r\n\r\nfunction removeInterceptor (method, option) {\r\n if (typeof method === 'string') {\r\n if (isPlainObject(option)) {\r\n removeInterceptorHook(scopedInterceptors[method], option);\r\n } else {\r\n delete scopedInterceptors[method];\r\n }\r\n } else if (isPlainObject(method)) {\r\n removeInterceptorHook(globalInterceptors, method);\r\n }\r\n}\r\n\r\nfunction wrapperHook (hook) {\r\n return function (data) {\r\n return hook(data) || data\r\n }\r\n}\r\n\r\nfunction isPromise (obj) {\r\n return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function'\r\n}\r\n\r\nfunction queue (hooks, data) {\r\n let promise = false;\r\n for (let i = 0; i < hooks.length; i++) {\r\n const hook = hooks[i];\r\n if (promise) {\r\n promise = Promise.resolve(wrapperHook(hook));\r\n } else {\r\n const res = hook(data);\r\n if (isPromise(res)) {\r\n promise = Promise.resolve(res);\r\n }\r\n if (res === false) {\r\n return {\r\n then () { }\r\n }\r\n }\r\n }\r\n }\r\n return promise || {\r\n then (callback) {\r\n return callback(data)\r\n }\r\n }\r\n}\r\n\r\nfunction wrapperOptions (interceptor, options = {}) {\r\n ['success', 'fail', 'complete'].forEach(name => {\r\n if (Array.isArray(interceptor[name])) {\r\n const oldCallback = options[name];\r\n options[name] = function callbackInterceptor (res) {\r\n queue(interceptor[name], res).then((res) => {\r\n /* eslint-disable no-mixed-operators */\r\n return isFn(oldCallback) && oldCallback(res) || res\r\n });\r\n };\r\n }\r\n });\r\n return options\r\n}\r\n\r\nfunction wrapperReturnValue (method, returnValue) {\r\n const returnValueHooks = [];\r\n if (Array.isArray(globalInterceptors.returnValue)) {\r\n returnValueHooks.push(...globalInterceptors.returnValue);\r\n }\r\n const interceptor = scopedInterceptors[method];\r\n if (interceptor && Array.isArray(interceptor.returnValue)) {\r\n returnValueHooks.push(...interceptor.returnValue);\r\n }\r\n returnValueHooks.forEach(hook => {\r\n returnValue = hook(returnValue) || returnValue;\r\n });\r\n return returnValue\r\n}\r\n\r\nfunction getApiInterceptorHooks (method) {\r\n const interceptor = Object.create(null);\r\n Object.keys(globalInterceptors).forEach(hook => {\r\n if (hook !== 'returnValue') {\r\n interceptor[hook] = globalInterceptors[hook].slice();\r\n }\r\n });\r\n const scopedInterceptor = scopedInterceptors[method];\r\n if (scopedInterceptor) {\r\n Object.keys(scopedInterceptor).forEach(hook => {\r\n if (hook !== 'returnValue') {\r\n interceptor[hook] = (interceptor[hook] || []).concat(scopedInterceptor[hook]);\r\n }\r\n });\r\n }\r\n return interceptor\r\n}\r\n\r\nfunction invokeApi (method, api, options, ...params) {\r\n const interceptor = getApiInterceptorHooks(method);\r\n if (interceptor && Object.keys(interceptor).length) {\r\n if (Array.isArray(interceptor.invoke)) {\r\n const res = queue(interceptor.invoke, options);\r\n return res.then((options) => {\r\n return api(wrapperOptions(interceptor, options), ...params)\r\n })\r\n } else {\r\n return api(wrapperOptions(interceptor, options), ...params)\r\n }\r\n }\r\n return api(options, ...params)\r\n}\r\n\r\nconst promiseInterceptor = {\r\n returnValue (res) {\r\n if (!isPromise(res)) {\r\n return res\r\n }\r\n return new Promise((resolve, reject) => {\r\n res.then(res => {\r\n if (res[0]) {\r\n reject(res[0]);\r\n } else {\r\n resolve(res[1]);\r\n }\r\n });\r\n })\r\n }\r\n};\r\n\r\nconst SYNC_API_RE =\r\n /^\\$|Window$|WindowStyle$|sendNativeEvent|restoreGlobal|getCurrentSubNVue|getMenuButtonBoundingClientRect|^report|interceptors|Interceptor$|getSubNVueById|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64|getLocale|setLocale/;\r\n\r\nconst CONTEXT_API_RE = /^create|Manager$/;\r\n\r\n// Context例外情况\r\nconst CONTEXT_API_RE_EXC = ['createBLEConnection'];\r\n\r\n// 同步例外情况\r\nconst ASYNC_API = ['createBLEConnection'];\r\n\r\nconst CALLBACK_API_RE = /^on|^off/;\r\n\r\nfunction isContextApi (name) {\r\n return CONTEXT_API_RE.test(name) && CONTEXT_API_RE_EXC.indexOf(name) === -1\r\n}\r\nfunction isSyncApi (name) {\r\n return SYNC_API_RE.test(name) && ASYNC_API.indexOf(name) === -1\r\n}\r\n\r\nfunction isCallbackApi (name) {\r\n return CALLBACK_API_RE.test(name) && name !== 'onPush'\r\n}\r\n\r\nfunction handlePromise (promise) {\r\n return promise.then(data => {\r\n return [null, data]\r\n })\r\n .catch(err => [err])\r\n}\r\n\r\nfunction shouldPromise (name) {\r\n if (\r\n isContextApi(name) ||\r\n isSyncApi(name) ||\r\n isCallbackApi(name)\r\n ) {\r\n return false\r\n }\r\n return true\r\n}\r\n\r\n/* eslint-disable no-extend-native */\r\nif (!Promise.prototype.finally) {\r\n Promise.prototype.finally = function (callback) {\r\n const promise = this.constructor;\r\n return this.then(\r\n value => promise.resolve(callback()).then(() => value),\r\n reason => promise.resolve(callback()).then(() => {\r\n throw reason\r\n })\r\n )\r\n };\r\n}\r\n\r\nfunction promisify (name, api) {\r\n if (!shouldPromise(name)) {\r\n return api\r\n }\r\n return function promiseApi (options = {}, ...params) {\r\n if (isFn(options.success) || isFn(options.fail) || isFn(options.complete)) {\r\n return wrapperReturnValue(name, invokeApi(name, api, options, ...params))\r\n }\r\n return wrapperReturnValue(name, handlePromise(new Promise((resolve, reject) => {\r\n invokeApi(name, api, Object.assign({}, options, {\r\n success: resolve,\r\n fail: reject\r\n }), ...params);\r\n })))\r\n }\r\n}\r\n\r\nconst EPS = 1e-4;\r\nconst BASE_DEVICE_WIDTH = 750;\r\nlet isIOS = false;\r\nlet deviceWidth = 0;\r\nlet deviceDPR = 0;\r\n\r\nfunction checkDeviceWidth () {\r\n const {\r\n platform,\r\n pixelRatio,\r\n windowWidth\r\n } = wx.getSystemInfoSync(); // uni=>wx runtime 编译目标是 uni 对象,内部不允许直接使用 uni\r\n\r\n deviceWidth = windowWidth;\r\n deviceDPR = pixelRatio;\r\n isIOS = platform === 'ios';\r\n}\r\n\r\nfunction upx2px (number, newDeviceWidth) {\r\n if (deviceWidth === 0) {\r\n checkDeviceWidth();\r\n }\r\n\r\n number = Number(number);\r\n if (number === 0) {\r\n return 0\r\n }\r\n let result = (number / BASE_DEVICE_WIDTH) * (newDeviceWidth || deviceWidth);\r\n if (result < 0) {\r\n result = -result;\r\n }\r\n result = Math.floor(result + EPS);\r\n if (result === 0) {\r\n if (deviceDPR === 1 || !isIOS) {\r\n result = 1;\r\n } else {\r\n result = 0.5;\r\n }\r\n }\r\n return number < 0 ? -result : result\r\n}\r\n\r\nfunction getLocale () {\r\n // 优先使用 $locale\r\n const app = getApp({\r\n allowDefault: true\r\n });\r\n if (app && app.$vm) {\r\n return app.$vm.$locale\r\n }\r\n return wx.getSystemInfoSync().language || 'zh-Hans'\r\n}\r\n\r\nfunction setLocale (locale) {\r\n const app = getApp();\r\n if (!app) {\r\n return false\r\n }\r\n const oldLocale = app.$vm.$locale;\r\n if (oldLocale !== locale) {\r\n app.$vm.$locale = locale;\r\n onLocaleChangeCallbacks.forEach((fn) => fn({\r\n locale\r\n }));\r\n return true\r\n }\r\n return false\r\n}\r\n\r\nconst onLocaleChangeCallbacks = [];\r\nfunction onLocaleChange (fn) {\r\n if (onLocaleChangeCallbacks.indexOf(fn) === -1) {\r\n onLocaleChangeCallbacks.push(fn);\r\n }\r\n}\r\n\r\nif (typeof global !== 'undefined') {\r\n global.getLocale = getLocale;\r\n}\r\n\r\nconst interceptors = {\r\n promiseInterceptor\r\n};\r\n\r\nvar baseApi = /*#__PURE__*/Object.freeze({\r\n __proto__: null,\r\n upx2px: upx2px,\r\n getLocale: getLocale,\r\n setLocale: setLocale,\r\n onLocaleChange: onLocaleChange,\r\n addInterceptor: addInterceptor,\r\n removeInterceptor: removeInterceptor,\r\n interceptors: interceptors\r\n});\r\n\r\nfunction findExistsPageIndex (url) {\r\n const pages = getCurrentPages();\r\n let len = pages.length;\r\n while (len--) {\r\n const page = pages[len];\r\n if (page.$page && page.$page.fullPath === url) {\r\n return len\r\n }\r\n }\r\n return -1\r\n}\r\n\r\nvar redirectTo = {\r\n name (fromArgs) {\r\n if (fromArgs.exists === 'back' && fromArgs.delta) {\r\n return 'navigateBack'\r\n }\r\n return 'redirectTo'\r\n },\r\n args (fromArgs) {\r\n if (fromArgs.exists === 'back' && fromArgs.url) {\r\n const existsPageIndex = findExistsPageIndex(fromArgs.url);\r\n if (existsPageIndex !== -1) {\r\n const delta = getCurrentPages().length - 1 - existsPageIndex;\r\n if (delta > 0) {\r\n fromArgs.delta = delta;\r\n }\r\n }\r\n }\r\n }\r\n};\r\n\r\nvar previewImage = {\r\n args (fromArgs) {\r\n let currentIndex = parseInt(fromArgs.current);\r\n if (isNaN(currentIndex)) {\r\n return\r\n }\r\n const urls = fromArgs.urls;\r\n if (!Array.isArray(urls)) {\r\n return\r\n }\r\n const len = urls.length;\r\n if (!len) {\r\n return\r\n }\r\n if (currentIndex < 0) {\r\n currentIndex = 0;\r\n } else if (currentIndex >= len) {\r\n currentIndex = len - 1;\r\n }\r\n if (currentIndex > 0) {\r\n fromArgs.current = urls[currentIndex];\r\n fromArgs.urls = urls.filter(\r\n (item, index) => index < currentIndex ? item !== urls[currentIndex] : true\r\n );\r\n } else {\r\n fromArgs.current = urls[0];\r\n }\r\n return {\r\n indicator: false,\r\n loop: false\r\n }\r\n }\r\n};\r\n\r\nconst UUID_KEY = '__DC_STAT_UUID';\r\nlet deviceId;\r\nfunction addUuid (result) {\r\n deviceId = deviceId || wx.getStorageSync(UUID_KEY);\r\n if (!deviceId) {\r\n deviceId = Date.now() + '' + Math.floor(Math.random() * 1e7);\r\n wx.setStorage({\r\n key: UUID_KEY,\r\n data: deviceId\r\n });\r\n }\r\n result.deviceId = deviceId;\r\n}\r\n\r\nfunction addSafeAreaInsets (result) {\r\n if (result.safeArea) {\r\n const safeArea = result.safeArea;\r\n result.safeAreaInsets = {\r\n top: safeArea.top,\r\n left: safeArea.left,\r\n right: result.windowWidth - safeArea.right,\r\n bottom: result.windowHeight - safeArea.bottom\r\n };\r\n }\r\n}\r\n\r\nvar getSystemInfo = {\r\n returnValue: function (result) {\r\n addUuid(result);\r\n addSafeAreaInsets(result);\r\n }\r\n};\r\n\r\n// import navigateTo from 'uni-helpers/navigate-to'\r\n\r\nconst protocols = {\r\n redirectTo,\r\n // navigateTo, // 由于在微信开发者工具的页面参数,会显示__id__参数,因此暂时关闭mp-weixin对于navigateTo的AOP\r\n previewImage,\r\n getSystemInfo,\r\n getSystemInfoSync: getSystemInfo\r\n};\r\nconst todos = [\r\n 'vibrate',\r\n 'preloadPage',\r\n 'unPreloadPage',\r\n 'loadSubPackage'\r\n];\r\nconst canIUses = [];\r\n\r\nconst CALLBACKS = ['success', 'fail', 'cancel', 'complete'];\r\n\r\nfunction processCallback (methodName, method, returnValue) {\r\n return function (res) {\r\n return method(processReturnValue(methodName, res, returnValue))\r\n }\r\n}\r\n\r\nfunction processArgs (methodName, fromArgs, argsOption = {}, returnValue = {}, keepFromArgs = false) {\r\n if (isPlainObject(fromArgs)) { // 一般 api 的参数解析\r\n const toArgs = keepFromArgs === true ? fromArgs : {}; // returnValue 为 false 时,说明是格式化返回值,直接在返回值对象上修改赋值\r\n if (isFn(argsOption)) {\r\n argsOption = argsOption(fromArgs, toArgs) || {};\r\n }\r\n for (const key in fromArgs) {\r\n if (hasOwn(argsOption, key)) {\r\n let keyOption = argsOption[key];\r\n if (isFn(keyOption)) {\r\n keyOption = keyOption(fromArgs[key], fromArgs, toArgs);\r\n }\r\n if (!keyOption) { // 不支持的参数\r\n console.warn(`The '${methodName}' method of platform '微信小程序' does not support option '${key}'`);\r\n } else if (isStr(keyOption)) { // 重写参数 key\r\n toArgs[keyOption] = fromArgs[key];\r\n } else if (isPlainObject(keyOption)) { // {name:newName,value:value}可重新指定参数 key:value\r\n toArgs[keyOption.name ? keyOption.name : key] = keyOption.value;\r\n }\r\n } else if (CALLBACKS.indexOf(key) !== -1) {\r\n if (isFn(fromArgs[key])) {\r\n toArgs[key] = processCallback(methodName, fromArgs[key], returnValue);\r\n }\r\n } else {\r\n if (!keepFromArgs) {\r\n toArgs[key] = fromArgs[key];\r\n }\r\n }\r\n }\r\n return toArgs\r\n } else if (isFn(fromArgs)) {\r\n fromArgs = processCallback(methodName, fromArgs, returnValue);\r\n }\r\n return fromArgs\r\n}\r\n\r\nfunction processReturnValue (methodName, res, returnValue, keepReturnValue = false) {\r\n if (isFn(protocols.returnValue)) { // 处理通用 returnValue\r\n res = protocols.returnValue(methodName, res);\r\n }\r\n return processArgs(methodName, res, returnValue, {}, keepReturnValue)\r\n}\r\n\r\nfunction wrapper (methodName, method) {\r\n if (hasOwn(protocols, methodName)) {\r\n const protocol = protocols[methodName];\r\n if (!protocol) { // 暂不支持的 api\r\n return function () {\r\n console.error(`Platform '微信小程序' does not support '${methodName}'.`);\r\n }\r\n }\r\n return function (arg1, arg2) { // 目前 api 最多两个参数\r\n let options = protocol;\r\n if (isFn(protocol)) {\r\n options = protocol(arg1);\r\n }\r\n\r\n arg1 = processArgs(methodName, arg1, options.args, options.returnValue);\r\n\r\n const args = [arg1];\r\n if (typeof arg2 !== 'undefined') {\r\n args.push(arg2);\r\n }\r\n if (isFn(options.name)) {\r\n methodName = options.name(arg1);\r\n } else if (isStr(options.name)) {\r\n methodName = options.name;\r\n }\r\n const returnValue = wx[methodName].apply(wx, args);\r\n if (isSyncApi(methodName)) { // 同步 api\r\n return processReturnValue(methodName, returnValue, options.returnValue, isContextApi(methodName))\r\n }\r\n return returnValue\r\n }\r\n }\r\n return method\r\n}\r\n\r\nconst todoApis = Object.create(null);\r\n\r\nconst TODOS = [\r\n 'onTabBarMidButtonTap',\r\n 'subscribePush',\r\n 'unsubscribePush',\r\n 'onPush',\r\n 'offPush',\r\n 'share'\r\n];\r\n\r\nfunction createTodoApi (name) {\r\n return function todoApi ({\r\n fail,\r\n complete\r\n }) {\r\n const res = {\r\n errMsg: `${name}:fail method '${name}' not supported`\r\n };\r\n isFn(fail) && fail(res);\r\n isFn(complete) && complete(res);\r\n }\r\n}\r\n\r\nTODOS.forEach(function (name) {\r\n todoApis[name] = createTodoApi(name);\r\n});\r\n\r\nvar providers = {\r\n oauth: ['weixin'],\r\n share: ['weixin'],\r\n payment: ['wxpay'],\r\n push: ['weixin']\r\n};\r\n\r\nfunction getProvider ({\r\n service,\r\n success,\r\n fail,\r\n complete\r\n}) {\r\n let res = false;\r\n if (providers[service]) {\r\n res = {\r\n errMsg: 'getProvider:ok',\r\n service,\r\n provider: providers[service]\r\n };\r\n isFn(success) && success(res);\r\n } else {\r\n res = {\r\n errMsg: 'getProvider:fail service not found'\r\n };\r\n isFn(fail) && fail(res);\r\n }\r\n isFn(complete) && complete(res);\r\n}\r\n\r\nvar extraApi = /*#__PURE__*/Object.freeze({\r\n __proto__: null,\r\n getProvider: getProvider\r\n});\r\n\r\nconst getEmitter = (function () {\r\n let Emitter;\r\n return function getUniEmitter () {\r\n if (!Emitter) {\r\n Emitter = new Vue();\r\n }\r\n return Emitter\r\n }\r\n})();\r\n\r\nfunction apply (ctx, method, args) {\r\n return ctx[method].apply(ctx, args)\r\n}\r\n\r\nfunction $on () {\r\n return apply(getEmitter(), '$on', [...arguments])\r\n}\r\nfunction $off () {\r\n return apply(getEmitter(), '$off', [...arguments])\r\n}\r\nfunction $once () {\r\n return apply(getEmitter(), '$once', [...arguments])\r\n}\r\nfunction $emit () {\r\n return apply(getEmitter(), '$emit', [...arguments])\r\n}\r\n\r\nvar eventApi = /*#__PURE__*/Object.freeze({\r\n __proto__: null,\r\n $on: $on,\r\n $off: $off,\r\n $once: $once,\r\n $emit: $emit\r\n});\r\n\r\nvar api = /*#__PURE__*/Object.freeze({\r\n __proto__: null\r\n});\r\n\r\nconst MPPage = Page;\r\nconst MPComponent = Component;\r\n\r\nconst customizeRE = /:/g;\r\n\r\nconst customize = cached((str) => {\r\n return camelize(str.replace(customizeRE, '-'))\r\n});\r\n\r\nfunction initTriggerEvent (mpInstance) {\r\n const oldTriggerEvent = mpInstance.triggerEvent;\r\n mpInstance.triggerEvent = function (event, ...args) {\r\n return oldTriggerEvent.apply(mpInstance, [customize(event), ...args])\r\n };\r\n}\r\n\r\nfunction initHook (name, options, isComponent) {\r\n const oldHook = options[name];\r\n if (!oldHook) {\r\n options[name] = function () {\r\n initTriggerEvent(this);\r\n };\r\n } else {\r\n options[name] = function (...args) {\r\n initTriggerEvent(this);\r\n return oldHook.apply(this, args)\r\n };\r\n }\r\n}\r\nif (!MPPage.__$wrappered) {\r\n MPPage.__$wrappered = true;\r\n Page = function (options = {}) {\r\n initHook('onLoad', options);\r\n return MPPage(options)\r\n };\r\n Page.after = MPPage.after;\r\n\r\n Component = function (options = {}) {\r\n initHook('created', options);\r\n return MPComponent(options)\r\n };\r\n}\r\n\r\nconst PAGE_EVENT_HOOKS = [\r\n 'onPullDownRefresh',\r\n 'onReachBottom',\r\n 'onAddToFavorites',\r\n 'onShareTimeline',\r\n 'onShareAppMessage',\r\n 'onPageScroll',\r\n 'onResize',\r\n 'onTabItemTap'\r\n];\r\n\r\nfunction initMocks (vm, mocks) {\r\n const mpInstance = vm.$mp[vm.mpType];\r\n mocks.forEach(mock => {\r\n if (hasOwn(mpInstance, mock)) {\r\n vm[mock] = mpInstance[mock];\r\n }\r\n });\r\n}\r\n\r\nfunction hasHook (hook, vueOptions) {\r\n if (!vueOptions) {\r\n return true\r\n }\r\n\r\n if (Vue.options && Array.isArray(Vue.options[hook])) {\r\n return true\r\n }\r\n\r\n vueOptions = vueOptions.default || vueOptions;\r\n\r\n if (isFn(vueOptions)) {\r\n if (isFn(vueOptions.extendOptions[hook])) {\r\n return true\r\n }\r\n if (vueOptions.super &&\r\n vueOptions.super.options &&\r\n Array.isArray(vueOptions.super.options[hook])) {\r\n return true\r\n }\r\n return false\r\n }\r\n\r\n if (isFn(vueOptions[hook])) {\r\n return true\r\n }\r\n const mixins = vueOptions.mixins;\r\n if (Array.isArray(mixins)) {\r\n return !!mixins.find(mixin => hasHook(hook, mixin))\r\n }\r\n}\r\n\r\nfunction initHooks (mpOptions, hooks, vueOptions) {\r\n hooks.forEach(hook => {\r\n if (hasHook(hook, vueOptions)) {\r\n mpOptions[hook] = function (args) {\r\n return this.$vm && this.$vm.__call_hook(hook, args)\r\n };\r\n }\r\n });\r\n}\r\n\r\nfunction initVueComponent (Vue, vueOptions) {\r\n vueOptions = vueOptions.default || vueOptions;\r\n let VueComponent;\r\n if (isFn(vueOptions)) {\r\n VueComponent = vueOptions;\r\n } else {\r\n VueComponent = Vue.extend(vueOptions);\r\n }\r\n vueOptions = VueComponent.options;\r\n return [VueComponent, vueOptions]\r\n}\r\n\r\nfunction initSlots (vm, vueSlots) {\r\n if (Array.isArray(vueSlots) && vueSlots.length) {\r\n const $slots = Object.create(null);\r\n vueSlots.forEach(slotName => {\r\n $slots[slotName] = true;\r\n });\r\n vm.$scopedSlots = vm.$slots = $slots;\r\n }\r\n}\r\n\r\nfunction initVueIds (vueIds, mpInstance) {\r\n vueIds = (vueIds || '').split(',');\r\n const len = vueIds.length;\r\n\r\n if (len === 1) {\r\n mpInstance._$vueId = vueIds[0];\r\n } else if (len === 2) {\r\n mpInstance._$vueId = vueIds[0];\r\n mpInstance._$vuePid = vueIds[1];\r\n }\r\n}\r\n\r\nfunction initData (vueOptions, context) {\r\n let data = vueOptions.data || {};\r\n const methods = vueOptions.methods || {};\r\n\r\n if (typeof data === 'function') {\r\n try {\r\n data = data.call(context); // 支持 Vue.prototype 上挂的数据\r\n } catch (e) {\r\n if (process.env.VUE_APP_DEBUG) {\r\n console.warn('根据 Vue 的 data 函数初始化小程序 data 失败,请尽量确保 data 函数中不访问 vm 对象,否则可能影响首次数据渲染速度。', data);\r\n }\r\n }\r\n } else {\r\n try {\r\n // 对 data 格式化\r\n data = JSON.parse(JSON.stringify(data));\r\n } catch (e) {}\r\n }\r\n\r\n if (!isPlainObject(data)) {\r\n data = {};\r\n }\r\n\r\n Object.keys(methods).forEach(methodName => {\r\n if (context.__lifecycle_hooks__.indexOf(methodName) === -1 && !hasOwn(data, methodName)) {\r\n data[methodName] = methods[methodName];\r\n }\r\n });\r\n\r\n return data\r\n}\r\n\r\nconst PROP_TYPES = [String, Number, Boolean, Object, Array, null];\r\n\r\nfunction createObserver (name) {\r\n return function observer (newVal, oldVal) {\r\n if (this.$vm) {\r\n this.$vm[name] = newVal; // 为了触发其他非 render watcher\r\n }\r\n }\r\n}\r\n\r\nfunction initBehaviors (vueOptions, initBehavior) {\r\n const vueBehaviors = vueOptions.behaviors;\r\n const vueExtends = vueOptions.extends;\r\n const vueMixins = vueOptions.mixins;\r\n\r\n let vueProps = vueOptions.props;\r\n\r\n if (!vueProps) {\r\n vueOptions.props = vueProps = [];\r\n }\r\n\r\n const behaviors = [];\r\n if (Array.isArray(vueBehaviors)) {\r\n vueBehaviors.forEach(behavior => {\r\n behaviors.push(behavior.replace('uni://', `${\"wx\"}://`));\r\n if (behavior === 'uni://form-field') {\r\n if (Array.isArray(vueProps)) {\r\n vueProps.push('name');\r\n vueProps.push('value');\r\n } else {\r\n vueProps.name = {\r\n type: String,\r\n default: ''\r\n };\r\n vueProps.value = {\r\n type: [String, Number, Boolean, Array, Object, Date],\r\n default: ''\r\n };\r\n }\r\n }\r\n });\r\n }\r\n if (isPlainObject(vueExtends) && vueExtends.props) {\r\n behaviors.push(\r\n initBehavior({\r\n properties: initProperties(vueExtends.props, true)\r\n })\r\n );\r\n }\r\n if (Array.isArray(vueMixins)) {\r\n vueMixins.forEach(vueMixin => {\r\n if (isPlainObject(vueMixin) && vueMixin.props) {\r\n behaviors.push(\r\n initBehavior({\r\n properties: initProperties(vueMixin.props, true)\r\n })\r\n );\r\n }\r\n });\r\n }\r\n return behaviors\r\n}\r\n\r\nfunction parsePropType (key, type, defaultValue, file) {\r\n // [String]=>String\r\n if (Array.isArray(type) && type.length === 1) {\r\n return type[0]\r\n }\r\n return type\r\n}\r\n\r\nfunction initProperties (props, isBehavior = false, file = '') {\r\n const properties = {};\r\n if (!isBehavior) {\r\n properties.vueId = {\r\n type: String,\r\n value: ''\r\n };\r\n // 用于字节跳动小程序模拟抽象节点\r\n properties.generic = {\r\n type: Object,\r\n value: null\r\n };\r\n // scopedSlotsCompiler auto\r\n properties.scopedSlotsCompiler = {\r\n type: String,\r\n value: ''\r\n };\r\n properties.vueSlots = { // 小程序不能直接定义 $slots 的 props,所以通过 vueSlots 转换到 $slots\r\n type: null,\r\n value: [],\r\n observer: function (newVal, oldVal) {\r\n const $slots = Object.create(null);\r\n newVal.forEach(slotName => {\r\n $slots[slotName] = true;\r\n });\r\n this.setData({\r\n $slots\r\n });\r\n }\r\n };\r\n }\r\n if (Array.isArray(props)) { // ['title']\r\n props.forEach(key => {\r\n properties[key] = {\r\n type: null,\r\n observer: createObserver(key)\r\n };\r\n });\r\n } else if (isPlainObject(props)) { // {title:{type:String,default:''},content:String}\r\n Object.keys(props).forEach(key => {\r\n const opts = props[key];\r\n if (isPlainObject(opts)) { // title:{type:String,default:''}\r\n let value = opts.default;\r\n if (isFn(value)) {\r\n value = value();\r\n }\r\n\r\n opts.type = parsePropType(key, opts.type);\r\n\r\n properties[key] = {\r\n type: PROP_TYPES.indexOf(opts.type) !== -1 ? opts.type : null,\r\n value,\r\n observer: createObserver(key)\r\n };\r\n } else { // content:String\r\n const type = parsePropType(key, opts);\r\n properties[key] = {\r\n type: PROP_TYPES.indexOf(type) !== -1 ? type : null,\r\n observer: createObserver(key)\r\n };\r\n }\r\n });\r\n }\r\n return properties\r\n}\r\n\r\nfunction wrapper$1 (event) {\r\n // TODO 又得兼容 mpvue 的 mp 对象\r\n try {\r\n event.mp = JSON.parse(JSON.stringify(event));\r\n } catch (e) {}\r\n\r\n event.stopPropagation = noop;\r\n event.preventDefault = noop;\r\n\r\n event.target = event.target || {};\r\n\r\n if (!hasOwn(event, 'detail')) {\r\n event.detail = {};\r\n }\r\n\r\n if (hasOwn(event, 'markerId')) {\r\n event.detail = typeof event.detail === 'object' ? event.detail : {};\r\n event.detail.markerId = event.markerId;\r\n }\r\n\r\n if (isPlainObject(event.detail)) {\r\n event.target = Object.assign({}, event.target, event.detail);\r\n }\r\n\r\n return event\r\n}\r\n\r\nfunction getExtraValue (vm, dataPathsArray) {\r\n let context = vm;\r\n dataPathsArray.forEach(dataPathArray => {\r\n const dataPath = dataPathArray[0];\r\n const value = dataPathArray[2];\r\n if (dataPath || typeof value !== 'undefined') { // ['','',index,'disable']\r\n const propPath = dataPathArray[1];\r\n const valuePath = dataPathArray[3];\r\n\r\n let vFor;\r\n if (Number.isInteger(dataPath)) {\r\n vFor = dataPath;\r\n } else if (!dataPath) {\r\n vFor = context;\r\n } else if (typeof dataPath === 'string' && dataPath) {\r\n if (dataPath.indexOf('#s#') === 0) {\r\n vFor = dataPath.substr(3);\r\n } else {\r\n vFor = vm.__get_value(dataPath, context);\r\n }\r\n }\r\n\r\n if (Number.isInteger(vFor)) {\r\n context = value;\r\n } else if (!propPath) {\r\n context = vFor[value];\r\n } else {\r\n if (Array.isArray(vFor)) {\r\n context = vFor.find(vForItem => {\r\n return vm.__get_value(propPath, vForItem) === value\r\n });\r\n } else if (isPlainObject(vFor)) {\r\n context = Object.keys(vFor).find(vForKey => {\r\n return vm.__get_value(propPath, vFor[vForKey]) === value\r\n });\r\n } else {\r\n console.error('v-for 暂不支持循环数据:', vFor);\r\n }\r\n }\r\n\r\n if (valuePath) {\r\n context = vm.__get_value(valuePath, context);\r\n }\r\n }\r\n });\r\n return context\r\n}\r\n\r\nfunction processEventExtra (vm, extra, event) {\r\n const extraObj = {};\r\n\r\n if (Array.isArray(extra) && extra.length) {\r\n /**\r\n *[\r\n * ['data.items', 'data.id', item.data.id],\r\n * ['metas', 'id', meta.id]\r\n *],\r\n *[\r\n * ['data.items', 'data.id', item.data.id],\r\n * ['metas', 'id', meta.id]\r\n *],\r\n *'test'\r\n */\r\n extra.forEach((dataPath, index) => {\r\n if (typeof dataPath === 'string') {\r\n if (!dataPath) { // model,prop.sync\r\n extraObj['$' + index] = vm;\r\n } else {\r\n if (dataPath === '$event') { // $event\r\n extraObj['$' + index] = event;\r\n } else if (dataPath === 'arguments') {\r\n if (event.detail && event.detail.__args__) {\r\n extraObj['$' + index] = event.detail.__args__;\r\n } else {\r\n extraObj['$' + index] = [event];\r\n }\r\n } else if (dataPath.indexOf('$event.') === 0) { // $event.target.value\r\n extraObj['$' + index] = vm.__get_value(dataPath.replace('$event.', ''), event);\r\n } else {\r\n extraObj['$' + index] = vm.__get_value(dataPath);\r\n }\r\n }\r\n } else {\r\n extraObj['$' + index] = getExtraValue(vm, dataPath);\r\n }\r\n });\r\n }\r\n\r\n return extraObj\r\n}\r\n\r\nfunction getObjByArray (arr) {\r\n const obj = {};\r\n for (let i = 1; i < arr.length; i++) {\r\n const element = arr[i];\r\n obj[element[0]] = element[1];\r\n }\r\n return obj\r\n}\r\n\r\nfunction processEventArgs (vm, event, args = [], extra = [], isCustom, methodName) {\r\n let isCustomMPEvent = false; // wxcomponent 组件,传递原始 event 对象\r\n if (isCustom) { // 自定义事件\r\n isCustomMPEvent = event.currentTarget &&\r\n event.currentTarget.dataset &&\r\n event.currentTarget.dataset.comType === 'wx';\r\n if (!args.length) { // 无参数,直接传入 event 或 detail 数组\r\n if (isCustomMPEvent) {\r\n return [event]\r\n }\r\n return event.detail.__args__ || event.detail\r\n }\r\n }\r\n\r\n const extraObj = processEventExtra(vm, extra, event);\r\n\r\n const ret = [];\r\n args.forEach(arg => {\r\n if (arg === '$event') {\r\n if (methodName === '__set_model' && !isCustom) { // input v-model value\r\n ret.push(event.target.value);\r\n } else {\r\n if (isCustom && !isCustomMPEvent) {\r\n ret.push(event.detail.__args__[0]);\r\n } else { // wxcomponent 组件或内置组件\r\n ret.push(event);\r\n }\r\n }\r\n } else {\r\n if (Array.isArray(arg) && arg[0] === 'o') {\r\n ret.push(getObjByArray(arg));\r\n } else if (typeof arg === 'string' && hasOwn(extraObj, arg)) {\r\n ret.push(extraObj[arg]);\r\n } else {\r\n ret.push(arg);\r\n }\r\n }\r\n });\r\n\r\n return ret\r\n}\r\n\r\nconst ONCE = '~';\r\nconst CUSTOM = '^';\r\n\r\nfunction isMatchEventType (eventType, optType) {\r\n return (eventType === optType) ||\r\n (\r\n optType === 'regionchange' &&\r\n (\r\n eventType === 'begin' ||\r\n eventType === 'end'\r\n )\r\n )\r\n}\r\n\r\nfunction getContextVm (vm) {\r\n let $parent = vm.$parent;\r\n // 父组件是 scoped slots 或者其他自定义组件时继续查找\r\n while ($parent && $parent.$parent && ($parent.$options.generic || $parent.$parent.$options.generic || $parent.$scope._$vuePid)) {\r\n $parent = $parent.$parent;\r\n }\r\n return $parent && $parent.$parent\r\n}\r\n\r\nfunction handleEvent (event) {\r\n event = wrapper$1(event);\r\n\r\n // [['tap',[['handle',[1,2,a]],['handle1',[1,2,a]]]]]\r\n const dataset = (event.currentTarget || event.target).dataset;\r\n if (!dataset) {\r\n return console.warn('事件信息不存在')\r\n }\r\n const eventOpts = dataset.eventOpts || dataset['event-opts']; // 支付宝 web-view 组件 dataset 非驼峰\r\n if (!eventOpts) {\r\n return console.warn('事件信息不存在')\r\n }\r\n\r\n // [['handle',[1,2,a]],['handle1',[1,2,a]]]\r\n const eventType = event.type;\r\n\r\n const ret = [];\r\n\r\n eventOpts.forEach(eventOpt => {\r\n let type = eventOpt[0];\r\n const eventsArray = eventOpt[1];\r\n\r\n const isCustom = type.charAt(0) === CUSTOM;\r\n type = isCustom ? type.slice(1) : type;\r\n const isOnce = type.charAt(0) === ONCE;\r\n type = isOnce ? type.slice(1) : type;\r\n\r\n if (eventsArray && isMatchEventType(eventType, type)) {\r\n eventsArray.forEach(eventArray => {\r\n const methodName = eventArray[0];\r\n if (methodName) {\r\n let handlerCtx = this.$vm;\r\n if (handlerCtx.$options.generic) { // mp-weixin,mp-toutiao 抽象节点模拟 scoped slots\r\n handlerCtx = getContextVm(handlerCtx) || handlerCtx;\r\n }\r\n if (methodName === '$emit') {\r\n handlerCtx.$emit.apply(handlerCtx,\r\n processEventArgs(\r\n this.$vm,\r\n event,\r\n eventArray[1],\r\n eventArray[2],\r\n isCustom,\r\n methodName\r\n ));\r\n return\r\n }\r\n const handler = handlerCtx[methodName];\r\n if (!isFn(handler)) {\r\n throw new Error(` _vm.${methodName} is not a function`)\r\n }\r\n if (isOnce) {\r\n if (handler.once) {\r\n return\r\n }\r\n handler.once = true;\r\n }\r\n let params = processEventArgs(\r\n this.$vm,\r\n event,\r\n eventArray[1],\r\n eventArray[2],\r\n isCustom,\r\n methodName\r\n );\r\n params = Array.isArray(params) ? params : [];\r\n // 参数尾部增加原始事件对象用于复杂表达式内获取额外数据\r\n if (/=\\s*\\S+\\.eventParams\\s*\\|\\|\\s*\\S+\\[['\"]event-params['\"]\\]/.test(handler.toString())) {\r\n // eslint-disable-next-line no-sparse-arrays\r\n params = params.concat([, , , , , , , , , , event]);\r\n }\r\n ret.push(handler.apply(handlerCtx, params));\r\n }\r\n });\r\n }\r\n });\r\n\r\n if (\r\n eventType === 'input' &&\r\n ret.length === 1 &&\r\n typeof ret[0] !== 'undefined'\r\n ) {\r\n return ret[0]\r\n }\r\n}\r\n\r\nlet locale;\r\n\r\n{\r\n locale = wx.getSystemInfoSync().language;\r\n}\r\n\r\nconst i18n = initVueI18n(\r\n locale,\r\n {}\r\n);\r\nconst t = i18n.t;\r\nconst i18nMixin = (i18n.mixin = {\r\n beforeCreate () {\r\n const unwatch = i18n.i18n.watchLocale(() => {\r\n this.$forceUpdate();\r\n });\r\n this.$once('hook:beforeDestroy', function () {\r\n unwatch();\r\n });\r\n },\r\n methods: {\r\n $$t (key, values) {\r\n return t(key, values)\r\n }\r\n }\r\n});\r\nconst setLocale$1 = i18n.setLocale;\r\nconst getLocale$1 = i18n.getLocale;\r\n\r\nfunction initAppLocale (Vue, appVm, locale) {\r\n const state = Vue.observable({\r\n locale: locale || i18n.getLocale()\r\n });\r\n const localeWatchers = [];\r\n appVm.$watchLocale = fn => {\r\n localeWatchers.push(fn);\r\n };\r\n Object.defineProperty(appVm, '$locale', {\r\n get () {\r\n return state.locale\r\n },\r\n set (v) {\r\n state.locale = v;\r\n localeWatchers.forEach(watch => watch(v));\r\n }\r\n });\r\n}\r\n\r\nconst eventChannels = {};\r\n\r\nconst eventChannelStack = [];\r\n\r\nfunction getEventChannel (id) {\r\n if (id) {\r\n const eventChannel = eventChannels[id];\r\n delete eventChannels[id];\r\n return eventChannel\r\n }\r\n return eventChannelStack.shift()\r\n}\r\n\r\nconst hooks = [\r\n 'onShow',\r\n 'onHide',\r\n 'onError',\r\n 'onPageNotFound',\r\n 'onThemeChange',\r\n 'onUnhandledRejection'\r\n];\r\n\r\nfunction initEventChannel () {\r\n Vue.prototype.getOpenerEventChannel = function () {\r\n // 微信小程序使用自身getOpenerEventChannel\r\n {\r\n return this.$scope.getOpenerEventChannel()\r\n }\r\n };\r\n const callHook = Vue.prototype.__call_hook;\r\n Vue.prototype.__call_hook = function (hook, args) {\r\n if (hook === 'onLoad' && args && args.__id__) {\r\n this.__eventChannel__ = getEventChannel(args.__id__);\r\n delete args.__id__;\r\n }\r\n return callHook.call(this, hook, args)\r\n };\r\n}\r\n\r\nfunction initScopedSlotsParams () {\r\n const center = {};\r\n const parents = {};\r\n\r\n Vue.prototype.$hasScopedSlotsParams = function (vueId) {\r\n const has = center[vueId];\r\n if (!has) {\r\n parents[vueId] = this;\r\n this.$on('hook:destroyed', () => {\r\n delete parents[vueId];\r\n });\r\n }\r\n return has\r\n };\r\n\r\n Vue.prototype.$getScopedSlotsParams = function (vueId, name, key) {\r\n const data = center[vueId];\r\n if (data) {\r\n const object = data[name] || {};\r\n return key ? object[key] : object\r\n } else {\r\n parents[vueId] = this;\r\n this.$on('hook:destroyed', () => {\r\n delete parents[vueId];\r\n });\r\n }\r\n };\r\n\r\n Vue.prototype.$setScopedSlotsParams = function (name, value) {\r\n const vueIds = this.$options.propsData.vueId;\r\n if (vueIds) {\r\n const vueId = vueIds.split(',')[0];\r\n const object = center[vueId] = center[vueId] || {};\r\n object[name] = value;\r\n if (parents[vueId]) {\r\n parents[vueId].$forceUpdate();\r\n }\r\n }\r\n };\r\n\r\n Vue.mixin({\r\n destroyed () {\r\n const propsData = this.$options.propsData;\r\n const vueId = propsData && propsData.vueId;\r\n if (vueId) {\r\n delete center[vueId];\r\n delete parents[vueId];\r\n }\r\n }\r\n });\r\n}\r\n\r\nfunction parseBaseApp (vm, {\r\n mocks,\r\n initRefs\r\n}) {\r\n initEventChannel();\r\n {\r\n initScopedSlotsParams();\r\n }\r\n if (vm.$options.store) {\r\n Vue.prototype.$store = vm.$options.store;\r\n }\r\n uniIdMixin(Vue);\r\n\r\n Vue.prototype.mpHost = \"mp-weixin\";\r\n\r\n Vue.mixin({\r\n beforeCreate () {\r\n if (!this.$options.mpType) {\r\n return\r\n }\r\n\r\n this.mpType = this.$options.mpType;\r\n\r\n this.$mp = {\r\n data: {},\r\n [this.mpType]: this.$options.mpInstance\r\n };\r\n\r\n this.$scope = this.$options.mpInstance;\r\n\r\n delete this.$options.mpType;\r\n delete this.$options.mpInstance;\r\n if (this.mpType === 'page' && typeof getApp === 'function') { // hack vue-i18n\r\n const app = getApp();\r\n if (app.$vm && app.$vm.$i18n) {\r\n this._i18n = app.$vm.$i18n;\r\n }\r\n }\r\n if (this.mpType !== 'app') {\r\n initRefs(this);\r\n initMocks(this, mocks);\r\n }\r\n }\r\n });\r\n\r\n const appOptions = {\r\n onLaunch (args) {\r\n if (this.$vm) { // 已经初始化过了,主要是为了百度,百度 onShow 在 onLaunch 之前\r\n return\r\n }\r\n {\r\n if (wx.canIUse && !wx.canIUse('nextTick')) { // 事实 上2.2.3 即可,简单使用 2.3.0 的 nextTick 判断\r\n console.error('当前微信基础库版本过低,请将 微信开发者工具-详情-项目设置-调试基础库版本 更换为`2.3.0`以上');\r\n }\r\n }\r\n\r\n this.$vm = vm;\r\n\r\n this.$vm.$mp = {\r\n app: this\r\n };\r\n\r\n this.$vm.$scope = this;\r\n // vm 上也挂载 globalData\r\n this.$vm.globalData = this.globalData;\r\n\r\n this.$vm._isMounted = true;\r\n this.$vm.__call_hook('mounted', args);\r\n\r\n this.$vm.__call_hook('onLaunch', args);\r\n }\r\n };\r\n\r\n // 兼容旧版本 globalData\r\n appOptions.globalData = vm.$options.globalData || {};\r\n // 将 methods 中的方法挂在 getApp() 中\r\n const methods = vm.$options.methods;\r\n if (methods) {\r\n Object.keys(methods).forEach(name => {\r\n appOptions[name] = methods[name];\r\n });\r\n }\r\n\r\n initAppLocale(Vue, vm, wx.getSystemInfoSync().language || 'zh-Hans');\r\n\r\n initHooks(appOptions, hooks);\r\n\r\n return appOptions\r\n}\r\n\r\nconst mocks = ['__route__', '__wxExparserNodeId__', '__wxWebviewId__'];\r\n\r\nfunction findVmByVueId (vm, vuePid) {\r\n const $children = vm.$children;\r\n // 优先查找直属(反向查找:https://github.com/dcloudio/uni-app/issues/1200)\r\n for (let i = $children.length - 1; i >= 0; i--) {\r\n const childVm = $children[i];\r\n if (childVm.$scope._$vueId === vuePid) {\r\n return childVm\r\n }\r\n }\r\n // 反向递归查找\r\n let parentVm;\r\n for (let i = $children.length - 1; i >= 0; i--) {\r\n parentVm = findVmByVueId($children[i], vuePid);\r\n if (parentVm) {\r\n return parentVm\r\n }\r\n }\r\n}\r\n\r\nfunction initBehavior (options) {\r\n return Behavior(options)\r\n}\r\n\r\nfunction isPage () {\r\n return !!this.route\r\n}\r\n\r\nfunction initRelation (detail) {\r\n this.triggerEvent('__l', detail);\r\n}\r\n\r\nfunction selectAllComponents (mpInstance, selector, $refs) {\r\n const components = mpInstance.selectAllComponents(selector);\r\n components.forEach(component => {\r\n const ref = component.dataset.ref;\r\n $refs[ref] = component.$vm || component;\r\n {\r\n if (component.dataset.vueGeneric === 'scoped') {\r\n component.selectAllComponents('.scoped-ref').forEach(scopedComponent => {\r\n selectAllComponents(scopedComponent, selector, $refs);\r\n });\r\n }\r\n }\r\n });\r\n}\r\n\r\nfunction initRefs (vm) {\r\n const mpInstance = vm.$scope;\r\n Object.defineProperty(vm, '$refs', {\r\n get () {\r\n const $refs = {};\r\n selectAllComponents(mpInstance, '.vue-ref', $refs);\r\n // TODO 暂不考虑 for 中的 scoped\r\n const forComponents = mpInstance.selectAllComponents('.vue-ref-in-for');\r\n forComponents.forEach(component => {\r\n const ref = component.dataset.ref;\r\n if (!$refs[ref]) {\r\n $refs[ref] = [];\r\n }\r\n $refs[ref].push(component.$vm || component);\r\n });\r\n return $refs\r\n }\r\n });\r\n}\r\n\r\nfunction handleLink (event) {\r\n const {\r\n vuePid,\r\n vueOptions\r\n } = event.detail || event.value; // detail 是微信,value 是百度(dipatch)\r\n\r\n let parentVm;\r\n\r\n if (vuePid) {\r\n parentVm = findVmByVueId(this.$vm, vuePid);\r\n }\r\n\r\n if (!parentVm) {\r\n parentVm = this.$vm;\r\n }\r\n\r\n vueOptions.parent = parentVm;\r\n}\r\n\r\nfunction parseApp (vm) {\r\n return parseBaseApp(vm, {\r\n mocks,\r\n initRefs\r\n })\r\n}\r\n\r\nfunction createApp (vm) {\r\n App(parseApp(vm));\r\n return vm\r\n}\r\n\r\nconst encodeReserveRE = /[!'()*]/g;\r\nconst encodeReserveReplacer = c => '%' + c.charCodeAt(0).toString(16);\r\nconst commaRE = /%2C/g;\r\n\r\n// fixed encodeURIComponent which is more conformant to RFC3986:\r\n// - escapes [!'()*]\r\n// - preserve commas\r\nconst encode = str => encodeURIComponent(str)\r\n .replace(encodeReserveRE, encodeReserveReplacer)\r\n .replace(commaRE, ',');\r\n\r\nfunction stringifyQuery (obj, encodeStr = encode) {\r\n const res = obj ? Object.keys(obj).map(key => {\r\n const val = obj[key];\r\n\r\n if (val === undefined) {\r\n return ''\r\n }\r\n\r\n if (val === null) {\r\n return encodeStr(key)\r\n }\r\n\r\n if (Array.isArray(val)) {\r\n const result = [];\r\n val.forEach(val2 => {\r\n if (val2 === undefined) {\r\n return\r\n }\r\n if (val2 === null) {\r\n result.push(encodeStr(key));\r\n } else {\r\n result.push(encodeStr(key) + '=' + encodeStr(val2));\r\n }\r\n });\r\n return result.join('&')\r\n }\r\n\r\n return encodeStr(key) + '=' + encodeStr(val)\r\n }).filter(x => x.length > 0).join('&') : null;\r\n return res ? `?${res}` : ''\r\n}\r\n\r\nfunction parseBaseComponent (vueComponentOptions, {\r\n isPage,\r\n initRelation\r\n} = {}) {\r\n const [VueComponent, vueOptions] = initVueComponent(Vue, vueComponentOptions);\r\n\r\n const options = {\r\n multipleSlots: true,\r\n addGlobalClass: true,\r\n ...(vueOptions.options || {})\r\n };\r\n\r\n {\r\n // 微信 multipleSlots 部分情况有 bug,导致内容顺序错乱 如 u-list,提供覆盖选项\r\n if (vueOptions['mp-weixin'] && vueOptions['mp-weixin'].options) {\r\n Object.assign(options, vueOptions['mp-weixin'].options);\r\n }\r\n }\r\n\r\n const componentOptions = {\r\n options,\r\n data: initData(vueOptions, Vue.prototype),\r\n behaviors: initBehaviors(vueOptions, initBehavior),\r\n properties: initProperties(vueOptions.props, false, vueOptions.__file),\r\n lifetimes: {\r\n attached () {\r\n const properties = this.properties;\r\n\r\n const options = {\r\n mpType: isPage.call(this) ? 'page' : 'component',\r\n mpInstance: this,\r\n propsData: properties\r\n };\r\n\r\n initVueIds(properties.vueId, this);\r\n\r\n // 处理父子关系\r\n initRelation.call(this, {\r\n vuePid: this._$vuePid,\r\n vueOptions: options\r\n });\r\n\r\n // 初始化 vue 实例\r\n this.$vm = new VueComponent(options);\r\n\r\n // 处理$slots,$scopedSlots(暂不支持动态变化$slots)\r\n initSlots(this.$vm, properties.vueSlots);\r\n\r\n // 触发首次 setData\r\n this.$vm.$mount();\r\n },\r\n ready () {\r\n // 当组件 props 默认值为 true,初始化时传入 false 会导致 created,ready 触发, 但 attached 不触发\r\n // https://developers.weixin.qq.com/community/develop/doc/00066ae2844cc0f8eb883e2a557800\r\n if (this.$vm) {\r\n this.$vm._isMounted = true;\r\n this.$vm.__call_hook('mounted');\r\n this.$vm.__call_hook('onReady');\r\n }\r\n },\r\n detached () {\r\n this.$vm && this.$vm.$destroy();\r\n }\r\n },\r\n pageLifetimes: {\r\n show (args) {\r\n this.$vm && this.$vm.__call_hook('onPageShow', args);\r\n },\r\n hide () {\r\n this.$vm && this.$vm.__call_hook('onPageHide');\r\n },\r\n resize (size) {\r\n this.$vm && this.$vm.__call_hook('onPageResize', size);\r\n }\r\n },\r\n methods: {\r\n __l: handleLink,\r\n __e: handleEvent\r\n }\r\n };\r\n // externalClasses\r\n if (vueOptions.externalClasses) {\r\n componentOptions.externalClasses = vueOptions.externalClasses;\r\n }\r\n\r\n if (Array.isArray(vueOptions.wxsCallMethods)) {\r\n vueOptions.wxsCallMethods.forEach(callMethod => {\r\n componentOptions.methods[callMethod] = function (args) {\r\n return this.$vm[callMethod](args)\r\n };\r\n });\r\n }\r\n\r\n if (isPage) {\r\n return componentOptions\r\n }\r\n return [componentOptions, VueComponent]\r\n}\r\n\r\nfunction parseComponent (vueComponentOptions) {\r\n return parseBaseComponent(vueComponentOptions, {\r\n isPage,\r\n initRelation\r\n })\r\n}\r\n\r\nconst hooks$1 = [\r\n 'onShow',\r\n 'onHide',\r\n 'onUnload'\r\n];\r\n\r\nhooks$1.push(...PAGE_EVENT_HOOKS);\r\n\r\nfunction parseBasePage (vuePageOptions, {\r\n isPage,\r\n initRelation\r\n}) {\r\n const pageOptions = parseComponent(vuePageOptions);\r\n\r\n initHooks(pageOptions.methods, hooks$1, vuePageOptions);\r\n\r\n pageOptions.methods.onLoad = function (query) {\r\n this.options = query;\r\n const copyQuery = Object.assign({}, query);\r\n delete copyQuery.__id__;\r\n this.$page = {\r\n fullPath: '/' + (this.route || this.is) + stringifyQuery(copyQuery)\r\n };\r\n this.$vm.$mp.query = query; // 兼容 mpvue\r\n this.$vm.__call_hook('onLoad', query);\r\n };\r\n\r\n return pageOptions\r\n}\r\n\r\nfunction parsePage (vuePageOptions) {\r\n return parseBasePage(vuePageOptions, {\r\n isPage,\r\n initRelation\r\n })\r\n}\r\n\r\nfunction createPage (vuePageOptions) {\r\n {\r\n return Component(parsePage(vuePageOptions))\r\n }\r\n}\r\n\r\nfunction createComponent (vueOptions) {\r\n {\r\n return Component(parseComponent(vueOptions))\r\n }\r\n}\r\n\r\nfunction createSubpackageApp (vm) {\r\n const appOptions = parseApp(vm);\r\n const app = getApp({\r\n allowDefault: true\r\n });\r\n vm.$scope = app;\r\n const globalData = app.globalData;\r\n if (globalData) {\r\n Object.keys(appOptions.globalData).forEach(name => {\r\n if (!hasOwn(globalData, name)) {\r\n globalData[name] = appOptions.globalData[name];\r\n }\r\n });\r\n }\r\n Object.keys(appOptions).forEach(name => {\r\n if (!hasOwn(app, name)) {\r\n app[name] = appOptions[name];\r\n }\r\n });\r\n if (isFn(appOptions.onShow) && wx.onAppShow) {\r\n wx.onAppShow((...args) => {\r\n vm.__call_hook('onShow', args);\r\n });\r\n }\r\n if (isFn(appOptions.onHide) && wx.onAppHide) {\r\n wx.onAppHide((...args) => {\r\n vm.__call_hook('onHide', args);\r\n });\r\n }\r\n if (isFn(appOptions.onLaunch)) {\r\n const args = wx.getLaunchOptionsSync && wx.getLaunchOptionsSync();\r\n vm.__call_hook('onLaunch', args);\r\n }\r\n return vm\r\n}\r\n\r\nfunction createPlugin (vm) {\r\n const appOptions = parseApp(vm);\r\n if (isFn(appOptions.onShow) && wx.onAppShow) {\r\n wx.onAppShow((...args) => {\r\n appOptions.onShow.apply(vm, args);\r\n });\r\n }\r\n if (isFn(appOptions.onHide) && wx.onAppHide) {\r\n wx.onAppHide((...args) => {\r\n appOptions.onHide.apply(vm, args);\r\n });\r\n }\r\n if (isFn(appOptions.onLaunch)) {\r\n const args = wx.getLaunchOptionsSync && wx.getLaunchOptionsSync();\r\n appOptions.onLaunch.call(vm, args);\r\n }\r\n return vm\r\n}\r\n\r\ntodos.forEach(todoApi => {\r\n protocols[todoApi] = false;\r\n});\r\n\r\ncanIUses.forEach(canIUseApi => {\r\n const apiName = protocols[canIUseApi] && protocols[canIUseApi].name ? protocols[canIUseApi].name\r\n : canIUseApi;\r\n if (!wx.canIUse(apiName)) {\r\n protocols[canIUseApi] = false;\r\n }\r\n});\r\n\r\nlet uni = {};\r\n\r\nif (typeof Proxy !== 'undefined' && \"mp-weixin\" !== 'app-plus') {\r\n uni = new Proxy({}, {\r\n get (target, name) {\r\n if (hasOwn(target, name)) {\r\n return target[name]\r\n }\r\n if (baseApi[name]) {\r\n return baseApi[name]\r\n }\r\n if (api[name]) {\r\n return promisify(name, api[name])\r\n }\r\n {\r\n if (extraApi[name]) {\r\n return promisify(name, extraApi[name])\r\n }\r\n if (todoApis[name]) {\r\n return promisify(name, todoApis[name])\r\n }\r\n }\r\n if (eventApi[name]) {\r\n return eventApi[name]\r\n }\r\n if (!hasOwn(wx, name) && !hasOwn(protocols, name)) {\r\n return\r\n }\r\n return promisify(name, wrapper(name, wx[name]))\r\n },\r\n set (target, name, value) {\r\n target[name] = value;\r\n return true\r\n }\r\n });\r\n} else {\r\n Object.keys(baseApi).forEach(name => {\r\n uni[name] = baseApi[name];\r\n });\r\n\r\n {\r\n Object.keys(todoApis).forEach(name => {\r\n uni[name] = promisify(name, todoApis[name]);\r\n });\r\n Object.keys(extraApi).forEach(name => {\r\n uni[name] = promisify(name, todoApis[name]);\r\n });\r\n }\r\n\r\n Object.keys(eventApi).forEach(name => {\r\n uni[name] = eventApi[name];\r\n });\r\n\r\n Object.keys(api).forEach(name => {\r\n uni[name] = promisify(name, api[name]);\r\n });\r\n\r\n Object.keys(wx).forEach(name => {\r\n if (hasOwn(wx, name) || hasOwn(protocols, name)) {\r\n uni[name] = promisify(name, wrapper(name, wx[name]));\r\n }\r\n });\r\n}\r\n\r\nwx.createApp = createApp;\r\nwx.createPage = createPage;\r\nwx.createComponent = createComponent;\r\nwx.createSubpackageApp = createSubpackageApp;\r\nwx.createPlugin = createPlugin;\r\n\r\nvar uni$1 = uni;\r\n\r\nexport default uni$1;\r\nexport { createApp, createComponent, createPage, createPlugin, createSubpackageApp };\r\n","// 以下是业务服务器API地址\n// 本机开发时使用\nvar WxApiRoot = 'http://127.0.0.1/wx/'; // 局域网测试使用\n// var WxApiRoot = 'http://192.168.1.3:8080/wx/';\n// 云平台部署时使用\n// var WxApiRoot = 'http://122.51.199.160:8080/wx/';\n// 云平台上线时使用\n// var WxApiRoot = 'https://www.menethil.com.cn/wx/';\n\nmodule.exports = {\n IndexUrl: WxApiRoot + 'home/index',\n //首页数据接口\n AboutUrl: WxApiRoot + 'home/about',\n //介绍信息\n CatalogList: WxApiRoot + 'catalog/index',\n //分类目录全部分类数据接口\n CatalogCurrent: WxApiRoot + 'catalog/current',\n //分类目录当前分类数据接口\n AuthLoginByWeixin: WxApiRoot + 'auth/login_by_weixin',\n //微信登录\n AuthLoginByAccount: WxApiRoot + 'auth/login',\n //账号登录\n AuthLogout: WxApiRoot + 'auth/logout',\n //账号登出\n AuthRegister: WxApiRoot + 'auth/register',\n //账号注册\n AuthReset: WxApiRoot + 'auth/reset',\n //账号密码重置\n AuthRegisterCaptcha: WxApiRoot + 'auth/regCaptcha',\n //验证码\n AuthBindPhone: WxApiRoot + 'auth/bindPhone',\n //绑定微信手机号\n GoodsCount: WxApiRoot + 'goods/count',\n //统计商品总数\n GoodsList: WxApiRoot + 'goods/list',\n //获得商品列表\n GoodsCategory: WxApiRoot + 'goods/category',\n //获得分类数据\n GoodsDetail: WxApiRoot + 'goods/detail',\n //获得商品的详情\n GoodsRelated: WxApiRoot + 'goods/related',\n //商品详情页的关联商品(大家都在看)\n BrandList: WxApiRoot + 'brand/list',\n //品牌列表\n BrandDetail: WxApiRoot + 'brand/detail',\n //品牌详情\n CartList: WxApiRoot + 'cart/index',\n //获取购物车的数据\n CartAdd: WxApiRoot + 'cart/add',\n // 添加商品到购物车\n CartFastAdd: WxApiRoot + 'cart/fastadd',\n // 立即购买商品\n CartUpdate: WxApiRoot + 'cart/update',\n // 更新购物车的商品\n CartDelete: WxApiRoot + 'cart/delete',\n // 删除购物车的商品\n CartChecked: WxApiRoot + 'cart/checked',\n // 选择或取消选择商品\n CartGoodsCount: WxApiRoot + 'cart/goodscount',\n // 获取购物车商品件数\n CartCheckout: WxApiRoot + 'cart/checkout',\n // 下单前信息确认\n CollectList: WxApiRoot + 'collect/list',\n //收藏列表\n CollectAddOrDelete: WxApiRoot + 'collect/addordelete',\n //添加或取消收藏\n CommentList: WxApiRoot + 'comment/list',\n //评论列表\n CommentCount: WxApiRoot + 'comment/count',\n //评论总数\n CommentPost: WxApiRoot + 'comment/post',\n //发表评论\n TopicList: WxApiRoot + 'topic/list',\n //专题列表\n TopicDetail: WxApiRoot + 'topic/detail',\n //专题详情\n TopicRelated: WxApiRoot + 'topic/related',\n //相关专题\n SearchIndex: WxApiRoot + 'search/index',\n //搜索关键字\n SearchResult: WxApiRoot + 'search/result',\n //搜索结果\n SearchHelper: WxApiRoot + 'search/helper',\n //搜索帮助\n SearchClearHistory: WxApiRoot + 'search/clearhistory',\n //搜索历史清楚\n AddressList: WxApiRoot + 'address/list',\n //收货地址列表\n AddressDetail: WxApiRoot + 'address/detail',\n //收货地址详情\n AddressSave: WxApiRoot + 'address/save',\n //保存收货地址\n AddressDelete: WxApiRoot + 'address/delete',\n //保存收货地址\n ExpressQuery: WxApiRoot + 'express/query',\n //物流查询\n RegionList: WxApiRoot + 'region/list',\n //获取区域列表\n OrderSubmit: WxApiRoot + 'order/submit',\n // 提交订单\n OrderPrepay: WxApiRoot + 'order/prepay',\n // 订单的预支付会话\n OrderList: WxApiRoot + 'order/list',\n //订单列表\n OrderDetail: WxApiRoot + 'order/detail',\n //订单详情\n OrderCancel: WxApiRoot + 'order/cancel',\n //取消订单\n OrderRefund: WxApiRoot + 'order/refund',\n //退款取消订单\n OrderDelete: WxApiRoot + 'order/delete',\n //删除订单\n OrderConfirm: WxApiRoot + 'order/confirm',\n //确认收货\n OrderGoods: WxApiRoot + 'order/goods',\n // 代评价商品信息\n OrderComment: WxApiRoot + 'order/comment',\n // 评价订单商品信息\n AftersaleSubmit: WxApiRoot + 'aftersale/submit',\n // 提交售后申请\n AftersaleList: WxApiRoot + 'aftersale/list',\n // 售后列表\n AftersaleDetail: WxApiRoot + 'aftersale/detail',\n // 售后详情\n FeedbackAdd: WxApiRoot + 'feedback/submit',\n //添加反馈\n FootprintList: WxApiRoot + 'footprint/list',\n //足迹列表\n FootprintDelete: WxApiRoot + 'footprint/delete',\n //删除足迹\n GroupOnList: WxApiRoot + 'groupon/list',\n //团购列表\n GroupOnMy: WxApiRoot + 'groupon/my',\n //团购API-我的团购\n GroupOnDetail: WxApiRoot + 'groupon/detail',\n //团购API-详情\n GroupOnJoin: WxApiRoot + 'groupon/join',\n //团购API-详情\n CouponList: WxApiRoot + 'coupon/list',\n //优惠券列表\n CouponMyList: WxApiRoot + 'coupon/mylist',\n //我的优惠券列表\n CouponSelectList: WxApiRoot + 'coupon/selectlist',\n //当前订单可用优惠券列表\n CouponReceive: WxApiRoot + 'coupon/receive',\n //优惠券领取\n CouponExchange: WxApiRoot + 'coupon/exchange',\n //优惠券兑换\n StorageUpload: WxApiRoot + 'storage/upload',\n //图片上传,\n UserIndex: WxApiRoot + 'user/index',\n //个人页面用户相关信息\n IssueList: WxApiRoot + 'issue/list' //帮助信息\n};\n","/**\n * 用户相关服务\n */\nconst util = require('@/utils/util.js');\n\nconst api = require('@/config/api.js');\n/**\n * Promise封装wx.checkSession\n */\n\nfunction checkSession() {\n return new Promise(function (resolve, reject) {\n uni.checkSession({\n success: function () {\n resolve(true);\n },\n fail: function () {\n reject(false);\n }\n });\n });\n}\n/**\n * Promise封装wx.login\n */\n\nfunction login() {\n return new Promise(function (resolve, reject) {\n uni.login({\n success: function (res) {\n if (res.code) {\n resolve(res);\n } else {\n reject(res);\n }\n },\n fail: function (err) {\n reject(err);\n }\n });\n });\n}\n/**\n * 调用微信登录\n */\n\nfunction loginByWeixin(userInfo) {\n return new Promise(function (resolve, reject) {\n return login()\n .then((res) => {\n //登录远程服务器\n util.request(\n api.AuthLoginByWeixin,\n {\n code: res.code,\n userInfo: userInfo\n },\n 'POST'\n )\n .then((res) => {\n if (res.errno === 0) {\n //存储用户信息\n uni.setStorageSync('userInfo', res.data.userInfo);\n uni.setStorageSync('token', res.data.token);\n resolve(res);\n } else {\n reject(res);\n }\n })\n .catch((err) => {\n reject(err);\n });\n })\n .catch((err) => {\n reject(err);\n });\n });\n}\n/**\n * 判断用户是否登录\n */\n\nfunction checkLogin() {\n return new Promise(function (resolve, reject) {\n if (uni.getStorageSync('userInfo') && uni.getStorageSync('token')) {\n checkSession()\n .then(() => {\n resolve(true);\n })\n .catch(() => {\n reject(false);\n });\n } else {\n reject(false);\n }\n });\n}\n\nmodule.exports = {\n loginByWeixin,\n checkLogin\n};\n","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode, /* vue-cli only */\n components, // fixed by xxxxxx auto components\n renderjs // fixed by xxxxxx renderjs\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // fixed by xxxxxx auto components\n if (components) {\n if (!options.components) {\n options.components = {}\n }\n var hasOwn = Object.prototype.hasOwnProperty\n for (var name in components) {\n if (hasOwn.call(components, name) && !hasOwn.call(options.components, name)) {\n options.components[name] = components[name]\n }\n }\n }\n // fixed by xxxxxx renderjs\n if (renderjs) {\n (renderjs.beforeCreate || (renderjs.beforeCreate = [])).unshift(function() {\n this[renderjs.__module] = this\n });\n (options.mixins || (options.mixins = [])).push(renderjs)\n }\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","/*\r\n * @Author: zhang peng\r\n * @Date: 2021-08-03 10:57:51\r\n * @LastEditTime: 2021-10-15 20:24:24\r\n * @LastEditors: zhang peng\r\n * @Description:\r\n * @FilePath: \\miniprogram-to-uniapp2\\src\\project\\template\\polyfill\\polyfill.js\r\n *\r\n * Api polyfill\r\n * 2021-03-06\r\n * 因小程序转换到uniapp,再运行到各平台时,总有这样那样的api,没法支持,\r\n * 现根据uniapp文档对各平台的支持度,或实现,或调用success来抹平各平台的差异,\r\n * 让代码能正常运行,下一步再解决这些api的兼容问题。\r\n *\r\n * Author: 375890534@qq.com\r\n */\r\nconst base64Binary = require(\"./base64Binary\")\r\n\r\n/**\r\n * 获取guid\r\n */\r\nfunction guid () {\r\n return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {\r\n var r = Math.random() * 16 | 0,\r\n v = c == 'x' ? r : (r & 0x3 | 0x8)\r\n return v.toString(16)\r\n })\r\n}\r\n\r\n/**\r\n * 检查api是否未实现,没实现返回true\r\n * @param {Object} api\r\n */\r\nfunction isApiNotImplemented (api) {\r\n return uni[api] === undefined || [api] && uni[api].toString().indexOf(\"is not yet implemented\") > -1\r\n}\r\n\r\n/**\r\n * 条件编译\r\n */\r\nfunction platformPolyfill () {\r\n\r\n\r\n\r\n\r\n\r\n}\r\n\r\n\r\n/**\r\n * 登录相关api polyfill\r\n */\r\nfunction loginPolyfill () {\r\n if (isApiNotImplemented(\"login\")) {\r\n uni.login = function (options) {\r\n console.warn(\"api: uni.login 登录 在当前平台不支持,【关键流程函数】 回调成功\")\r\n options.success && options.success({\r\n code: guid(),\r\n errMsg: \"login:ok\"\r\n })\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"checkSession\")) {\r\n uni.checkSession = function (options) {\r\n console.warn(\"api: uni.checkSession 检查登录状态是否过期 在当前平台不支持,【关键流程函数】 回调成功\")\r\n options.success && options.success()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"getUserInfo\")) {\r\n uni.getUserInfo = function (options) {\r\n console.warn(\"api: uni.getUserInfo 获取用户信息 在当前平台不支持,【关键流程函数】回调成功\")\r\n options.success && options.success({\r\n userInfo: \"\"\r\n })\r\n }\r\n }\r\n if (isApiNotImplemented(\"getUserProfile\")) {\r\n uni.getUserProfile = function (options) {\r\n console.warn(\"api: uni.getUserProfile 获取用户授权信息 在当前平台不支持,【关键流程函数】回调成功\")\r\n options.success && options.success({\r\n userInfo: \"\"\r\n })\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * 地图相关\r\n */\r\nfunction mapPolyfill () {\r\n if (isApiNotImplemented(\"chooseLocation\")) {\r\n uni.chooseLocation = function (options) {\r\n console.warn(\"api: uni.chooseLocation 打开地图选择位置 在当前平台不支持,回调失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"openLocation\")) {\r\n uni.openLocation = function (object) {\r\n console.warn(\"api: uni.openLocation 使用应用内置地图查看位置 在当前平台不支持,回调失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"createMapContext\")) {\r\n uni.createMapContext = function (mapId) {\r\n console.warn(\"api: uni.createMapContext 创建并返回 map 上下文 mapContext 对象 在当前平台不支持,返回空\")\r\n return {\r\n $getAppMap: null,\r\n getCenterLocation: function (options) {\r\n options.fail && options.fail()\r\n },\r\n moveToLocation: function (options) {\r\n options.fail && options.fail()\r\n },\r\n translateMarker: function (options) {\r\n options.fail && options.fail()\r\n },\r\n includePoints: function (options) { },\r\n getRegion: function (options) {\r\n options.fail && options.fail()\r\n },\r\n getScale: function (options) {\r\n options.fail && options.fail()\r\n },\r\n }\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * 字符编码\r\n */\r\nfunction base64Polyfill () {\r\n //将 Base64 字符串转成 ArrayBuffer 对象\r\n if (isApiNotImplemented(\"base64ToArrayBuffer\")) {\r\n uni.base64ToArrayBuffer = function (base64) {\r\n return base64Binary.base64ToArrayBuffer(base64)\r\n }\r\n }\r\n\r\n //将 ArrayBuffer 对象转成 Base64 字符串\r\n if (isApiNotImplemented(\"arrayBufferToBase64\")) {\r\n uni.arrayBufferToBase64 = function (buffer) {\r\n return base64Binary.arrayBufferToBase64(buffer)\r\n }\r\n }\r\n}\r\n\r\n\r\n/**\r\n * 媒体相关\r\n */\r\nfunction mediaPolyfill () {\r\n if (isApiNotImplemented(\"saveImageToPhotosAlbum\")) {\r\n uni.saveImageToPhotosAlbum = function (options) {\r\n console.warn(\"api: uni.saveImageToPhotosAlbum 保存图片到系统相册 在当前平台不支持,回调失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"compressImage\")) {\r\n uni.compressImage = function (object) {\r\n console.warn(\"api: uni.compressImage 压缩图片接口 在当前平台不支持,回调失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"chooseMessageFile\")) {\r\n //从微信聊天会话中选择文件。\r\n uni.chooseMessageFile = function (object) {\r\n console.warn(\"api: uni.chooseMessageFile 从微信聊天会话中选择文件。 在当前平台不支持,回调失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"getRecorderManager\")) {\r\n //获取全局唯一的录音管理器 recorderManager\r\n uni.getRecorderManager = function (object) {\r\n console.warn(\"api: uni.getRecorderManager 获取全局唯一的录音管理器 在当前平台不支持\")\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"getBackgroundAudioManager\")) {\r\n //获取全局唯一的背景音频管理器 backgroundAudioManager\r\n uni.getBackgroundAudioManager = function (object) {\r\n console.warn(\"api: uni.getBackgroundAudioManager 获取全局唯一的背景音频管理器 在当前平台不支持\")\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"chooseMedia\")) {\r\n // 拍摄或从手机相册中选择图片或视频\r\n uni.chooseMedia = function (object) {\r\n console.warn(\"api: uni.chooseMedia 拍摄或从手机相册中选择图片或视频 在当前平台不支持,回调失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"saveVideoToPhotosAlbum\")) {\r\n // 保存视频到系统相册\r\n uni.saveVideoToPhotosAlbum = function (object) {\r\n console.warn(\"api: uni.saveVideoToPhotosAlbum 保存视频到系统相册 在当前平台不支持,回调失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"getVideoInfo\")) {\r\n // 获取视频详细信息\r\n uni.getVideoInfo = function (object) {\r\n console.warn(\"api: uni.getVideoInfo 获取视频详细信息 在当前平台不支持,回调失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"compressVideo\")) {\r\n // 压缩视频接口\r\n uni.compressVideo = function (object) {\r\n console.warn(\"api: uni.compressVideo 压缩视频接口 在当前平台不支持,回调失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n\r\n if (isApiNotImplemented(\"openVideoEditor\")) {\r\n // 打开视频编辑器\r\n uni.openVideoEditor = function (object) {\r\n console.warn(\"api: uni.openVideoEditor 打开视频编辑器 在当前平台不支持,回调失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * 设备\r\n */\r\nfunction devicePolyfill () {\r\n if (isApiNotImplemented(\"canIUse\")) {\r\n // 判断应用的 API,回调,参数,组件等是否在当前版本可用。\r\n // h5时,恒返回true\r\n uni.canIUse = function (object) {\r\n console.warn(\"api: uni.canIUse 判断API在当前平台是否可用 返回true\")\r\n return true\r\n }\r\n }\r\n\r\n //微信小程序\r\n if (isApiNotImplemented(\"startDeviceMotionListening\")) {\r\n // 开始监听设备方向的变化\r\n uni.startDeviceMotionListening = function (options) {\r\n console.warn(\"api: uni.startDeviceMotionListening 开始监听设备方向的变化 在当前平台不支持\")\r\n options.success && options.success()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"onMemoryWarning\")) {\r\n // 监听内存不足告警事件。\r\n uni.onMemoryWarning = function (callback) {\r\n console.warn(\"监听内存不足告警事件,仅支持微信小程序、支付宝小程序、百度小程序、QQ小程序,当前平台不支持,已注释\")\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"offNetworkStatusChange\")) {\r\n // 取消监听网络状态变化\r\n uni.offNetworkStatusChange = function (callback) { }\r\n }\r\n if (isApiNotImplemented(\"offAccelerometerChange\")) {\r\n // 取消监听加速度数据。\r\n uni.offAccelerometerChange = function (callback) { }\r\n }\r\n if (isApiNotImplemented(\"startAccelerometer\")) {\r\n // 开始监听加速度数据。\r\n uni.startAccelerometer = function (callback) {\r\n console.warn(\"api: uni.startAccelerometer 开始监听加速度数据 在当前平台不支持\")\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"offCompassChange\")) {\r\n // 取消监听罗盘数据\r\n uni.offCompassChange = function (callback) {\r\n console.warn(\"api: uni.offCompassChange 取消监听罗盘数据 在当前平台不支持\")\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"startCompass\")) {\r\n // 开始监听罗盘数据\r\n uni.startCompass = function (callback) {\r\n console.warn(\"api: uni.startCompass 开始监听罗盘数据 在当前平台不支持\")\r\n }\r\n }\r\n\r\n\r\n if (isApiNotImplemented(\"onGyroscopeChange\")) {\r\n // 监听陀螺仪数据变化事件\r\n uni.onGyroscopeChange = function (callback) {\r\n console.warn(\"api: uni.onGyroscopeChange 监听陀螺仪数据变化事件 在当前平台不支持\")\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"startGyroscope\")) {\r\n // 开始监听陀螺仪数据\r\n uni.startGyroscope = function (callback) {\r\n console.warn(\"api: uni.startGyroscope 监听陀螺仪数据变化事件 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"stopGyroscope\")) {\r\n // 停止监听陀螺仪数据\r\n uni.stopGyroscope = function (callback) {\r\n console.warn(\"api: uni.stopGyroscope 停止监听陀螺仪数据 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"scanCode\")) {\r\n // 调起客户端扫码界面,扫码成功后返回对应的结果\r\n uni.scanCode = function (callback) {\r\n console.warn(\"api: uni.scanCode 扫描二维码 在当前平台不支持\")\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"setClipboardData\")) {\r\n // 设置系统剪贴板的内容\r\n uni.setClipboardData = function (callback) {\r\n console.warn(\"api: uni.setClipboardData 设置系统剪贴板的内容 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"getClipboardData\")) {\r\n // 获取系统剪贴板内容\r\n uni.getClipboardData = function (callback) {\r\n console.warn(\"api: uni.getClipboardData 获取系统剪贴板内容 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"setScreenBrightness\")) {\r\n // 设置屏幕亮度\r\n uni.setScreenBrightness = function (callback) {\r\n console.warn(\"api: uni.setScreenBrightness 设置屏幕亮度 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"getScreenBrightness\")) {\r\n // 获取屏幕亮度\r\n uni.getScreenBrightness = function (callback) {\r\n console.warn(\"api: uni.getScreenBrightness 获取屏幕亮度 在当前平台不支持\")\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"setKeepScreenOn\")) {\r\n // 设置是否保持常亮状态\r\n uni.setKeepScreenOn = function (callback) {\r\n console.warn(\"api: uni.setKeepScreenOn 设置是否保持常亮状态 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"onUserCaptureScreen\")) {\r\n // 监听用户主动截屏事件\r\n uni.onUserCaptureScreen = function (callback) {\r\n console.warn(\"api: uni.onUserCaptureScreen 监听用户主动截屏事件 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"addPhoneContact\")) {\r\n // 添加联系人\r\n uni.addPhoneContact = function (callback) {\r\n console.warn(\"api: uni.addPhoneContact 添加联系人 在当前平台不支持\")\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * 界面相关\r\n */\r\nfunction uiPolyfill () {\r\n if (isApiNotImplemented(\"hideNavigationBarLoading\")) {\r\n // 在当前页面隐藏导航条加载动画\r\n uni.hideNavigationBarLoading = function (options) {\r\n console.warn(\"api: uni.hideNavigationBarLoading 在当前页面隐藏导航条加载动画 在当前平台不支持,回调成功\")\r\n options.success && options.success()\r\n }\r\n }\r\n if (isApiNotImplemented(\"hideHomeButton\")) {\r\n // 隐藏返回首页按钮\r\n uni.hideHomeButton = function (options) {\r\n console.warn(\"api: uni.hideHomeButton 隐藏返回首页按钮 在当前平台不支持,回调成功\")\r\n options.success && options.success()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"setTabBarItem\")) {\r\n // 动态设置 tabBar 某一项的内容\r\n uni.setTabBarItem = function (options) {\r\n console.warn(\"api: uni.setTabBarItem 动态设置 tabBar 某一项的内容 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"setTabBarStyle\")) {\r\n // 动态设置 tabBar 的整体样式\r\n uni.setTabBarStyle = function (options) {\r\n console.warn(\"api: uni.setTabBarStyle 动态设置 tabBar 的整体样式 在当前平台不支持,回调成功\")\r\n options.success && options.success()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"hideTabBar\")) {\r\n // 隐藏 tabBar\r\n uni.hideTabBar = function (options) {\r\n console.warn(\"api: uni.hideTabBar 隐藏 tabBar 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n\r\n if (isApiNotImplemented(\"showTabBar\")) {\r\n // 显示 tabBar\r\n uni.showTabBar = function (options) {\r\n console.warn(\"api: uni.showTabBar 显示 tabBar 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"setTabBarBadge\")) {\r\n // 为 tabBar 某一项的右上角添加文本\r\n uni.setTabBarBadge = function (options) {\r\n console.warn(\"api: uni.setTabBarBadge 为 tabBar 某一项的右上角添加文本 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"removeTabBarBadge\")) {\r\n // 移除 tabBar 某一项右上角的文本\r\n uni.removeTabBarBadge = function (options) {\r\n console.warn(\"api: uni.removeTabBarBadge 移除 tabBar 某一项右上角的文本 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"showTabBarRedDot\")) {\r\n // 显示 tabBar 某一项的右上角的红点\r\n uni.showTabBarRedDot = function (options) {\r\n console.warn(\"api: uni.showTabBarRedDot 显示 tabBar 某一项的右上角的红点 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"hideTabBarRedDot\")) {\r\n // 隐藏 tabBar 某一项的右上角的红点\r\n uni.hideTabBarRedDot = function (options) {\r\n console.warn(\"api: uni.hideTabBarRedDot 隐藏 tabBar 某一项的右上角的红点 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n ///////////////////////////////\r\n if (isApiNotImplemented(\"setBackgroundColor\")) {\r\n // 动态设置窗口的背景色\r\n uni.setBackgroundColor = function (options) {\r\n console.warn(\"api: uni.setBackgroundColor 动态设置窗口的背景色 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"setBackgroundTextStyle\")) {\r\n // 动态设置下拉背景字体、loading 图的样式\r\n uni.setBackgroundTextStyle = function (options) {\r\n console.warn(\"api: uni.setBackgroundTextStyle 动态设置下拉背景字体、loading 图的样式 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"onWindowResize\")) {\r\n // 监听窗口尺寸变化事件\r\n uni.onWindowResize = function (callback) {\r\n console.warn(\"api: uni.onWindowResize 监听窗口尺寸变化事件 在当前平台不支持,执行失败\")\r\n callback && callback()\r\n }\r\n }\r\n if (isApiNotImplemented(\"offWindowResize\")) {\r\n // 取消监听窗口尺寸变化事件\r\n uni.offWindowResize = function (callback) {\r\n console.warn(\"api: uni.offWindowResize 取消监听窗口尺寸变化事件 在当前平台不支持,执行失败\")\r\n callback && callback()\r\n }\r\n }\r\n if (isApiNotImplemented(\"loadFontFace\")) {\r\n // 动态加载网络字体\r\n uni.loadFontFace = function (options) {\r\n console.warn(\"api: uni.loadFontFace 动态加载网络字体 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"getMenuButtonBoundingClientRect\")) {\r\n // 微信胶囊按钮布局信息\r\n uni.getMenuButtonBoundingClientRect = function () {\r\n console.warn(\"api: uni.getMenuButtonBoundingClientRect 微信胶囊按钮布局信息 在当前平台不支持,执行失败\")\r\n }\r\n }\r\n}\r\n/**\r\n * file\r\n */\r\nfunction filePolyfill () {\r\n if (isApiNotImplemented(\"saveFile\")) {\r\n // 保存文件到本地\r\n uni.saveFile = function (options) {\r\n console.warn(\"api: uni.saveFile 保存文件到本地 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"getSavedFileList\")) {\r\n // 获取本地已保存的文件列表\r\n uni.getSavedFileList = function (options) {\r\n console.warn(\"api: uni.getSavedFileList 获取本地已保存的文件列表 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"getSavedFileInfo\")) {\r\n // 获取本地文件的文件信息\r\n uni.getSavedFileInfo = function (options) {\r\n console.warn(\"api: uni.getSavedFileInfo 获取本地文件的文件信息 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"removeSavedFile\")) {\r\n // 删除本地存储的文件\r\n uni.removeSavedFile = function (options) {\r\n console.warn(\"api: uni.removeSavedFile 删除本地存储的文件 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"getFileInfo\")) {\r\n // 获取文件信息\r\n uni.getFileInfo = function (options) {\r\n console.warn(\"api: uni.getFileInfo 获取文件信息 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"openDocument\")) {\r\n // 新开页面打开文档\r\n uni.openDocument = function (options) {\r\n console.warn(\"api: uni.openDocument 新开页面打开文档 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"getFileSystemManager\")) {\r\n // 获取全局唯一的文件管理器\r\n uni.getFileSystemManager = function () {\r\n console.warn(\"api: uni.getFileSystemManager 获取全局唯一的文件管理器 在当前平台不支持,执行失败\")\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * canvas\r\n */\r\nfunction canvasPolyfill () {\r\n if (isApiNotImplemented(\"createOffscreenCanvas\")) {\r\n // 创建离屏 canvas 实例\r\n uni.createOffscreenCanvas = function () {\r\n console.warn(\"api: uni.createOffscreenCanvas 创建离屏 canvas 实例 在当前平台不支持,执行失败\")\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"canvasToTempFilePath\")) {\r\n // 把当前画布指定区域的内容导出生成指定大小的图片\r\n uni.canvasToTempFilePath = function () {\r\n console.warn(\"api: uni.canvasToTempFilePath 把当前画布指定区域的内容导出生成指定大小的图片 在当前平台不支持,执行失败\")\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * Ad广告\r\n */\r\nfunction adPolyfill () {\r\n if (isApiNotImplemented(\"createRewardedVideoAd\")) {\r\n // 激励视频广告\r\n uni.createRewardedVideoAd = function () {\r\n console.warn(\"api: uni.createRewardedVideoAd 激励视频广告 在当前平台不支持,执行失败\")\r\n return {\r\n show () { },\r\n onLoad () { },\r\n offLoad () { },\r\n load () { },\r\n onError () { },\r\n offError () { },\r\n onClose () { },\r\n offClose () { },\r\n }\r\n }\r\n }\r\n if (isApiNotImplemented(\"createInterstitialAd\")) {\r\n // 插屏广告组件\r\n uni.createInterstitialAd = function () {\r\n console.warn(\"api: uni.createInterstitialAd 插屏广告组件 在当前平台不支持,执行失败\")\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * 第三方\r\n */\r\nfunction pluginsPolyfill () {\r\n if (isApiNotImplemented(\"getProvider\")) {\r\n // 获取服务供应商\r\n uni.getProvider = function (options) {\r\n console.warn(\"api: uni.getProvider 获取服务供应商 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"showShareMenu\")) {\r\n // 小程序的原生菜单中显示分享按钮\r\n uni.showShareMenu = function (options) {\r\n console.warn(\"api: uni.showShareMenu 小程序的原生菜单中显示分享按钮 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"hideShareMenu\")) {\r\n // 小程序的原生菜单中显示分享按钮\r\n uni.hideShareMenu = function (options) {\r\n console.warn(\"api: uni.hideShareMenu 小程序的原生菜单中隐藏分享按钮 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"requestPayment\")) {\r\n // 支付\r\n uni.requestPayment = function (options) {\r\n console.error(\"api: uni.requestPayment 支付 在当前平台不支持(需自行参考文档封装),执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"createWorker\")) {\r\n // 创建一个 Worker 线程\r\n uni.createWorker = function () {\r\n console.error(\"api: uni.createWorker 创建一个 Worker 线程 在当前平台不支持,执行失败\")\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * 其他\r\n */\r\nfunction otherPolyfill () {\r\n if (isApiNotImplemented(\"authorize\")) {\r\n // 提前向用户发起授权请求\r\n uni.authorize = function (options) {\r\n console.warn(\"api: uni.authorize 提前向用户发起授权请求 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"openSetting\")) {\r\n // 调起客户端小程序设置界面\r\n uni.openSetting = function (options) {\r\n console.warn(\"api: uni.openSetting 调起客户端小程序设置界面 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"getSetting\")) {\r\n // 获取用户的当前设置\r\n uni.getSetting = function (options) {\r\n console.warn(\"api: uni.getSetting 获取用户的当前设置 在当前平台不支持,【关键流程函数】回调成功\")\r\n options.success && options.success({\r\n authSetting: {\r\n scope: {\r\n userInfo: false\r\n }\r\n }\r\n })\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"chooseAddress\")) {\r\n // 获取用户收货地址\r\n uni.chooseAddress = function (options) {\r\n console.warn(\"api: uni.chooseAddress 获取用户收货地址 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"chooseInvoiceTitle\")) {\r\n // 选择用户的发票抬头\r\n uni.chooseInvoiceTitle = function (options) {\r\n console.warn(\"api: uni.chooseInvoiceTitle 选择用户的发票抬头 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"navigateToMiniProgram\")) {\r\n // 打开另一个小程序\r\n uni.navigateToMiniProgram = function (options) {\r\n console.warn(\"api: uni.navigateToMiniProgram 打开另一个小程序 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"navigateBackMiniProgram\")) {\r\n // 跳转回上一个小程序\r\n uni.navigateBackMiniProgram = function (options) {\r\n console.warn(\"api: uni.navigateBackMiniProgram 跳转回上一个小程序 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"getAccountInfoSync\")) {\r\n // 获取当前帐号信息\r\n uni.getAccountInfoSync = function (options) {\r\n console.warn(\"api: uni.getAccountInfoSync 获取当前帐号信息 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n\r\n if (isApiNotImplemented(\"requestSubscribeMessage\")) {\r\n // 订阅消息\r\n uni.requestSubscribeMessage = function (options) {\r\n console.warn(\"api: uni.requestSubscribeMessage 订阅消息 在当前平台不支持,执行失败\")\r\n options.fail && options.fail()\r\n }\r\n }\r\n if (isApiNotImplemented(\"getUpdateManager\")) {\r\n // 管理小程序更新\r\n uni.getUpdateManager = function (options) {\r\n console.error(\"api: uni.getUpdateManager 管理小程序更新 在当前平台不支持,执行失败\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"setEnableDebug\")) {\r\n // 设置是否打开调试开关\r\n uni.setEnableDebug = function (options) {\r\n console.error(\"api: uni.setEnableDebug 设置是否打开调试开关 在当前平台不支持,执行失败\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"getExtConfig\")) {\r\n // 获取第三方平台自定义的数据字段\r\n uni.getExtConfig = function (options) {\r\n console.error(\"api: uni.getExtConfig 获取第三方平台自定义的数据字段 在当前平台不支持,执行失败\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"getExtConfigSync\")) {\r\n // uni.getExtConfig 的同步版本\r\n uni.getExtConfigSync = function (options) {\r\n console.error(\"api: uni.getExtConfigSync uni.getExtConfig 的同步版本 在当前平台不支持,执行失败\")\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * 认证\r\n */\r\nfunction soterAuthPolyfill () {\r\n if (isApiNotImplemented(\"startSoterAuthentication\")) {\r\n // 开始 SOTER 生物认证\r\n uni.startSoterAuthentication = function (options) {\r\n console.warn(\"api: uni.startSoterAuthentication 开始 SOTER 生物认证 在当前平台不支持\")\r\n options.success && options.success()\r\n }\r\n }\r\n if (isApiNotImplemented(\"checkIsSupportSoterAuthentication\")) {\r\n // 获取本机支持的 SOTER 生物认证方式\r\n uni.checkIsSupportSoterAuthentication = function (options) {\r\n console.warn(\"api: uni.checkIsSupportSoterAuthentication 开获取本机支持的 SOTER 生物认证方式 在当前平台不支持\")\r\n options.success && options.success()\r\n }\r\n }\r\n if (isApiNotImplemented(\"checkIsSoterEnrolledInDevice\")) {\r\n // 获取设备内是否录入如指纹等生物信息的接口\r\n uni.checkIsSoterEnrolledInDevice = function (options) {\r\n console.warn(\"api: uni.checkIsSoterEnrolledInDevice 获取设备内是否录入如指纹等生物信息的接口 在当前平台不支持\")\r\n options.success && options.success()\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * nfc\r\n */\r\nfunction nfcPolyfill () {\r\n //微信小程序\r\n if (isApiNotImplemented(\"startHCE\")) {\r\n // 初始化 NFC 模块\r\n uni.startHCE = function (options) {\r\n console.warn(\"api: uni.startHCE 初始化 NFC 模块 在当前平台不支持\")\r\n options.success && options.success()\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * 电量\r\n */\r\nfunction batteryPolyfill () {\r\n //微信小程序\r\n if (isApiNotImplemented(\"getBatteryInfo\")) {\r\n // 获取设备电量\r\n uni.getBatteryInfo = function (options) {\r\n console.warn(\"api: uni.getBatteryInfo 获取设备电量 在当前平台不支持\")\r\n options.success && options.success()\r\n }\r\n }\r\n //微信小程序\r\n if (isApiNotImplemented(\"getBatteryInfoSync\")) {\r\n // 同步获取设备电量\r\n uni.getBatteryInfoSync = function (options) {\r\n console.warn(\"api: uni.getBatteryInfoSync 同步获取设备电量 在当前平台不支持\")\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * wifi\r\n */\r\nfunction wifiPolyfill () {\r\n //微信小程序\r\n if (isApiNotImplemented(\"startWifi\")) {\r\n // 初始化 Wi-Fi 模块\r\n uni.startWifi = function (options) {\r\n console.warn(\"api: uni.startWifi 初始化 Wi-Fi 模块 在当前平台不支持\")\r\n options.success && options.success()\r\n }\r\n }\r\n //字节跳动\r\n if (isApiNotImplemented(\"getConnectedWifi\")) {\r\n // 获取设备当前所连的 WiFi 信息\r\n uni.getConnectedWifi = function (options) {\r\n console.warn(\"api: uni.getConnectedWifi 初获取设备当前所连的 WiFi 信息 在当前平台不支持\")\r\n options.success && options.success()\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * 蓝牙\r\n */\r\nfunction bluetoothPolyfill () {\r\n //蓝牙\r\n if (isApiNotImplemented(\"openBluetoothAdapter\")) {\r\n // 初始化蓝牙模块\r\n uni.openBluetoothAdapter = function (object) {\r\n console.warn(\"api: uni.openBluetoothAdapter 初始化蓝牙模块 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"startBluetoothDevicesDiscovery\")) {\r\n // 开始搜寻附近的蓝牙外围设备\r\n uni.startBluetoothDevicesDiscovery = function (callback) {\r\n console.warn(\"api: uni.startBluetoothDevicesDiscovery 开始搜寻附近的蓝牙外围设备 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"onBluetoothDeviceFound\")) {\r\n // 监听寻找到新设备的事件\r\n uni.onBluetoothDeviceFound = function (callback) {\r\n console.warn(\"api: uni.onBluetoothDeviceFound 监听寻找到新设备的事件 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"stopBluetoothDevicesDiscovery\")) {\r\n // 停止搜寻附近的蓝牙外围设备\r\n uni.stopBluetoothDevicesDiscovery = function (callback) {\r\n console.warn(\"api: uni.stopBluetoothDevicesDiscovery 停止搜寻附近的蓝牙外围设备 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"onBluetoothAdapterStateChange\")) {\r\n // 监听蓝牙适配器状态变化事件\r\n uni.onBluetoothAdapterStateChange = function (callback) {\r\n console.warn(\"api: uni.onBluetoothAdapterStateChange 监听蓝牙适配器状态变化事件 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"getConnectedBluetoothDevices\")) {\r\n // 根据 uuid 获取处于已连接状态的设备\r\n uni.getConnectedBluetoothDevices = function (callback) {\r\n console.warn(\"api: uni.getConnectedBluetoothDevices 根据 uuid 获取处于已连接状态的设备 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"getBluetoothDevices\")) {\r\n // 获取在蓝牙模块生效期间所有已发现的蓝牙设备\r\n uni.getBluetoothDevices = function (callback) {\r\n console.warn(\"api: uni.getBluetoothDevices 获取在蓝牙模块生效期间所有已发现的蓝牙设备 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"getBluetoothAdapterState\")) {\r\n // 获取本机蓝牙适配器状态\r\n uni.getBluetoothAdapterState = function (callback) {\r\n console.warn(\"api: uni.getBluetoothAdapterState 获取本机蓝牙适配器状态 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"closeBluetoothAdapter\")) {\r\n // 关闭蓝牙模块\r\n uni.closeBluetoothAdapter = function (callback) {\r\n console.warn(\"api: uni.closeBluetoothAdapter 关闭蓝牙模块 在当前平台不支持\")\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * 低功耗蓝牙\r\n */\r\nfunction blePolyfill () {\r\n if (isApiNotImplemented(\"setBLEMTU\")) {\r\n // 设置蓝牙最大传输单元\r\n uni.setBLEMTU = function (callback) {\r\n console.warn(\"api: uni.setBLEMTU 设置蓝牙最大传输单元 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"readBLECharacteristicValue\")) {\r\n // 读取低功耗蓝牙设备的特征值的二进制数据值\r\n uni.readBLECharacteristicValue = function (callback) {\r\n console.warn(\"api: uni.readBLECharacteristicValue 读取低功耗蓝牙设备的特征值的二进制数据值 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"onBLEConnectionStateChange\")) {\r\n // 关闭蓝牙模块\r\n uni.onBLEConnectionStateChange = function (callback) {\r\n console.warn(\"api: uni.onBLEConnectionStateChange 监听低功耗蓝牙连接状态的改变事件 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"notifyBLECharacteristicValueChange\")) {\r\n // 启用低功耗蓝牙设备特征值变化时的 notify 功能\r\n uni.notifyBLECharacteristicValueChange = function (callback) {\r\n console.warn(\"api: uni.notifyBLECharacteristicValueChange 启用低功耗蓝牙设备特征值变化时的 notify 功能 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"getBLEDeviceServices\")) {\r\n // 获取蓝牙设备所有服务\r\n uni.getBLEDeviceServices = function (callback) {\r\n console.warn(\"api: uni.getBLEDeviceServices 获取蓝牙设备所有服务 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"getBLEDeviceRSSI\")) {\r\n // 获取蓝牙设备的信号强度\r\n uni.getBLEDeviceRSSI = function (callback) {\r\n console.warn(\"api: uni.getBLEDeviceRSSI 获取蓝牙设备的信号强度 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"createBLEConnection\")) {\r\n // 连接低功耗蓝牙设备\r\n uni.createBLEConnection = function (callback) {\r\n console.warn(\"api: uni.createBLEConnection 连接低功耗蓝牙设备 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"closeBLEConnection\")) {\r\n // 断开与低功耗蓝牙设备的连接\r\n uni.closeBLEConnection = function (callback) {\r\n console.warn(\"api: uni.closeBLEConnection 断开与低功耗蓝牙设备的连接 在当前平台不支持\")\r\n }\r\n }\r\n}\r\n\r\n/**\r\n * iBeacon\r\n */\r\nfunction iBeaconPolyfill () {\r\n if (isApiNotImplemented(\"onBeaconServiceChange\")) {\r\n // 监听 iBeacon 服务状态变化事件\r\n uni.onBeaconServiceChange = function (callback) {\r\n console.warn(\"api: uni.onBeaconServiceChange 监听 iBeacon 服务状态变化事件 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"onBeaconUpdate\")) {\r\n // 监听 iBeacon 设备更新事件\r\n uni.onBeaconUpdate = function (callback) {\r\n console.warn(\"api: uni.onBeaconUpdate 监听 iBeacon 设备更新事件 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"getBeacons\")) {\r\n // 获取所有已搜索到的 iBeacon 设备\r\n uni.getBeacons = function (callback) {\r\n console.warn(\"api: uni.getBeacons 获取所有已搜索到的 iBeacon 设备 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"startBeaconDiscovery\")) {\r\n // 开始搜索附近的 iBeacon 设备\r\n uni.startBeaconDiscovery = function (callback) {\r\n console.warn(\"api: uni.startBeaconDiscovery 开始搜索附近的 iBeacon 设备 在当前平台不支持\")\r\n }\r\n }\r\n if (isApiNotImplemented(\"stopBeaconDiscovery\")) {\r\n // 停止搜索附近的 iBeacon 设备\r\n uni.stopBeaconDiscovery = function (callback) {\r\n console.warn(\"api: uni.stopBeaconDiscovery 停止搜索附近的 iBeacon 设备 在当前平台不支持\")\r\n }\r\n }\r\n}\r\n\r\n/**\r\n* uni.navigateTo 和 uni.redirectTo 不能直接跳转tabbar里面的页面,拦截fail,并当它为tabbar页面时,直接调用uni.switchTab()\r\n*/\r\nfunction routerPolyfill () {\r\n var routerApiFailEventHandle = function (res, options) {\r\n if (res.errMsg.indexOf('tabbar page') > -1) {\r\n console.error('res.errMsg: ' + res.errMsg)\r\n var apiName = res.errMsg.match(/not\\s(\\w+)\\sa/)[1]\r\n console.log(apiName)\r\n var url = options.url\r\n if (url) {\r\n var queryString = url.split('?')[1]\r\n if (queryString) {\r\n console.error(apiName + \" 的参数将被忽略:\" + queryString)\r\n }\r\n uni.switchTab({\r\n url: url\r\n })\r\n }\r\n }\r\n }\r\n\r\n var routerApiHandle = function (oriLogFunc) {\r\n return function (options) {\r\n try {\r\n if (options.fail) {\r\n options.fail = (function fail (failFun) {\r\n return function (res) {\r\n routerApiFailEventHandle(res, options)\r\n failFun(res)\r\n }\r\n })(options.fail)\r\n } else {\r\n options.fail = function (res) {\r\n routerApiFailEventHandle(res, options)\r\n }\r\n }\r\n oriLogFunc.call(oriLogFunc, options)\r\n } catch (e) {\r\n console.error('uni.navigateTo or uni.redirectTo error', e)\r\n }\r\n }\r\n }\r\n\r\n uni.navigateTo = routerApiHandle(uni.navigateTo)\r\n uni.redirectTo = routerApiHandle(uni.redirectTo)\r\n}\r\n\r\nvar isInit = false\r\n/**\r\n * polyfill 入口\r\n */\r\nfunction init () {\r\n if (isInit) return\r\n isInit = true\r\n\r\n console.log(\"Api polyfill start\")\r\n //条件编译\r\n platformPolyfill()\r\n //登录\r\n loginPolyfill()\r\n //base64\r\n base64Polyfill()\r\n //地图\r\n mapPolyfill()\r\n //设备\r\n devicePolyfill()\r\n\r\n //媒体相关\r\n mediaPolyfill()\r\n\r\n //蓝牙\r\n bluetoothPolyfill()\r\n //低功耗蓝牙\r\n blePolyfill()\r\n //iBeacon\r\n iBeaconPolyfill()\r\n //wifi\r\n wifiPolyfill()\r\n //电量信息\r\n batteryPolyfill()\r\n //nfc\r\n nfcPolyfill()\r\n //auth\r\n soterAuthPolyfill()\r\n\r\n //ui\r\n uiPolyfill()\r\n //file\r\n filePolyfill()\r\n //canvas\r\n canvasPolyfill()\r\n //ad\r\n adPolyfill()\r\n //plugins\r\n pluginsPolyfill()\r\n //other\r\n otherPolyfill()\r\n\r\n //router\r\n routerPolyfill()\r\n}\r\n\r\n\r\nmodule.exports = {\r\n init,\r\n guid\r\n}\r\n","/*\r\n * @Author: zhang peng\r\n * @Date: 2021-08-03 10:57:51\r\n * @LastEditTime: 2021-08-16 17:25:43\r\n * @LastEditors: zhang peng\r\n * @Description:\r\n * @FilePath: \\miniprogram-to-uniapp2\\src\\project\\template\\polyfill\\base64Binary.js\r\n *\r\n * 借鉴自:https://github.com/dankogai/js-base64/blob/main/base64.js\r\n * 因uniapp没有window,也无法使用Buffer,因此直接使用polyfill\r\n *\r\n */\r\nconst b64ch = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='\r\nconst b64chs = [...b64ch]\r\nconst b64re = /^(?:[A-Za-z\\d+\\/]{4})*?(?:[A-Za-z\\d+\\/]{2}(?:==)?|[A-Za-z\\d+\\/]{3}=?)?$/\r\nconst b64tab = ((a) => {\r\n let tab = {}\r\n a.forEach((c, i) => tab[c] = i)\r\n return tab\r\n})(b64chs)\r\nconst _fromCC = String.fromCharCode.bind(String)\r\n\r\n/**\r\n * polyfill version of `btoa`\r\n */\r\nconst btoaPolyfill = (bin) => {\r\n // console.log('polyfilled');\r\n let u32, c0, c1, c2, asc = ''\r\n const pad = bin.length % 3\r\n for (let i = 0;i < bin.length;) {\r\n if ((c0 = bin.charCodeAt(i++)) > 255 ||\r\n (c1 = bin.charCodeAt(i++)) > 255 ||\r\n (c2 = bin.charCodeAt(i++)) > 255)\r\n throw new TypeError('invalid character found')\r\n u32 = (c0 << 16) | (c1 << 8) | c2\r\n asc += b64chs[u32 >> 18 & 63]\r\n + b64chs[u32 >> 12 & 63]\r\n + b64chs[u32 >> 6 & 63]\r\n + b64chs[u32 & 63]\r\n }\r\n return pad ? asc.slice(0, pad - 3) + \"===\".substring(pad) : asc\r\n}\r\n\r\n/**\r\n * polyfill version of `atob`\r\n */\r\nconst atobPolyfill = (asc) => {\r\n // console.log('polyfilled');\r\n asc = asc.replace(/\\s+/g, '')\r\n if (!b64re.test(asc))\r\n throw new TypeError('malformed base64.')\r\n asc += '=='.slice(2 - (asc.length & 3))\r\n let u24, bin = '', r1, r2\r\n for (let i = 0;i < asc.length;) {\r\n u24 = b64tab[asc.charAt(i++)] << 18\r\n | b64tab[asc.charAt(i++)] << 12\r\n | (r1 = b64tab[asc.charAt(i++)]) << 6\r\n | (r2 = b64tab[asc.charAt(i++)])\r\n bin += r1 === 64 ? _fromCC(u24 >> 16 & 255)\r\n : r2 === 64 ? _fromCC(u24 >> 16 & 255, u24 >> 8 & 255)\r\n : _fromCC(u24 >> 16 & 255, u24 >> 8 & 255, u24 & 255)\r\n }\r\n return bin\r\n}\r\n\r\n/**\r\n * base64转ArrayBuffer\r\n */\r\nfunction base64ToArrayBuffer (base64) {\r\n const binaryStr = atobPolyfill(base64)\r\n const byteLength = binaryStr.length\r\n const bytes = new Uint8Array(byteLength)\r\n for (let i = 0;i < byteLength;i++) {\r\n bytes[i] = binary.charCodeAt(i)\r\n }\r\n return bytes.buffer\r\n}\r\n\r\n/**\r\n * ArrayBuffer转base64\r\n */\r\nfunction arrayBufferToBase64 (buffer) {\r\n let binaryStr = \"\"\r\n const bytes = new Uint8Array(buffer)\r\n var len = bytes.byteLength\r\n for (let i = 0;i < len;i++) {\r\n binaryStr += String.fromCharCode(bytes[i])\r\n }\r\n return btoaPolyfill(binaryStr)\r\n}\r\n\r\nmodule.exports = {\r\n base64ToArrayBuffer,\r\n arrayBufferToBase64,\r\n}\r\n","/*\r\n * @Author: zhang peng\r\n * @Date: 2021-08-03 10:57:51\r\n * @LastEditTime: 2021-10-15 20:27:53\r\n * @LastEditors: zhang peng\r\n * @Description:\r\n * @FilePath: \\miniprogram-to-uniapp2\\src\\project\\template\\polyfill\\mixins.js\r\n *\r\n * 如果你想删除本文件,请先确认它使用的范围,感谢合作~\r\n * 如有疑问,请直接联系: 375890534@qq.com\r\n */\r\nexport default {\r\n methods: {\r\n /**\r\n * 转义符换成普通字符\r\n * @param {*} str\r\n * @returns\r\n */\r\n escape2Html (str) {\r\n if (!str) return str\r\n var arrEntities = {\r\n 'lt': '<',\r\n 'gt': '>',\r\n 'nbsp': ' ',\r\n 'amp': '&',\r\n 'quot': '\"'\r\n }\r\n return str.replace(/&(lt|gt|nbsp|amp|quot);/ig, function (all, t) {\r\n return arrEntities[t]\r\n })\r\n },\r\n /**\r\n * 普通字符转换成转义符\r\n * @param {*} sHtml\r\n * @returns\r\n */\r\n html2Escape (sHtml) {\r\n if (!sHtml) return sHtml\r\n return sHtml.replace(/[<>&\"]/g, function (c) {\r\n return {\r\n '<': '<',\r\n '>': '>',\r\n '&': '&',\r\n '\"': '"'\r\n }[c]\r\n })\r\n },\r\n /**\r\n * setData polyfill 勿删!!!\r\n * 用于转换后的uniapp的项目能直接使用this.setData()函数\r\n * @param {*} obj\r\n * @param {*} callback\r\n */\r\n setData: function (obj, callback) {\r\n let that = this\r\n const handleData = (tepData, tepKey, afterKey) => {\r\n var tepData2 = tepData\r\n tepKey = tepKey.split('.')\r\n tepKey.forEach(item => {\r\n if (tepData[item] === null || tepData[item] === undefined) {\r\n let reg = /^[0-9]+$/\r\n tepData[item] = reg.test(afterKey) ? [] : {}\r\n tepData2 = tepData[item]\r\n } else {\r\n tepData2 = tepData[item]\r\n }\r\n })\r\n return tepData2\r\n }\r\n const isFn = function (value) {\r\n return typeof value == 'function' || false\r\n }\r\n Object.keys(obj).forEach(function (key) {\r\n let val = obj[key]\r\n key = key.replace(/\\]/g, '').replace(/\\[/g, '.')\r\n let front, after\r\n let index_after = key.lastIndexOf('.')\r\n if (index_after != -1) {\r\n after = key.slice(index_after + 1)\r\n front = handleData(that, key.slice(0, index_after), after)\r\n } else {\r\n after = key\r\n front = that\r\n }\r\n if (front.$data && front.$data[after] === undefined) {\r\n Object.defineProperty(front, after, {\r\n get () {\r\n return front.$data[after]\r\n },\r\n set (newValue) {\r\n front.$data[after] = newValue\r\n that.hasOwnProperty(\"$forceUpdate\") && that.$forceUpdate()\r\n },\r\n enumerable: true,\r\n configurable: true\r\n })\r\n front[after] = val\r\n } else {\r\n that.$set(front, after, val)\r\n }\r\n })\r\n // this.$forceUpdate();\r\n isFn(callback) && this.$nextTick(callback)\r\n },\r\n /**\r\n * 解析事件里的动态函数名,这种没有()的函数名,在uniapp不被执行\r\n * 比如:立即 \r\n * @param {*} exp\r\n */\r\n parseEventDynamicCode (exp) {\r\n if (typeof (eval(\"this.\" + exp)) === 'function') {\r\n eval(\"this.\" + exp + '()')\r\n }\r\n },\r\n /**\r\n * 用于处理对props进行赋值的情况\r\n * //简单处理一下就行了\r\n *\r\n * @param {*} target\r\n * @returns\r\n */\r\n deepClone (target) {\r\n //判断拷贝的要进行深拷贝的是数组还是对象,是数组的话进行数组拷贝,对象的话进行对象拷贝\r\n // const toString = Object.prototype.toString\r\n // toString.call(obj) === '[object Array]' ? clone = clone || [] : clone = clone || {}\r\n // for (const i in obj) {\r\n // if (typeof obj[i] === 'object' && obj[i]!==null) {\r\n // // 要考虑深复制问题了\r\n // if (Array.isArray(obj[i])) {\r\n // // 这是数组\r\n // clone[i] = []\r\n // } else {\r\n // // 这是对象\r\n // clone[i] = {}\r\n // }\r\n // deepClone(obj[i], clone[i])\r\n // } else {\r\n // clone[i] = obj[i]\r\n // }\r\n // }\r\n // return clone\r\n return JSON.parse(JSON.stringify(obj))\r\n }\r\n }\r\n}\r\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","/*!\n * Vue.js v2.6.11\n * (c) 2014-2021 Evan You\n * Released under the MIT License.\n */\n/* */\n\nvar emptyObject = Object.freeze({});\n\n// These helpers produce better VM code in JS engines due to their\n// explicitness and function inlining.\nfunction isUndef (v) {\n return v === undefined || v === null\n}\n\nfunction isDef (v) {\n return v !== undefined && v !== null\n}\n\nfunction isTrue (v) {\n return v === true\n}\n\nfunction isFalse (v) {\n return v === false\n}\n\n/**\n * Check if value is primitive.\n */\nfunction isPrimitive (value) {\n return (\n typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean'\n )\n}\n\n/**\n * Quick object check - this is primarily used to tell\n * Objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\n/**\n * Get the raw type string of a value, e.g., [object Object].\n */\nvar _toString = Object.prototype.toString;\n\nfunction toRawType (value) {\n return _toString.call(value).slice(8, -1)\n}\n\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject (obj) {\n return _toString.call(obj) === '[object Object]'\n}\n\nfunction isRegExp (v) {\n return _toString.call(v) === '[object RegExp]'\n}\n\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex (val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val)\n}\n\nfunction isPromise (val) {\n return (\n isDef(val) &&\n typeof val.then === 'function' &&\n typeof val.catch === 'function'\n )\n}\n\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString (val) {\n return val == null\n ? ''\n : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)\n ? JSON.stringify(val, null, 2)\n : String(val)\n}\n\n/**\n * Convert an input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber (val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n\n}\n\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap (\n str,\n expectsLowerCase\n) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase\n ? function (val) { return map[val.toLowerCase()]; }\n : function (val) { return map[val]; }\n}\n\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n\n/**\n * Check if an attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n\n/**\n * Remove an item from an array.\n */\nfunction remove (arr, item) {\n if (arr.length) {\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1)\n }\n }\n}\n\n/**\n * Check whether an object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn (obj, key) {\n return hasOwnProperty.call(obj, key)\n}\n\n/**\n * Create a cached version of a pure function.\n */\nfunction cached (fn) {\n var cache = Object.create(null);\n return (function cachedFn (str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str))\n })\n}\n\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })\n});\n\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1)\n});\n\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n});\n\n/**\n * Simple bind polyfill for environments that do not support it,\n * e.g., PhantomJS 1.x. Technically, we don't need this anymore\n * since native bind is now performant enough in most browsers.\n * But removing it would mean breaking code that was able to run in\n * PhantomJS 1.x, so this must be kept for backward compatibility.\n */\n\n/* istanbul ignore next */\nfunction polyfillBind (fn, ctx) {\n function boundFn (a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx)\n }\n\n boundFn._length = fn.length;\n return boundFn\n}\n\nfunction nativeBind (fn, ctx) {\n return fn.bind(ctx)\n}\n\nvar bind = Function.prototype.bind\n ? nativeBind\n : polyfillBind;\n\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray (list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret\n}\n\n/**\n * Mix properties into target object.\n */\nfunction extend (to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to\n}\n\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject (arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res\n}\n\n/* eslint-disable no-unused-vars */\n\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/).\n */\nfunction noop (a, b, c) {}\n\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n\n/* eslint-enable no-unused-vars */\n\n/**\n * Return the same value.\n */\nvar identity = function (_) { return _; };\n\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual (a, b) {\n if (a === b) { return true }\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return a.length === b.length && a.every(function (e, i) {\n return looseEqual(e, b[i])\n })\n } else if (a instanceof Date && b instanceof Date) {\n return a.getTime() === b.getTime()\n } else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return keysA.length === keysB.length && keysA.every(function (key) {\n return looseEqual(a[key], b[key])\n })\n } else {\n /* istanbul ignore next */\n return false\n }\n } catch (e) {\n /* istanbul ignore next */\n return false\n }\n } else if (!isObjectA && !isObjectB) {\n return String(a) === String(b)\n } else {\n return false\n }\n}\n\n/**\n * Return the first index at which a loosely equal value can be\n * found in the array (if value is a plain object, the array must\n * contain an object of the same shape), or -1 if it is not present.\n */\nfunction looseIndexOf (arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val)) { return i }\n }\n return -1\n}\n\n/**\n * Ensure a function is called only once.\n */\nfunction once (fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n }\n}\n\nvar ASSET_TYPES = [\n 'component',\n 'directive',\n 'filter'\n];\n\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured',\n 'serverPrefetch'\n];\n\n/* */\n\n\n\nvar config = ({\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to record perf\n */\n performance: false,\n\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n\n /**\n * Perform updates asynchronously. Intended to be used by Vue Test Utils\n * This will significantly reduce performance if set to false.\n */\n async: true,\n\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n});\n\n/* */\n\n/**\n * unicode letters used for parsing html tags, component names and property paths.\n * using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname\n * skipping \\u10000-\\uEFFFF due to it freezing up PhantomJS\n */\nvar 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/;\n\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved (str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5F\n}\n\n/**\n * Define a property.\n */\nfunction def (obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n\n/**\n * Parse simple path.\n */\nvar bailRE = new RegExp((\"[^\" + (unicodeRegExp.source) + \".$_\\\\d]\"));\nfunction parsePath (path) {\n if (bailRE.test(path)) {\n return\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj) { return }\n obj = obj[segments[i]];\n }\n return obj\n }\n}\n\n/* */\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;\nvar weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nvar isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');\nvar isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');\nvar isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge;\nvar isPhantomJS = UA && /phantomjs/.test(UA);\nvar isFF = UA && UA.match(/firefox\\/(\\d+)/);\n\n// Firefox has a \"watch\" function on Object.prototype...\nvar nativeWatch = ({}).watch;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', ({\n get: function get () {\n }\n })); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n } catch (e) {}\n}\n\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer = global['process'] && global['process'].env.VUE_ENV === 'server';\n } else {\n _isServer = false;\n }\n }\n return _isServer\n};\n\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\n/* istanbul ignore next */\nfunction isNative (Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString())\n}\n\nvar hasSymbol =\n typeof Symbol !== 'undefined' && isNative(Symbol) &&\n typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);\n\nvar _Set;\n/* istanbul ignore if */ // $flow-disable-line\nif (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n} else {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = /*@__PURE__*/(function () {\n function Set () {\n this.set = Object.create(null);\n }\n Set.prototype.has = function has (key) {\n return this.set[key] === true\n };\n Set.prototype.add = function add (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function clear () {\n this.set = Object.create(null);\n };\n\n return Set;\n }());\n}\n\n/* */\n\nvar warn = noop;\nvar tip = noop;\nvar generateComponentTrace = (noop); // work around flow check\nvar formatComponentName = (noop);\n\nif (process.env.NODE_ENV !== 'production') {\n var hasConsole = typeof console !== 'undefined';\n var classifyRE = /(?:^|[-_])(\\w)/g;\n var classify = function (str) { return str\n .replace(classifyRE, function (c) { return c.toUpperCase(); })\n .replace(/[-_]/g, ''); };\n\n warn = function (msg, vm) {\n var trace = vm ? generateComponentTrace(vm) : '';\n\n if (config.warnHandler) {\n config.warnHandler.call(null, msg, vm, trace);\n } else if (hasConsole && (!config.silent)) {\n console.error((\"[Vue warn]: \" + msg + trace));\n }\n };\n\n tip = function (msg, vm) {\n if (hasConsole && (!config.silent)) {\n console.warn(\"[Vue tip]: \" + msg + (\n vm ? generateComponentTrace(vm) : ''\n ));\n }\n };\n\n formatComponentName = function (vm, includeFile) {\n if (vm.$root === vm) {\n if (vm.$options && vm.$options.__file) { // fixed by xxxxxx\n return ('') + vm.$options.__file\n }\n return ''\n }\n var options = typeof vm === 'function' && vm.cid != null\n ? vm.options\n : vm._isVue\n ? vm.$options || vm.constructor.options\n : vm;\n var name = options.name || options._componentTag;\n var file = options.__file;\n if (!name && file) {\n var match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n\n return (\n (name ? (\"<\" + (classify(name)) + \">\") : \"\") +\n (file && includeFile !== false ? (\" at \" + file) : '')\n )\n };\n\n var repeat = function (str, n) {\n var res = '';\n while (n) {\n if (n % 2 === 1) { res += str; }\n if (n > 1) { str += str; }\n n >>= 1;\n }\n return res\n };\n\n generateComponentTrace = function (vm) {\n if (vm._isVue && vm.$parent) {\n var tree = [];\n var currentRecursiveSequence = 0;\n while (vm && vm.$options.name !== 'PageBody') {\n if (tree.length > 0) {\n var last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n !vm.$options.isReserved && tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree\n .map(function (vm, i) { return (\"\" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)\n ? ((formatComponentName(vm[0])) + \"... (\" + (vm[1]) + \" recursive calls)\")\n : formatComponentName(vm))); })\n .join('\\n')\n } else {\n return (\"\\n\\n(found in \" + (formatComponentName(vm)) + \")\")\n }\n };\n}\n\n/* */\n\nvar uid = 0;\n\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n */\nvar Dep = function Dep () {\n this.id = uid++;\n this.subs = [];\n};\n\nDep.prototype.addSub = function addSub (sub) {\n this.subs.push(sub);\n};\n\nDep.prototype.removeSub = function removeSub (sub) {\n remove(this.subs, sub);\n};\n\nDep.prototype.depend = function depend () {\n if (Dep.SharedObject.target) {\n Dep.SharedObject.target.addDep(this);\n }\n};\n\nDep.prototype.notify = function notify () {\n // stabilize the subscriber list first\n var subs = this.subs.slice();\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n // subs aren't sorted in scheduler if not running async\n // we need to sort them now to make sure they fire in correct\n // order\n subs.sort(function (a, b) { return a.id - b.id; });\n }\n for (var i = 0, l = subs.length; i < l; i++) {\n subs[i].update();\n }\n};\n\n// The current target watcher being evaluated.\n// This is globally unique because only one watcher\n// can be evaluated at a time.\n// fixed by xxxxxx (nvue shared vuex)\n/* eslint-disable no-undef */\nDep.SharedObject = {};\nDep.SharedObject.target = null;\nDep.SharedObject.targetStack = [];\n\nfunction pushTarget (target) {\n Dep.SharedObject.targetStack.push(target);\n Dep.SharedObject.target = target;\n Dep.target = target;\n}\n\nfunction popTarget () {\n Dep.SharedObject.targetStack.pop();\n Dep.SharedObject.target = Dep.SharedObject.targetStack[Dep.SharedObject.targetStack.length - 1];\n Dep.target = Dep.SharedObject.target;\n}\n\n/* */\n\nvar VNode = function VNode (\n tag,\n data,\n children,\n text,\n elm,\n context,\n componentOptions,\n asyncFactory\n) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n};\n\nvar prototypeAccessors = { child: { configurable: true } };\n\n// DEPRECATED: alias for componentInstance for backwards compat.\n/* istanbul ignore next */\nprototypeAccessors.child.get = function () {\n return this.componentInstance\n};\n\nObject.defineProperties( VNode.prototype, prototypeAccessors );\n\nvar createEmptyVNode = function (text) {\n if ( text === void 0 ) text = '';\n\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node\n};\n\nfunction createTextVNode (val) {\n return new VNode(undefined, undefined, undefined, String(val))\n}\n\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode (vnode) {\n var cloned = new VNode(\n vnode.tag,\n vnode.data,\n // #7975\n // clone children array to avoid mutating original in case of cloning\n // a child.\n vnode.children && vnode.children.slice(),\n vnode.text,\n vnode.elm,\n vnode.context,\n vnode.componentOptions,\n vnode.asyncFactory\n );\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.asyncMeta = vnode.asyncMeta;\n cloned.isCloned = true;\n return cloned\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\n\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\n\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break\n case 'splice':\n inserted = args.slice(2);\n break\n }\n if (inserted) { ob.observeArray(inserted); }\n // notify change\n ob.dep.notify();\n return result\n });\n});\n\n/* */\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\n\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\n\nfunction toggleObserving (value) {\n shouldObserve = value;\n}\n\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = function Observer (value) {\n this.value = value;\n this.dep = new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (Array.isArray(value)) {\n if (hasProto) {\n {// fixed by xxxxxx 微信小程序使用 plugins 之后,数组方法被直接挂载到了数组对象上,需要执行 copyAugment 逻辑\n if(value.push !== value.__proto__.push){\n copyAugment(value, arrayMethods, arrayKeys);\n } else {\n protoAugment(value, arrayMethods);\n }\n }\n } else {\n copyAugment(value, arrayMethods, arrayKeys);\n }\n this.observeArray(value);\n } else {\n this.walk(value);\n }\n};\n\n/**\n * Walk through all properties and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\nObserver.prototype.walk = function walk (obj) {\n var keys = Object.keys(obj);\n for (var i = 0; i < keys.length; i++) {\n defineReactive$$1(obj, keys[i]);\n }\n};\n\n/**\n * Observe a list of Array items.\n */\nObserver.prototype.observeArray = function observeArray (items) {\n for (var i = 0, l = items.length; i < l; i++) {\n observe(items[i]);\n }\n};\n\n// helpers\n\n/**\n * Augment a target Object or Array by intercepting\n * the prototype chain using __proto__\n */\nfunction protoAugment (target, src) {\n /* eslint-disable no-proto */\n target.__proto__ = src;\n /* eslint-enable no-proto */\n}\n\n/**\n * Augment a target Object or Array by defining\n * hidden properties.\n */\n/* istanbul ignore next */\nfunction copyAugment (target, src, keys) {\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n def(target, key, src[key]);\n }\n}\n\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe (value, asRootData) {\n if (!isObject(value) || value instanceof VNode) {\n return\n }\n var ob;\n if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n ob = value.__ob__;\n } else if (\n shouldObserve &&\n !isServerRendering() &&\n (Array.isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value._isVue\n ) {\n ob = new Observer(value);\n }\n if (asRootData && ob) {\n ob.vmCount++;\n }\n return ob\n}\n\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive$$1 (\n obj,\n key,\n val,\n customSetter,\n shallow\n) {\n var dep = new Dep();\n\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return\n }\n\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n var setter = property && property.set;\n if ((!getter || setter) && arguments.length === 2) {\n val = obj[key];\n }\n\n var childOb = !shallow && observe(val);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter () {\n var value = getter ? getter.call(obj) : val;\n if (Dep.SharedObject.target) { // fixed by xxxxxx\n dep.depend();\n if (childOb) {\n childOb.dep.depend();\n if (Array.isArray(value)) {\n dependArray(value);\n }\n }\n }\n return value\n },\n set: function reactiveSetter (newVal) {\n var value = getter ? getter.call(obj) : val;\n /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal && value !== value)) {\n return\n }\n /* eslint-enable no-self-compare */\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n // #7981: for accessor properties without setter\n if (getter && !setter) { return }\n if (setter) {\n setter.call(obj, newVal);\n } else {\n val = newVal;\n }\n childOb = !shallow && observe(newVal);\n dep.notify();\n }\n });\n}\n\n/**\n * Set a property on an object. Adds the new property and\n * triggers change notification if the property doesn't\n * already exist.\n */\nfunction set (target, key, val) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot set reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n return val\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.'\n );\n return val\n }\n if (!ob) {\n target[key] = val;\n return val\n }\n defineReactive$$1(ob.value, key, val);\n ob.dep.notify();\n return val\n}\n\n/**\n * Delete a property and trigger change if necessary.\n */\nfunction del (target, key) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot delete reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.'\n );\n return\n }\n if (!hasOwn(target, key)) {\n return\n }\n delete target[key];\n if (!ob) {\n return\n }\n ob.dep.notify();\n}\n\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray (value) {\n for (var e = (void 0), i = 0, l = value.length; i < l; i++) {\n e = value[i];\n e && e.__ob__ && e.__ob__.dep.depend();\n if (Array.isArray(e)) {\n dependArray(e);\n }\n }\n}\n\n/* */\n\n/**\n * Option overwriting strategies are functions that handle\n * how to merge a parent option value and a child option\n * value into the final value.\n */\nvar strats = config.optionMergeStrategies;\n\n/**\n * Options with restrictions\n */\nif (process.env.NODE_ENV !== 'production') {\n strats.el = strats.propsData = function (parent, child, vm, key) {\n if (!vm) {\n warn(\n \"option \\\"\" + key + \"\\\" can only be used during instance \" +\n 'creation with the `new` keyword.'\n );\n }\n return defaultStrat(parent, child)\n };\n}\n\n/**\n * Helper that recursively merges two data objects together.\n */\nfunction mergeData (to, from) {\n if (!from) { return to }\n var key, toVal, fromVal;\n\n var keys = hasSymbol\n ? Reflect.ownKeys(from)\n : Object.keys(from);\n\n for (var i = 0; i < keys.length; i++) {\n key = keys[i];\n // in case the object is already observed...\n if (key === '__ob__') { continue }\n toVal = to[key];\n fromVal = from[key];\n if (!hasOwn(to, key)) {\n set(to, key, fromVal);\n } else if (\n toVal !== fromVal &&\n isPlainObject(toVal) &&\n isPlainObject(fromVal)\n ) {\n mergeData(toVal, fromVal);\n }\n }\n return to\n}\n\n/**\n * Data\n */\nfunction mergeDataOrFn (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n // in a Vue.extend merge, both should be functions\n if (!childVal) {\n return parentVal\n }\n if (!parentVal) {\n return childVal\n }\n // when parentVal & childVal are both present,\n // we need to return a function that returns the\n // merged result of both functions... no need to\n // check if parentVal is a function here because\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this, this) : childVal,\n typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal\n )\n }\n } else {\n return function mergedInstanceDataFn () {\n // instance merge\n var instanceData = typeof childVal === 'function'\n ? childVal.call(vm, vm)\n : childVal;\n var defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm, vm)\n : parentVal;\n if (instanceData) {\n return mergeData(instanceData, defaultData)\n } else {\n return defaultData\n }\n }\n }\n}\n\nstrats.data = function (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n if (childVal && typeof childVal !== 'function') {\n process.env.NODE_ENV !== 'production' && warn(\n 'The \"data\" option should be a function ' +\n 'that returns a per-instance value in component ' +\n 'definitions.',\n vm\n );\n\n return parentVal\n }\n return mergeDataOrFn(parentVal, childVal)\n }\n\n return mergeDataOrFn(parentVal, childVal, vm)\n};\n\n/**\n * Hooks and props are merged as arrays.\n */\nfunction mergeHook (\n parentVal,\n childVal\n) {\n var res = childVal\n ? parentVal\n ? parentVal.concat(childVal)\n : Array.isArray(childVal)\n ? childVal\n : [childVal]\n : parentVal;\n return res\n ? dedupeHooks(res)\n : res\n}\n\nfunction dedupeHooks (hooks) {\n var res = [];\n for (var i = 0; i < hooks.length; i++) {\n if (res.indexOf(hooks[i]) === -1) {\n res.push(hooks[i]);\n }\n }\n return res\n}\n\nLIFECYCLE_HOOKS.forEach(function (hook) {\n strats[hook] = mergeHook;\n});\n\n/**\n * Assets\n *\n * When a vm is present (instance creation), we need to do\n * a three-way merge between constructor options, instance\n * options and parent options.\n */\nfunction mergeAssets (\n parentVal,\n childVal,\n vm,\n key\n) {\n var res = Object.create(parentVal || null);\n if (childVal) {\n process.env.NODE_ENV !== 'production' && assertObjectType(key, childVal, vm);\n return extend(res, childVal)\n } else {\n return res\n }\n}\n\nASSET_TYPES.forEach(function (type) {\n strats[type + 's'] = mergeAssets;\n});\n\n/**\n * Watchers.\n *\n * Watchers hashes should not overwrite one\n * another, so we merge them as arrays.\n */\nstrats.watch = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n // work around Firefox's Object.prototype.watch...\n if (parentVal === nativeWatch) { parentVal = undefined; }\n if (childVal === nativeWatch) { childVal = undefined; }\n /* istanbul ignore if */\n if (!childVal) { return Object.create(parentVal || null) }\n if (process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = {};\n extend(ret, parentVal);\n for (var key$1 in childVal) {\n var parent = ret[key$1];\n var child = childVal[key$1];\n if (parent && !Array.isArray(parent)) {\n parent = [parent];\n }\n ret[key$1] = parent\n ? parent.concat(child)\n : Array.isArray(child) ? child : [child];\n }\n return ret\n};\n\n/**\n * Other object hashes.\n */\nstrats.props =\nstrats.methods =\nstrats.inject =\nstrats.computed = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n if (childVal && process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = Object.create(null);\n extend(ret, parentVal);\n if (childVal) { extend(ret, childVal); }\n return ret\n};\nstrats.provide = mergeDataOrFn;\n\n/**\n * Default strategy.\n */\nvar defaultStrat = function (parentVal, childVal) {\n return childVal === undefined\n ? parentVal\n : childVal\n};\n\n/**\n * Validate component names\n */\nfunction checkComponents (options) {\n for (var key in options.components) {\n validateComponentName(key);\n }\n}\n\nfunction validateComponentName (name) {\n if (!new RegExp((\"^[a-zA-Z][\\\\-\\\\.0-9_\" + (unicodeRegExp.source) + \"]*$\")).test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n 'should conform to valid custom element name in html5 specification.'\n );\n }\n if (isBuiltInTag(name) || config.isReservedTag(name)) {\n warn(\n 'Do not use built-in or reserved HTML elements as component ' +\n 'id: ' + name\n );\n }\n}\n\n/**\n * Ensure all props option syntax are normalized into the\n * Object-based format.\n */\nfunction normalizeProps (options, vm) {\n var props = options.props;\n if (!props) { return }\n var res = {};\n var i, val, name;\n if (Array.isArray(props)) {\n i = props.length;\n while (i--) {\n val = props[i];\n if (typeof val === 'string') {\n name = camelize(val);\n res[name] = { type: null };\n } else if (process.env.NODE_ENV !== 'production') {\n warn('props must be strings when using array syntax.');\n }\n }\n } else if (isPlainObject(props)) {\n for (var key in props) {\n val = props[key];\n name = camelize(key);\n res[name] = isPlainObject(val)\n ? val\n : { type: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"props\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(props)) + \".\",\n vm\n );\n }\n options.props = res;\n}\n\n/**\n * Normalize all injections into Object-based format\n */\nfunction normalizeInject (options, vm) {\n var inject = options.inject;\n if (!inject) { return }\n var normalized = options.inject = {};\n if (Array.isArray(inject)) {\n for (var i = 0; i < inject.length; i++) {\n normalized[inject[i]] = { from: inject[i] };\n }\n } else if (isPlainObject(inject)) {\n for (var key in inject) {\n var val = inject[key];\n normalized[key] = isPlainObject(val)\n ? extend({ from: key }, val)\n : { from: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"inject\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(inject)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Normalize raw function directives into object format.\n */\nfunction normalizeDirectives (options) {\n var dirs = options.directives;\n if (dirs) {\n for (var key in dirs) {\n var def$$1 = dirs[key];\n if (typeof def$$1 === 'function') {\n dirs[key] = { bind: def$$1, update: def$$1 };\n }\n }\n }\n}\n\nfunction assertObjectType (name, value, vm) {\n if (!isPlainObject(value)) {\n warn(\n \"Invalid value for option \\\"\" + name + \"\\\": expected an Object, \" +\n \"but got \" + (toRawType(value)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Merge two option objects into a new one.\n * Core utility used in both instantiation and inheritance.\n */\nfunction mergeOptions (\n parent,\n child,\n vm\n) {\n if (process.env.NODE_ENV !== 'production') {\n checkComponents(child);\n }\n\n if (typeof child === 'function') {\n child = child.options;\n }\n\n normalizeProps(child, vm);\n normalizeInject(child, vm);\n normalizeDirectives(child);\n\n // Apply extends and mixins on the child options,\n // but only if it is a raw options object that isn't\n // the result of another mergeOptions call.\n // Only merged options has the _base property.\n if (!child._base) {\n if (child.extends) {\n parent = mergeOptions(parent, child.extends, vm);\n }\n if (child.mixins) {\n for (var i = 0, l = child.mixins.length; i < l; i++) {\n parent = mergeOptions(parent, child.mixins[i], vm);\n }\n }\n }\n\n var options = {};\n var key;\n for (key in parent) {\n mergeField(key);\n }\n for (key in child) {\n if (!hasOwn(parent, key)) {\n mergeField(key);\n }\n }\n function mergeField (key) {\n var strat = strats[key] || defaultStrat;\n options[key] = strat(parent[key], child[key], vm, key);\n }\n return options\n}\n\n/**\n * Resolve an asset.\n * This function is used because child instances need access\n * to assets defined in its ancestor chain.\n */\nfunction resolveAsset (\n options,\n type,\n id,\n warnMissing\n) {\n /* istanbul ignore if */\n if (typeof id !== 'string') {\n return\n }\n var assets = options[type];\n // check local registration variations first\n if (hasOwn(assets, id)) { return assets[id] }\n var camelizedId = camelize(id);\n if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }\n var PascalCaseId = capitalize(camelizedId);\n if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }\n // fallback to prototype chain\n var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];\n if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {\n warn(\n 'Failed to resolve ' + type.slice(0, -1) + ': ' + id,\n options\n );\n }\n return res\n}\n\n/* */\n\n\n\nfunction validateProp (\n key,\n propOptions,\n propsData,\n vm\n) {\n var prop = propOptions[key];\n var absent = !hasOwn(propsData, key);\n var value = propsData[key];\n // boolean casting\n var booleanIndex = getTypeIndex(Boolean, prop.type);\n if (booleanIndex > -1) {\n if (absent && !hasOwn(prop, 'default')) {\n value = false;\n } else if (value === '' || value === hyphenate(key)) {\n // only cast empty string / same name to boolean if\n // boolean has higher priority\n var stringIndex = getTypeIndex(String, prop.type);\n if (stringIndex < 0 || booleanIndex < stringIndex) {\n value = true;\n }\n }\n }\n // check default value\n if (value === undefined) {\n value = getPropDefaultValue(vm, prop, key);\n // since the default value is a fresh copy,\n // make sure to observe it.\n var prevShouldObserve = shouldObserve;\n toggleObserving(true);\n observe(value);\n toggleObserving(prevShouldObserve);\n }\n if (\n process.env.NODE_ENV !== 'production' &&\n // skip validation for weex recycle-list child component props\n !(false)\n ) {\n assertProp(prop, key, value, vm, absent);\n }\n return value\n}\n\n/**\n * Get the default value of a prop.\n */\nfunction getPropDefaultValue (vm, prop, key) {\n // no default, return undefined\n if (!hasOwn(prop, 'default')) {\n return undefined\n }\n var def = prop.default;\n // warn against non-factory defaults for Object & Array\n if (process.env.NODE_ENV !== 'production' && isObject(def)) {\n warn(\n 'Invalid default value for prop \"' + key + '\": ' +\n 'Props with type Object/Array must use a factory function ' +\n 'to return the default value.',\n vm\n );\n }\n // the raw prop value was also undefined from previous render,\n // return previous default value to avoid unnecessary watcher trigger\n if (vm && vm.$options.propsData &&\n vm.$options.propsData[key] === undefined &&\n vm._props[key] !== undefined\n ) {\n return vm._props[key]\n }\n // call factory function for non-Function types\n // a value is Function if its prototype is function even across different execution context\n return typeof def === 'function' && getType(prop.type) !== 'Function'\n ? def.call(vm)\n : def\n}\n\n/**\n * Assert whether a prop is valid.\n */\nfunction assertProp (\n prop,\n name,\n value,\n vm,\n absent\n) {\n if (prop.required && absent) {\n warn(\n 'Missing required prop: \"' + name + '\"',\n vm\n );\n return\n }\n if (value == null && !prop.required) {\n return\n }\n var type = prop.type;\n var valid = !type || type === true;\n var expectedTypes = [];\n if (type) {\n if (!Array.isArray(type)) {\n type = [type];\n }\n for (var i = 0; i < type.length && !valid; i++) {\n var assertedType = assertType(value, type[i]);\n expectedTypes.push(assertedType.expectedType || '');\n valid = assertedType.valid;\n }\n }\n\n if (!valid) {\n warn(\n getInvalidTypeMessage(name, value, expectedTypes),\n vm\n );\n return\n }\n var validator = prop.validator;\n if (validator) {\n if (!validator(value)) {\n warn(\n 'Invalid prop: custom validator check failed for prop \"' + name + '\".',\n vm\n );\n }\n }\n}\n\nvar simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;\n\nfunction assertType (value, type) {\n var valid;\n var expectedType = getType(type);\n if (simpleCheckRE.test(expectedType)) {\n var t = typeof value;\n valid = t === expectedType.toLowerCase();\n // for primitive wrapper objects\n if (!valid && t === 'object') {\n valid = value instanceof type;\n }\n } else if (expectedType === 'Object') {\n valid = isPlainObject(value);\n } else if (expectedType === 'Array') {\n valid = Array.isArray(value);\n } else {\n valid = value instanceof type;\n }\n return {\n valid: valid,\n expectedType: expectedType\n }\n}\n\n/**\n * Use function string name to check built-in types,\n * because a simple equality check will fail when running\n * across different vms / iframes.\n */\nfunction getType (fn) {\n var match = fn && fn.toString().match(/^\\s*function (\\w+)/);\n return match ? match[1] : ''\n}\n\nfunction isSameType (a, b) {\n return getType(a) === getType(b)\n}\n\nfunction getTypeIndex (type, expectedTypes) {\n if (!Array.isArray(expectedTypes)) {\n return isSameType(expectedTypes, type) ? 0 : -1\n }\n for (var i = 0, len = expectedTypes.length; i < len; i++) {\n if (isSameType(expectedTypes[i], type)) {\n return i\n }\n }\n return -1\n}\n\nfunction getInvalidTypeMessage (name, value, expectedTypes) {\n var message = \"Invalid prop: type check failed for prop \\\"\" + name + \"\\\".\" +\n \" Expected \" + (expectedTypes.map(capitalize).join(', '));\n var expectedType = expectedTypes[0];\n var receivedType = toRawType(value);\n var expectedValue = styleValue(value, expectedType);\n var receivedValue = styleValue(value, receivedType);\n // check if we need to specify expected value\n if (expectedTypes.length === 1 &&\n isExplicable(expectedType) &&\n !isBoolean(expectedType, receivedType)) {\n message += \" with value \" + expectedValue;\n }\n message += \", got \" + receivedType + \" \";\n // check if we need to specify received value\n if (isExplicable(receivedType)) {\n message += \"with value \" + receivedValue + \".\";\n }\n return message\n}\n\nfunction styleValue (value, type) {\n if (type === 'String') {\n return (\"\\\"\" + value + \"\\\"\")\n } else if (type === 'Number') {\n return (\"\" + (Number(value)))\n } else {\n return (\"\" + value)\n }\n}\n\nfunction isExplicable (value) {\n var explicitTypes = ['string', 'number', 'boolean'];\n return explicitTypes.some(function (elem) { return value.toLowerCase() === elem; })\n}\n\nfunction isBoolean () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n return args.some(function (elem) { return elem.toLowerCase() === 'boolean'; })\n}\n\n/* */\n\nfunction handleError (err, vm, info) {\n // Deactivate deps tracking while processing error handler to avoid possible infinite rendering.\n // See: https://github.com/vuejs/vuex/issues/1505\n pushTarget();\n try {\n if (vm) {\n var cur = vm;\n while ((cur = cur.$parent)) {\n var hooks = cur.$options.errorCaptured;\n if (hooks) {\n for (var i = 0; i < hooks.length; i++) {\n try {\n var capture = hooks[i].call(cur, err, vm, info) === false;\n if (capture) { return }\n } catch (e) {\n globalHandleError(e, cur, 'errorCaptured hook');\n }\n }\n }\n }\n }\n globalHandleError(err, vm, info);\n } finally {\n popTarget();\n }\n}\n\nfunction invokeWithErrorHandling (\n handler,\n context,\n args,\n vm,\n info\n) {\n var res;\n try {\n res = args ? handler.apply(context, args) : handler.call(context);\n if (res && !res._isVue && isPromise(res) && !res._handled) {\n res.catch(function (e) { return handleError(e, vm, info + \" (Promise/async)\"); });\n // issue #9511\n // avoid catch triggering multiple times when nested calls\n res._handled = true;\n }\n } catch (e) {\n handleError(e, vm, info);\n }\n return res\n}\n\nfunction globalHandleError (err, vm, info) {\n if (config.errorHandler) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n // if the user intentionally throws the original error in the handler,\n // do not log it twice\n if (e !== err) {\n logError(e, null, 'config.errorHandler');\n }\n }\n }\n logError(err, vm, info);\n}\n\nfunction logError (err, vm, info) {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n }\n /* istanbul ignore else */\n if ((inBrowser || inWeex) && typeof console !== 'undefined') {\n console.error(err);\n } else {\n throw err\n }\n}\n\n/* */\n\nvar callbacks = [];\nvar pending = false;\n\nfunction flushCallbacks () {\n pending = false;\n var copies = callbacks.slice(0);\n callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n}\n\n// Here we have async deferring wrappers using microtasks.\n// In 2.5 we used (macro) tasks (in combination with microtasks).\n// However, it has subtle problems when state is changed right before repaint\n// (e.g. #6813, out-in transitions).\n// Also, using (macro) tasks in event handler would cause some weird behaviors\n// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).\n// So we now use microtasks everywhere, again.\n// A major drawback of this tradeoff is that there are some scenarios\n// where microtasks have too high a priority and fire in between supposedly\n// sequential events (e.g. #4521, #6690, which have workarounds)\n// or even between bubbling of the same event (#6566).\nvar timerFunc;\n\n// The nextTick behavior leverages the microtask queue, which can be accessed\n// via either native Promise.then or MutationObserver.\n// MutationObserver has wider support, however it is seriously bugged in\n// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It\n// completely stops working after triggering a few times... so, if native\n// Promise is available, we will use it:\n/* istanbul ignore next, $flow-disable-line */\nif (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve();\n timerFunc = function () {\n p.then(flushCallbacks);\n // In problematic UIWebViews, Promise.then doesn't completely break, but\n // it can get stuck in a weird state where callbacks are pushed into the\n // microtask queue but the queue isn't being flushed, until the browser\n // needs to do some other work, e.g. handle a timer. Therefore we can\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) { setTimeout(noop); }\n };\n} else if (!isIE && typeof MutationObserver !== 'undefined' && (\n isNative(MutationObserver) ||\n // PhantomJS and iOS 7.x\n MutationObserver.toString() === '[object MutationObserverConstructor]'\n)) {\n // Use MutationObserver where native Promise is not available,\n // e.g. PhantomJS, iOS7, Android 4.4\n // (#6466 MutationObserver is unreliable in IE11)\n var counter = 1;\n var observer = new MutationObserver(flushCallbacks);\n var textNode = document.createTextNode(String(counter));\n observer.observe(textNode, {\n characterData: true\n });\n timerFunc = function () {\n counter = (counter + 1) % 2;\n textNode.data = String(counter);\n };\n} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n // Fallback to setImmediate.\n // Technically it leverages the (macro) task queue,\n // but it is still a better choice than setTimeout.\n timerFunc = function () {\n setImmediate(flushCallbacks);\n };\n} else {\n // Fallback to setTimeout.\n timerFunc = function () {\n setTimeout(flushCallbacks, 0);\n };\n}\n\nfunction nextTick (cb, ctx) {\n var _resolve;\n callbacks.push(function () {\n if (cb) {\n try {\n cb.call(ctx);\n } catch (e) {\n handleError(e, ctx, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(ctx);\n }\n });\n if (!pending) {\n pending = true;\n timerFunc();\n }\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\n/* not type checking this file because flow doesn't play well with Proxy */\n\nvar initProxy;\n\nif (process.env.NODE_ENV !== 'production') {\n var allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +\n 'require' // for Webpack/Browserify\n );\n\n var warnNonPresent = function (target, key) {\n warn(\n \"Property or method \\\"\" + key + \"\\\" is not defined on the instance but \" +\n 'referenced during render. Make sure that this property is reactive, ' +\n 'either in the data option, or for class-based components, by ' +\n 'initializing the property. ' +\n 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',\n target\n );\n };\n\n var warnReservedPrefix = function (target, key) {\n warn(\n \"Property \\\"\" + key + \"\\\" must be accessed with \\\"$data.\" + key + \"\\\" because \" +\n 'properties starting with \"$\" or \"_\" are not proxied in the Vue instance to ' +\n 'prevent conflicts with Vue internals. ' +\n 'See: https://vuejs.org/v2/api/#data',\n target\n );\n };\n\n var hasProxy =\n typeof Proxy !== 'undefined' && isNative(Proxy);\n\n if (hasProxy) {\n var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');\n config.keyCodes = new Proxy(config.keyCodes, {\n set: function set (target, key, value) {\n if (isBuiltInModifier(key)) {\n warn((\"Avoid overwriting built-in modifier in config.keyCodes: .\" + key));\n return false\n } else {\n target[key] = value;\n return true\n }\n }\n });\n }\n\n var hasHandler = {\n has: function has (target, key) {\n var has = key in target;\n var isAllowed = allowedGlobals(key) ||\n (typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data));\n if (!has && !isAllowed) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return has || !isAllowed\n }\n };\n\n var getHandler = {\n get: function get (target, key) {\n if (typeof key === 'string' && !(key in target)) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return target[key]\n }\n };\n\n initProxy = function initProxy (vm) {\n if (hasProxy) {\n // determine which proxy handler to use\n var options = vm.$options;\n var handlers = options.render && options.render._withStripped\n ? getHandler\n : hasHandler;\n vm._renderProxy = new Proxy(vm, handlers);\n } else {\n vm._renderProxy = vm;\n }\n };\n}\n\n/* */\n\nvar seenObjects = new _Set();\n\n/**\n * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\n * is collected as a \"deep\" dependency.\n */\nfunction traverse (val) {\n _traverse(val, seenObjects);\n seenObjects.clear();\n}\n\nfunction _traverse (val, seen) {\n var i, keys;\n var isA = Array.isArray(val);\n if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {\n return\n }\n if (val.__ob__) {\n var depId = val.__ob__.dep.id;\n if (seen.has(depId)) {\n return\n }\n seen.add(depId);\n }\n if (isA) {\n i = val.length;\n while (i--) { _traverse(val[i], seen); }\n } else {\n keys = Object.keys(val);\n i = keys.length;\n while (i--) { _traverse(val[keys[i]], seen); }\n }\n}\n\nvar mark;\nvar measure;\n\nif (process.env.NODE_ENV !== 'production') {\n var perf = inBrowser && window.performance;\n /* istanbul ignore if */\n if (\n perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n perf.clearMeasures\n ) {\n mark = function (tag) { return perf.mark(tag); };\n measure = function (name, startTag, endTag) {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n // perf.clearMeasures(name)\n };\n }\n}\n\n/* */\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once$$1 ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once$$1,\n capture: capture,\n passive: passive\n }\n});\n\nfunction createFnInvoker (fns, vm) {\n function invoker () {\n var arguments$1 = arguments;\n\n var fns = invoker.fns;\n if (Array.isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n invokeWithErrorHandling(cloned[i], null, arguments$1, vm, \"v-on handler\");\n }\n } else {\n // return handler return value for single handlers\n return invokeWithErrorHandling(fns, null, arguments, vm, \"v-on handler\")\n }\n }\n invoker.fns = fns;\n return invoker\n}\n\nfunction updateListeners (\n on,\n oldOn,\n add,\n remove$$1,\n createOnceHandler,\n vm\n) {\n var name, def$$1, cur, old, event;\n for (name in on) {\n def$$1 = cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Invalid handler for event \\\"\" + (event.name) + \"\\\": got \" + String(cur),\n vm\n );\n } else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur, vm);\n }\n if (isTrue(event.once)) {\n cur = on[name] = createOnceHandler(event.name, cur, event.capture);\n }\n add(event.name, cur, event.capture, event.passive, event.params);\n } else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove$$1(event.name, oldOn[name], event.capture);\n }\n }\n}\n\n/* */\n\n/* */\n\n// fixed by xxxxxx (mp properties)\nfunction extractPropertiesFromVNodeData(data, Ctor, res, context) {\n var propOptions = Ctor.options.mpOptions && Ctor.options.mpOptions.properties;\n if (isUndef(propOptions)) {\n return res\n }\n var externalClasses = Ctor.options.mpOptions.externalClasses || [];\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n var result = checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n // externalClass\n if (\n result &&\n res[key] &&\n externalClasses.indexOf(altKey) !== -1 &&\n context[camelize(res[key])]\n ) {\n // 赋值 externalClass 真正的值(模板里 externalClass 的值可能是字符串)\n res[key] = context[camelize(res[key])];\n }\n }\n }\n return res\n}\n\nfunction extractPropsFromVNodeData (\n data,\n Ctor,\n tag,\n context// fixed by xxxxxx\n) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n // fixed by xxxxxx\n return extractPropertiesFromVNodeData(data, Ctor, {}, context)\n }\n var res = {};\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (\n key !== keyInLowerCase &&\n attrs && hasOwn(attrs, keyInLowerCase)\n ) {\n tip(\n \"Prop \\\"\" + keyInLowerCase + \"\\\" is passed to component \" +\n (formatComponentName(tag || Ctor)) + \", but the declared prop name is\" +\n \" \\\"\" + key + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\" + altKey + \"\\\" instead of \\\"\" + key + \"\\\".\"\n );\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n // fixed by xxxxxx\n return extractPropertiesFromVNodeData(data, Ctor, res, context)\n}\n\nfunction checkProp (\n res,\n hash,\n key,\n altKey,\n preserve\n) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true\n } else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true\n }\n }\n return false\n}\n\n/* */\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array. There are\n// two cases where extra normalization is needed:\n\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren (children) {\n for (var i = 0; i < children.length; i++) {\n if (Array.isArray(children[i])) {\n return Array.prototype.concat.apply([], children)\n }\n }\n return children\n}\n\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g. , , v-for, or when the children is provided by user\n// with hand-written render functions / JSX. In such cases a full normalization\n// is needed to cater to all possible types of children values.\nfunction normalizeChildren (children) {\n return isPrimitive(children)\n ? [createTextVNode(children)]\n : Array.isArray(children)\n ? normalizeArrayChildren(children)\n : undefined\n}\n\nfunction isTextNode (node) {\n return isDef(node) && isDef(node.text) && isFalse(node.isComment)\n}\n\nfunction normalizeArrayChildren (children, nestedIndex) {\n var res = [];\n var i, c, lastIndex, last;\n for (i = 0; i < children.length; i++) {\n c = children[i];\n if (isUndef(c) || typeof c === 'boolean') { continue }\n lastIndex = res.length - 1;\n last = res[lastIndex];\n // nested\n if (Array.isArray(c)) {\n if (c.length > 0) {\n c = normalizeArrayChildren(c, ((nestedIndex || '') + \"_\" + i));\n // merge adjacent text nodes\n if (isTextNode(c[0]) && isTextNode(last)) {\n res[lastIndex] = createTextVNode(last.text + (c[0]).text);\n c.shift();\n }\n res.push.apply(res, c);\n }\n } else if (isPrimitive(c)) {\n if (isTextNode(last)) {\n // merge adjacent text nodes\n // this is necessary for SSR hydration because text nodes are\n // essentially merged when rendered to HTML strings\n res[lastIndex] = createTextVNode(last.text + c);\n } else if (c !== '') {\n // convert primitive to vnode\n res.push(createTextVNode(c));\n }\n } else {\n if (isTextNode(c) && isTextNode(last)) {\n // merge adjacent text nodes\n res[lastIndex] = createTextVNode(last.text + c.text);\n } else {\n // default key for nested array children (likely generated by v-for)\n if (isTrue(children._isVList) &&\n isDef(c.tag) &&\n isUndef(c.key) &&\n isDef(nestedIndex)) {\n c.key = \"__vlist\" + nestedIndex + \"_\" + i + \"__\";\n }\n res.push(c);\n }\n }\n }\n return res\n}\n\n/* */\n\nfunction initProvide (vm) {\n var provide = vm.$options.provide;\n if (provide) {\n vm._provided = typeof provide === 'function'\n ? provide.call(vm)\n : provide;\n }\n}\n\nfunction initInjections (vm) {\n var result = resolveInject(vm.$options.inject, vm);\n if (result) {\n toggleObserving(false);\n Object.keys(result).forEach(function (key) {\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive$$1(vm, key, result[key], function () {\n warn(\n \"Avoid mutating an injected value directly since the changes will be \" +\n \"overwritten whenever the provided component re-renders. \" +\n \"injection being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n });\n } else {\n defineReactive$$1(vm, key, result[key]);\n }\n });\n toggleObserving(true);\n }\n}\n\nfunction resolveInject (inject, vm) {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n var result = Object.create(null);\n var keys = hasSymbol\n ? Reflect.ownKeys(inject)\n : Object.keys(inject);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n // #6574 in case the inject object is observed...\n if (key === '__ob__') { continue }\n var provideKey = inject[key].from;\n var source = vm;\n while (source) {\n if (source._provided && hasOwn(source._provided, provideKey)) {\n result[key] = source._provided[provideKey];\n break\n }\n source = source.$parent;\n }\n if (!source) {\n if ('default' in inject[key]) {\n var provideDefault = inject[key].default;\n result[key] = typeof provideDefault === 'function'\n ? provideDefault.call(vm)\n : provideDefault;\n } else if (process.env.NODE_ENV !== 'production') {\n warn((\"Injection \\\"\" + key + \"\\\" not found\"), vm);\n }\n }\n }\n return result\n }\n}\n\n/* */\n\n\n\n/**\n * Runtime helper for resolving raw children VNodes into a slot object.\n */\nfunction resolveSlots (\n children,\n context\n) {\n if (!children || !children.length) {\n return {}\n }\n var slots = {};\n for (var i = 0, l = children.length; i < l; i++) {\n var child = children[i];\n var data = child.data;\n // remove slot attribute if the node is resolved as a Vue slot node\n if (data && data.attrs && data.attrs.slot) {\n delete data.attrs.slot;\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n if ((child.context === context || child.fnContext === context) &&\n data && data.slot != null\n ) {\n var name = data.slot;\n var slot = (slots[name] || (slots[name] = []));\n if (child.tag === 'template') {\n slot.push.apply(slot, child.children || []);\n } else {\n slot.push(child);\n }\n } else {\n // fixed by xxxxxx 临时 hack 掉 uni-app 中的异步 name slot page\n if(child.asyncMeta && child.asyncMeta.data && child.asyncMeta.data.slot === 'page'){\n (slots['page'] || (slots['page'] = [])).push(child);\n }else{\n (slots.default || (slots.default = [])).push(child);\n }\n }\n }\n // ignore slots that contains only whitespace\n for (var name$1 in slots) {\n if (slots[name$1].every(isWhitespace)) {\n delete slots[name$1];\n }\n }\n return slots\n}\n\nfunction isWhitespace (node) {\n return (node.isComment && !node.asyncFactory) || node.text === ' '\n}\n\n/* */\n\nfunction normalizeScopedSlots (\n slots,\n normalSlots,\n prevSlots\n) {\n var res;\n var hasNormalSlots = Object.keys(normalSlots).length > 0;\n var isStable = slots ? !!slots.$stable : !hasNormalSlots;\n var key = slots && slots.$key;\n if (!slots) {\n res = {};\n } else if (slots._normalized) {\n // fast path 1: child component re-render only, parent did not change\n return slots._normalized\n } else if (\n isStable &&\n prevSlots &&\n prevSlots !== emptyObject &&\n key === prevSlots.$key &&\n !hasNormalSlots &&\n !prevSlots.$hasNormal\n ) {\n // fast path 2: stable scoped slots w/ no normal slots to proxy,\n // only need to normalize once\n return prevSlots\n } else {\n res = {};\n for (var key$1 in slots) {\n if (slots[key$1] && key$1[0] !== '$') {\n res[key$1] = normalizeScopedSlot(normalSlots, key$1, slots[key$1]);\n }\n }\n }\n // expose normal slots on scopedSlots\n for (var key$2 in normalSlots) {\n if (!(key$2 in res)) {\n res[key$2] = proxyNormalSlot(normalSlots, key$2);\n }\n }\n // avoriaz seems to mock a non-extensible $scopedSlots object\n // and when that is passed down this would cause an error\n if (slots && Object.isExtensible(slots)) {\n (slots)._normalized = res;\n }\n def(res, '$stable', isStable);\n def(res, '$key', key);\n def(res, '$hasNormal', hasNormalSlots);\n return res\n}\n\nfunction normalizeScopedSlot(normalSlots, key, fn) {\n var normalized = function () {\n var res = arguments.length ? fn.apply(null, arguments) : fn({});\n res = res && typeof res === 'object' && !Array.isArray(res)\n ? [res] // single vnode\n : normalizeChildren(res);\n return res && (\n res.length === 0 ||\n (res.length === 1 && res[0].isComment) // #9658\n ) ? undefined\n : res\n };\n // this is a slot using the new v-slot syntax without scope. although it is\n // compiled as a scoped slot, render fn users would expect it to be present\n // on this.$slots because the usage is semantically a normal slot.\n if (fn.proxy) {\n Object.defineProperty(normalSlots, key, {\n get: normalized,\n enumerable: true,\n configurable: true\n });\n }\n return normalized\n}\n\nfunction proxyNormalSlot(slots, key) {\n return function () { return slots[key]; }\n}\n\n/* */\n\n/**\n * Runtime helper for rendering v-for lists.\n */\nfunction renderList (\n val,\n render\n) {\n var ret, i, l, keys, key;\n if (Array.isArray(val) || typeof val === 'string') {\n ret = new Array(val.length);\n for (i = 0, l = val.length; i < l; i++) {\n ret[i] = render(val[i], i, i, i); // fixed by xxxxxx\n }\n } else if (typeof val === 'number') {\n ret = new Array(val);\n for (i = 0; i < val; i++) {\n ret[i] = render(i + 1, i, i, i); // fixed by xxxxxx\n }\n } else if (isObject(val)) {\n if (hasSymbol && val[Symbol.iterator]) {\n ret = [];\n var iterator = val[Symbol.iterator]();\n var result = iterator.next();\n while (!result.done) {\n ret.push(render(result.value, ret.length, i, i++)); // fixed by xxxxxx\n result = iterator.next();\n }\n } else {\n keys = Object.keys(val);\n ret = new Array(keys.length);\n for (i = 0, l = keys.length; i < l; i++) {\n key = keys[i];\n ret[i] = render(val[key], key, i, i); // fixed by xxxxxx\n }\n }\n }\n if (!isDef(ret)) {\n ret = [];\n }\n (ret)._isVList = true;\n return ret\n}\n\n/* */\n\n/**\n * Runtime helper for rendering \n */\nfunction renderSlot (\n name,\n fallback,\n props,\n bindObject\n) {\n var scopedSlotFn = this.$scopedSlots[name];\n var nodes;\n if (scopedSlotFn) { // scoped slot\n props = props || {};\n if (bindObject) {\n if (process.env.NODE_ENV !== 'production' && !isObject(bindObject)) {\n warn(\n 'slot v-bind without argument expects an Object',\n this\n );\n }\n props = extend(extend({}, bindObject), props);\n }\n // fixed by xxxxxx app-plus scopedSlot\n nodes = scopedSlotFn(props, this, props._i) || fallback;\n } else {\n nodes = this.$slots[name] || fallback;\n }\n\n var target = props && props.slot;\n if (target) {\n return this.$createElement('template', { slot: target }, nodes)\n } else {\n return nodes\n }\n}\n\n/* */\n\n/**\n * Runtime helper for resolving filters\n */\nfunction resolveFilter (id) {\n return resolveAsset(this.$options, 'filters', id, true) || identity\n}\n\n/* */\n\nfunction isKeyNotMatch (expect, actual) {\n if (Array.isArray(expect)) {\n return expect.indexOf(actual) === -1\n } else {\n return expect !== actual\n }\n}\n\n/**\n * Runtime helper for checking keyCodes from config.\n * exposed as Vue.prototype._k\n * passing in eventKeyName as last argument separately for backwards compat\n */\nfunction checkKeyCodes (\n eventKeyCode,\n key,\n builtInKeyCode,\n eventKeyName,\n builtInKeyName\n) {\n var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;\n if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {\n return isKeyNotMatch(builtInKeyName, eventKeyName)\n } else if (mappedKeyCode) {\n return isKeyNotMatch(mappedKeyCode, eventKeyCode)\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n}\n\n/* */\n\n/**\n * Runtime helper for merging v-bind=\"object\" into a VNode's data.\n */\nfunction bindObjectProps (\n data,\n tag,\n value,\n asProp,\n isSync\n) {\n if (value) {\n if (!isObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-bind without argument expects an Object or Array value',\n this\n );\n } else {\n if (Array.isArray(value)) {\n value = toObject(value);\n }\n var hash;\n var loop = function ( key ) {\n if (\n key === 'class' ||\n key === 'style' ||\n isReservedAttribute(key)\n ) {\n hash = data;\n } else {\n var type = data.attrs && data.attrs.type;\n hash = asProp || config.mustUseProp(tag, type, key)\n ? data.domProps || (data.domProps = {})\n : data.attrs || (data.attrs = {});\n }\n var camelizedKey = camelize(key);\n var hyphenatedKey = hyphenate(key);\n if (!(camelizedKey in hash) && !(hyphenatedKey in hash)) {\n hash[key] = value[key];\n\n if (isSync) {\n var on = data.on || (data.on = {});\n on[(\"update:\" + key)] = function ($event) {\n value[key] = $event;\n };\n }\n }\n };\n\n for (var key in value) loop( key );\n }\n }\n return data\n}\n\n/* */\n\n/**\n * Runtime helper for rendering static trees.\n */\nfunction renderStatic (\n index,\n isInFor\n) {\n var cached = this._staticTrees || (this._staticTrees = []);\n var tree = cached[index];\n // if has already-rendered static tree and not inside v-for,\n // we can reuse the same tree.\n if (tree && !isInFor) {\n return tree\n }\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n null,\n this // for render fns generated for functional component templates\n );\n markStatic(tree, (\"__static__\" + index), false);\n return tree\n}\n\n/**\n * Runtime helper for v-once.\n * Effectively it means marking the node as static with a unique key.\n */\nfunction markOnce (\n tree,\n index,\n key\n) {\n markStatic(tree, (\"__once__\" + index + (key ? (\"_\" + key) : \"\")), true);\n return tree\n}\n\nfunction markStatic (\n tree,\n key,\n isOnce\n) {\n if (Array.isArray(tree)) {\n for (var i = 0; i < tree.length; i++) {\n if (tree[i] && typeof tree[i] !== 'string') {\n markStaticNode(tree[i], (key + \"_\" + i), isOnce);\n }\n }\n } else {\n markStaticNode(tree, key, isOnce);\n }\n}\n\nfunction markStaticNode (node, key, isOnce) {\n node.isStatic = true;\n node.key = key;\n node.isOnce = isOnce;\n}\n\n/* */\n\nfunction bindObjectListeners (data, value) {\n if (value) {\n if (!isPlainObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-on without argument expects an Object value',\n this\n );\n } else {\n var on = data.on = data.on ? extend({}, data.on) : {};\n for (var key in value) {\n var existing = on[key];\n var ours = value[key];\n on[key] = existing ? [].concat(existing, ours) : ours;\n }\n }\n }\n return data\n}\n\n/* */\n\nfunction resolveScopedSlots (\n fns, // see flow/vnode\n res,\n // the following are added in 2.6\n hasDynamicKeys,\n contentHashKey\n) {\n res = res || { $stable: !hasDynamicKeys };\n for (var i = 0; i < fns.length; i++) {\n var slot = fns[i];\n if (Array.isArray(slot)) {\n resolveScopedSlots(slot, res, hasDynamicKeys);\n } else if (slot) {\n // marker for reverse proxying v-slot without scope on this.$slots\n if (slot.proxy) {\n slot.fn.proxy = true;\n }\n res[slot.key] = slot.fn;\n }\n }\n if (contentHashKey) {\n (res).$key = contentHashKey;\n }\n return res\n}\n\n/* */\n\nfunction bindDynamicKeys (baseObj, values) {\n for (var i = 0; i < values.length; i += 2) {\n var key = values[i];\n if (typeof key === 'string' && key) {\n baseObj[values[i]] = values[i + 1];\n } else if (process.env.NODE_ENV !== 'production' && key !== '' && key !== null) {\n // null is a special value for explicitly removing a binding\n warn(\n (\"Invalid value for dynamic directive argument (expected string or null): \" + key),\n this\n );\n }\n }\n return baseObj\n}\n\n// helper to dynamically append modifier runtime markers to event names.\n// ensure only append when value is already string, otherwise it will be cast\n// to string and cause the type check to miss.\nfunction prependModifier (value, symbol) {\n return typeof value === 'string' ? symbol + value : value\n}\n\n/* */\n\nfunction installRenderHelpers (target) {\n target._o = markOnce;\n target._n = toNumber;\n target._s = toString;\n target._l = renderList;\n target._t = renderSlot;\n target._q = looseEqual;\n target._i = looseIndexOf;\n target._m = renderStatic;\n target._f = resolveFilter;\n target._k = checkKeyCodes;\n target._b = bindObjectProps;\n target._v = createTextVNode;\n target._e = createEmptyVNode;\n target._u = resolveScopedSlots;\n target._g = bindObjectListeners;\n target._d = bindDynamicKeys;\n target._p = prependModifier;\n}\n\n/* */\n\nfunction FunctionalRenderContext (\n data,\n props,\n children,\n parent,\n Ctor\n) {\n var this$1 = this;\n\n var options = Ctor.options;\n // ensure the createElement function in functional components\n // gets a unique context - this is necessary for correct named slot check\n var contextVm;\n if (hasOwn(parent, '_uid')) {\n contextVm = Object.create(parent);\n // $flow-disable-line\n contextVm._original = parent;\n } else {\n // the context vm passed in is a functional context as well.\n // in this case we want to make sure we are able to get a hold to the\n // real context instance.\n contextVm = parent;\n // $flow-disable-line\n parent = parent._original;\n }\n var isCompiled = isTrue(options._compiled);\n var needNormalization = !isCompiled;\n\n this.data = data;\n this.props = props;\n this.children = children;\n this.parent = parent;\n this.listeners = data.on || emptyObject;\n this.injections = resolveInject(options.inject, parent);\n this.slots = function () {\n if (!this$1.$slots) {\n normalizeScopedSlots(\n data.scopedSlots,\n this$1.$slots = resolveSlots(children, parent)\n );\n }\n return this$1.$slots\n };\n\n Object.defineProperty(this, 'scopedSlots', ({\n enumerable: true,\n get: function get () {\n return normalizeScopedSlots(data.scopedSlots, this.slots())\n }\n }));\n\n // support for compiled functional template\n if (isCompiled) {\n // exposing $options for renderStatic()\n this.$options = options;\n // pre-resolve slots for renderSlot()\n this.$slots = this.slots();\n this.$scopedSlots = normalizeScopedSlots(data.scopedSlots, this.$slots);\n }\n\n if (options._scopeId) {\n this._c = function (a, b, c, d) {\n var vnode = createElement(contextVm, a, b, c, d, needNormalization);\n if (vnode && !Array.isArray(vnode)) {\n vnode.fnScopeId = options._scopeId;\n vnode.fnContext = parent;\n }\n return vnode\n };\n } else {\n this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };\n }\n}\n\ninstallRenderHelpers(FunctionalRenderContext.prototype);\n\nfunction createFunctionalComponent (\n Ctor,\n propsData,\n data,\n contextVm,\n children\n) {\n var options = Ctor.options;\n var props = {};\n var propOptions = options.props;\n if (isDef(propOptions)) {\n for (var key in propOptions) {\n props[key] = validateProp(key, propOptions, propsData || emptyObject);\n }\n } else {\n if (isDef(data.attrs)) { mergeProps(props, data.attrs); }\n if (isDef(data.props)) { mergeProps(props, data.props); }\n }\n\n var renderContext = new FunctionalRenderContext(\n data,\n props,\n children,\n contextVm,\n Ctor\n );\n\n var vnode = options.render.call(null, renderContext._c, renderContext);\n\n if (vnode instanceof VNode) {\n return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options, renderContext)\n } else if (Array.isArray(vnode)) {\n var vnodes = normalizeChildren(vnode) || [];\n var res = new Array(vnodes.length);\n for (var i = 0; i < vnodes.length; i++) {\n res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options, renderContext);\n }\n return res\n }\n}\n\nfunction cloneAndMarkFunctionalResult (vnode, data, contextVm, options, renderContext) {\n // #7817 clone node before setting fnContext, otherwise if the node is reused\n // (e.g. it was from a cached normal slot) the fnContext causes named slots\n // that should not be matched to match.\n var clone = cloneVNode(vnode);\n clone.fnContext = contextVm;\n clone.fnOptions = options;\n if (process.env.NODE_ENV !== 'production') {\n (clone.devtoolsMeta = clone.devtoolsMeta || {}).renderContext = renderContext;\n }\n if (data.slot) {\n (clone.data || (clone.data = {})).slot = data.slot;\n }\n return clone\n}\n\nfunction mergeProps (to, from) {\n for (var key in from) {\n to[camelize(key)] = from[key];\n }\n}\n\n/* */\n\n/* */\n\n/* */\n\n/* */\n\n// inline hooks to be invoked on component VNodes during patch\nvar componentVNodeHooks = {\n init: function init (vnode, hydrating) {\n if (\n vnode.componentInstance &&\n !vnode.componentInstance._isDestroyed &&\n vnode.data.keepAlive\n ) {\n // kept-alive components, treat as a patch\n var mountedNode = vnode; // work around flow\n componentVNodeHooks.prepatch(mountedNode, mountedNode);\n } else {\n var child = vnode.componentInstance = createComponentInstanceForVnode(\n vnode,\n activeInstance\n );\n child.$mount(hydrating ? vnode.elm : undefined, hydrating);\n }\n },\n\n prepatch: function prepatch (oldVnode, vnode) {\n var options = vnode.componentOptions;\n var child = vnode.componentInstance = oldVnode.componentInstance;\n updateChildComponent(\n child,\n options.propsData, // updated props\n options.listeners, // updated listeners\n vnode, // new parent vnode\n options.children // new children\n );\n },\n\n insert: function insert (vnode) {\n var context = vnode.context;\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isMounted) {\n callHook(componentInstance, 'onServiceCreated');\n callHook(componentInstance, 'onServiceAttached');\n componentInstance._isMounted = true;\n callHook(componentInstance, 'mounted');\n }\n if (vnode.data.keepAlive) {\n if (context._isMounted) {\n // vue-router#1212\n // During updates, a kept-alive component's child components may\n // change, so directly walking the tree here may call activated hooks\n // on incorrect children. Instead we push them into a queue which will\n // be processed after the whole patch process ended.\n queueActivatedComponent(componentInstance);\n } else {\n activateChildComponent(componentInstance, true /* direct */);\n }\n }\n },\n\n destroy: function destroy (vnode) {\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isDestroyed) {\n if (!vnode.data.keepAlive) {\n componentInstance.$destroy();\n } else {\n deactivateChildComponent(componentInstance, true /* direct */);\n }\n }\n }\n};\n\nvar hooksToMerge = Object.keys(componentVNodeHooks);\n\nfunction createComponent (\n Ctor,\n data,\n context,\n children,\n tag\n) {\n if (isUndef(Ctor)) {\n return\n }\n\n var baseCtor = context.$options._base;\n\n // plain options object: turn it into a constructor\n if (isObject(Ctor)) {\n Ctor = baseCtor.extend(Ctor);\n }\n\n // if at this stage it's not a constructor or an async component factory,\n // reject.\n if (typeof Ctor !== 'function') {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Invalid Component definition: \" + (String(Ctor))), context);\n }\n return\n }\n\n // async component\n var asyncFactory;\n if (isUndef(Ctor.cid)) {\n asyncFactory = Ctor;\n Ctor = resolveAsyncComponent(asyncFactory, baseCtor);\n if (Ctor === undefined) {\n // return a placeholder node for async component, which is rendered\n // as a comment node but preserves all the raw information for the node.\n // the information will be used for async server-rendering and hydration.\n return createAsyncPlaceholder(\n asyncFactory,\n data,\n context,\n children,\n tag\n )\n }\n }\n\n data = data || {};\n\n // resolve constructor options in case global mixins are applied after\n // component constructor creation\n resolveConstructorOptions(Ctor);\n\n // transform component v-model data into props & events\n if (isDef(data.model)) {\n transformModel(Ctor.options, data);\n }\n\n // extract props\n var propsData = extractPropsFromVNodeData(data, Ctor, tag, context); // fixed by xxxxxx\n\n // functional component\n if (isTrue(Ctor.options.functional)) {\n return createFunctionalComponent(Ctor, propsData, data, context, children)\n }\n\n // extract listeners, since these needs to be treated as\n // child component listeners instead of DOM listeners\n var listeners = data.on;\n // replace with listeners with .native modifier\n // so it gets processed during parent component patch.\n data.on = data.nativeOn;\n\n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n // other than props & listeners & slot\n\n // work around flow\n var slot = data.slot;\n data = {};\n if (slot) {\n data.slot = slot;\n }\n }\n\n // install component management hooks onto the placeholder node\n installComponentHooks(data);\n\n // return a placeholder vnode\n var name = Ctor.options.name || tag;\n var vnode = new VNode(\n (\"vue-component-\" + (Ctor.cid) + (name ? (\"-\" + name) : '')),\n data, undefined, undefined, undefined, context,\n { Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },\n asyncFactory\n );\n\n return vnode\n}\n\nfunction createComponentInstanceForVnode (\n vnode, // we know it's MountedComponentVNode but flow doesn't\n parent // activeInstance in lifecycle state\n) {\n var options = {\n _isComponent: true,\n _parentVnode: vnode,\n parent: parent\n };\n // check inline-template render functions\n var inlineTemplate = vnode.data.inlineTemplate;\n if (isDef(inlineTemplate)) {\n options.render = inlineTemplate.render;\n options.staticRenderFns = inlineTemplate.staticRenderFns;\n }\n return new vnode.componentOptions.Ctor(options)\n}\n\nfunction installComponentHooks (data) {\n var hooks = data.hook || (data.hook = {});\n for (var i = 0; i < hooksToMerge.length; i++) {\n var key = hooksToMerge[i];\n var existing = hooks[key];\n var toMerge = componentVNodeHooks[key];\n if (existing !== toMerge && !(existing && existing._merged)) {\n hooks[key] = existing ? mergeHook$1(toMerge, existing) : toMerge;\n }\n }\n}\n\nfunction mergeHook$1 (f1, f2) {\n var merged = function (a, b) {\n // flow complains about extra args which is why we use any\n f1(a, b);\n f2(a, b);\n };\n merged._merged = true;\n return merged\n}\n\n// transform component v-model info (value and callback) into\n// prop and event handler respectively.\nfunction transformModel (options, data) {\n var prop = (options.model && options.model.prop) || 'value';\n var event = (options.model && options.model.event) || 'input'\n ;(data.attrs || (data.attrs = {}))[prop] = data.model.value;\n var on = data.on || (data.on = {});\n var existing = on[event];\n var callback = data.model.callback;\n if (isDef(existing)) {\n if (\n Array.isArray(existing)\n ? existing.indexOf(callback) === -1\n : existing !== callback\n ) {\n on[event] = [callback].concat(existing);\n }\n } else {\n on[event] = callback;\n }\n}\n\n/* */\n\nvar SIMPLE_NORMALIZE = 1;\nvar ALWAYS_NORMALIZE = 2;\n\n// wrapper function for providing a more flexible interface\n// without getting yelled at by flow\nfunction createElement (\n context,\n tag,\n data,\n children,\n normalizationType,\n alwaysNormalize\n) {\n if (Array.isArray(data) || isPrimitive(data)) {\n normalizationType = children;\n children = data;\n data = undefined;\n }\n if (isTrue(alwaysNormalize)) {\n normalizationType = ALWAYS_NORMALIZE;\n }\n return _createElement(context, tag, data, children, normalizationType)\n}\n\nfunction _createElement (\n context,\n tag,\n data,\n children,\n normalizationType\n) {\n if (isDef(data) && isDef((data).__ob__)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Avoid using observed data object as vnode data: \" + (JSON.stringify(data)) + \"\\n\" +\n 'Always create fresh vnode data objects in each render!',\n context\n );\n return createEmptyVNode()\n }\n // object syntax in v-bind\n if (isDef(data) && isDef(data.is)) {\n tag = data.is;\n }\n if (!tag) {\n // in case of component :is set to falsy value\n return createEmptyVNode()\n }\n // warn against non-primitive key\n if (process.env.NODE_ENV !== 'production' &&\n isDef(data) && isDef(data.key) && !isPrimitive(data.key)\n ) {\n {\n warn(\n 'Avoid using non-primitive value as key, ' +\n 'use string/number value instead.',\n context\n );\n }\n }\n // support single function children as default scoped slot\n if (Array.isArray(children) &&\n typeof children[0] === 'function'\n ) {\n data = data || {};\n data.scopedSlots = { default: children[0] };\n children.length = 0;\n }\n if (normalizationType === ALWAYS_NORMALIZE) {\n children = normalizeChildren(children);\n } else if (normalizationType === SIMPLE_NORMALIZE) {\n children = simpleNormalizeChildren(children);\n }\n var vnode, ns;\n if (typeof tag === 'string') {\n var Ctor;\n ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);\n if (config.isReservedTag(tag)) {\n // platform built-in elements\n if (process.env.NODE_ENV !== 'production' && isDef(data) && isDef(data.nativeOn)) {\n warn(\n (\"The .native modifier for v-on is only valid on components but it was used on <\" + tag + \">.\"),\n context\n );\n }\n vnode = new VNode(\n config.parsePlatformTagName(tag), data, children,\n undefined, undefined, context\n );\n } else if ((!data || !data.pre) && isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {\n // component\n vnode = createComponent(Ctor, data, context, children, tag);\n } else {\n // unknown or unlisted namespaced elements\n // check at runtime because it may get assigned a namespace when its\n // parent normalizes children\n vnode = new VNode(\n tag, data, children,\n undefined, undefined, context\n );\n }\n } else {\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children);\n }\n if (Array.isArray(vnode)) {\n return vnode\n } else if (isDef(vnode)) {\n if (isDef(ns)) { applyNS(vnode, ns); }\n if (isDef(data)) { registerDeepBindings(data); }\n return vnode\n } else {\n return createEmptyVNode()\n }\n}\n\nfunction applyNS (vnode, ns, force) {\n vnode.ns = ns;\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n ns = undefined;\n force = true;\n }\n if (isDef(vnode.children)) {\n for (var i = 0, l = vnode.children.length; i < l; i++) {\n var child = vnode.children[i];\n if (isDef(child.tag) && (\n isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {\n applyNS(child, ns, force);\n }\n }\n }\n}\n\n// ref #5318\n// necessary to ensure parent re-render when deep bindings like :style and\n// :class are used on slot nodes\nfunction registerDeepBindings (data) {\n if (isObject(data.style)) {\n traverse(data.style);\n }\n if (isObject(data.class)) {\n traverse(data.class);\n }\n}\n\n/* */\n\nfunction initRender (vm) {\n vm._vnode = null; // the root of the child tree\n vm._staticTrees = null; // v-once cached trees\n var options = vm.$options;\n var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree\n var renderContext = parentVnode && parentVnode.context;\n vm.$slots = resolveSlots(options._renderChildren, renderContext);\n vm.$scopedSlots = emptyObject;\n // bind the createElement fn to this instance\n // so that we get proper render context inside it.\n // args order: tag, data, children, normalizationType, alwaysNormalize\n // internal version is used by render functions compiled from templates\n vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };\n // normalization is always applied for the public version, used in\n // user-written render functions.\n vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };\n\n // $attrs & $listeners are exposed for easier HOC creation.\n // they need to be reactive so that HOCs using them are always updated\n var parentData = parentVnode && parentVnode.data;\n\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$attrs is readonly.\", vm);\n }, true);\n defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$listeners is readonly.\", vm);\n }, true);\n } else {\n defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, null, true);\n defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, null, true);\n }\n}\n\nvar currentRenderingInstance = null;\n\nfunction renderMixin (Vue) {\n // install runtime convenience helpers\n installRenderHelpers(Vue.prototype);\n\n Vue.prototype.$nextTick = function (fn) {\n return nextTick(fn, this)\n };\n\n Vue.prototype._render = function () {\n var vm = this;\n var ref = vm.$options;\n var render = ref.render;\n var _parentVnode = ref._parentVnode;\n\n if (_parentVnode) {\n vm.$scopedSlots = normalizeScopedSlots(\n _parentVnode.data.scopedSlots,\n vm.$slots,\n vm.$scopedSlots\n );\n }\n\n // set parent vnode. this allows render functions to have access\n // to the data on the placeholder node.\n vm.$vnode = _parentVnode;\n // render self\n var vnode;\n try {\n // There's no need to maintain a stack because all render fns are called\n // separately from one another. Nested component's render fns are called\n // when parent component is patched.\n currentRenderingInstance = vm;\n vnode = render.call(vm._renderProxy, vm.$createElement);\n } catch (e) {\n handleError(e, vm, \"render\");\n // return error render result,\n // or previous vnode to prevent render error causing blank component\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production' && vm.$options.renderError) {\n try {\n vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);\n } catch (e) {\n handleError(e, vm, \"renderError\");\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n } finally {\n currentRenderingInstance = null;\n }\n // if the returned array contains only a single node, allow it\n if (Array.isArray(vnode) && vnode.length === 1) {\n vnode = vnode[0];\n }\n // return empty vnode in case the render function errored out\n if (!(vnode instanceof VNode)) {\n if (process.env.NODE_ENV !== 'production' && Array.isArray(vnode)) {\n warn(\n 'Multiple root nodes returned from render function. Render function ' +\n 'should return a single root node.',\n vm\n );\n }\n vnode = createEmptyVNode();\n }\n // set parent\n vnode.parent = _parentVnode;\n return vnode\n };\n}\n\n/* */\n\nfunction ensureCtor (comp, base) {\n if (\n comp.__esModule ||\n (hasSymbol && comp[Symbol.toStringTag] === 'Module')\n ) {\n comp = comp.default;\n }\n return isObject(comp)\n ? base.extend(comp)\n : comp\n}\n\nfunction createAsyncPlaceholder (\n factory,\n data,\n context,\n children,\n tag\n) {\n var node = createEmptyVNode();\n node.asyncFactory = factory;\n node.asyncMeta = { data: data, context: context, children: children, tag: tag };\n return node\n}\n\nfunction resolveAsyncComponent (\n factory,\n baseCtor\n) {\n if (isTrue(factory.error) && isDef(factory.errorComp)) {\n return factory.errorComp\n }\n\n if (isDef(factory.resolved)) {\n return factory.resolved\n }\n\n var owner = currentRenderingInstance;\n if (owner && isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {\n // already pending\n factory.owners.push(owner);\n }\n\n if (isTrue(factory.loading) && isDef(factory.loadingComp)) {\n return factory.loadingComp\n }\n\n if (owner && !isDef(factory.owners)) {\n var owners = factory.owners = [owner];\n var sync = true;\n var timerLoading = null;\n var timerTimeout = null\n\n ;(owner).$on('hook:destroyed', function () { return remove(owners, owner); });\n\n var forceRender = function (renderCompleted) {\n for (var i = 0, l = owners.length; i < l; i++) {\n (owners[i]).$forceUpdate();\n }\n\n if (renderCompleted) {\n owners.length = 0;\n if (timerLoading !== null) {\n clearTimeout(timerLoading);\n timerLoading = null;\n }\n if (timerTimeout !== null) {\n clearTimeout(timerTimeout);\n timerTimeout = null;\n }\n }\n };\n\n var resolve = once(function (res) {\n // cache resolved\n factory.resolved = ensureCtor(res, baseCtor);\n // invoke callbacks only if this is not a synchronous resolve\n // (async resolves are shimmed as synchronous during SSR)\n if (!sync) {\n forceRender(true);\n } else {\n owners.length = 0;\n }\n });\n\n var reject = once(function (reason) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed to resolve async component: \" + (String(factory)) +\n (reason ? (\"\\nReason: \" + reason) : '')\n );\n if (isDef(factory.errorComp)) {\n factory.error = true;\n forceRender(true);\n }\n });\n\n var res = factory(resolve, reject);\n\n if (isObject(res)) {\n if (isPromise(res)) {\n // () => Promise\n if (isUndef(factory.resolved)) {\n res.then(resolve, reject);\n }\n } else if (isPromise(res.component)) {\n res.component.then(resolve, reject);\n\n if (isDef(res.error)) {\n factory.errorComp = ensureCtor(res.error, baseCtor);\n }\n\n if (isDef(res.loading)) {\n factory.loadingComp = ensureCtor(res.loading, baseCtor);\n if (res.delay === 0) {\n factory.loading = true;\n } else {\n timerLoading = setTimeout(function () {\n timerLoading = null;\n if (isUndef(factory.resolved) && isUndef(factory.error)) {\n factory.loading = true;\n forceRender(false);\n }\n }, res.delay || 200);\n }\n }\n\n if (isDef(res.timeout)) {\n timerTimeout = setTimeout(function () {\n timerTimeout = null;\n if (isUndef(factory.resolved)) {\n reject(\n process.env.NODE_ENV !== 'production'\n ? (\"timeout (\" + (res.timeout) + \"ms)\")\n : null\n );\n }\n }, res.timeout);\n }\n }\n }\n\n sync = false;\n // return in case resolved synchronously\n return factory.loading\n ? factory.loadingComp\n : factory.resolved\n }\n}\n\n/* */\n\nfunction isAsyncPlaceholder (node) {\n return node.isComment && node.asyncFactory\n}\n\n/* */\n\nfunction getFirstComponentChild (children) {\n if (Array.isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n var c = children[i];\n if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {\n return c\n }\n }\n }\n}\n\n/* */\n\n/* */\n\nfunction initEvents (vm) {\n vm._events = Object.create(null);\n vm._hasHookEvent = false;\n // init parent attached events\n var listeners = vm.$options._parentListeners;\n if (listeners) {\n updateComponentListeners(vm, listeners);\n }\n}\n\nvar target;\n\nfunction add (event, fn) {\n target.$on(event, fn);\n}\n\nfunction remove$1 (event, fn) {\n target.$off(event, fn);\n}\n\nfunction createOnceHandler (event, fn) {\n var _target = target;\n return function onceHandler () {\n var res = fn.apply(null, arguments);\n if (res !== null) {\n _target.$off(event, onceHandler);\n }\n }\n}\n\nfunction updateComponentListeners (\n vm,\n listeners,\n oldListeners\n) {\n target = vm;\n updateListeners(listeners, oldListeners || {}, add, remove$1, createOnceHandler, vm);\n target = undefined;\n}\n\nfunction eventsMixin (Vue) {\n var hookRE = /^hook:/;\n Vue.prototype.$on = function (event, fn) {\n var vm = this;\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n vm.$on(event[i], fn);\n }\n } else {\n (vm._events[event] || (vm._events[event] = [])).push(fn);\n // optimize hook:event cost by using a boolean flag marked at registration\n // instead of a hash lookup\n if (hookRE.test(event)) {\n vm._hasHookEvent = true;\n }\n }\n return vm\n };\n\n Vue.prototype.$once = function (event, fn) {\n var vm = this;\n function on () {\n vm.$off(event, on);\n fn.apply(vm, arguments);\n }\n on.fn = fn;\n vm.$on(event, on);\n return vm\n };\n\n Vue.prototype.$off = function (event, fn) {\n var vm = this;\n // all\n if (!arguments.length) {\n vm._events = Object.create(null);\n return vm\n }\n // array of events\n if (Array.isArray(event)) {\n for (var i$1 = 0, l = event.length; i$1 < l; i$1++) {\n vm.$off(event[i$1], fn);\n }\n return vm\n }\n // specific event\n var cbs = vm._events[event];\n if (!cbs) {\n return vm\n }\n if (!fn) {\n vm._events[event] = null;\n return vm\n }\n // specific handler\n var cb;\n var i = cbs.length;\n while (i--) {\n cb = cbs[i];\n if (cb === fn || cb.fn === fn) {\n cbs.splice(i, 1);\n break\n }\n }\n return vm\n };\n\n Vue.prototype.$emit = function (event) {\n var vm = this;\n if (process.env.NODE_ENV !== 'production') {\n var lowerCaseEvent = event.toLowerCase();\n if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {\n tip(\n \"Event \\\"\" + lowerCaseEvent + \"\\\" is emitted in component \" +\n (formatComponentName(vm)) + \" but the handler is registered for \\\"\" + event + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and you cannot use \" +\n \"v-on to listen to camelCase events when using in-DOM templates. \" +\n \"You should probably use \\\"\" + (hyphenate(event)) + \"\\\" instead of \\\"\" + event + \"\\\".\"\n );\n }\n }\n var cbs = vm._events[event];\n if (cbs) {\n cbs = cbs.length > 1 ? toArray(cbs) : cbs;\n var args = toArray(arguments, 1);\n var info = \"event handler for \\\"\" + event + \"\\\"\";\n for (var i = 0, l = cbs.length; i < l; i++) {\n invokeWithErrorHandling(cbs[i], vm, args, vm, info);\n }\n }\n return vm\n };\n}\n\n/* */\n\nvar activeInstance = null;\nvar isUpdatingChildComponent = false;\n\nfunction setActiveInstance(vm) {\n var prevActiveInstance = activeInstance;\n activeInstance = vm;\n return function () {\n activeInstance = prevActiveInstance;\n }\n}\n\nfunction initLifecycle (vm) {\n var options = vm.$options;\n\n // locate first non-abstract parent\n var parent = options.parent;\n if (parent && !options.abstract) {\n while (parent.$options.abstract && parent.$parent) {\n parent = parent.$parent;\n }\n parent.$children.push(vm);\n }\n\n vm.$parent = parent;\n vm.$root = parent ? parent.$root : vm;\n\n vm.$children = [];\n vm.$refs = {};\n\n vm._watcher = null;\n vm._inactive = null;\n vm._directInactive = false;\n vm._isMounted = false;\n vm._isDestroyed = false;\n vm._isBeingDestroyed = false;\n}\n\nfunction lifecycleMixin (Vue) {\n Vue.prototype._update = function (vnode, hydrating) {\n var vm = this;\n var prevEl = vm.$el;\n var prevVnode = vm._vnode;\n var restoreActiveInstance = setActiveInstance(vm);\n vm._vnode = vnode;\n // Vue.prototype.__patch__ is injected in entry points\n // based on the rendering backend used.\n if (!prevVnode) {\n // initial render\n vm.$el = vm.__patch__(vm.$el, vnode, hydrating, false /* removeOnly */);\n } else {\n // updates\n vm.$el = vm.__patch__(prevVnode, vnode);\n }\n restoreActiveInstance();\n // update __vue__ reference\n if (prevEl) {\n prevEl.__vue__ = null;\n }\n if (vm.$el) {\n vm.$el.__vue__ = vm;\n }\n // if parent is an HOC, update its $el as well\n if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n vm.$parent.$el = vm.$el;\n }\n // updated hook is called by the scheduler to ensure that children are\n // updated in a parent's updated hook.\n };\n\n Vue.prototype.$forceUpdate = function () {\n var vm = this;\n if (vm._watcher) {\n vm._watcher.update();\n }\n };\n\n Vue.prototype.$destroy = function () {\n var vm = this;\n if (vm._isBeingDestroyed) {\n return\n }\n callHook(vm, 'beforeDestroy');\n vm._isBeingDestroyed = true;\n // remove self from parent\n var parent = vm.$parent;\n if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {\n remove(parent.$children, vm);\n }\n // teardown watchers\n if (vm._watcher) {\n vm._watcher.teardown();\n }\n var i = vm._watchers.length;\n while (i--) {\n vm._watchers[i].teardown();\n }\n // remove reference from data ob\n // frozen object may not have observer.\n if (vm._data.__ob__) {\n vm._data.__ob__.vmCount--;\n }\n // call the last hook...\n vm._isDestroyed = true;\n // invoke destroy hooks on current rendered tree\n vm.__patch__(vm._vnode, null);\n // fire destroyed hook\n callHook(vm, 'destroyed');\n // turn off all instance listeners.\n vm.$off();\n // remove __vue__ reference\n if (vm.$el) {\n vm.$el.__vue__ = null;\n }\n // release circular reference (#6759)\n if (vm.$vnode) {\n vm.$vnode.parent = null;\n }\n };\n}\n\nfunction updateChildComponent (\n vm,\n propsData,\n listeners,\n parentVnode,\n renderChildren\n) {\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = true;\n }\n\n // determine whether component has slot children\n // we need to do this before overwriting $options._renderChildren.\n\n // check if there are dynamic scopedSlots (hand-written or compiled but with\n // dynamic slot names). Static scoped slots compiled from template has the\n // \"$stable\" marker.\n var newScopedSlots = parentVnode.data.scopedSlots;\n var oldScopedSlots = vm.$scopedSlots;\n var hasDynamicScopedSlot = !!(\n (newScopedSlots && !newScopedSlots.$stable) ||\n (oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) ||\n (newScopedSlots && vm.$scopedSlots.$key !== newScopedSlots.$key)\n );\n\n // Any static slot children from the parent may have changed during parent's\n // update. Dynamic scoped slots may also have changed. In such cases, a forced\n // update is necessary to ensure correctness.\n var needsForceUpdate = !!(\n renderChildren || // has new static slots\n vm.$options._renderChildren || // has old static slots\n hasDynamicScopedSlot\n );\n\n vm.$options._parentVnode = parentVnode;\n vm.$vnode = parentVnode; // update vm's placeholder node without re-render\n\n if (vm._vnode) { // update child tree's parent\n vm._vnode.parent = parentVnode;\n }\n vm.$options._renderChildren = renderChildren;\n\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n vm.$attrs = parentVnode.data.attrs || emptyObject;\n vm.$listeners = listeners || emptyObject;\n\n // update props\n if (propsData && vm.$options.props) {\n toggleObserving(false);\n var props = vm._props;\n var propKeys = vm.$options._propKeys || [];\n for (var i = 0; i < propKeys.length; i++) {\n var key = propKeys[i];\n var propOptions = vm.$options.props; // wtf flow?\n props[key] = validateProp(key, propOptions, propsData, vm);\n }\n toggleObserving(true);\n // keep a copy of raw propsData\n vm.$options.propsData = propsData;\n }\n \n // fixed by xxxxxx update properties(mp runtime)\n vm._$updateProperties && vm._$updateProperties(vm);\n \n // update listeners\n listeners = listeners || emptyObject;\n var oldListeners = vm.$options._parentListeners;\n vm.$options._parentListeners = listeners;\n updateComponentListeners(vm, listeners, oldListeners);\n\n // resolve slots + force update if has children\n if (needsForceUpdate) {\n vm.$slots = resolveSlots(renderChildren, parentVnode.context);\n vm.$forceUpdate();\n }\n\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = false;\n }\n}\n\nfunction isInInactiveTree (vm) {\n while (vm && (vm = vm.$parent)) {\n if (vm._inactive) { return true }\n }\n return false\n}\n\nfunction activateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = false;\n if (isInInactiveTree(vm)) {\n return\n }\n } else if (vm._directInactive) {\n return\n }\n if (vm._inactive || vm._inactive === null) {\n vm._inactive = false;\n for (var i = 0; i < vm.$children.length; i++) {\n activateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'activated');\n }\n}\n\nfunction deactivateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = true;\n if (isInInactiveTree(vm)) {\n return\n }\n }\n if (!vm._inactive) {\n vm._inactive = true;\n for (var i = 0; i < vm.$children.length; i++) {\n deactivateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'deactivated');\n }\n}\n\nfunction callHook (vm, hook) {\n // #7573 disable dep collection when invoking lifecycle hooks\n pushTarget();\n var handlers = vm.$options[hook];\n var info = hook + \" hook\";\n if (handlers) {\n for (var i = 0, j = handlers.length; i < j; i++) {\n invokeWithErrorHandling(handlers[i], vm, null, vm, info);\n }\n }\n if (vm._hasHookEvent) {\n vm.$emit('hook:' + hook);\n }\n popTarget();\n}\n\n/* */\n\nvar MAX_UPDATE_COUNT = 100;\n\nvar queue = [];\nvar activatedChildren = [];\nvar has = {};\nvar circular = {};\nvar waiting = false;\nvar flushing = false;\nvar index = 0;\n\n/**\n * Reset the scheduler's state.\n */\nfunction resetSchedulerState () {\n index = queue.length = activatedChildren.length = 0;\n has = {};\n if (process.env.NODE_ENV !== 'production') {\n circular = {};\n }\n waiting = flushing = false;\n}\n\n// Async edge case #6566 requires saving the timestamp when event listeners are\n// attached. However, calling performance.now() has a perf overhead especially\n// if the page has thousands of event listeners. Instead, we take a timestamp\n// every time the scheduler flushes and use that for all event listeners\n// attached during that flush.\nvar currentFlushTimestamp = 0;\n\n// Async edge case fix requires storing an event listener's attach timestamp.\nvar getNow = Date.now;\n\n// Determine what event timestamp the browser is using. Annoyingly, the\n// timestamp can either be hi-res (relative to page load) or low-res\n// (relative to UNIX epoch), so in order to compare time we have to use the\n// same timestamp type when saving the flush timestamp.\n// All IE versions use low-res event timestamps, and have problematic clock\n// implementations (#9632)\nif (inBrowser && !isIE) {\n var performance = window.performance;\n if (\n performance &&\n typeof performance.now === 'function' &&\n getNow() > document.createEvent('Event').timeStamp\n ) {\n // if the event timestamp, although evaluated AFTER the Date.now(), is\n // smaller than it, it means the event is using a hi-res timestamp,\n // and we need to use the hi-res version for event listener timestamps as\n // well.\n getNow = function () { return performance.now(); };\n }\n}\n\n/**\n * Flush both queues and run the watchers.\n */\nfunction flushSchedulerQueue () {\n currentFlushTimestamp = getNow();\n flushing = true;\n var watcher, id;\n\n // Sort queue before flush.\n // This ensures that:\n // 1. Components are updated from parent to child. (because parent is always\n // created before the child)\n // 2. A component's user watchers are run before its render watcher (because\n // user watchers are created before the render watcher)\n // 3. If a component is destroyed during a parent component's watcher run,\n // its watchers can be skipped.\n queue.sort(function (a, b) { return a.id - b.id; });\n\n // do not cache length because more watchers might be pushed\n // as we run existing watchers\n for (index = 0; index < queue.length; index++) {\n watcher = queue[index];\n if (watcher.before) {\n watcher.before();\n }\n id = watcher.id;\n has[id] = null;\n watcher.run();\n // in dev build, check and stop circular updates.\n if (process.env.NODE_ENV !== 'production' && has[id] != null) {\n circular[id] = (circular[id] || 0) + 1;\n if (circular[id] > MAX_UPDATE_COUNT) {\n warn(\n 'You may have an infinite update loop ' + (\n watcher.user\n ? (\"in watcher with expression \\\"\" + (watcher.expression) + \"\\\"\")\n : \"in a component render function.\"\n ),\n watcher.vm\n );\n break\n }\n }\n }\n\n // keep copies of post queues before resetting state\n var activatedQueue = activatedChildren.slice();\n var updatedQueue = queue.slice();\n\n resetSchedulerState();\n\n // call component updated and activated hooks\n callActivatedHooks(activatedQueue);\n callUpdatedHooks(updatedQueue);\n\n // devtool hook\n /* istanbul ignore if */\n if (devtools && config.devtools) {\n devtools.emit('flush');\n }\n}\n\nfunction callUpdatedHooks (queue) {\n var i = queue.length;\n while (i--) {\n var watcher = queue[i];\n var vm = watcher.vm;\n if (vm._watcher === watcher && vm._isMounted && !vm._isDestroyed) {\n callHook(vm, 'updated');\n }\n }\n}\n\n/**\n * Queue a kept-alive component that was activated during patch.\n * The queue will be processed after the entire tree has been patched.\n */\nfunction queueActivatedComponent (vm) {\n // setting _inactive to false here so that a render function can\n // rely on checking whether it's in an inactive tree (e.g. router-view)\n vm._inactive = false;\n activatedChildren.push(vm);\n}\n\nfunction callActivatedHooks (queue) {\n for (var i = 0; i < queue.length; i++) {\n queue[i]._inactive = true;\n activateChildComponent(queue[i], true /* true */);\n }\n}\n\n/**\n * Push a watcher into the watcher queue.\n * Jobs with duplicate IDs will be skipped unless it's\n * pushed when the queue is being flushed.\n */\nfunction queueWatcher (watcher) {\n var id = watcher.id;\n if (has[id] == null) {\n has[id] = true;\n if (!flushing) {\n queue.push(watcher);\n } else {\n // if already flushing, splice the watcher based on its id\n // if already past its id, it will be run next immediately.\n var i = queue.length - 1;\n while (i > index && queue[i].id > watcher.id) {\n i--;\n }\n queue.splice(i + 1, 0, watcher);\n }\n // queue the flush\n if (!waiting) {\n waiting = true;\n\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n flushSchedulerQueue();\n return\n }\n nextTick(flushSchedulerQueue);\n }\n }\n}\n\n/* */\n\n\n\nvar uid$2 = 0;\n\n/**\n * A watcher parses an expression, collects dependencies,\n * and fires callback when the expression value changes.\n * This is used for both the $watch() api and directives.\n */\nvar Watcher = function Watcher (\n vm,\n expOrFn,\n cb,\n options,\n isRenderWatcher\n) {\n this.vm = vm;\n if (isRenderWatcher) {\n vm._watcher = this;\n }\n vm._watchers.push(this);\n // options\n if (options) {\n this.deep = !!options.deep;\n this.user = !!options.user;\n this.lazy = !!options.lazy;\n this.sync = !!options.sync;\n this.before = options.before;\n } else {\n this.deep = this.user = this.lazy = this.sync = false;\n }\n this.cb = cb;\n this.id = ++uid$2; // uid for batching\n this.active = true;\n this.dirty = this.lazy; // for lazy watchers\n this.deps = [];\n this.newDeps = [];\n this.depIds = new _Set();\n this.newDepIds = new _Set();\n this.expression = process.env.NODE_ENV !== 'production'\n ? expOrFn.toString()\n : '';\n // parse expression for getter\n if (typeof expOrFn === 'function') {\n this.getter = expOrFn;\n } else {\n this.getter = parsePath(expOrFn);\n if (!this.getter) {\n this.getter = noop;\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed watching path: \\\"\" + expOrFn + \"\\\" \" +\n 'Watcher only accepts simple dot-delimited paths. ' +\n 'For full control, use a function instead.',\n vm\n );\n }\n }\n this.value = this.lazy\n ? undefined\n : this.get();\n};\n\n/**\n * Evaluate the getter, and re-collect dependencies.\n */\nWatcher.prototype.get = function get () {\n pushTarget(this);\n var value;\n var vm = this.vm;\n try {\n value = this.getter.call(vm, vm);\n } catch (e) {\n if (this.user) {\n handleError(e, vm, (\"getter for watcher \\\"\" + (this.expression) + \"\\\"\"));\n } else {\n throw e\n }\n } finally {\n // \"touch\" every property so they are all tracked as\n // dependencies for deep watching\n if (this.deep) {\n traverse(value);\n }\n popTarget();\n this.cleanupDeps();\n }\n return value\n};\n\n/**\n * Add a dependency to this directive.\n */\nWatcher.prototype.addDep = function addDep (dep) {\n var id = dep.id;\n if (!this.newDepIds.has(id)) {\n this.newDepIds.add(id);\n this.newDeps.push(dep);\n if (!this.depIds.has(id)) {\n dep.addSub(this);\n }\n }\n};\n\n/**\n * Clean up for dependency collection.\n */\nWatcher.prototype.cleanupDeps = function cleanupDeps () {\n var i = this.deps.length;\n while (i--) {\n var dep = this.deps[i];\n if (!this.newDepIds.has(dep.id)) {\n dep.removeSub(this);\n }\n }\n var tmp = this.depIds;\n this.depIds = this.newDepIds;\n this.newDepIds = tmp;\n this.newDepIds.clear();\n tmp = this.deps;\n this.deps = this.newDeps;\n this.newDeps = tmp;\n this.newDeps.length = 0;\n};\n\n/**\n * Subscriber interface.\n * Will be called when a dependency changes.\n */\nWatcher.prototype.update = function update () {\n /* istanbul ignore else */\n if (this.lazy) {\n this.dirty = true;\n } else if (this.sync) {\n this.run();\n } else {\n queueWatcher(this);\n }\n};\n\n/**\n * Scheduler job interface.\n * Will be called by the scheduler.\n */\nWatcher.prototype.run = function run () {\n if (this.active) {\n var value = this.get();\n if (\n value !== this.value ||\n // Deep watchers and watchers on Object/Arrays should fire even\n // when the value is the same, because the value may\n // have mutated.\n isObject(value) ||\n this.deep\n ) {\n // set new value\n var oldValue = this.value;\n this.value = value;\n if (this.user) {\n try {\n this.cb.call(this.vm, value, oldValue);\n } catch (e) {\n handleError(e, this.vm, (\"callback for watcher \\\"\" + (this.expression) + \"\\\"\"));\n }\n } else {\n this.cb.call(this.vm, value, oldValue);\n }\n }\n }\n};\n\n/**\n * Evaluate the value of the watcher.\n * This only gets called for lazy watchers.\n */\nWatcher.prototype.evaluate = function evaluate () {\n this.value = this.get();\n this.dirty = false;\n};\n\n/**\n * Depend on all deps collected by this watcher.\n */\nWatcher.prototype.depend = function depend () {\n var i = this.deps.length;\n while (i--) {\n this.deps[i].depend();\n }\n};\n\n/**\n * Remove self from all dependencies' subscriber list.\n */\nWatcher.prototype.teardown = function teardown () {\n if (this.active) {\n // remove self from vm's watcher list\n // this is a somewhat expensive operation so we skip it\n // if the vm is being destroyed.\n if (!this.vm._isBeingDestroyed) {\n remove(this.vm._watchers, this);\n }\n var i = this.deps.length;\n while (i--) {\n this.deps[i].removeSub(this);\n }\n this.active = false;\n }\n};\n\n/* */\n\nvar sharedPropertyDefinition = {\n enumerable: true,\n configurable: true,\n get: noop,\n set: noop\n};\n\nfunction proxy (target, sourceKey, key) {\n sharedPropertyDefinition.get = function proxyGetter () {\n return this[sourceKey][key]\n };\n sharedPropertyDefinition.set = function proxySetter (val) {\n this[sourceKey][key] = val;\n };\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction initState (vm) {\n vm._watchers = [];\n var opts = vm.$options;\n if (opts.props) { initProps(vm, opts.props); }\n if (opts.methods) { initMethods(vm, opts.methods); }\n if (opts.data) {\n initData(vm);\n } else {\n observe(vm._data = {}, true /* asRootData */);\n }\n if (opts.computed) { initComputed(vm, opts.computed); }\n if (opts.watch && opts.watch !== nativeWatch) {\n initWatch(vm, opts.watch);\n }\n}\n\nfunction initProps (vm, propsOptions) {\n var propsData = vm.$options.propsData || {};\n var props = vm._props = {};\n // cache prop keys so that future props updates can iterate using Array\n // instead of dynamic object key enumeration.\n var keys = vm.$options._propKeys = [];\n var isRoot = !vm.$parent;\n // root instance props should be converted\n if (!isRoot) {\n toggleObserving(false);\n }\n var loop = function ( key ) {\n keys.push(key);\n var value = validateProp(key, propsOptions, propsData, vm);\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n var hyphenatedKey = hyphenate(key);\n if (isReservedAttribute(hyphenatedKey) ||\n config.isReservedAttr(hyphenatedKey)) {\n warn(\n (\"\\\"\" + hyphenatedKey + \"\\\" is a reserved attribute and cannot be used as component prop.\"),\n vm\n );\n }\n defineReactive$$1(props, key, value, function () {\n if (!isRoot && !isUpdatingChildComponent) {\n {\n if(vm.mpHost === 'mp-baidu' || vm.mpHost === 'mp-kuaishou'){//百度、快手 observer 在 setData callback 之后触发,直接忽略该 warn\n return\n }\n //fixed by xxxxxx __next_tick_pending,uni://form-field 时不告警\n if(\n key === 'value' && \n Array.isArray(vm.$options.behaviors) &&\n vm.$options.behaviors.indexOf('uni://form-field') !== -1\n ){\n return\n }\n if(vm._getFormData){\n return\n }\n var $parent = vm.$parent;\n while($parent){\n if($parent.__next_tick_pending){\n return \n }\n $parent = $parent.$parent;\n }\n }\n warn(\n \"Avoid mutating a prop directly since the value will be \" +\n \"overwritten whenever the parent component re-renders. \" +\n \"Instead, use a data or computed property based on the prop's \" +\n \"value. Prop being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n }\n });\n } else {\n defineReactive$$1(props, key, value);\n }\n // static props are already proxied on the component's prototype\n // during Vue.extend(). We only need to proxy props defined at\n // instantiation here.\n if (!(key in vm)) {\n proxy(vm, \"_props\", key);\n }\n };\n\n for (var key in propsOptions) loop( key );\n toggleObserving(true);\n}\n\nfunction initData (vm) {\n var data = vm.$options.data;\n data = vm._data = typeof data === 'function'\n ? getData(data, vm)\n : data || {};\n if (!isPlainObject(data)) {\n data = {};\n process.env.NODE_ENV !== 'production' && warn(\n 'data functions should return an object:\\n' +\n 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',\n vm\n );\n }\n // proxy data on instance\n var keys = Object.keys(data);\n var props = vm.$options.props;\n var methods = vm.$options.methods;\n var i = keys.length;\n while (i--) {\n var key = keys[i];\n if (process.env.NODE_ENV !== 'production') {\n if (methods && hasOwn(methods, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a data property.\"),\n vm\n );\n }\n }\n if (props && hasOwn(props, key)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"The data property \\\"\" + key + \"\\\" is already declared as a prop. \" +\n \"Use prop default value instead.\",\n vm\n );\n } else if (!isReserved(key)) {\n proxy(vm, \"_data\", key);\n }\n }\n // observe data\n observe(data, true /* asRootData */);\n}\n\nfunction getData (data, vm) {\n // #7573 disable dep collection when invoking data getters\n pushTarget();\n try {\n return data.call(vm, vm)\n } catch (e) {\n handleError(e, vm, \"data()\");\n return {}\n } finally {\n popTarget();\n }\n}\n\nvar computedWatcherOptions = { lazy: true };\n\nfunction initComputed (vm, computed) {\n // $flow-disable-line\n var watchers = vm._computedWatchers = Object.create(null);\n // computed properties are just getters during SSR\n var isSSR = isServerRendering();\n\n for (var key in computed) {\n var userDef = computed[key];\n var getter = typeof userDef === 'function' ? userDef : userDef.get;\n if (process.env.NODE_ENV !== 'production' && getter == null) {\n warn(\n (\"Getter is missing for computed property \\\"\" + key + \"\\\".\"),\n vm\n );\n }\n\n if (!isSSR) {\n // create internal watcher for the computed property.\n watchers[key] = new Watcher(\n vm,\n getter || noop,\n noop,\n computedWatcherOptions\n );\n }\n\n // component-defined computed properties are already defined on the\n // component prototype. We only need to define computed properties defined\n // at instantiation here.\n if (!(key in vm)) {\n defineComputed(vm, key, userDef);\n } else if (process.env.NODE_ENV !== 'production') {\n if (key in vm.$data) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined in data.\"), vm);\n } else if (vm.$options.props && key in vm.$options.props) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined as a prop.\"), vm);\n }\n }\n }\n}\n\nfunction defineComputed (\n target,\n key,\n userDef\n) {\n var shouldCache = !isServerRendering();\n if (typeof userDef === 'function') {\n sharedPropertyDefinition.get = shouldCache\n ? createComputedGetter(key)\n : createGetterInvoker(userDef);\n sharedPropertyDefinition.set = noop;\n } else {\n sharedPropertyDefinition.get = userDef.get\n ? shouldCache && userDef.cache !== false\n ? createComputedGetter(key)\n : createGetterInvoker(userDef.get)\n : noop;\n sharedPropertyDefinition.set = userDef.set || noop;\n }\n if (process.env.NODE_ENV !== 'production' &&\n sharedPropertyDefinition.set === noop) {\n sharedPropertyDefinition.set = function () {\n warn(\n (\"Computed property \\\"\" + key + \"\\\" was assigned to but it has no setter.\"),\n this\n );\n };\n }\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction createComputedGetter (key) {\n return function computedGetter () {\n var watcher = this._computedWatchers && this._computedWatchers[key];\n if (watcher) {\n if (watcher.dirty) {\n watcher.evaluate();\n }\n if (Dep.SharedObject.target) {// fixed by xxxxxx\n watcher.depend();\n }\n return watcher.value\n }\n }\n}\n\nfunction createGetterInvoker(fn) {\n return function computedGetter () {\n return fn.call(this, this)\n }\n}\n\nfunction initMethods (vm, methods) {\n var props = vm.$options.props;\n for (var key in methods) {\n if (process.env.NODE_ENV !== 'production') {\n if (typeof methods[key] !== 'function') {\n warn(\n \"Method \\\"\" + key + \"\\\" has type \\\"\" + (typeof methods[key]) + \"\\\" in the component definition. \" +\n \"Did you reference the function correctly?\",\n vm\n );\n }\n if (props && hasOwn(props, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a prop.\"),\n vm\n );\n }\n if ((key in vm) && isReserved(key)) {\n warn(\n \"Method \\\"\" + key + \"\\\" conflicts with an existing Vue instance method. \" +\n \"Avoid defining component methods that start with _ or $.\"\n );\n }\n }\n vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm);\n }\n}\n\nfunction initWatch (vm, watch) {\n for (var key in watch) {\n var handler = watch[key];\n if (Array.isArray(handler)) {\n for (var i = 0; i < handler.length; i++) {\n createWatcher(vm, key, handler[i]);\n }\n } else {\n createWatcher(vm, key, handler);\n }\n }\n}\n\nfunction createWatcher (\n vm,\n expOrFn,\n handler,\n options\n) {\n if (isPlainObject(handler)) {\n options = handler;\n handler = handler.handler;\n }\n if (typeof handler === 'string') {\n handler = vm[handler];\n }\n return vm.$watch(expOrFn, handler, options)\n}\n\nfunction stateMixin (Vue) {\n // flow somehow has problems with directly declared definition object\n // when using Object.defineProperty, so we have to procedurally build up\n // the object here.\n var dataDef = {};\n dataDef.get = function () { return this._data };\n var propsDef = {};\n propsDef.get = function () { return this._props };\n if (process.env.NODE_ENV !== 'production') {\n dataDef.set = function () {\n warn(\n 'Avoid replacing instance root $data. ' +\n 'Use nested data properties instead.',\n this\n );\n };\n propsDef.set = function () {\n warn(\"$props is readonly.\", this);\n };\n }\n Object.defineProperty(Vue.prototype, '$data', dataDef);\n Object.defineProperty(Vue.prototype, '$props', propsDef);\n\n Vue.prototype.$set = set;\n Vue.prototype.$delete = del;\n\n Vue.prototype.$watch = function (\n expOrFn,\n cb,\n options\n ) {\n var vm = this;\n if (isPlainObject(cb)) {\n return createWatcher(vm, expOrFn, cb, options)\n }\n options = options || {};\n options.user = true;\n var watcher = new Watcher(vm, expOrFn, cb, options);\n if (options.immediate) {\n try {\n cb.call(vm, watcher.value);\n } catch (error) {\n handleError(error, vm, (\"callback for immediate watcher \\\"\" + (watcher.expression) + \"\\\"\"));\n }\n }\n return function unwatchFn () {\n watcher.teardown();\n }\n };\n}\n\n/* */\n\nvar uid$3 = 0;\n\nfunction initMixin (Vue) {\n Vue.prototype._init = function (options) {\n var vm = this;\n // a uid\n vm._uid = uid$3++;\n\n var startTag, endTag;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n startTag = \"vue-perf-start:\" + (vm._uid);\n endTag = \"vue-perf-end:\" + (vm._uid);\n mark(startTag);\n }\n\n // a flag to avoid this being observed\n vm._isVue = true;\n // merge options\n if (options && options._isComponent) {\n // optimize internal component instantiation\n // since dynamic options merging is pretty slow, and none of the\n // internal component options needs special treatment.\n initInternalComponent(vm, options);\n } else {\n vm.$options = mergeOptions(\n resolveConstructorOptions(vm.constructor),\n options || {},\n vm\n );\n }\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n initProxy(vm);\n } else {\n vm._renderProxy = vm;\n }\n // expose real self\n vm._self = vm;\n initLifecycle(vm);\n initEvents(vm);\n initRender(vm);\n callHook(vm, 'beforeCreate');\n !vm._$fallback && initInjections(vm); // resolve injections before data/props \n initState(vm);\n !vm._$fallback && initProvide(vm); // resolve provide after data/props\n !vm._$fallback && callHook(vm, 'created'); \n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n vm._name = formatComponentName(vm, false);\n mark(endTag);\n measure((\"vue \" + (vm._name) + \" init\"), startTag, endTag);\n }\n\n if (vm.$options.el) {\n vm.$mount(vm.$options.el);\n }\n };\n}\n\nfunction initInternalComponent (vm, options) {\n var opts = vm.$options = Object.create(vm.constructor.options);\n // doing this because it's faster than dynamic enumeration.\n var parentVnode = options._parentVnode;\n opts.parent = options.parent;\n opts._parentVnode = parentVnode;\n\n var vnodeComponentOptions = parentVnode.componentOptions;\n opts.propsData = vnodeComponentOptions.propsData;\n opts._parentListeners = vnodeComponentOptions.listeners;\n opts._renderChildren = vnodeComponentOptions.children;\n opts._componentTag = vnodeComponentOptions.tag;\n\n if (options.render) {\n opts.render = options.render;\n opts.staticRenderFns = options.staticRenderFns;\n }\n}\n\nfunction resolveConstructorOptions (Ctor) {\n var options = Ctor.options;\n if (Ctor.super) {\n var superOptions = resolveConstructorOptions(Ctor.super);\n var cachedSuperOptions = Ctor.superOptions;\n if (superOptions !== cachedSuperOptions) {\n // super option changed,\n // need to resolve new options.\n Ctor.superOptions = superOptions;\n // check if there are any late-modified/attached options (#4976)\n var modifiedOptions = resolveModifiedOptions(Ctor);\n // update base extend options\n if (modifiedOptions) {\n extend(Ctor.extendOptions, modifiedOptions);\n }\n options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);\n if (options.name) {\n options.components[options.name] = Ctor;\n }\n }\n }\n return options\n}\n\nfunction resolveModifiedOptions (Ctor) {\n var modified;\n var latest = Ctor.options;\n var sealed = Ctor.sealedOptions;\n for (var key in latest) {\n if (latest[key] !== sealed[key]) {\n if (!modified) { modified = {}; }\n modified[key] = latest[key];\n }\n }\n return modified\n}\n\nfunction Vue (options) {\n if (process.env.NODE_ENV !== 'production' &&\n !(this instanceof Vue)\n ) {\n warn('Vue is a constructor and should be called with the `new` keyword');\n }\n this._init(options);\n}\n\ninitMixin(Vue);\nstateMixin(Vue);\neventsMixin(Vue);\nlifecycleMixin(Vue);\nrenderMixin(Vue);\n\n/* */\n\nfunction initUse (Vue) {\n Vue.use = function (plugin) {\n var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));\n if (installedPlugins.indexOf(plugin) > -1) {\n return this\n }\n\n // additional parameters\n var args = toArray(arguments, 1);\n args.unshift(this);\n if (typeof plugin.install === 'function') {\n plugin.install.apply(plugin, args);\n } else if (typeof plugin === 'function') {\n plugin.apply(null, args);\n }\n installedPlugins.push(plugin);\n return this\n };\n}\n\n/* */\n\nfunction initMixin$1 (Vue) {\n Vue.mixin = function (mixin) {\n this.options = mergeOptions(this.options, mixin);\n return this\n };\n}\n\n/* */\n\nfunction initExtend (Vue) {\n /**\n * Each instance constructor, including Vue, has a unique\n * cid. This enables us to create wrapped \"child\n * constructors\" for prototypal inheritance and cache them.\n */\n Vue.cid = 0;\n var cid = 1;\n\n /**\n * Class inheritance\n */\n Vue.extend = function (extendOptions) {\n extendOptions = extendOptions || {};\n var Super = this;\n var SuperId = Super.cid;\n var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});\n if (cachedCtors[SuperId]) {\n return cachedCtors[SuperId]\n }\n\n var name = extendOptions.name || Super.options.name;\n if (process.env.NODE_ENV !== 'production' && name) {\n validateComponentName(name);\n }\n\n var Sub = function VueComponent (options) {\n this._init(options);\n };\n Sub.prototype = Object.create(Super.prototype);\n Sub.prototype.constructor = Sub;\n Sub.cid = cid++;\n Sub.options = mergeOptions(\n Super.options,\n extendOptions\n );\n Sub['super'] = Super;\n\n // For props and computed properties, we define the proxy getters on\n // the Vue instances at extension time, on the extended prototype. This\n // avoids Object.defineProperty calls for each instance created.\n if (Sub.options.props) {\n initProps$1(Sub);\n }\n if (Sub.options.computed) {\n initComputed$1(Sub);\n }\n\n // allow further extension/mixin/plugin usage\n Sub.extend = Super.extend;\n Sub.mixin = Super.mixin;\n Sub.use = Super.use;\n\n // create asset registers, so extended classes\n // can have their private assets too.\n ASSET_TYPES.forEach(function (type) {\n Sub[type] = Super[type];\n });\n // enable recursive self-lookup\n if (name) {\n Sub.options.components[name] = Sub;\n }\n\n // keep a reference to the super options at extension time.\n // later at instantiation we can check if Super's options have\n // been updated.\n Sub.superOptions = Super.options;\n Sub.extendOptions = extendOptions;\n Sub.sealedOptions = extend({}, Sub.options);\n\n // cache constructor\n cachedCtors[SuperId] = Sub;\n return Sub\n };\n}\n\nfunction initProps$1 (Comp) {\n var props = Comp.options.props;\n for (var key in props) {\n proxy(Comp.prototype, \"_props\", key);\n }\n}\n\nfunction initComputed$1 (Comp) {\n var computed = Comp.options.computed;\n for (var key in computed) {\n defineComputed(Comp.prototype, key, computed[key]);\n }\n}\n\n/* */\n\nfunction initAssetRegisters (Vue) {\n /**\n * Create asset registration methods.\n */\n ASSET_TYPES.forEach(function (type) {\n Vue[type] = function (\n id,\n definition\n ) {\n if (!definition) {\n return this.options[type + 's'][id]\n } else {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && type === 'component') {\n validateComponentName(id);\n }\n if (type === 'component' && isPlainObject(definition)) {\n definition.name = definition.name || id;\n definition = this.options._base.extend(definition);\n }\n if (type === 'directive' && typeof definition === 'function') {\n definition = { bind: definition, update: definition };\n }\n this.options[type + 's'][id] = definition;\n return definition\n }\n };\n });\n}\n\n/* */\n\n\n\nfunction getComponentName (opts) {\n return opts && (opts.Ctor.options.name || opts.tag)\n}\n\nfunction matches (pattern, name) {\n if (Array.isArray(pattern)) {\n return pattern.indexOf(name) > -1\n } else if (typeof pattern === 'string') {\n return pattern.split(',').indexOf(name) > -1\n } else if (isRegExp(pattern)) {\n return pattern.test(name)\n }\n /* istanbul ignore next */\n return false\n}\n\nfunction pruneCache (keepAliveInstance, filter) {\n var cache = keepAliveInstance.cache;\n var keys = keepAliveInstance.keys;\n var _vnode = keepAliveInstance._vnode;\n for (var key in cache) {\n var cachedNode = cache[key];\n if (cachedNode) {\n var name = getComponentName(cachedNode.componentOptions);\n if (name && !filter(name)) {\n pruneCacheEntry(cache, key, keys, _vnode);\n }\n }\n }\n}\n\nfunction pruneCacheEntry (\n cache,\n key,\n keys,\n current\n) {\n var cached$$1 = cache[key];\n if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {\n cached$$1.componentInstance.$destroy();\n }\n cache[key] = null;\n remove(keys, key);\n}\n\nvar patternTypes = [String, RegExp, Array];\n\nvar KeepAlive = {\n name: 'keep-alive',\n abstract: true,\n\n props: {\n include: patternTypes,\n exclude: patternTypes,\n max: [String, Number]\n },\n\n created: function created () {\n this.cache = Object.create(null);\n this.keys = [];\n },\n\n destroyed: function destroyed () {\n for (var key in this.cache) {\n pruneCacheEntry(this.cache, key, this.keys);\n }\n },\n\n mounted: function mounted () {\n var this$1 = this;\n\n this.$watch('include', function (val) {\n pruneCache(this$1, function (name) { return matches(val, name); });\n });\n this.$watch('exclude', function (val) {\n pruneCache(this$1, function (name) { return !matches(val, name); });\n });\n },\n\n render: function render () {\n var slot = this.$slots.default;\n var vnode = getFirstComponentChild(slot);\n var componentOptions = vnode && vnode.componentOptions;\n if (componentOptions) {\n // check pattern\n var name = getComponentName(componentOptions);\n var ref = this;\n var include = ref.include;\n var exclude = ref.exclude;\n if (\n // not included\n (include && (!name || !matches(include, name))) ||\n // excluded\n (exclude && name && matches(exclude, name))\n ) {\n return vnode\n }\n\n var ref$1 = this;\n var cache = ref$1.cache;\n var keys = ref$1.keys;\n var key = vnode.key == null\n // same constructor may get registered as different local components\n // so cid alone is not enough (#3269)\n ? componentOptions.Ctor.cid + (componentOptions.tag ? (\"::\" + (componentOptions.tag)) : '')\n : vnode.key;\n if (cache[key]) {\n vnode.componentInstance = cache[key].componentInstance;\n // make current key freshest\n remove(keys, key);\n keys.push(key);\n } else {\n cache[key] = vnode;\n keys.push(key);\n // prune oldest entry\n if (this.max && keys.length > parseInt(this.max)) {\n pruneCacheEntry(cache, keys[0], keys, this._vnode);\n }\n }\n\n vnode.data.keepAlive = true;\n }\n return vnode || (slot && slot[0])\n }\n};\n\nvar builtInComponents = {\n KeepAlive: KeepAlive\n};\n\n/* */\n\nfunction initGlobalAPI (Vue) {\n // config\n var configDef = {};\n configDef.get = function () { return config; };\n if (process.env.NODE_ENV !== 'production') {\n configDef.set = function () {\n warn(\n 'Do not replace the Vue.config object, set individual fields instead.'\n );\n };\n }\n Object.defineProperty(Vue, 'config', configDef);\n\n // exposed util methods.\n // NOTE: these are not considered part of the public API - avoid relying on\n // them unless you are aware of the risk.\n Vue.util = {\n warn: warn,\n extend: extend,\n mergeOptions: mergeOptions,\n defineReactive: defineReactive$$1\n };\n\n Vue.set = set;\n Vue.delete = del;\n Vue.nextTick = nextTick;\n\n // 2.6 explicit observable API\n Vue.observable = function (obj) {\n observe(obj);\n return obj\n };\n\n Vue.options = Object.create(null);\n ASSET_TYPES.forEach(function (type) {\n Vue.options[type + 's'] = Object.create(null);\n });\n\n // this is used to identify the \"base\" constructor to extend all plain-object\n // components with in Weex's multi-instance scenarios.\n Vue.options._base = Vue;\n\n extend(Vue.options.components, builtInComponents);\n\n initUse(Vue);\n initMixin$1(Vue);\n initExtend(Vue);\n initAssetRegisters(Vue);\n}\n\ninitGlobalAPI(Vue);\n\nObject.defineProperty(Vue.prototype, '$isServer', {\n get: isServerRendering\n});\n\nObject.defineProperty(Vue.prototype, '$ssrContext', {\n get: function get () {\n /* istanbul ignore next */\n return this.$vnode && this.$vnode.ssrContext\n }\n});\n\n// expose FunctionalRenderContext for ssr runtime helper installation\nObject.defineProperty(Vue, 'FunctionalRenderContext', {\n value: FunctionalRenderContext\n});\n\nVue.version = '2.6.11';\n\n/**\n * https://raw.githubusercontent.com/Tencent/westore/master/packages/westore/utils/diff.js\n */\nvar ARRAYTYPE = '[object Array]';\nvar OBJECTTYPE = '[object Object]';\n// const FUNCTIONTYPE = '[object Function]'\n\nfunction diff(current, pre) {\n var result = {};\n syncKeys(current, pre);\n _diff(current, pre, '', result);\n return result\n}\n\nfunction syncKeys(current, pre) {\n if (current === pre) { return }\n var rootCurrentType = type(current);\n var rootPreType = type(pre);\n if (rootCurrentType == OBJECTTYPE && rootPreType == OBJECTTYPE) {\n if(Object.keys(current).length >= Object.keys(pre).length){\n for (var key in pre) {\n var currentValue = current[key];\n if (currentValue === undefined) {\n current[key] = null;\n } else {\n syncKeys(currentValue, pre[key]);\n }\n }\n }\n } else if (rootCurrentType == ARRAYTYPE && rootPreType == ARRAYTYPE) {\n if (current.length >= pre.length) {\n pre.forEach(function (item, index) {\n syncKeys(current[index], item);\n });\n }\n }\n}\n\nfunction _diff(current, pre, path, result) {\n if (current === pre) { return }\n var rootCurrentType = type(current);\n var rootPreType = type(pre);\n if (rootCurrentType == OBJECTTYPE) {\n if (rootPreType != OBJECTTYPE || Object.keys(current).length < Object.keys(pre).length) {\n setResult(result, path, current);\n } else {\n var loop = function ( key ) {\n var currentValue = current[key];\n var preValue = pre[key];\n var currentType = type(currentValue);\n var preType = type(preValue);\n if (currentType != ARRAYTYPE && currentType != OBJECTTYPE) {\n // NOTE 此处将 != 修改为 !==。涉及地方太多恐怕测试不到,如果出现数据对比问题,将其修改回来。\n if (currentValue !== pre[key]) {\n setResult(result, (path == '' ? '' : path + \".\") + key, currentValue);\n }\n } else if (currentType == ARRAYTYPE) {\n if (preType != ARRAYTYPE) {\n setResult(result, (path == '' ? '' : path + \".\") + key, currentValue);\n } else {\n if (currentValue.length < preValue.length) {\n setResult(result, (path == '' ? '' : path + \".\") + key, currentValue);\n } else {\n currentValue.forEach(function (item, index) {\n _diff(item, preValue[index], (path == '' ? '' : path + \".\") + key + '[' + index + ']', result);\n });\n }\n }\n } else if (currentType == OBJECTTYPE) {\n if (preType != OBJECTTYPE || Object.keys(currentValue).length < Object.keys(preValue).length) {\n setResult(result, (path == '' ? '' : path + \".\") + key, currentValue);\n } else {\n for (var subKey in currentValue) {\n _diff(currentValue[subKey], preValue[subKey], (path == '' ? '' : path + \".\") + key + '.' + subKey, result);\n }\n }\n }\n };\n\n for (var key in current) loop( key );\n }\n } else if (rootCurrentType == ARRAYTYPE) {\n if (rootPreType != ARRAYTYPE) {\n setResult(result, path, current);\n } else {\n if (current.length < pre.length) {\n setResult(result, path, current);\n } else {\n current.forEach(function (item, index) {\n _diff(item, pre[index], path + '[' + index + ']', result);\n });\n }\n }\n } else {\n setResult(result, path, current);\n }\n}\n\nfunction setResult(result, k, v) {\n // if (type(v) != FUNCTIONTYPE) {\n result[k] = v;\n // }\n}\n\nfunction type(obj) {\n return Object.prototype.toString.call(obj)\n}\n\n/* */\n\nfunction flushCallbacks$1(vm) {\n if (vm.__next_tick_callbacks && vm.__next_tick_callbacks.length) {\n if (process.env.VUE_APP_DEBUG) {\n var mpInstance = vm.$scope;\n console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + vm._uid +\n ']:flushCallbacks[' + vm.__next_tick_callbacks.length + ']');\n }\n var copies = vm.__next_tick_callbacks.slice(0);\n vm.__next_tick_callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n }\n}\n\nfunction hasRenderWatcher(vm) {\n return queue.find(function (watcher) { return vm._watcher === watcher; })\n}\n\nfunction nextTick$1(vm, cb) {\n //1.nextTick 之前 已 setData 且 setData 还未回调完成\n //2.nextTick 之前存在 render watcher\n if (!vm.__next_tick_pending && !hasRenderWatcher(vm)) {\n if(process.env.VUE_APP_DEBUG){\n var mpInstance = vm.$scope;\n console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + vm._uid +\n ']:nextVueTick');\n }\n return nextTick(cb, vm)\n }else{\n if(process.env.VUE_APP_DEBUG){\n var mpInstance$1 = vm.$scope;\n console.log('[' + (+new Date) + '][' + (mpInstance$1.is || mpInstance$1.route) + '][' + vm._uid +\n ']:nextMPTick');\n }\n }\n var _resolve;\n if (!vm.__next_tick_callbacks) {\n vm.__next_tick_callbacks = [];\n }\n vm.__next_tick_callbacks.push(function () {\n if (cb) {\n try {\n cb.call(vm);\n } catch (e) {\n handleError(e, vm, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(vm);\n }\n });\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\nfunction cloneWithData(vm) {\n // 确保当前 vm 所有数据被同步\n var ret = Object.create(null);\n var dataKeys = [].concat(\n Object.keys(vm._data || {}),\n Object.keys(vm._computedWatchers || {}));\n\n dataKeys.reduce(function(ret, key) {\n ret[key] = vm[key];\n return ret\n }, ret);\n\n // vue-composition-api\n var compositionApiState = vm.__composition_api_state__ || vm.__secret_vfa_state__;\n var rawBindings = compositionApiState && compositionApiState.rawBindings;\n if (rawBindings) {\n Object.keys(rawBindings).forEach(function (key) {\n ret[key] = vm[key];\n });\n }\n\n //TODO 需要把无用数据处理掉,比如 list=>l0 则 list 需要移除,否则多传输一份数据\n Object.assign(ret, vm.$mp.data || {});\n if (\n Array.isArray(vm.$options.behaviors) &&\n vm.$options.behaviors.indexOf('uni://form-field') !== -1\n ) { //form-field\n ret['name'] = vm.name;\n ret['value'] = vm.value;\n }\n\n return JSON.parse(JSON.stringify(ret))\n}\n\nvar patch = function(oldVnode, vnode) {\n var this$1 = this;\n\n if (vnode === null) { //destroy\n return\n }\n if (this.mpType === 'page' || this.mpType === 'component') {\n var mpInstance = this.$scope;\n var data = Object.create(null);\n try {\n data = cloneWithData(this);\n } catch (err) {\n console.error(err);\n }\n data.__webviewId__ = mpInstance.data.__webviewId__;\n var mpData = Object.create(null);\n Object.keys(data).forEach(function (key) { //仅同步 data 中有的数据\n mpData[key] = mpInstance.data[key];\n });\n var diffData = this.$shouldDiffData === false ? data : diff(data, mpData);\n if (Object.keys(diffData).length) {\n if (process.env.VUE_APP_DEBUG) {\n console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + this._uid +\n ']差量更新',\n JSON.stringify(diffData));\n }\n this.__next_tick_pending = true;\n mpInstance.setData(diffData, function () {\n this$1.__next_tick_pending = false;\n flushCallbacks$1(this$1);\n });\n } else {\n flushCallbacks$1(this);\n }\n }\n};\n\n/* */\n\nfunction createEmptyRender() {\n\n}\n\nfunction mountComponent$1(\n vm,\n el,\n hydrating\n) {\n if (!vm.mpType) {//main.js 中的 new Vue\n return vm\n }\n if (vm.mpType === 'app') {\n vm.$options.render = createEmptyRender;\n }\n if (!vm.$options.render) {\n vm.$options.render = createEmptyRender;\n if (process.env.NODE_ENV !== 'production') {\n /* istanbul ignore if */\n if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||\n vm.$options.el || el) {\n warn(\n 'You are using the runtime-only build of Vue where the template ' +\n 'compiler is not available. Either pre-compile the templates into ' +\n 'render functions, or use the compiler-included build.',\n vm\n );\n } else {\n warn(\n 'Failed to mount component: template or render function not defined.',\n vm\n );\n }\n }\n }\n \n !vm._$fallback && callHook(vm, 'beforeMount');\n\n var updateComponent = function () {\n vm._update(vm._render(), hydrating);\n };\n\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, {\n before: function before() {\n if (vm._isMounted && !vm._isDestroyed) {\n callHook(vm, 'beforeUpdate');\n }\n }\n }, true /* isRenderWatcher */);\n hydrating = false;\n return vm\n}\n\n/* */\n\nfunction renderClass (\n staticClass,\n dynamicClass\n) {\n if (isDef(staticClass) || isDef(dynamicClass)) {\n return concat(staticClass, stringifyClass(dynamicClass))\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction concat (a, b) {\n return a ? b ? (a + ' ' + b) : a : (b || '')\n}\n\nfunction stringifyClass (value) {\n if (Array.isArray(value)) {\n return stringifyArray(value)\n }\n if (isObject(value)) {\n return stringifyObject(value)\n }\n if (typeof value === 'string') {\n return value\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction stringifyArray (value) {\n var res = '';\n var stringified;\n for (var i = 0, l = value.length; i < l; i++) {\n if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {\n if (res) { res += ' '; }\n res += stringified;\n }\n }\n return res\n}\n\nfunction stringifyObject (value) {\n var res = '';\n for (var key in value) {\n if (value[key]) {\n if (res) { res += ' '; }\n res += key;\n }\n }\n return res\n}\n\n/* */\n\nvar parseStyleText = cached(function (cssText) {\n var res = {};\n var listDelimiter = /;(?![^(]*\\))/g;\n var propertyDelimiter = /:(.+)/;\n cssText.split(listDelimiter).forEach(function (item) {\n if (item) {\n var tmp = item.split(propertyDelimiter);\n tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());\n }\n });\n return res\n});\n\n// normalize possible array / string values into Object\nfunction normalizeStyleBinding (bindingStyle) {\n if (Array.isArray(bindingStyle)) {\n return toObject(bindingStyle)\n }\n if (typeof bindingStyle === 'string') {\n return parseStyleText(bindingStyle)\n }\n return bindingStyle\n}\n\n/* */\n\nvar MP_METHODS = ['createSelectorQuery', 'createIntersectionObserver', 'selectAllComponents', 'selectComponent'];\n\nfunction getTarget(obj, path) {\n var parts = path.split('.');\n var key = parts[0];\n if (key.indexOf('__$n') === 0) { //number index\n key = parseInt(key.replace('__$n', ''));\n }\n if (parts.length === 1) {\n return obj[key]\n }\n return getTarget(obj[key], parts.slice(1).join('.'))\n}\n\nfunction internalMixin(Vue) {\n\n Vue.config.errorHandler = function(err, vm, info) {\n Vue.util.warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n console.error(err);\n /* eslint-disable no-undef */\n var app = typeof getApp === 'function' && getApp();\n if (app && app.onError) {\n app.onError(err);\n }\n };\n\n var oldEmit = Vue.prototype.$emit;\n\n Vue.prototype.$emit = function(event) {\n if (this.$scope && event) {\n this.$scope['triggerEvent'](event, {\n __args__: toArray(arguments, 1)\n });\n }\n return oldEmit.apply(this, arguments)\n };\n\n Vue.prototype.$nextTick = function(fn) {\n return nextTick$1(this, fn)\n };\n\n MP_METHODS.forEach(function (method) {\n Vue.prototype[method] = function(args) {\n if (this.$scope && this.$scope[method]) {\n return this.$scope[method](args)\n }\n // mp-alipay\n if (typeof my === 'undefined') {\n return\n }\n if (method === 'createSelectorQuery') {\n /* eslint-disable no-undef */\n return my.createSelectorQuery(args)\n } else if (method === 'createIntersectionObserver') {\n /* eslint-disable no-undef */\n return my.createIntersectionObserver(args)\n }\n // TODO mp-alipay 暂不支持 selectAllComponents,selectComponent\n };\n });\n\n Vue.prototype.__init_provide = initProvide;\n\n Vue.prototype.__init_injections = initInjections;\n\n Vue.prototype.__call_hook = function(hook, args) {\n var vm = this;\n // #7573 disable dep collection when invoking lifecycle hooks\n pushTarget();\n var handlers = vm.$options[hook];\n var info = hook + \" hook\";\n var ret;\n if (handlers) {\n for (var i = 0, j = handlers.length; i < j; i++) {\n ret = invokeWithErrorHandling(handlers[i], vm, args ? [args] : null, vm, info);\n }\n }\n if (vm._hasHookEvent) {\n vm.$emit('hook:' + hook, args);\n }\n popTarget();\n return ret\n };\n\n Vue.prototype.__set_model = function(target, key, value, modifiers) {\n if (Array.isArray(modifiers)) {\n if (modifiers.indexOf('trim') !== -1) {\n value = value.trim();\n }\n if (modifiers.indexOf('number') !== -1) {\n value = this._n(value);\n }\n }\n if (!target) {\n target = this;\n }\n target[key] = value;\n };\n\n Vue.prototype.__set_sync = function(target, key, value) {\n if (!target) {\n target = this;\n }\n target[key] = value;\n };\n\n Vue.prototype.__get_orig = function(item) {\n if (isPlainObject(item)) {\n return item['$orig'] || item\n }\n return item\n };\n\n Vue.prototype.__get_value = function(dataPath, target) {\n return getTarget(target || this, dataPath)\n };\n\n\n Vue.prototype.__get_class = function(dynamicClass, staticClass) {\n return renderClass(staticClass, dynamicClass)\n };\n\n Vue.prototype.__get_style = function(dynamicStyle, staticStyle) {\n if (!dynamicStyle && !staticStyle) {\n return ''\n }\n var dynamicStyleObj = normalizeStyleBinding(dynamicStyle);\n var styleObj = staticStyle ? extend(staticStyle, dynamicStyleObj) : dynamicStyleObj;\n return Object.keys(styleObj).map(function (name) { return ((hyphenate(name)) + \":\" + (styleObj[name])); }).join(';')\n };\n\n Vue.prototype.__map = function(val, iteratee) {\n //TODO 暂不考虑 string\n var ret, i, l, keys, key;\n if (Array.isArray(val)) {\n ret = new Array(val.length);\n for (i = 0, l = val.length; i < l; i++) {\n ret[i] = iteratee(val[i], i);\n }\n return ret\n } else if (isObject(val)) {\n keys = Object.keys(val);\n ret = Object.create(null);\n for (i = 0, l = keys.length; i < l; i++) {\n key = keys[i];\n ret[key] = iteratee(val[key], key, i);\n }\n return ret\n } else if (typeof val === 'number') {\n ret = new Array(val);\n for (i = 0, l = val; i < l; i++) {\n // 第一个参数暂时仍和小程序一致\n ret[i] = iteratee(i, i);\n }\n return ret\n }\n return []\n };\n\n}\n\n/* */\n\nvar LIFECYCLE_HOOKS$1 = [\n //App\n 'onLaunch',\n 'onShow',\n 'onHide',\n 'onUniNViewMessage',\n 'onPageNotFound',\n 'onThemeChange',\n 'onError',\n 'onUnhandledRejection',\n //Page\n 'onInit',\n 'onLoad',\n // 'onShow',\n 'onReady',\n // 'onHide',\n 'onUnload',\n 'onPullDownRefresh',\n 'onReachBottom',\n 'onTabItemTap',\n 'onAddToFavorites',\n 'onShareTimeline',\n 'onShareAppMessage',\n 'onResize',\n 'onPageScroll',\n 'onNavigationBarButtonTap',\n 'onBackPress',\n 'onNavigationBarSearchInputChanged',\n 'onNavigationBarSearchInputConfirmed',\n 'onNavigationBarSearchInputClicked',\n //Component\n // 'onReady', // 兼容旧版本,应该移除该事件\n 'onPageShow',\n 'onPageHide',\n 'onPageResize'\n];\nfunction lifecycleMixin$1(Vue) {\n\n //fixed vue-class-component\n var oldExtend = Vue.extend;\n Vue.extend = function(extendOptions) {\n extendOptions = extendOptions || {};\n\n var methods = extendOptions.methods;\n if (methods) {\n Object.keys(methods).forEach(function (methodName) {\n if (LIFECYCLE_HOOKS$1.indexOf(methodName)!==-1) {\n extendOptions[methodName] = methods[methodName];\n delete methods[methodName];\n }\n });\n }\n\n return oldExtend.call(this, extendOptions)\n };\n\n var strategies = Vue.config.optionMergeStrategies;\n var mergeHook = strategies.created;\n LIFECYCLE_HOOKS$1.forEach(function (hook) {\n strategies[hook] = mergeHook;\n });\n\n Vue.prototype.__lifecycle_hooks__ = LIFECYCLE_HOOKS$1;\n}\n\n/* */\n\n// install platform patch function\nVue.prototype.__patch__ = patch;\n\n// public mount method\nVue.prototype.$mount = function(\n el ,\n hydrating \n) {\n return mountComponent$1(this, el, hydrating)\n};\n\nlifecycleMixin$1(Vue);\ninternalMixin(Vue);\n\n/* */\n\nexport default Vue;\n","/**\r\n * @fileoverview html 解析器\r\n */\r\n\r\n// 配置\r\nconst config = {\r\n // 信任的标签(保持标签名不变)\r\n trustTags: makeMap('a,abbr,ad,audio,b,blockquote,br,code,col,colgroup,dd,del,dl,dt,div,em,fieldset,h1,h2,h3,h4,h5,h6,hr,i,img,ins,label,legend,li,ol,p,q,ruby,rt,source,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,title,ul,video'),\r\n\r\n // 块级标签(转为 div,其他的非信任标签转为 span)\r\n blockTags: makeMap('address,article,aside,body,caption,center,cite,footer,header,html,nav,pre,section'),\r\n\r\n // 要移除的标签\r\n ignoreTags: makeMap('area,base,canvas,embed,frame,head,iframe,input,link,map,meta,param,rp,script,source,style,textarea,title,track,wbr'),\r\n\r\n // 自闭合的标签\r\n voidTags: makeMap('area,base,br,col,circle,ellipse,embed,frame,hr,img,input,line,link,meta,param,path,polygon,rect,source,track,use,wbr'),\r\n\r\n // html 实体\r\n entities: {\r\n lt: '<',\r\n gt: '>',\r\n quot: '\"',\r\n apos: \"'\",\r\n ensp: '\\u2002',\r\n emsp: '\\u2003',\r\n nbsp: '\\xA0',\r\n semi: ';',\r\n ndash: '–',\r\n mdash: '—',\r\n middot: '·',\r\n lsquo: '‘',\r\n rsquo: '’',\r\n ldquo: '“',\r\n rdquo: '”',\r\n bull: '•',\r\n hellip: '…'\r\n },\r\n\r\n // 默认的标签样式\r\n tagStyle: {\r\n\r\n address: 'font-style:italic',\r\n big: 'display:inline;font-size:1.2em',\r\n caption: 'display:table-caption;text-align:center',\r\n center: 'text-align:center',\r\n cite: 'font-style:italic',\r\n dd: 'margin-left:40px',\r\n mark: 'background-color:yellow',\r\n pre: 'font-family:monospace;white-space:pre',\r\n s: 'text-decoration:line-through',\r\n small: 'display:inline;font-size:0.8em',\r\n strike: 'text-decoration:line-through',\r\n u: 'text-decoration:underline'\r\n\r\n },\r\n\r\n // svg 大小写对照表\r\n svgDict: {\r\n animatetransform: 'animateTransform',\r\n lineargradient: 'linearGradient',\r\n viewbox: 'viewBox',\r\n attributename: 'attributeName',\r\n repeatcount: 'repeatCount',\r\n repeatdur: 'repeatDur'\r\n }\r\n}\r\nconst tagSelector={}\r\nconst {\r\n windowWidth,\r\n\r\n system\r\n\r\n} = uni.getSystemInfoSync()\r\nconst blankChar = makeMap(' ,\\r,\\n,\\t,\\f')\r\nlet idIndex = 0\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n/**\r\n * @description 创建 map\r\n * @param {String} str 逗号分隔\r\n */\r\nfunction makeMap (str) {\r\n const map = Object.create(null)\r\n const list = str.split(',')\r\n for (let i = list.length; i--;) {\r\n map[list[i]] = true\r\n }\r\n return map\r\n}\r\n\r\n/**\r\n * @description 解码 html 实体\r\n * @param {String} str 要解码的字符串\r\n * @param {Boolean} amp 要不要解码 &\r\n * @returns {String} 解码后的字符串\r\n */\r\nfunction decodeEntity (str, amp) {\r\n let i = str.indexOf('&')\r\n while (i !== -1) {\r\n const j = str.indexOf(';', i + 3)\r\n let code\r\n if (j === -1) break\r\n if (str[i + 1] === '#') {\r\n // { 形式的实体\r\n code = parseInt((str[i + 2] === 'x' ? '0' : '') + str.substring(i + 2, j))\r\n if (!isNaN(code)) {\r\n str = str.substr(0, i) + String.fromCharCode(code) + str.substr(j + 1)\r\n }\r\n } else {\r\n // 形式的实体\r\n code = str.substring(i + 1, j)\r\n if (config.entities[code] || (code === 'amp' && amp)) {\r\n str = str.substr(0, i) + (config.entities[code] || '&') + str.substr(j + 1)\r\n }\r\n }\r\n i = str.indexOf('&', i + 1)\r\n }\r\n return str\r\n}\r\n\r\n/**\r\n * @description html 解析器\r\n * @param {Object} vm 组件实例\r\n */\r\nfunction Parser (vm) {\r\n this.options = vm || {}\r\n this.tagStyle = Object.assign({}, config.tagStyle, this.options.tagStyle)\r\n this.imgList = vm.imgList || []\r\n this.plugins = vm.plugins || []\r\n this.attrs = Object.create(null)\r\n this.stack = []\r\n this.nodes = []\r\n this.pre = (this.options.containerStyle || '').includes('white-space') && this.options.containerStyle.includes('pre') ? 2 : 0\r\n}\r\n\r\n/**\r\n * @description 执行解析\r\n * @param {String} content 要解析的文本\r\n */\r\nParser.prototype.parse = function (content) {\r\n // 插件处理\r\n for (let i = this.plugins.length; i--;) {\r\n if (this.plugins[i].onUpdate) {\r\n content = this.plugins[i].onUpdate(content, config) || content\r\n }\r\n }\r\n\r\n new Lexer(this).parse(content)\r\n // 出栈未闭合的标签\r\n while (this.stack.length) {\r\n this.popNode()\r\n }\r\n return this.nodes\r\n}\r\n\r\n/**\r\n * @description 将标签暴露出来(不被 rich-text 包含)\r\n */\r\nParser.prototype.expose = function () {\r\n\r\n for (let i = this.stack.length; i--;) {\r\n const item = this.stack[i]\r\n if (item.c || item.name === 'a' || item.name === 'video' || item.name === 'audio') return\r\n item.c = 1\r\n }\r\n\r\n}\r\n\r\n/**\r\n * @description 处理插件\r\n * @param {Object} node 要处理的标签\r\n * @returns {Boolean} 是否要移除此标签\r\n */\r\nParser.prototype.hook = function (node) {\r\n for (let i = this.plugins.length; i--;) {\r\n if (this.plugins[i].onParse && this.plugins[i].onParse(node, this) === false) {\r\n return false\r\n }\r\n }\r\n return true\r\n}\r\n\r\n/**\r\n * @description 将链接拼接上主域名\r\n * @param {String} url 需要拼接的链接\r\n * @returns {String} 拼接后的链接\r\n */\r\nParser.prototype.getUrl = function (url) {\r\n const domain = this.options.domain\r\n if (url[0] === '/') {\r\n if (url[1] === '/') {\r\n // // 开头的补充协议名\r\n url = (domain ? domain.split('://')[0] : 'http') + ':' + url\r\n } else if (domain) {\r\n // 否则补充整个域名\r\n url = domain + url\r\n }\r\n } else if (domain && !url.includes('data:') && !url.includes('://')) {\r\n url = domain + '/' + url\r\n }\r\n return url\r\n}\r\n\r\n/**\r\n * @description 解析样式表\r\n * @param {Object} node 标签\r\n * @returns {Object}\r\n */\r\nParser.prototype.parseStyle = function (node) {\r\n const attrs = node.attrs\r\n const list = (this.tagStyle[node.name] || '').split(';').concat((attrs.style || '').split(';'))\r\n const styleObj = {}\r\n let tmp = ''\r\n\r\n if (attrs.id && !this.xml) {\r\n // 暴露锚点\r\n if (this.options.useAnchor) {\r\n this.expose()\r\n } else if (node.name !== 'img' && node.name !== 'a' && node.name !== 'video' && node.name !== 'audio') {\r\n attrs.id = undefined\r\n }\r\n }\r\n\r\n // 转换 width 和 height 属性\r\n if (attrs.width) {\r\n styleObj.width = parseFloat(attrs.width) + (attrs.width.includes('%') ? '%' : 'px')\r\n attrs.width = undefined\r\n }\r\n if (attrs.height) {\r\n styleObj.height = parseFloat(attrs.height) + (attrs.height.includes('%') ? '%' : 'px')\r\n attrs.height = undefined\r\n }\r\n\r\n for (let i = 0, len = list.length; i < len; i++) {\r\n const info = list[i].split(':')\r\n if (info.length < 2) continue\r\n const key = info.shift().trim().toLowerCase()\r\n let value = info.join(':').trim()\r\n if ((value[0] === '-' && value.lastIndexOf('-') > 0) || value.includes('safe')) {\r\n // 兼容性的 css 不压缩\r\n tmp += `;${key}:${value}`\r\n } else if (!styleObj[key] || value.includes('import') || !styleObj[key].includes('import')) {\r\n // 重复的样式进行覆盖\r\n if (value.includes('url')) {\r\n // 填充链接\r\n let j = value.indexOf('(') + 1\r\n if (j) {\r\n while (value[j] === '\"' || value[j] === \"'\" || blankChar[value[j]]) {\r\n j++\r\n }\r\n value = value.substr(0, j) + this.getUrl(value.substr(j))\r\n }\r\n } else if (value.includes('rpx')) {\r\n // 转换 rpx(rich-text 内部不支持 rpx)\r\n value = value.replace(/[0-9.]+\\s*rpx/g, $ => parseFloat($) * windowWidth / 750 + 'px')\r\n }\r\n styleObj[key] = value\r\n }\r\n }\r\n\r\n node.attrs.style = tmp\r\n return styleObj\r\n}\r\n\r\n/**\r\n * @description 解析到标签名\r\n * @param {String} name 标签名\r\n * @private\r\n */\r\nParser.prototype.onTagName = function (name) {\r\n this.tagName = this.xml ? name : name.toLowerCase()\r\n if (this.tagName === 'svg') {\r\n this.xml = (this.xml || 0) + 1 // svg 标签内大小写敏感\r\n }\r\n}\r\n\r\n/**\r\n * @description 解析到属性名\r\n * @param {String} name 属性名\r\n * @private\r\n */\r\nParser.prototype.onAttrName = function (name) {\r\n name = this.xml ? name : name.toLowerCase()\r\n if (name.substr(0, 5) === 'data-') {\r\n if (name === 'data-src' && !this.attrs.src) {\r\n // data-src 自动转为 src\r\n this.attrName = 'src'\r\n } else if (this.tagName === 'img' || this.tagName === 'a') {\r\n // a 和 img 标签保留 data- 的属性,可以在 imgtap 和 linktap 事件中使用\r\n this.attrName = name\r\n } else {\r\n // 剩余的移除以减小大小\r\n this.attrName = undefined\r\n }\r\n } else {\r\n this.attrName = name\r\n this.attrs[name] = 'T' // boolean 型属性缺省设置\r\n }\r\n}\r\n\r\n/**\r\n * @description 解析到属性值\r\n * @param {String} val 属性值\r\n * @private\r\n */\r\nParser.prototype.onAttrVal = function (val) {\r\n const name = this.attrName || ''\r\n if (name === 'style' || name === 'href') {\r\n // 部分属性进行实体解码\r\n this.attrs[name] = decodeEntity(val, true)\r\n } else if (name.includes('src')) {\r\n // 拼接主域名\r\n this.attrs[name] = this.getUrl(decodeEntity(val, true))\r\n } else if (name) {\r\n this.attrs[name] = val\r\n }\r\n}\r\n\r\n/**\r\n * @description 解析到标签开始\r\n * @param {Boolean} selfClose 是否有自闭合标识 />\r\n * @private\r\n */\r\nParser.prototype.onOpenTag = function (selfClose) {\r\n // 拼装 node\r\n const node = Object.create(null)\r\n node.name = this.tagName\r\n node.attrs = this.attrs\r\n // 避免因为自动 diff 使得 type 被设置为 null 导致部分内容不显示\r\n if (this.options.nodes.length) {\r\n node.type = 'node'\r\n }\r\n this.attrs = Object.create(null)\r\n\r\n const attrs = node.attrs\r\n const parent = this.stack[this.stack.length - 1]\r\n const siblings = parent ? parent.children : this.nodes\r\n const close = this.xml ? selfClose : config.voidTags[node.name]\r\n\r\n // 替换标签名选择器\r\n if (tagSelector[node.name]) {\r\n attrs.class = tagSelector[node.name] + (attrs.class ? ' ' + attrs.class : '')\r\n }\r\n\r\n // 转换 embed 标签\r\n if (node.name === 'embed') {\r\n\r\n const src = attrs.src || ''\r\n // 按照后缀名和 type 将 embed 转为 video 或 audio\r\n if (src.includes('.mp4') || src.includes('.3gp') || src.includes('.m3u8') || (attrs.type || '').includes('video')) {\r\n node.name = 'video'\r\n } else if (src.includes('.mp3') || src.includes('.wav') || src.includes('.aac') || src.includes('.m4a') || (attrs.type || '').includes('audio')) {\r\n node.name = 'audio'\r\n }\r\n if (attrs.autostart) {\r\n attrs.autoplay = 'T'\r\n }\r\n attrs.controls = 'T'\r\n\r\n\r\n\r\n\r\n }\r\n\r\n\r\n // 处理音视频\r\n if (node.name === 'video' || node.name === 'audio') {\r\n // 设置 id 以便获取 context\r\n if (node.name === 'video' && !attrs.id) {\r\n attrs.id = 'v' + idIndex++\r\n }\r\n // 没有设置 controls 也没有设置 autoplay 的自动设置 controls\r\n if (!attrs.controls && !attrs.autoplay) {\r\n attrs.controls = 'T'\r\n }\r\n // 用数组存储所有可用的 source\r\n node.src = []\r\n if (attrs.src) {\r\n node.src.push(attrs.src)\r\n attrs.src = undefined\r\n }\r\n this.expose()\r\n }\r\n\r\n\r\n // 处理自闭合标签\r\n if (close) {\r\n if (!this.hook(node) || config.ignoreTags[node.name]) {\r\n // 通过 base 标签设置主域名\r\n if (node.name === 'base' && !this.options.domain) {\r\n this.options.domain = attrs.href\r\n } else if (node.name === 'source' && parent && (parent.name === 'video' || parent.name === 'audio') && attrs.src) {\r\n // 设置 source 标签(仅父节点为 video 或 audio 时有效)\r\n parent.src.push(attrs.src)\r\n }\r\n return\r\n }\r\n\r\n // 解析 style\r\n const styleObj = this.parseStyle(node)\r\n\r\n // 处理图片\r\n if (node.name === 'img') {\r\n if (attrs.src) {\r\n // 标记 webp\r\n if (attrs.src.includes('webp')) {\r\n node.webp = 'T'\r\n }\r\n // data url 图片如果没有设置 original-src 默认为不可预览的小图片\r\n if (attrs.src.includes('data:') && !attrs['original-src']) {\r\n attrs.ignore = 'T'\r\n }\r\n if (!attrs.ignore || node.webp || attrs.src.includes('cloud://')) {\r\n for (let i = this.stack.length; i--;) {\r\n const item = this.stack[i]\r\n if (item.name === 'a') {\r\n node.a = item.attrs\r\n break\r\n }\r\n\r\n const style = item.attrs.style || ''\r\n if (style.includes('flex:') && !style.includes('flex:0') && !style.includes('flex: 0') && (!styleObj.width || !styleObj.width.includes('%'))) {\r\n styleObj.width = '100% !important'\r\n styleObj.height = ''\r\n for (let j = i + 1; j < this.stack.length; j++) {\r\n this.stack[j].attrs.style = (this.stack[j].attrs.style || '').replace('inline-', '')\r\n }\r\n } else if (style.includes('flex') && styleObj.width === '100%') {\r\n for (let j = i + 1; j < this.stack.length; j++) {\r\n const style = this.stack[j].attrs.style || ''\r\n if (!style.includes(';width') && !style.includes(' width') && style.indexOf('width') !== 0) {\r\n styleObj.width = ''\r\n break\r\n }\r\n }\r\n } else if (style.includes('inline-block')) {\r\n if (styleObj.width && styleObj.width[styleObj.width.length - 1] === '%') {\r\n item.attrs.style += ';max-width:' + styleObj.width\r\n styleObj.width = ''\r\n } else {\r\n item.attrs.style += ';max-width:100%'\r\n }\r\n }\r\n\r\n item.c = 1\r\n }\r\n attrs.i = this.imgList.length.toString()\r\n let src = attrs['original-src'] || attrs.src\r\n\r\n if (this.imgList.includes(src)) {\r\n // 如果有重复的链接则对域名进行随机大小写变换避免预览时错位\r\n let i = src.indexOf('://')\r\n if (i !== -1) {\r\n i += 3\r\n let newSrc = src.substr(0, i)\r\n for (; i < src.length; i++) {\r\n if (src[i] === '/') break\r\n newSrc += Math.random() > 0.5 ? src[i].toUpperCase() : src[i]\r\n }\r\n newSrc += src.substr(i)\r\n src = newSrc\r\n }\r\n }\r\n\r\n this.imgList.push(src)\r\n\r\n\r\n\r\n\r\n\r\n\r\n }\r\n }\r\n if (styleObj.display === 'inline') {\r\n styleObj.display = ''\r\n }\r\n\r\n if (attrs.ignore) {\r\n styleObj['max-width'] = styleObj['max-width'] || '100%'\r\n attrs.style += ';-webkit-touch-callout:none'\r\n }\r\n\r\n // 设置的宽度超出屏幕,为避免变形,高度转为自动\r\n if (parseInt(styleObj.width) > windowWidth) {\r\n styleObj.height = undefined\r\n }\r\n // 记录是否设置了宽高\r\n if (styleObj.width) {\r\n if (styleObj.width.includes('auto')) {\r\n styleObj.width = ''\r\n } else {\r\n node.w = 'T'\r\n if (styleObj.height && !styleObj.height.includes('auto')) {\r\n node.h = 'T'\r\n }\r\n }\r\n }\r\n } else if (node.name === 'svg') {\r\n siblings.push(node)\r\n this.stack.push(node)\r\n this.popNode()\r\n return\r\n }\r\n for (const key in styleObj) {\r\n if (styleObj[key]) {\r\n attrs.style += `;${key}:${styleObj[key].replace(' !important', '')}`\r\n }\r\n }\r\n attrs.style = attrs.style.substr(1) || undefined\r\n } else {\r\n if ((node.name === 'pre' || ((attrs.style || '').includes('white-space') && attrs.style.includes('pre'))) && this.pre !== 2) {\r\n this.pre = node.pre = 1\r\n }\r\n node.children = []\r\n this.stack.push(node)\r\n }\r\n\r\n // 加入节点树\r\n siblings.push(node)\r\n}\r\n\r\n/**\r\n * @description 解析到标签结束\r\n * @param {String} name 标签名\r\n * @private\r\n */\r\nParser.prototype.onCloseTag = function (name) {\r\n // 依次出栈到匹配为止\r\n name = this.xml ? name : name.toLowerCase()\r\n let i\r\n for (i = this.stack.length; i--;) {\r\n if (this.stack[i].name === name) break\r\n }\r\n if (i !== -1) {\r\n while (this.stack.length > i) {\r\n this.popNode()\r\n }\r\n } else if (name === 'p' || name === 'br') {\r\n const siblings = this.stack.length ? this.stack[this.stack.length - 1].children : this.nodes\r\n siblings.push({\r\n name,\r\n attrs: {\r\n class: tagSelector[name],\r\n style: this.tagStyle[name]\r\n }\r\n })\r\n }\r\n}\r\n\r\n/**\r\n * @description 处理标签出栈\r\n * @private\r\n */\r\nParser.prototype.popNode = function () {\r\n const node = this.stack.pop()\r\n let attrs = node.attrs\r\n const children = node.children\r\n const parent = this.stack[this.stack.length - 1]\r\n const siblings = parent ? parent.children : this.nodes\r\n\r\n if (!this.hook(node) || config.ignoreTags[node.name]) {\r\n // 获取标题\r\n if (node.name === 'title' && children.length && children[0].type === 'text' && this.options.setTitle) {\r\n uni.setNavigationBarTitle({\r\n title: children[0].text\r\n })\r\n }\r\n siblings.pop()\r\n return\r\n }\r\n\r\n if (node.pre && this.pre !== 2) {\r\n // 是否合并空白符标识\r\n this.pre = node.pre = undefined\r\n for (let i = this.stack.length; i--;) {\r\n if (this.stack[i].pre) {\r\n this.pre = 1\r\n }\r\n }\r\n }\r\n\r\n const styleObj = {}\r\n\r\n // 转换 svg\r\n if (node.name === 'svg') {\r\n if (this.xml > 1) {\r\n // 多层 svg 嵌套\r\n this.xml--\r\n return\r\n }\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n let src = ''\r\n const style = attrs.style\r\n attrs.style = ''\r\n attrs.xmlns = 'http://www.w3.org/2000/svg';\r\n (function traversal (node) {\r\n if (node.type === 'text') {\r\n src += node.text\r\n return\r\n }\r\n const name = config.svgDict[node.name] || node.name\r\n src += '<' + name\r\n for (const item in node.attrs) {\r\n const val = node.attrs[item]\r\n if (val) {\r\n src += ` ${config.svgDict[item] || item}=\"${val}\"`\r\n }\r\n }\r\n if (!node.children) {\r\n src += '/>'\r\n } else {\r\n src += '>'\r\n for (let i = 0; i < node.children.length; i++) {\r\n traversal(node.children[i])\r\n }\r\n src += '' + name + '>'\r\n }\r\n })(node)\r\n node.name = 'img'\r\n node.attrs = {\r\n src: 'data:image/svg+xml;utf8,' + src.replace(/#/g, '%23'),\r\n style,\r\n ignore: 'T'\r\n }\r\n node.children = undefined\r\n\r\n this.xml = false\r\n return\r\n }\r\n\r\n\r\n // 转换 align 属性\r\n if (attrs.align) {\r\n if (node.name === 'table') {\r\n if (attrs.align === 'center') {\r\n styleObj['margin-inline-start'] = styleObj['margin-inline-end'] = 'auto'\r\n } else {\r\n styleObj.float = attrs.align\r\n }\r\n } else {\r\n styleObj['text-align'] = attrs.align\r\n }\r\n attrs.align = undefined\r\n }\r\n\r\n // 转换 dir 属性\r\n if (attrs.dir) {\r\n styleObj.direction = attrs.dir\r\n attrs.dir = undefined\r\n }\r\n\r\n // 转换 font 标签的属性\r\n if (node.name === 'font') {\r\n if (attrs.color) {\r\n styleObj.color = attrs.color\r\n attrs.color = undefined\r\n }\r\n if (attrs.face) {\r\n styleObj['font-family'] = attrs.face\r\n attrs.face = undefined\r\n }\r\n if (attrs.size) {\r\n let size = parseInt(attrs.size)\r\n if (!isNaN(size)) {\r\n if (size < 1) {\r\n size = 1\r\n } else if (size > 7) {\r\n size = 7\r\n }\r\n styleObj['font-size'] = ['xx-small', 'x-small', 'small', 'medium', 'large', 'x-large', 'xx-large'][size - 1]\r\n }\r\n attrs.size = undefined\r\n }\r\n }\r\n\r\n\r\n // 一些编辑器的自带 class\r\n if ((attrs.class || '').includes('align-center')) {\r\n styleObj['text-align'] = 'center'\r\n }\r\n\r\n Object.assign(styleObj, this.parseStyle(node))\r\n\r\n if (node.name !== 'table' && parseInt(styleObj.width) > windowWidth) {\r\n styleObj['max-width'] = '100%'\r\n styleObj['box-sizing'] = 'border-box'\r\n }\r\n\r\n\r\n if (config.blockTags[node.name]) {\r\n node.name = 'div'\r\n } else if (!config.trustTags[node.name] && !this.xml) {\r\n // 未知标签转为 span,避免无法显示\r\n node.name = 'span'\r\n }\r\n\r\n if (node.name === 'a' || node.name === 'ad'\r\n\r\n\r\n\r\n ) {\r\n this.expose()\r\n }\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n else if ((node.name === 'ul' || node.name === 'ol') && node.c) {\r\n // 列表处理\r\n const types = {\r\n a: 'lower-alpha',\r\n A: 'upper-alpha',\r\n i: 'lower-roman',\r\n I: 'upper-roman'\r\n }\r\n if (types[attrs.type]) {\r\n attrs.style += ';list-style-type:' + types[attrs.type]\r\n attrs.type = undefined\r\n }\r\n for (let i = children.length; i--;) {\r\n if (children[i].name === 'li') {\r\n children[i].c = 1\r\n }\r\n }\r\n } else if (node.name === 'table') {\r\n // 表格处理\r\n // cellpadding、cellspacing、border 这几个常用表格属性需要通过转换实现\r\n let padding = parseFloat(attrs.cellpadding)\r\n let spacing = parseFloat(attrs.cellspacing)\r\n const border = parseFloat(attrs.border)\r\n if (node.c) {\r\n // padding 和 spacing 默认 2\r\n if (isNaN(padding)) {\r\n padding = 2\r\n }\r\n if (isNaN(spacing)) {\r\n spacing = 2\r\n }\r\n }\r\n if (border) {\r\n attrs.style += ';border:' + border + 'px solid gray'\r\n }\r\n if (node.flag && node.c) {\r\n // 有 colspan 或 rowspan 且含有链接的表格通过 grid 布局实现\r\n styleObj.display = 'grid'\r\n if (spacing) {\r\n styleObj['grid-gap'] = spacing + 'px'\r\n styleObj.padding = spacing + 'px'\r\n } else if (border) {\r\n // 无间隔的情况下避免边框重叠\r\n attrs.style += ';border-left:0;border-top:0'\r\n }\r\n\r\n const width = [] // 表格的列宽\r\n const trList = [] // tr 列表\r\n const cells = [] // 保存新的单元格\r\n const map = {}; // 被合并单元格占用的格子\r\n\r\n (function traversal (nodes) {\r\n for (let i = 0; i < nodes.length; i++) {\r\n if (nodes[i].name === 'tr') {\r\n trList.push(nodes[i])\r\n } else {\r\n traversal(nodes[i].children || [])\r\n }\r\n }\r\n })(children)\r\n\r\n for (let row = 1; row <= trList.length; row++) {\r\n let col = 1\r\n for (let j = 0; j < trList[row - 1].children.length; j++, col++) {\r\n const td = trList[row - 1].children[j]\r\n if (td.name === 'td' || td.name === 'th') {\r\n // 这个格子被上面的单元格占用,则列号++\r\n while (map[row + '.' + col]) {\r\n col++\r\n }\r\n let style = td.attrs.style || ''\r\n const start = style.indexOf('width') ? style.indexOf(';width') : 0\r\n // 提取出 td 的宽度\r\n if (start !== -1) {\r\n let end = style.indexOf(';', start + 6)\r\n if (end === -1) {\r\n end = style.length\r\n }\r\n if (!td.attrs.colspan) {\r\n width[col] = style.substring(start ? start + 7 : 6, end)\r\n }\r\n style = style.substr(0, start) + style.substr(end)\r\n }\r\n style += (border ? `;border:${border}px solid gray` + (spacing ? '' : ';border-right:0;border-bottom:0') : '') + (padding ? `;padding:${padding}px` : '')\r\n // 处理列合并\r\n if (td.attrs.colspan) {\r\n style += `;grid-column-start:${col};grid-column-end:${col + parseInt(td.attrs.colspan)}`\r\n if (!td.attrs.rowspan) {\r\n style += `;grid-row-start:${row};grid-row-end:${row + 1}`\r\n }\r\n col += parseInt(td.attrs.colspan) - 1\r\n }\r\n // 处理行合并\r\n if (td.attrs.rowspan) {\r\n style += `;grid-row-start:${row};grid-row-end:${row + parseInt(td.attrs.rowspan)}`\r\n if (!td.attrs.colspan) {\r\n style += `;grid-column-start:${col};grid-column-end:${col + 1}`\r\n }\r\n // 记录下方单元格被占用\r\n for (let rowspan = 1; rowspan < td.attrs.rowspan; rowspan++) {\r\n for (let colspan = 0; colspan < (td.attrs.colspan || 1); colspan++) {\r\n map[(row + rowspan) + '.' + (col - colspan)] = 1\r\n }\r\n }\r\n }\r\n if (style) {\r\n td.attrs.style = style\r\n }\r\n cells.push(td)\r\n }\r\n }\r\n if (row === 1) {\r\n let temp = ''\r\n for (let i = 1; i < col; i++) {\r\n temp += (width[i] ? width[i] : 'auto') + ' '\r\n }\r\n styleObj['grid-template-columns'] = temp\r\n }\r\n }\r\n node.children = cells\r\n } else {\r\n // 没有使用合并单元格的表格通过 table 布局实现\r\n if (node.c) {\r\n styleObj.display = 'table'\r\n }\r\n if (!isNaN(spacing)) {\r\n styleObj['border-spacing'] = spacing + 'px'\r\n }\r\n if (border || padding) {\r\n // 遍历\r\n (function traversal (nodes) {\r\n for (let i = 0; i < nodes.length; i++) {\r\n const td = nodes[i]\r\n if (td.name === 'th' || td.name === 'td') {\r\n if (border) {\r\n td.attrs.style = `border:${border}px solid gray;${td.attrs.style || ''}`\r\n }\r\n if (padding) {\r\n td.attrs.style = `padding:${padding}px;${td.attrs.style || ''}`\r\n }\r\n } else if (td.children) {\r\n traversal(td.children)\r\n }\r\n }\r\n })(children)\r\n }\r\n }\r\n // 给表格添加一个单独的横向滚动层\r\n if (this.options.scrollTable && !(attrs.style || '').includes('inline')) {\r\n const table = Object.assign({}, node)\r\n node.name = 'div'\r\n node.attrs = {\r\n style: 'overflow:auto'\r\n }\r\n node.children = [table]\r\n attrs = table.attrs\r\n }\r\n } else if ((node.name === 'td' || node.name === 'th') && (attrs.colspan || attrs.rowspan)) {\r\n for (let i = this.stack.length; i--;) {\r\n if (this.stack[i].name === 'table') {\r\n this.stack[i].flag = 1 // 指示含有合并单元格\r\n break\r\n }\r\n }\r\n } else if (node.name === 'ruby') {\r\n // 转换 ruby\r\n node.name = 'span'\r\n for (let i = 0; i < children.length - 1; i++) {\r\n if (children[i].type === 'text' && children[i + 1].name === 'rt') {\r\n children[i] = {\r\n name: 'div',\r\n attrs: {\r\n style: 'display:inline-block;text-align:center'\r\n },\r\n children: [{\r\n name: 'div',\r\n attrs: {\r\n style: 'font-size:50%;' + (children[i + 1].attrs.style || '')\r\n },\r\n children: children[i + 1].children\r\n }, children[i]]\r\n }\r\n children.splice(i + 1, 1)\r\n }\r\n }\r\n } else if (node.c) {\r\n node.c = 2\r\n for (let i = node.children.length; i--;) {\r\n if (!node.children[i].c || node.children[i].name === 'table') {\r\n node.c = 1\r\n }\r\n }\r\n }\r\n\r\n if ((styleObj.display || '').includes('flex') && !node.c) {\r\n for (let i = children.length; i--;) {\r\n const item = children[i]\r\n if (item.f) {\r\n item.attrs.style = (item.attrs.style || '') + item.f\r\n item.f = undefined\r\n }\r\n }\r\n }\r\n // flex 布局时部分样式需要提取到 rich-text 外层\r\n const flex = parent && (parent.attrs.style || '').includes('flex')\r\n\r\n // 检查基础库版本 virtualHost 是否可用\r\n && !(node.c && wx.getNFCAdapter) // eslint-disable-line\r\n\r\n\r\n\r\n\r\n if (flex) {\r\n node.f = ';max-width:100%'\r\n }\r\n\r\n\r\n for (const key in styleObj) {\r\n if (styleObj[key]) {\r\n const val = `;${key}:${styleObj[key].replace(' !important', '')}`\r\n\r\n if (flex && ((key.includes('flex') && key !== 'flex-direction') || key === 'align-self' || styleObj[key][0] === '-' || (key === 'width' && val.includes('%')))) {\r\n node.f += val\r\n if (key === 'width') {\r\n attrs.style += ';width:100%'\r\n }\r\n } else {\r\n attrs.style += val\r\n }\r\n }\r\n }\r\n attrs.style = attrs.style.substr(1) || undefined\r\n}\r\n\r\n/**\r\n * @description 解析到文本\r\n * @param {String} text 文本内容\r\n */\r\nParser.prototype.onText = function (text) {\r\n if (!this.pre) {\r\n // 合并空白符\r\n let trim = ''\r\n let flag\r\n for (let i = 0, len = text.length; i < len; i++) {\r\n if (!blankChar[text[i]]) {\r\n trim += text[i]\r\n } else {\r\n if (trim[trim.length - 1] !== ' ') {\r\n trim += ' '\r\n }\r\n if (text[i] === '\\n' && !flag) {\r\n flag = true\r\n }\r\n }\r\n }\r\n // 去除含有换行符的空串\r\n if (trim === ' ' && flag) return\r\n text = trim\r\n }\r\n const node = Object.create(null)\r\n node.type = 'text'\r\n node.text = decodeEntity(text)\r\n if (this.hook(node)) {\r\n\r\n if (this.options.selectable === 'force' && system.includes('iOS')) {\r\n this.expose()\r\n node.us = 'T'\r\n }\r\n\r\n const siblings = this.stack.length ? this.stack[this.stack.length - 1].children : this.nodes\r\n siblings.push(node)\r\n }\r\n}\r\n\r\n/**\r\n * @description html 词法分析器\r\n * @param {Object} handler 高层处理器\r\n */\r\nfunction Lexer (handler) {\r\n this.handler = handler\r\n}\r\n\r\n/**\r\n * @description 执行解析\r\n * @param {String} content 要解析的文本\r\n */\r\nLexer.prototype.parse = function (content) {\r\n this.content = content || ''\r\n this.i = 0 // 标记解析位置\r\n this.start = 0 // 标记一个单词的开始位置\r\n this.state = this.text // 当前状态\r\n for (let len = this.content.length; this.i !== -1 && this.i < len;) {\r\n this.state()\r\n }\r\n}\r\n\r\n/**\r\n * @description 检查标签是否闭合\r\n * @param {String} method 如果闭合要进行的操作\r\n * @returns {Boolean} 是否闭合\r\n * @private\r\n */\r\nLexer.prototype.checkClose = function (method) {\r\n const selfClose = this.content[this.i] === '/'\r\n if (this.content[this.i] === '>' || (selfClose && this.content[this.i + 1] === '>')) {\r\n if (method) {\r\n this.handler[method](this.content.substring(this.start, this.i))\r\n }\r\n this.i += selfClose ? 2 : 1\r\n this.start = this.i\r\n this.handler.onOpenTag(selfClose)\r\n if (this.handler.tagName === 'script') {\r\n this.i = this.content.indexOf('', this.i)\r\n if (this.i !== -1) {\r\n this.i += 2\r\n this.start = this.i\r\n }\r\n this.state = this.endTag\r\n } else {\r\n this.state = this.text\r\n }\r\n return true\r\n }\r\n return false\r\n}\r\n\r\n/**\r\n * @description 文本状态\r\n * @private\r\n */\r\nLexer.prototype.text = function () {\r\n this.i = this.content.indexOf('<', this.i) // 查找最近的标签\r\n if (this.i === -1) {\r\n // 没有标签了\r\n if (this.start < this.content.length) {\r\n this.handler.onText(this.content.substring(this.start, this.content.length))\r\n }\r\n return\r\n }\r\n const c = this.content[this.i + 1]\r\n if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) {\r\n // 标签开头\r\n if (this.start !== this.i) {\r\n this.handler.onText(this.content.substring(this.start, this.i))\r\n }\r\n this.start = ++this.i\r\n this.state = this.tagName\r\n } else if (c === '/' || c === '!' || c === '?') {\r\n if (this.start !== this.i) {\r\n this.handler.onText(this.content.substring(this.start, this.i))\r\n }\r\n const next = this.content[this.i + 2]\r\n if (c === '/' && ((next >= 'a' && next <= 'z') || (next >= 'A' && next <= 'Z'))) {\r\n // 标签结尾\r\n this.i += 2\r\n this.start = this.i\r\n this.state = this.endTag\r\n return\r\n }\r\n // 处理注释\r\n let end = '-->'\r\n if (c !== '!' || this.content[this.i + 2] !== '-' || this.content[this.i + 3] !== '-') {\r\n end = '>'\r\n }\r\n this.i = this.content.indexOf(end, this.i)\r\n if (this.i !== -1) {\r\n this.i += end.length\r\n this.start = this.i\r\n }\r\n } else {\r\n this.i++\r\n }\r\n}\r\n\r\n/**\r\n * @description 标签名状态\r\n * @private\r\n */\r\nLexer.prototype.tagName = function () {\r\n if (blankChar[this.content[this.i]]) {\r\n // 解析到标签名\r\n this.handler.onTagName(this.content.substring(this.start, this.i))\r\n while (blankChar[this.content[++this.i]]);\r\n if (this.i < this.content.length && !this.checkClose()) {\r\n this.start = this.i\r\n this.state = this.attrName\r\n }\r\n } else if (!this.checkClose('onTagName')) {\r\n this.i++\r\n }\r\n}\r\n\r\n/**\r\n * @description 属性名状态\r\n * @private\r\n */\r\nLexer.prototype.attrName = function () {\r\n let c = this.content[this.i]\r\n if (blankChar[c] || c === '=') {\r\n // 解析到属性名\r\n this.handler.onAttrName(this.content.substring(this.start, this.i))\r\n let needVal = c === '='\r\n const len = this.content.length\r\n while (++this.i < len) {\r\n c = this.content[this.i]\r\n if (!blankChar[c]) {\r\n if (this.checkClose()) return\r\n if (needVal) {\r\n // 等号后遇到第一个非空字符\r\n this.start = this.i\r\n this.state = this.attrVal\r\n return\r\n }\r\n if (this.content[this.i] === '=') {\r\n needVal = true\r\n } else {\r\n this.start = this.i\r\n this.state = this.attrName\r\n return\r\n }\r\n }\r\n }\r\n } else if (!this.checkClose('onAttrName')) {\r\n this.i++\r\n }\r\n}\r\n\r\n/**\r\n * @description 属性值状态\r\n * @private\r\n */\r\nLexer.prototype.attrVal = function () {\r\n const c = this.content[this.i]\r\n const len = this.content.length\r\n if (c === '\"' || c === \"'\") {\r\n // 有冒号的属性\r\n this.start = ++this.i\r\n this.i = this.content.indexOf(c, this.i)\r\n if (this.i === -1) return\r\n this.handler.onAttrVal(this.content.substring(this.start, this.i))\r\n } else {\r\n // 没有冒号的属性\r\n for (; this.i < len; this.i++) {\r\n if (blankChar[this.content[this.i]]) {\r\n this.handler.onAttrVal(this.content.substring(this.start, this.i))\r\n break\r\n } else if (this.checkClose('onAttrVal')) return\r\n }\r\n }\r\n while (blankChar[this.content[++this.i]]);\r\n if (this.i < len && !this.checkClose()) {\r\n this.start = this.i\r\n this.state = this.attrName\r\n }\r\n}\r\n\r\n/**\r\n * @description 结束标签状态\r\n * @returns {String} 结束的标签名\r\n * @private\r\n */\r\nLexer.prototype.endTag = function () {\r\n const c = this.content[this.i]\r\n if (blankChar[c] || c === '>' || c === '/') {\r\n this.handler.onCloseTag(this.content.substring(this.start, this.i))\r\n if (c !== '>') {\r\n this.i = this.content.indexOf('>', this.i)\r\n if (this.i === -1) return\r\n }\r\n this.start = ++this.i\r\n this.state = this.text\r\n } else {\r\n this.i++\r\n }\r\n}\r\n\r\nmodule.exports = Parser\r\n","const isArray = Array.isArray;\r\nconst isObject = (val) => val !== null && typeof val === 'object';\r\nconst defaultDelimiters = ['{', '}'];\r\nclass BaseFormatter {\r\n constructor() {\r\n this._caches = Object.create(null);\r\n }\r\n interpolate(message, values, delimiters = defaultDelimiters) {\r\n if (!values) {\r\n return [message];\r\n }\r\n let tokens = this._caches[message];\r\n if (!tokens) {\r\n tokens = parse(message, delimiters);\r\n this._caches[message] = tokens;\r\n }\r\n return compile(tokens, values);\r\n }\r\n}\r\nconst RE_TOKEN_LIST_VALUE = /^(?:\\d)+/;\r\nconst RE_TOKEN_NAMED_VALUE = /^(?:\\w)+/;\r\nfunction parse(format, [startDelimiter, endDelimiter]) {\r\n const tokens = [];\r\n let position = 0;\r\n let text = '';\r\n while (position < format.length) {\r\n let char = format[position++];\r\n if (char === startDelimiter) {\r\n if (text) {\r\n tokens.push({ type: 'text', value: text });\r\n }\r\n text = '';\r\n let sub = '';\r\n char = format[position++];\r\n while (char !== undefined && char !== endDelimiter) {\r\n sub += char;\r\n char = format[position++];\r\n }\r\n const isClosed = char === endDelimiter;\r\n const type = RE_TOKEN_LIST_VALUE.test(sub)\r\n ? 'list'\r\n : isClosed && RE_TOKEN_NAMED_VALUE.test(sub)\r\n ? 'named'\r\n : 'unknown';\r\n tokens.push({ value: sub, type });\r\n }\r\n // else if (char === '%') {\r\n // // when found rails i18n syntax, skip text capture\r\n // if (format[position] !== '{') {\r\n // text += char\r\n // }\r\n // }\r\n else {\r\n text += char;\r\n }\r\n }\r\n text && tokens.push({ type: 'text', value: text });\r\n return tokens;\r\n}\r\nfunction compile(tokens, values) {\r\n const compiled = [];\r\n let index = 0;\r\n const mode = isArray(values)\r\n ? 'list'\r\n : isObject(values)\r\n ? 'named'\r\n : 'unknown';\r\n if (mode === 'unknown') {\r\n return compiled;\r\n }\r\n while (index < tokens.length) {\r\n const token = tokens[index];\r\n switch (token.type) {\r\n case 'text':\r\n compiled.push(token.value);\r\n break;\r\n case 'list':\r\n compiled.push(values[parseInt(token.value, 10)]);\r\n break;\r\n case 'named':\r\n if (mode === 'named') {\r\n compiled.push(values[token.value]);\r\n }\r\n else {\r\n if (process.env.NODE_ENV !== 'production') {\r\n console.warn(`Type of token '${token.type}' and format of value '${mode}' don't match!`);\r\n }\r\n }\r\n break;\r\n case 'unknown':\r\n if (process.env.NODE_ENV !== 'production') {\r\n console.warn(`Detect 'unknown' type of token!`);\r\n }\r\n break;\r\n }\r\n index++;\r\n }\r\n return compiled;\r\n}\r\n\r\nconst LOCALE_ZH_HANS = 'zh-Hans';\r\nconst LOCALE_ZH_HANT = 'zh-Hant';\r\nconst LOCALE_EN = 'en';\r\nconst LOCALE_FR = 'fr';\r\nconst LOCALE_ES = 'es';\r\nconst hasOwnProperty = Object.prototype.hasOwnProperty;\r\nconst hasOwn = (val, key) => hasOwnProperty.call(val, key);\r\nconst defaultFormatter = new BaseFormatter();\r\nfunction include(str, parts) {\r\n return !!parts.find((part) => str.indexOf(part) !== -1);\r\n}\r\nfunction startsWith(str, parts) {\r\n return parts.find((part) => str.indexOf(part) === 0);\r\n}\r\nfunction normalizeLocale(locale, messages) {\r\n if (!locale) {\r\n return;\r\n }\r\n locale = locale.trim().replace(/_/g, '-');\r\n if (messages && messages[locale]) {\r\n return locale;\r\n }\r\n locale = locale.toLowerCase();\r\n if (locale.indexOf('zh') === 0) {\r\n if (locale.indexOf('-hans') > -1) {\r\n return LOCALE_ZH_HANS;\r\n }\r\n if (locale.indexOf('-hant') > -1) {\r\n return LOCALE_ZH_HANT;\r\n }\r\n if (include(locale, ['-tw', '-hk', '-mo', '-cht'])) {\r\n return LOCALE_ZH_HANT;\r\n }\r\n return LOCALE_ZH_HANS;\r\n }\r\n const lang = startsWith(locale, [LOCALE_EN, LOCALE_FR, LOCALE_ES]);\r\n if (lang) {\r\n return lang;\r\n }\r\n}\r\nclass I18n {\r\n constructor({ locale, fallbackLocale, messages, watcher, formater, }) {\r\n this.locale = LOCALE_EN;\r\n this.fallbackLocale = LOCALE_EN;\r\n this.message = {};\r\n this.messages = {};\r\n this.watchers = [];\r\n if (fallbackLocale) {\r\n this.fallbackLocale = fallbackLocale;\r\n }\r\n this.formater = formater || defaultFormatter;\r\n this.messages = messages || {};\r\n this.setLocale(locale || LOCALE_EN);\r\n if (watcher) {\r\n this.watchLocale(watcher);\r\n }\r\n }\r\n setLocale(locale) {\r\n const oldLocale = this.locale;\r\n this.locale = normalizeLocale(locale, this.messages) || this.fallbackLocale;\r\n if (!this.messages[this.locale]) {\r\n // 可能初始化时不存在\r\n this.messages[this.locale] = {};\r\n }\r\n this.message = this.messages[this.locale];\r\n // 仅发生变化时,通知\r\n if (oldLocale !== this.locale) {\r\n this.watchers.forEach((watcher) => {\r\n watcher(this.locale, oldLocale);\r\n });\r\n }\r\n }\r\n getLocale() {\r\n return this.locale;\r\n }\r\n watchLocale(fn) {\r\n const index = this.watchers.push(fn) - 1;\r\n return () => {\r\n this.watchers.splice(index, 1);\r\n };\r\n }\r\n add(locale, message, override = true) {\r\n const curMessages = this.messages[locale];\r\n if (curMessages) {\r\n if (override) {\r\n Object.assign(curMessages, message);\r\n }\r\n else {\r\n Object.keys(message).forEach((key) => {\r\n if (!hasOwn(curMessages, key)) {\r\n curMessages[key] = message[key];\r\n }\r\n });\r\n }\r\n }\r\n else {\r\n this.messages[locale] = message;\r\n }\r\n }\r\n f(message, values, delimiters) {\r\n return this.formater.interpolate(message, values, delimiters).join('');\r\n }\r\n t(key, locale, values) {\r\n let message = this.message;\r\n if (typeof locale === 'string') {\r\n locale = normalizeLocale(locale, this.messages);\r\n locale && (message = this.messages[locale]);\r\n }\r\n else {\r\n values = locale;\r\n }\r\n if (!hasOwn(message, key)) {\r\n console.warn(`Cannot translate the value of keypath ${key}. Use the value of keypath as default.`);\r\n return key;\r\n }\r\n return this.formater.interpolate(message[key], values).join('');\r\n }\r\n}\r\n\r\nfunction watchAppLocale(appVm, i18n) {\r\n // 需要保证 watch 的触发在组件渲染之前\r\n if (appVm.$watchLocale) {\r\n // vue2\r\n appVm.$watchLocale((newLocale) => {\r\n i18n.setLocale(newLocale);\r\n });\r\n }\r\n else {\r\n appVm.$watch(() => appVm.$locale, (newLocale) => {\r\n i18n.setLocale(newLocale);\r\n });\r\n }\r\n}\r\nfunction getDefaultLocale() {\r\n if (typeof uni !== 'undefined' && uni.getLocale) {\r\n return uni.getLocale();\r\n }\r\n // 小程序平台,uni 和 uni-i18n 互相引用,导致访问不到 uni,故在 global 上挂了 getLocale\r\n if (typeof global !== 'undefined' && global.getLocale) {\r\n return global.getLocale();\r\n }\r\n return LOCALE_EN;\r\n}\r\nfunction initVueI18n(locale, messages = {}, fallbackLocale, watcher) {\r\n // 兼容旧版本入参\r\n if (typeof locale !== 'string') {\r\n [locale, messages] = [\r\n messages,\r\n locale,\r\n ];\r\n }\r\n if (typeof locale !== 'string') {\r\n // 因为小程序平台,uni-i18n 和 uni 互相引用,导致此时访问 uni 时,为 undefined\r\n locale = getDefaultLocale();\r\n }\r\n if (typeof fallbackLocale !== 'string') {\r\n fallbackLocale =\r\n (typeof __uniConfig !== 'undefined' && __uniConfig.fallbackLocale) ||\r\n LOCALE_EN;\r\n }\r\n const i18n = new I18n({\r\n locale,\r\n fallbackLocale,\r\n messages,\r\n watcher,\r\n });\r\n let t = (key, values) => {\r\n if (typeof getApp !== 'function') {\r\n // app view\r\n /* eslint-disable no-func-assign */\r\n t = function (key, values) {\r\n return i18n.t(key, values);\r\n };\r\n }\r\n else {\r\n let isWatchedAppLocale = false;\r\n t = function (key, values) {\r\n const appVm = getApp().$vm;\r\n // 可能$vm还不存在,比如在支付宝小程序中,组件定义较早,在props的default里使用了t()函数(如uni-goods-nav),此时app还未初始化\r\n // options: {\r\n // \ttype: Array,\r\n // \tdefault () {\r\n // \t\treturn [{\r\n // \t\t\ticon: 'shop',\r\n // \t\t\ttext: t(\"uni-goods-nav.options.shop\"),\r\n // \t\t}, {\r\n // \t\t\ticon: 'cart',\r\n // \t\t\ttext: t(\"uni-goods-nav.options.cart\")\r\n // \t\t}]\r\n // \t}\r\n // },\r\n if (appVm) {\r\n // 触发响应式\r\n appVm.$locale;\r\n if (!isWatchedAppLocale) {\r\n isWatchedAppLocale = true;\r\n watchAppLocale(appVm, i18n);\r\n }\r\n }\r\n return i18n.t(key, values);\r\n };\r\n }\r\n return t(key, values);\r\n };\r\n return {\r\n i18n,\r\n f(message, values, delimiters) {\r\n return i18n.f(message, values, delimiters);\r\n },\r\n t(key, values) {\r\n return t(key, values);\r\n },\r\n add(locale, message, override = true) {\r\n return i18n.add(locale, message, override);\r\n },\r\n watch(fn) {\r\n return i18n.watchLocale(fn);\r\n },\r\n getLocale() {\r\n return i18n.getLocale();\r\n },\r\n setLocale(newLocale) {\r\n return i18n.setLocale(newLocale);\r\n },\r\n };\r\n}\r\n\r\nconst isString = (val) => typeof val === 'string';\r\nlet formater;\r\nfunction hasI18nJson(jsonObj, delimiters) {\r\n if (!formater) {\r\n formater = new BaseFormatter();\r\n }\r\n return walkJsonObj(jsonObj, (jsonObj, key) => {\r\n const value = jsonObj[key];\r\n if (isString(value)) {\r\n if (isI18nStr(value, delimiters)) {\r\n return true;\r\n }\r\n }\r\n else {\r\n return hasI18nJson(value, delimiters);\r\n }\r\n });\r\n}\r\nfunction parseI18nJson(jsonObj, values, delimiters) {\r\n if (!formater) {\r\n formater = new BaseFormatter();\r\n }\r\n walkJsonObj(jsonObj, (jsonObj, key) => {\r\n const value = jsonObj[key];\r\n if (isString(value)) {\r\n if (isI18nStr(value, delimiters)) {\r\n jsonObj[key] = compileStr(value, values, delimiters);\r\n }\r\n }\r\n else {\r\n parseI18nJson(value, values, delimiters);\r\n }\r\n });\r\n return jsonObj;\r\n}\r\nfunction compileI18nJsonStr(jsonStr, { locale, locales, delimiters, }) {\r\n if (!isI18nStr(jsonStr, delimiters)) {\r\n return jsonStr;\r\n }\r\n if (!formater) {\r\n formater = new BaseFormatter();\r\n }\r\n const localeValues = [];\r\n Object.keys(locales).forEach((name) => {\r\n if (name !== locale) {\r\n localeValues.push({\r\n locale: name,\r\n values: locales[name],\r\n });\r\n }\r\n });\r\n localeValues.unshift({ locale, values: locales[locale] });\r\n try {\r\n return JSON.stringify(compileJsonObj(JSON.parse(jsonStr), localeValues, delimiters), null, 2);\r\n }\r\n catch (e) { }\r\n return jsonStr;\r\n}\r\nfunction isI18nStr(value, delimiters) {\r\n return value.indexOf(delimiters[0]) > -1;\r\n}\r\nfunction compileStr(value, values, delimiters) {\r\n return formater.interpolate(value, values, delimiters).join('');\r\n}\r\nfunction compileValue(jsonObj, key, localeValues, delimiters) {\r\n const value = jsonObj[key];\r\n if (isString(value)) {\r\n // 存在国际化\r\n if (isI18nStr(value, delimiters)) {\r\n jsonObj[key] = compileStr(value, localeValues[0].values, delimiters);\r\n if (localeValues.length > 1) {\r\n // 格式化国际化语言\r\n const valueLocales = (jsonObj[key + 'Locales'] = {});\r\n localeValues.forEach((localValue) => {\r\n valueLocales[localValue.locale] = compileStr(value, localValue.values, delimiters);\r\n });\r\n }\r\n }\r\n }\r\n else {\r\n compileJsonObj(value, localeValues, delimiters);\r\n }\r\n}\r\nfunction compileJsonObj(jsonObj, localeValues, delimiters) {\r\n walkJsonObj(jsonObj, (jsonObj, key) => {\r\n compileValue(jsonObj, key, localeValues, delimiters);\r\n });\r\n return jsonObj;\r\n}\r\nfunction walkJsonObj(jsonObj, walk) {\r\n if (isArray(jsonObj)) {\r\n for (let i = 0; i < jsonObj.length; i++) {\r\n if (walk(jsonObj, i)) {\r\n return true;\r\n }\r\n }\r\n }\r\n else if (isObject(jsonObj)) {\r\n for (const key in jsonObj) {\r\n if (walk(jsonObj, key)) {\r\n return true;\r\n }\r\n }\r\n }\r\n return false;\r\n}\r\n\r\nfunction resolveLocale(locales) {\r\n return (locale) => {\r\n if (!locale) {\r\n return locale;\r\n }\r\n locale = normalizeLocale(locale) || locale;\r\n return resolveLocaleChain(locale).find((locale) => locales.indexOf(locale) > -1);\r\n };\r\n}\r\nfunction resolveLocaleChain(locale) {\r\n const chain = [];\r\n const tokens = locale.split('-');\r\n while (tokens.length) {\r\n chain.push(tokens.join('-'));\r\n tokens.pop();\r\n }\r\n return chain;\r\n}\r\n\r\nexport { BaseFormatter as Formatter, I18n, LOCALE_EN, LOCALE_ES, LOCALE_FR, LOCALE_ZH_HANS, LOCALE_ZH_HANT, compileI18nJsonStr, hasI18nJson, initVueI18n, isI18nStr, isString, normalizeLocale, parseI18nJson, resolveLocale };\r\n","function isValidPhone(str) {\n var myreg = /^[1][3,4,5,7,8][0-9]{9}$/;\n\n if (!myreg.test(str)) {\n return false;\n } else {\n return true;\n }\n}\n\nmodule.exports = {\n isValidPhone\n};\n","var areaList = {\n province_list: {\n 110000: '北京市',\n 120000: '天津市',\n 130000: '河北省',\n 140000: '山西省',\n 150000: '内蒙古自治区',\n 210000: '辽宁省',\n 220000: '吉林省',\n 230000: '黑龙江省',\n 310000: '上海市',\n 320000: '江苏省',\n 330000: '浙江省',\n 340000: '安徽省',\n 350000: '福建省',\n 360000: '江西省',\n 370000: '山东省',\n 410000: '河南省',\n 420000: '湖北省',\n 430000: '湖南省',\n 440000: '广东省',\n 450000: '广西壮族自治区',\n 460000: '海南省',\n 500000: '重庆市',\n 510000: '四川省',\n 520000: '贵州省',\n 530000: '云南省',\n 540000: '西藏自治区',\n 610000: '陕西省',\n 620000: '甘肃省',\n 630000: '青海省',\n 640000: '宁夏回族自治区',\n 650000: '新疆维吾尔自治区'\n },\n city_list: {\n 110100: '市辖区',\n 120100: '市辖区',\n 130100: '石家庄市',\n 130200: '唐山市',\n 130300: '秦皇岛市',\n 130400: '邯郸市',\n 130500: '邢台市',\n 130600: '保定市',\n 130700: '张家口市',\n 130800: '承德市',\n 130900: '沧州市',\n 131000: '廊坊市',\n 131100: '衡水市',\n 139000: '省直辖县级行政区划',\n 140100: '太原市',\n 140200: '大同市',\n 140300: '阳泉市',\n 140400: '长治市',\n 140500: '晋城市',\n 140600: '朔州市',\n 140700: '晋中市',\n 140800: '运城市',\n 140900: '忻州市',\n 141000: '临汾市',\n 141100: '吕梁市',\n 150100: '呼和浩特市',\n 150200: '包头市',\n 150300: '乌海市',\n 150400: '赤峰市',\n 150500: '通辽市',\n 150600: '鄂尔多斯市',\n 150700: '呼伦贝尔市',\n 150800: '巴彦淖尔市',\n 150900: '乌兰察布市',\n 152200: '兴安盟',\n 152500: '锡林郭勒盟',\n 152900: '阿拉善盟',\n 210100: '沈阳市',\n 210200: '大连市',\n 210300: '鞍山市',\n 210400: '抚顺市',\n 210500: '本溪市',\n 210600: '丹东市',\n 210700: '锦州市',\n 210800: '营口市',\n 210900: '阜新市',\n 211000: '辽阳市',\n 211100: '盘锦市',\n 211200: '铁岭市',\n 211300: '朝阳市',\n 211400: '葫芦岛市',\n 220100: '长春市',\n 220200: '吉林市',\n 220300: '四平市',\n 220400: '辽源市',\n 220500: '通化市',\n 220600: '白山市',\n 220700: '松原市',\n 220800: '白城市',\n 222400: '延边朝鲜族自治州',\n 230100: '哈尔滨市',\n 230200: '齐齐哈尔市',\n 230300: '鸡西市',\n 230400: '鹤岗市',\n 230500: '双鸭山市',\n 230600: '大庆市',\n 230700: '伊春市',\n 230800: '佳木斯市',\n 230900: '七台河市',\n 231000: '牡丹江市',\n 231100: '黑河市',\n 231200: '绥化市',\n 232700: '大兴安岭地区',\n 310100: '市辖区',\n 320100: '南京市',\n 320200: '无锡市',\n 320300: '徐州市',\n 320400: '常州市',\n 320500: '苏州市',\n 320600: '南通市',\n 320700: '连云港市',\n 320800: '淮安市',\n 320900: '盐城市',\n 321000: '扬州市',\n 321100: '镇江市',\n 321200: '泰州市',\n 321300: '宿迁市',\n 330100: '杭州市',\n 330200: '宁波市',\n 330300: '温州市',\n 330400: '嘉兴市',\n 330500: '湖州市',\n 330600: '绍兴市',\n 330700: '金华市',\n 330800: '衢州市',\n 330900: '舟山市',\n 331000: '台州市',\n 331100: '丽水市',\n 340100: '合肥市',\n 340200: '芜湖市',\n 340300: '蚌埠市',\n 340400: '淮南市',\n 340500: '马鞍山市',\n 340600: '淮北市',\n 340700: '铜陵市',\n 340800: '安庆市',\n 341000: '黄山市',\n 341100: '滁州市',\n 341200: '阜阳市',\n 341300: '宿州市',\n 341500: '六安市',\n 341600: '亳州市',\n 341700: '池州市',\n 341800: '宣城市',\n 350100: '福州市',\n 350200: '厦门市',\n 350300: '莆田市',\n 350400: '三明市',\n 350500: '泉州市',\n 350600: '漳州市',\n 350700: '南平市',\n 350800: '龙岩市',\n 350900: '宁德市',\n 360100: '南昌市',\n 360200: '景德镇市',\n 360300: '萍乡市',\n 360400: '九江市',\n 360500: '新余市',\n 360600: '鹰潭市',\n 360700: '赣州市',\n 360800: '吉安市',\n 360900: '宜春市',\n 361000: '抚州市',\n 361100: '上饶市',\n 370100: '济南市',\n 370200: '青岛市',\n 370300: '淄博市',\n 370400: '枣庄市',\n 370500: '东营市',\n 370600: '烟台市',\n 370700: '潍坊市',\n 370800: '济宁市',\n 370900: '泰安市',\n 371000: '威海市',\n 371100: '日照市',\n 371200: '莱芜市',\n 371300: '临沂市',\n 371400: '德州市',\n 371500: '聊城市',\n 371600: '滨州市',\n 371700: '菏泽市',\n 410100: '郑州市',\n 410200: '开封市',\n 410300: '洛阳市',\n 410400: '平顶山市',\n 410500: '安阳市',\n 410600: '鹤壁市',\n 410700: '新乡市',\n 410800: '焦作市',\n 410900: '濮阳市',\n 411000: '许昌市',\n 411100: '漯河市',\n 411200: '三门峡市',\n 411300: '南阳市',\n 411400: '商丘市',\n 411500: '信阳市',\n 411600: '周口市',\n 411700: '驻马店市',\n 419000: '省直辖县级行政区划',\n 420100: '武汉市',\n 420200: '黄石市',\n 420300: '十堰市',\n 420500: '宜昌市',\n 420600: '襄阳市',\n 420700: '鄂州市',\n 420800: '荆门市',\n 420900: '孝感市',\n 421000: '荆州市',\n 421100: '黄冈市',\n 421200: '咸宁市',\n 421300: '随州市',\n 422800: '恩施土家族苗族自治州',\n 429000: '省直辖县级行政区划',\n 430100: '长沙市',\n 430200: '株洲市',\n 430300: '湘潭市',\n 430400: '衡阳市',\n 430500: '邵阳市',\n 430600: '岳阳市',\n 430700: '常德市',\n 430800: '张家界市',\n 430900: '益阳市',\n 431000: '郴州市',\n 431100: '永州市',\n 431200: '怀化市',\n 431300: '娄底市',\n 433100: '湘西土家族苗族自治州',\n 440100: '广州市',\n 440200: '韶关市',\n 440300: '深圳市',\n 440400: '珠海市',\n 440500: '汕头市',\n 440600: '佛山市',\n 440700: '江门市',\n 440800: '湛江市',\n 440900: '茂名市',\n 441200: '肇庆市',\n 441300: '惠州市',\n 441400: '梅州市',\n 441500: '汕尾市',\n 441600: '河源市',\n 441700: '阳江市',\n 441800: '清远市',\n 441900: '东莞市',\n 442000: '中山市',\n 445100: '潮州市',\n 445200: '揭阳市',\n 445300: '云浮市',\n 450100: '南宁市',\n 450200: '柳州市',\n 450300: '桂林市',\n 450400: '梧州市',\n 450500: '北海市',\n 450600: '防城港市',\n 450700: '钦州市',\n 450800: '贵港市',\n 450900: '玉林市',\n 451000: '百色市',\n 451100: '贺州市',\n 451200: '河池市',\n 451300: '来宾市',\n 451400: '崇左市',\n 460100: '海口市',\n 460200: '三亚市',\n 460300: '三沙市',\n 460400: '儋州市',\n 469000: '省直辖县级行政区划',\n 500100: '市辖区',\n 500200: '县',\n 510100: '成都市',\n 510300: '自贡市',\n 510400: '攀枝花市',\n 510500: '泸州市',\n 510600: '德阳市',\n 510700: '绵阳市',\n 510800: '广元市',\n 510900: '遂宁市',\n 511000: '内江市',\n 511100: '乐山市',\n 511300: '南充市',\n 511400: '眉山市',\n 511500: '宜宾市',\n 511600: '广安市',\n 511700: '达州市',\n 511800: '雅安市',\n 511900: '巴中市',\n 512000: '资阳市',\n 513200: '阿坝藏族羌族自治州',\n 513300: '甘孜藏族自治州',\n 513400: '凉山彝族自治州',\n 520100: '贵阳市',\n 520200: '六盘水市',\n 520300: '遵义市',\n 520400: '安顺市',\n 520500: '毕节市',\n 520600: '铜仁市',\n 522300: '黔西南布依族苗族自治州',\n 522600: '黔东南苗族侗族自治州',\n 522700: '黔南布依族苗族自治州',\n 530100: '昆明市',\n 530300: '曲靖市',\n 530400: '玉溪市',\n 530500: '保山市',\n 530600: '昭通市',\n 530700: '丽江市',\n 530800: '普洱市',\n 530900: '临沧市',\n 532300: '楚雄彝族自治州',\n 532500: '红河哈尼族彝族自治州',\n 532600: '文山壮族苗族自治州',\n 532800: '西双版纳傣族自治州',\n 532900: '大理白族自治州',\n 533100: '德宏傣族景颇族自治州',\n 533300: '怒江傈僳族自治州',\n 533400: '迪庆藏族自治州',\n 540100: '拉萨市',\n 540200: '日喀则市',\n 540300: '昌都市',\n 540400: '林芝市',\n 540500: '山南市',\n 542400: '那曲地区',\n 542500: '阿里地区',\n 610100: '西安市',\n 610200: '铜川市',\n 610300: '宝鸡市',\n 610400: '咸阳市',\n 610500: '渭南市',\n 610600: '延安市',\n 610700: '汉中市',\n 610800: '榆林市',\n 610900: '安康市',\n 611000: '商洛市',\n 620100: '兰州市',\n 620200: '嘉峪关市',\n 620300: '金昌市',\n 620400: '白银市',\n 620500: '天水市',\n 620600: '武威市',\n 620700: '张掖市',\n 620800: '平凉市',\n 620900: '酒泉市',\n 621000: '庆阳市',\n 621100: '定西市',\n 621200: '陇南市',\n 622900: '临夏回族自治州',\n 623000: '甘南藏族自治州',\n 630100: '西宁市',\n 630200: '海东市',\n 632200: '海北藏族自治州',\n 632300: '黄南藏族自治州',\n 632500: '海南藏族自治州',\n 632600: '果洛藏族自治州',\n 632700: '玉树藏族自治州',\n 632800: '海西蒙古族藏族自治州',\n 640100: '银川市',\n 640200: '石嘴山市',\n 640300: '吴忠市',\n 640400: '固原市',\n 640500: '中卫市',\n 650100: '乌鲁木齐市',\n 650200: '克拉玛依市',\n 650400: '吐鲁番市',\n 650500: '哈密市',\n 652300: '昌吉回族自治州',\n 652700: '博尔塔拉蒙古自治州',\n 652800: '巴音郭楞蒙古自治州',\n 652900: '阿克苏地区',\n 653000: '克孜勒苏柯尔克孜自治州',\n 653100: '喀什地区',\n 653200: '和田地区',\n 654000: '伊犁哈萨克自治州',\n 654200: '塔城地区',\n 654300: '阿勒泰地区',\n 659000: '自治区直辖县级行政区划'\n },\n county_list: {\n 110101: '东城区',\n 110102: '西城区',\n 110105: '朝阳区',\n 110106: '丰台区',\n 110107: '石景山区',\n 110108: '海淀区',\n 110109: '门头沟区',\n 110111: '房山区',\n 110112: '通州区',\n 110113: '顺义区',\n 110114: '昌平区',\n 110115: '大兴区',\n 110116: '怀柔区',\n 110117: '平谷区',\n 110118: '密云区',\n 110119: '延庆区',\n 120101: '和平区',\n 120102: '河东区',\n 120103: '河西区',\n 120104: '南开区',\n 120105: '河北区',\n 120106: '红桥区',\n 120110: '东丽区',\n 120111: '西青区',\n 120112: '津南区',\n 120113: '北辰区',\n 120114: '武清区',\n 120115: '宝坻区',\n 120116: '滨海新区',\n 120117: '宁河区',\n 120118: '静海区',\n 120119: '蓟州区',\n 130102: '长安区',\n 130104: '桥西区',\n 130105: '新华区',\n 130107: '井陉矿区',\n 130108: '裕华区',\n 130109: '藁城区',\n 130110: '鹿泉区',\n 130111: '栾城区',\n 130121: '井陉县',\n 130123: '正定县',\n 130125: '行唐县',\n 130126: '灵寿县',\n 130127: '高邑县',\n 130128: '深泽县',\n 130129: '赞皇县',\n 130130: '无极县',\n 130131: '平山县',\n 130132: '元氏县',\n 130133: '赵县',\n 130183: '晋州市',\n 130184: '新乐市',\n 130202: '路南区',\n 130203: '路北区',\n 130204: '古冶区',\n 130205: '开平区',\n 130207: '丰南区',\n 130208: '丰润区',\n 130209: '曹妃甸区',\n 130223: '滦县',\n 130224: '滦南县',\n 130225: '乐亭县',\n 130227: '迁西县',\n 130229: '玉田县',\n 130281: '遵化市',\n 130283: '迁安市',\n 130302: '海港区',\n 130303: '山海关区',\n 130304: '北戴河区',\n 130306: '抚宁区',\n 130321: '青龙满族自治县',\n 130322: '昌黎县',\n 130324: '卢龙县',\n 130402: '邯山区',\n 130403: '丛台区',\n 130404: '复兴区',\n 130406: '峰峰矿区',\n 130421: '邯郸县',\n 130423: '临漳县',\n 130424: '成安县',\n 130425: '大名县',\n 130426: '涉县',\n 130427: '磁县',\n 130428: '肥乡县',\n 130429: '永年县',\n 130430: '邱县',\n 130431: '鸡泽县',\n 130432: '广平县',\n 130433: '馆陶县',\n 130434: '魏县',\n 130435: '曲周县',\n 130481: '武安市',\n 130502: '桥东区',\n 130503: '桥西区',\n 130521: '邢台县',\n 130522: '临城县',\n 130523: '内丘县',\n 130524: '柏乡县',\n 130525: '隆尧县',\n 130526: '任县',\n 130527: '南和县',\n 130528: '宁晋县',\n 130529: '巨鹿县',\n 130530: '新河县',\n 130531: '广宗县',\n 130532: '平乡县',\n 130533: '威县',\n 130534: '清河县',\n 130535: '临西县',\n 130581: '南宫市',\n 130582: '沙河市',\n 130602: '竞秀区',\n 130606: '莲池区',\n 130607: '满城区',\n 130608: '清苑区',\n 130609: '徐水区',\n 130623: '涞水县',\n 130624: '阜平县',\n 130626: '定兴县',\n 130627: '唐县',\n 130628: '高阳县',\n 130629: '容城县',\n 130630: '涞源县',\n 130631: '望都县',\n 130632: '安新县',\n 130633: '易县',\n 130634: '曲阳县',\n 130635: '蠡县',\n 130636: '顺平县',\n 130637: '博野县',\n 130638: '雄县',\n 130681: '涿州市',\n 130683: '安国市',\n 130684: '高碑店市',\n 130702: '桥东区',\n 130703: '桥西区',\n 130705: '宣化区',\n 130706: '下花园区',\n 130708: '万全区',\n 130709: '崇礼区',\n 130722: '张北县',\n 130723: '康保县',\n 130724: '沽源县',\n 130725: '尚义县',\n 130726: '蔚县',\n 130727: '阳原县',\n 130728: '怀安县',\n 130730: '怀来县',\n 130731: '涿鹿县',\n 130732: '赤城县',\n 130802: '双桥区',\n 130803: '双滦区',\n 130804: '鹰手营子矿区',\n 130821: '承德县',\n 130822: '兴隆县',\n 130823: '平泉县',\n 130824: '滦平县',\n 130825: '隆化县',\n 130826: '丰宁满族自治县',\n 130827: '宽城满族自治县',\n 130828: '围场满族蒙古族自治县',\n 130902: '新华区',\n 130903: '运河区',\n 130921: '沧县',\n 130922: '青县',\n 130923: '东光县',\n 130924: '海兴县',\n 130925: '盐山县',\n 130926: '肃宁县',\n 130927: '南皮县',\n 130928: '吴桥县',\n 130929: '献县',\n 130930: '孟村回族自治县',\n 130981: '泊头市',\n 130982: '任丘市',\n 130983: '黄骅市',\n 130984: '河间市',\n 131002: '安次区',\n 131003: '广阳区',\n 131022: '固安县',\n 131023: '永清县',\n 131024: '香河县',\n 131025: '大城县',\n 131026: '文安县',\n 131028: '大厂回族自治县',\n 131081: '霸州市',\n 131082: '三河市',\n 131102: '桃城区',\n 131103: '冀州区',\n 131121: '枣强县',\n 131122: '武邑县',\n 131123: '武强县',\n 131124: '饶阳县',\n 131125: '安平县',\n 131126: '故城县',\n 131127: '景县',\n 131128: '阜城县',\n 131182: '深州市',\n 139001: '定州市',\n 139002: '辛集市',\n 140105: '小店区',\n 140106: '迎泽区',\n 140107: '杏花岭区',\n 140108: '尖草坪区',\n 140109: '万柏林区',\n 140110: '晋源区',\n 140121: '清徐县',\n 140122: '阳曲县',\n 140123: '娄烦县',\n 140181: '古交市',\n 140202: '城区',\n 140203: '矿区',\n 140211: '南郊区',\n 140212: '新荣区',\n 140221: '阳高县',\n 140222: '天镇县',\n 140223: '广灵县',\n 140224: '灵丘县',\n 140225: '浑源县',\n 140226: '左云县',\n 140227: '大同县',\n 140302: '城区',\n 140303: '矿区',\n 140311: '郊区',\n 140321: '平定县',\n 140322: '盂县',\n 140402: '城区',\n 140411: '郊区',\n 140421: '长治县',\n 140423: '襄垣县',\n 140424: '屯留县',\n 140425: '平顺县',\n 140426: '黎城县',\n 140427: '壶关县',\n 140428: '长子县',\n 140429: '武乡县',\n 140430: '沁县',\n 140431: '沁源县',\n 140481: '潞城市',\n 140502: '城区',\n 140521: '沁水县',\n 140522: '阳城县',\n 140524: '陵川县',\n 140525: '泽州县',\n 140581: '高平市',\n 140602: '朔城区',\n 140603: '平鲁区',\n 140621: '山阴县',\n 140622: '应县',\n 140623: '右玉县',\n 140624: '怀仁县',\n 140702: '榆次区',\n 140721: '榆社县',\n 140722: '左权县',\n 140723: '和顺县',\n 140724: '昔阳县',\n 140725: '寿阳县',\n 140726: '太谷县',\n 140727: '祁县',\n 140728: '平遥县',\n 140729: '灵石县',\n 140781: '介休市',\n 140802: '盐湖区',\n 140821: '临猗县',\n 140822: '万荣县',\n 140823: '闻喜县',\n 140824: '稷山县',\n 140825: '新绛县',\n 140826: '绛县',\n 140827: '垣曲县',\n 140828: '夏县',\n 140829: '平陆县',\n 140830: '芮城县',\n 140881: '永济市',\n 140882: '河津市',\n 140902: '忻府区',\n 140921: '定襄县',\n 140922: '五台县',\n 140923: '代县',\n 140924: '繁峙县',\n 140925: '宁武县',\n 140926: '静乐县',\n 140927: '神池县',\n 140928: '五寨县',\n 140929: '岢岚县',\n 140930: '河曲县',\n 140931: '保德县',\n 140932: '偏关县',\n 140981: '原平市',\n 141002: '尧都区',\n 141021: '曲沃县',\n 141022: '翼城县',\n 141023: '襄汾县',\n 141024: '洪洞县',\n 141025: '古县',\n 141026: '安泽县',\n 141027: '浮山县',\n 141028: '吉县',\n 141029: '乡宁县',\n 141030: '大宁县',\n 141031: '隰县',\n 141032: '永和县',\n 141033: '蒲县',\n 141034: '汾西县',\n 141081: '侯马市',\n 141082: '霍州市',\n 141102: '离石区',\n 141121: '文水县',\n 141122: '交城县',\n 141123: '兴县',\n 141124: '临县',\n 141125: '柳林县',\n 141126: '石楼县',\n 141127: '岚县',\n 141128: '方山县',\n 141129: '中阳县',\n 141130: '交口县',\n 141181: '孝义市',\n 141182: '汾阳市',\n 150102: '新城区',\n 150103: '回民区',\n 150104: '玉泉区',\n 150105: '赛罕区',\n 150121: '土默特左旗',\n 150122: '托克托县',\n 150123: '和林格尔县',\n 150124: '清水河县',\n 150125: '武川县',\n 150202: '东河区',\n 150203: '昆都仑区',\n 150204: '青山区',\n 150205: '石拐区',\n 150206: '白云鄂博矿区',\n 150207: '九原区',\n 150221: '土默特右旗',\n 150222: '固阳县',\n 150223: '达尔罕茂明安联合旗',\n 150302: '海勃湾区',\n 150303: '海南区',\n 150304: '乌达区',\n 150402: '红山区',\n 150403: '元宝山区',\n 150404: '松山区',\n 150421: '阿鲁科尔沁旗',\n 150422: '巴林左旗',\n 150423: '巴林右旗',\n 150424: '林西县',\n 150425: '克什克腾旗',\n 150426: '翁牛特旗',\n 150428: '喀喇沁旗',\n 150429: '宁城县',\n 150430: '敖汉旗',\n 150502: '科尔沁区',\n 150521: '科尔沁左翼中旗',\n 150522: '科尔沁左翼后旗',\n 150523: '开鲁县',\n 150524: '库伦旗',\n 150525: '奈曼旗',\n 150526: '扎鲁特旗',\n 150581: '霍林郭勒市',\n 150602: '东胜区',\n 150603: '康巴什区',\n 150621: '达拉特旗',\n 150622: '准格尔旗',\n 150623: '鄂托克前旗',\n 150624: '鄂托克旗',\n 150625: '杭锦旗',\n 150626: '乌审旗',\n 150627: '伊金霍洛旗',\n 150702: '海拉尔区',\n 150703: '扎赉诺尔区',\n 150721: '阿荣旗',\n 150722: '莫力达瓦达斡尔族自治旗',\n 150723: '鄂伦春自治旗',\n 150724: '鄂温克族自治旗',\n 150725: '陈巴尔虎旗',\n 150726: '新巴尔虎左旗',\n 150727: '新巴尔虎右旗',\n 150781: '满洲里市',\n 150782: '牙克石市',\n 150783: '扎兰屯市',\n 150784: '额尔古纳市',\n 150785: '根河市',\n 150802: '临河区',\n 150821: '五原县',\n 150822: '磴口县',\n 150823: '乌拉特前旗',\n 150824: '乌拉特中旗',\n 150825: '乌拉特后旗',\n 150826: '杭锦后旗',\n 150902: '集宁区',\n 150921: '卓资县',\n 150922: '化德县',\n 150923: '商都县',\n 150924: '兴和县',\n 150925: '凉城县',\n 150926: '察哈尔右翼前旗',\n 150927: '察哈尔右翼中旗',\n 150928: '察哈尔右翼后旗',\n 150929: '四子王旗',\n 150981: '丰镇市',\n 152201: '乌兰浩特市',\n 152202: '阿尔山市',\n 152221: '科尔沁右翼前旗',\n 152222: '科尔沁右翼中旗',\n 152223: '扎赉特旗',\n 152224: '突泉县',\n 152501: '二连浩特市',\n 152502: '锡林浩特市',\n 152522: '阿巴嘎旗',\n 152523: '苏尼特左旗',\n 152524: '苏尼特右旗',\n 152525: '东乌珠穆沁旗',\n 152526: '西乌珠穆沁旗',\n 152527: '太仆寺旗',\n 152528: '镶黄旗',\n 152529: '正镶白旗',\n 152530: '正蓝旗',\n 152531: '多伦县',\n 152921: '阿拉善左旗',\n 152922: '阿拉善右旗',\n 152923: '额济纳旗',\n 210102: '和平区',\n 210103: '沈河区',\n 210104: '大东区',\n 210105: '皇姑区',\n 210106: '铁西区',\n 210111: '苏家屯区',\n 210112: '浑南区',\n 210113: '沈北新区',\n 210114: '于洪区',\n 210115: '辽中区',\n 210123: '康平县',\n 210124: '法库县',\n 210181: '新民市',\n 210202: '中山区',\n 210203: '西岗区',\n 210204: '沙河口区',\n 210211: '甘井子区',\n 210212: '旅顺口区',\n 210213: '金州区',\n 210214: '普兰店区',\n 210224: '长海县',\n 210281: '瓦房店市',\n 210283: '庄河市',\n 210302: '铁东区',\n 210303: '铁西区',\n 210304: '立山区',\n 210311: '千山区',\n 210321: '台安县',\n 210323: '岫岩满族自治县',\n 210381: '海城市',\n 210402: '新抚区',\n 210403: '东洲区',\n 210404: '望花区',\n 210411: '顺城区',\n 210421: '抚顺县',\n 210422: '新宾满族自治县',\n 210423: '清原满族自治县',\n 210502: '平山区',\n 210503: '溪湖区',\n 210504: '明山区',\n 210505: '南芬区',\n 210521: '本溪满族自治县',\n 210522: '桓仁满族自治县',\n 210602: '元宝区',\n 210603: '振兴区',\n 210604: '振安区',\n 210624: '宽甸满族自治县',\n 210681: '东港市',\n 210682: '凤城市',\n 210702: '古塔区',\n 210703: '凌河区',\n 210711: '太和区',\n 210726: '黑山县',\n 210727: '义县',\n 210781: '凌海市',\n 210782: '北镇市',\n 210802: '站前区',\n 210803: '西市区',\n 210804: '鲅鱼圈区',\n 210811: '老边区',\n 210881: '盖州市',\n 210882: '大石桥市',\n 210902: '海州区',\n 210903: '新邱区',\n 210904: '太平区',\n 210905: '清河门区',\n 210911: '细河区',\n 210921: '阜新蒙古族自治县',\n 210922: '彰武县',\n 211002: '白塔区',\n 211003: '文圣区',\n 211004: '宏伟区',\n 211005: '弓长岭区',\n 211011: '太子河区',\n 211021: '辽阳县',\n 211081: '灯塔市',\n 211102: '双台子区',\n 211103: '兴隆台区',\n 211104: '大洼区',\n 211122: '盘山县',\n 211202: '银州区',\n 211204: '清河区',\n 211221: '铁岭县',\n 211223: '西丰县',\n 211224: '昌图县',\n 211281: '调兵山市',\n 211282: '开原市',\n 211302: '双塔区',\n 211303: '龙城区',\n 211321: '朝阳县',\n 211322: '建平县',\n 211324: '喀喇沁左翼蒙古族自治县',\n 211381: '北票市',\n 211382: '凌源市',\n 211402: '连山区',\n 211403: '龙港区',\n 211404: '南票区',\n 211421: '绥中县',\n 211422: '建昌县',\n 211481: '兴城市',\n 220102: '南关区',\n 220103: '宽城区',\n 220104: '朝阳区',\n 220105: '二道区',\n 220106: '绿园区',\n 220112: '双阳区',\n 220113: '九台区',\n 220122: '农安县',\n 220182: '榆树市',\n 220183: '德惠市',\n 220202: '昌邑区',\n 220203: '龙潭区',\n 220204: '船营区',\n 220211: '丰满区',\n 220221: '永吉县',\n 220281: '蛟河市',\n 220282: '桦甸市',\n 220283: '舒兰市',\n 220284: '磐石市',\n 220302: '铁西区',\n 220303: '铁东区',\n 220322: '梨树县',\n 220323: '伊通满族自治县',\n 220381: '公主岭市',\n 220382: '双辽市',\n 220402: '龙山区',\n 220403: '西安区',\n 220421: '东丰县',\n 220422: '东辽县',\n 220502: '东昌区',\n 220503: '二道江区',\n 220521: '通化县',\n 220523: '辉南县',\n 220524: '柳河县',\n 220581: '梅河口市',\n 220582: '集安市',\n 220602: '浑江区',\n 220605: '江源区',\n 220621: '抚松县',\n 220622: '靖宇县',\n 220623: '长白朝鲜族自治县',\n 220681: '临江市',\n 220702: '宁江区',\n 220721: '前郭尔罗斯蒙古族自治县',\n 220722: '长岭县',\n 220723: '乾安县',\n 220781: '扶余市',\n 220802: '洮北区',\n 220821: '镇赉县',\n 220822: '通榆县',\n 220881: '洮南市',\n 220882: '大安市',\n 222401: '延吉市',\n 222402: '图们市',\n 222403: '敦化市',\n 222404: '珲春市',\n 222405: '龙井市',\n 222406: '和龙市',\n 222424: '汪清县',\n 222426: '安图县',\n 230102: '道里区',\n 230103: '南岗区',\n 230104: '道外区',\n 230108: '平房区',\n 230109: '松北区',\n 230110: '香坊区',\n 230111: '呼兰区',\n 230112: '阿城区',\n 230113: '双城区',\n 230123: '依兰县',\n 230124: '方正县',\n 230125: '宾县',\n 230126: '巴彦县',\n 230127: '木兰县',\n 230128: '通河县',\n 230129: '延寿县',\n 230183: '尚志市',\n 230184: '五常市',\n 230202: '龙沙区',\n 230203: '建华区',\n 230204: '铁锋区',\n 230205: '昂昂溪区',\n 230206: '富拉尔基区',\n 230207: '碾子山区',\n 230208: '梅里斯达斡尔族区',\n 230221: '龙江县',\n 230223: '依安县',\n 230224: '泰来县',\n 230225: '甘南县',\n 230227: '富裕县',\n 230229: '克山县',\n 230230: '克东县',\n 230231: '拜泉县',\n 230281: '讷河市',\n 230302: '鸡冠区',\n 230303: '恒山区',\n 230304: '滴道区',\n 230305: '梨树区',\n 230306: '城子河区',\n 230307: '麻山区',\n 230321: '鸡东县',\n 230381: '虎林市',\n 230382: '密山市',\n 230402: '向阳区',\n 230403: '工农区',\n 230404: '南山区',\n 230405: '兴安区',\n 230406: '东山区',\n 230407: '兴山区',\n 230421: '萝北县',\n 230422: '绥滨县',\n 230502: '尖山区',\n 230503: '岭东区',\n 230505: '四方台区',\n 230506: '宝山区',\n 230521: '集贤县',\n 230522: '友谊县',\n 230523: '宝清县',\n 230524: '饶河县',\n 230602: '萨尔图区',\n 230603: '龙凤区',\n 230604: '让胡路区',\n 230605: '红岗区',\n 230606: '大同区',\n 230621: '肇州县',\n 230622: '肇源县',\n 230623: '林甸县',\n 230624: '杜尔伯特蒙古族自治县',\n 230702: '伊春区',\n 230703: '南岔区',\n 230704: '友好区',\n 230705: '西林区',\n 230706: '翠峦区',\n 230707: '新青区',\n 230708: '美溪区',\n 230709: '金山屯区',\n 230710: '五营区',\n 230711: '乌马河区',\n 230712: '汤旺河区',\n 230713: '带岭区',\n 230714: '乌伊岭区',\n 230715: '红星区',\n 230716: '上甘岭区',\n 230722: '嘉荫县',\n 230781: '铁力市',\n 230803: '向阳区',\n 230804: '前进区',\n 230805: '东风区',\n 230811: '郊区',\n 230822: '桦南县',\n 230826: '桦川县',\n 230828: '汤原县',\n 230881: '同江市',\n 230882: '富锦市',\n 230883: '抚远市',\n 230902: '新兴区',\n 230903: '桃山区',\n 230904: '茄子河区',\n 230921: '勃利县',\n 231002: '东安区',\n 231003: '阳明区',\n 231004: '爱民区',\n 231005: '西安区',\n 231025: '林口县',\n 231081: '绥芬河市',\n 231083: '海林市',\n 231084: '宁安市',\n 231085: '穆棱市',\n 231086: '东宁市',\n 231102: '爱辉区',\n 231121: '嫩江县',\n 231123: '逊克县',\n 231124: '孙吴县',\n 231181: '北安市',\n 231182: '五大连池市',\n 231202: '北林区',\n 231221: '望奎县',\n 231222: '兰西县',\n 231223: '青冈县',\n 231224: '庆安县',\n 231225: '明水县',\n 231226: '绥棱县',\n 231281: '安达市',\n 231282: '肇东市',\n 231283: '海伦市',\n 232721: '呼玛县',\n 232722: '塔河县',\n 232723: '漠河县',\n 310101: '黄浦区',\n 310104: '徐汇区',\n 310105: '长宁区',\n 310106: '静安区',\n 310107: '普陀区',\n 310109: '虹口区',\n 310110: '杨浦区',\n 310112: '闵行区',\n 310113: '宝山区',\n 310114: '嘉定区',\n 310115: '浦东新区',\n 310116: '金山区',\n 310117: '松江区',\n 310118: '青浦区',\n 310120: '奉贤区',\n 310151: '崇明区',\n 320102: '玄武区',\n 320104: '秦淮区',\n 320105: '建邺区',\n 320106: '鼓楼区',\n 320111: '浦口区',\n 320113: '栖霞区',\n 320114: '雨花台区',\n 320115: '江宁区',\n 320116: '六合区',\n 320117: '溧水区',\n 320118: '高淳区',\n 320205: '锡山区',\n 320206: '惠山区',\n 320211: '滨湖区',\n 320213: '梁溪区',\n 320214: '新吴区',\n 320281: '江阴市',\n 320282: '宜兴市',\n 320302: '鼓楼区',\n 320303: '云龙区',\n 320305: '贾汪区',\n 320311: '泉山区',\n 320312: '铜山区',\n 320321: '丰县',\n 320322: '沛县',\n 320324: '睢宁县',\n 320381: '新沂市',\n 320382: '邳州市',\n 320402: '天宁区',\n 320404: '钟楼区',\n 320411: '新北区',\n 320412: '武进区',\n 320413: '金坛区',\n 320481: '溧阳市',\n 320505: '虎丘区',\n 320506: '吴中区',\n 320507: '相城区',\n 320508: '姑苏区',\n 320509: '吴江区',\n 320581: '常熟市',\n 320582: '张家港市',\n 320583: '昆山市',\n 320585: '太仓市',\n 320602: '崇川区',\n 320611: '港闸区',\n 320612: '通州区',\n 320621: '海安县',\n 320623: '如东县',\n 320681: '启东市',\n 320682: '如皋市',\n 320684: '海门市',\n 320703: '连云区',\n 320706: '海州区',\n 320707: '赣榆区',\n 320722: '东海县',\n 320723: '灌云县',\n 320724: '灌南县',\n 320803: '淮安区',\n 320804: '淮阴区',\n 320812: '清江浦区',\n 320813: '洪泽区',\n 320826: '涟水县',\n 320830: '盱眙县',\n 320831: '金湖县',\n 320902: '亭湖区',\n 320903: '盐都区',\n 320904: '大丰区',\n 320921: '响水县',\n 320922: '滨海县',\n 320923: '阜宁县',\n 320924: '射阳县',\n 320925: '建湖县',\n 320981: '东台市',\n 321002: '广陵区',\n 321003: '邗江区',\n 321012: '江都区',\n 321023: '宝应县',\n 321081: '仪征市',\n 321084: '高邮市',\n 321102: '京口区',\n 321111: '润州区',\n 321112: '丹徒区',\n 321181: '丹阳市',\n 321182: '扬中市',\n 321183: '句容市',\n 321202: '海陵区',\n 321203: '高港区',\n 321204: '姜堰区',\n 321281: '兴化市',\n 321282: '靖江市',\n 321283: '泰兴市',\n 321302: '宿城区',\n 321311: '宿豫区',\n 321322: '沭阳县',\n 321323: '泗阳县',\n 321324: '泗洪县',\n 330102: '上城区',\n 330103: '下城区',\n 330104: '江干区',\n 330105: '拱墅区',\n 330106: '西湖区',\n 330108: '滨江区',\n 330109: '萧山区',\n 330110: '余杭区',\n 330111: '富阳区',\n 330122: '桐庐县',\n 330127: '淳安县',\n 330182: '建德市',\n 330185: '临安市',\n 330203: '海曙区',\n 330204: '江东区',\n 330205: '江北区',\n 330206: '北仑区',\n 330211: '镇海区',\n 330212: '鄞州区',\n 330225: '象山县',\n 330226: '宁海县',\n 330281: '余姚市',\n 330282: '慈溪市',\n 330283: '奉化市',\n 330302: '鹿城区',\n 330303: '龙湾区',\n 330304: '瓯海区',\n 330305: '洞头区',\n 330324: '永嘉县',\n 330326: '平阳县',\n 330327: '苍南县',\n 330328: '文成县',\n 330329: '泰顺县',\n 330381: '瑞安市',\n 330382: '乐清市',\n 330402: '南湖区',\n 330411: '秀洲区',\n 330421: '嘉善县',\n 330424: '海盐县',\n 330481: '海宁市',\n 330482: '平湖市',\n 330483: '桐乡市',\n 330502: '吴兴区',\n 330503: '南浔区',\n 330521: '德清县',\n 330522: '长兴县',\n 330523: '安吉县',\n 330602: '越城区',\n 330603: '柯桥区',\n 330604: '上虞区',\n 330624: '新昌县',\n 330681: '诸暨市',\n 330683: '嵊州市',\n 330702: '婺城区',\n 330703: '金东区',\n 330723: '武义县',\n 330726: '浦江县',\n 330727: '磐安县',\n 330781: '兰溪市',\n 330782: '义乌市',\n 330783: '东阳市',\n 330784: '永康市',\n 330802: '柯城区',\n 330803: '衢江区',\n 330822: '常山县',\n 330824: '开化县',\n 330825: '龙游县',\n 330881: '江山市',\n 330902: '定海区',\n 330903: '普陀区',\n 330921: '岱山县',\n 330922: '嵊泗县',\n 331002: '椒江区',\n 331003: '黄岩区',\n 331004: '路桥区',\n 331021: '玉环县',\n 331022: '三门县',\n 331023: '天台县',\n 331024: '仙居县',\n 331081: '温岭市',\n 331082: '临海市',\n 331102: '莲都区',\n 331121: '青田县',\n 331122: '缙云县',\n 331123: '遂昌县',\n 331124: '松阳县',\n 331125: '云和县',\n 331126: '庆元县',\n 331127: '景宁畲族自治县',\n 331181: '龙泉市',\n 340102: '瑶海区',\n 340103: '庐阳区',\n 340104: '蜀山区',\n 340111: '包河区',\n 340121: '长丰县',\n 340122: '肥东县',\n 340123: '肥西县',\n 340124: '庐江县',\n 340181: '巢湖市',\n 340202: '镜湖区',\n 340203: '弋江区',\n 340207: '鸠江区',\n 340208: '三山区',\n 340221: '芜湖县',\n 340222: '繁昌县',\n 340223: '南陵县',\n 340225: '无为县',\n 340302: '龙子湖区',\n 340303: '蚌山区',\n 340304: '禹会区',\n 340311: '淮上区',\n 340321: '怀远县',\n 340322: '五河县',\n 340323: '固镇县',\n 340402: '大通区',\n 340403: '田家庵区',\n 340404: '谢家集区',\n 340405: '八公山区',\n 340406: '潘集区',\n 340421: '凤台县',\n 340422: '寿县',\n 340503: '花山区',\n 340504: '雨山区',\n 340506: '博望区',\n 340521: '当涂县',\n 340522: '含山县',\n 340523: '和县',\n 340602: '杜集区',\n 340603: '相山区',\n 340604: '烈山区',\n 340621: '濉溪县',\n 340705: '铜官区',\n 340706: '义安区',\n 340711: '郊区',\n 340722: '枞阳县',\n 340802: '迎江区',\n 340803: '大观区',\n 340811: '宜秀区',\n 340822: '怀宁县',\n 340824: '潜山县',\n 340825: '太湖县',\n 340826: '宿松县',\n 340827: '望江县',\n 340828: '岳西县',\n 340881: '桐城市',\n 341002: '屯溪区',\n 341003: '黄山区',\n 341004: '徽州区',\n 341021: '歙县',\n 341022: '休宁县',\n 341023: '黟县',\n 341024: '祁门县',\n 341102: '琅琊区',\n 341103: '南谯区',\n 341122: '来安县',\n 341124: '全椒县',\n 341125: '定远县',\n 341126: '凤阳县',\n 341181: '天长市',\n 341182: '明光市',\n 341202: '颍州区',\n 341203: '颍东区',\n 341204: '颍泉区',\n 341221: '临泉县',\n 341222: '太和县',\n 341225: '阜南县',\n 341226: '颍上县',\n 341282: '界首市',\n 341302: '埇桥区',\n 341321: '砀山县',\n 341322: '萧县',\n 341323: '灵璧县',\n 341324: '泗县',\n 341502: '金安区',\n 341503: '裕安区',\n 341504: '叶集区',\n 341522: '霍邱县',\n 341523: '舒城县',\n 341524: '金寨县',\n 341525: '霍山县',\n 341602: '谯城区',\n 341621: '涡阳县',\n 341622: '蒙城县',\n 341623: '利辛县',\n 341702: '贵池区',\n 341721: '东至县',\n 341722: '石台县',\n 341723: '青阳县',\n 341802: '宣州区',\n 341821: '郎溪县',\n 341822: '广德县',\n 341823: '泾县',\n 341824: '绩溪县',\n 341825: '旌德县',\n 341881: '宁国市',\n 350102: '鼓楼区',\n 350103: '台江区',\n 350104: '仓山区',\n 350105: '马尾区',\n 350111: '晋安区',\n 350121: '闽侯县',\n 350122: '连江县',\n 350123: '罗源县',\n 350124: '闽清县',\n 350125: '永泰县',\n 350128: '平潭县',\n 350181: '福清市',\n 350182: '长乐市',\n 350203: '思明区',\n 350205: '海沧区',\n 350206: '湖里区',\n 350211: '集美区',\n 350212: '同安区',\n 350213: '翔安区',\n 350302: '城厢区',\n 350303: '涵江区',\n 350304: '荔城区',\n 350305: '秀屿区',\n 350322: '仙游县',\n 350402: '梅列区',\n 350403: '三元区',\n 350421: '明溪县',\n 350423: '清流县',\n 350424: '宁化县',\n 350425: '大田县',\n 350426: '尤溪县',\n 350427: '沙县',\n 350428: '将乐县',\n 350429: '泰宁县',\n 350430: '建宁县',\n 350481: '永安市',\n 350502: '鲤城区',\n 350503: '丰泽区',\n 350504: '洛江区',\n 350505: '泉港区',\n 350521: '惠安县',\n 350524: '安溪县',\n 350525: '永春县',\n 350526: '德化县',\n 350527: '金门县',\n 350581: '石狮市',\n 350582: '晋江市',\n 350583: '南安市',\n 350602: '芗城区',\n 350603: '龙文区',\n 350622: '云霄县',\n 350623: '漳浦县',\n 350624: '诏安县',\n 350625: '长泰县',\n 350626: '东山县',\n 350627: '南靖县',\n 350628: '平和县',\n 350629: '华安县',\n 350681: '龙海市',\n 350702: '延平区',\n 350703: '建阳区',\n 350721: '顺昌县',\n 350722: '浦城县',\n 350723: '光泽县',\n 350724: '松溪县',\n 350725: '政和县',\n 350781: '邵武市',\n 350782: '武夷山市',\n 350783: '建瓯市',\n 350802: '新罗区',\n 350803: '永定区',\n 350821: '长汀县',\n 350823: '上杭县',\n 350824: '武平县',\n 350825: '连城县',\n 350881: '漳平市',\n 350902: '蕉城区',\n 350921: '霞浦县',\n 350922: '古田县',\n 350923: '屏南县',\n 350924: '寿宁县',\n 350925: '周宁县',\n 350926: '柘荣县',\n 350981: '福安市',\n 350982: '福鼎市',\n 360102: '东湖区',\n 360103: '西湖区',\n 360104: '青云谱区',\n 360105: '湾里区',\n 360111: '青山湖区',\n 360112: '新建区',\n 360121: '南昌县',\n 360123: '安义县',\n 360124: '进贤县',\n 360202: '昌江区',\n 360203: '珠山区',\n 360222: '浮梁县',\n 360281: '乐平市',\n 360302: '安源区',\n 360313: '湘东区',\n 360321: '莲花县',\n 360322: '上栗县',\n 360323: '芦溪县',\n 360402: '濂溪区',\n 360403: '浔阳区',\n 360421: '九江县',\n 360423: '武宁县',\n 360424: '修水县',\n 360425: '永修县',\n 360426: '德安县',\n 360428: '都昌县',\n 360429: '湖口县',\n 360430: '彭泽县',\n 360481: '瑞昌市',\n 360482: '共青城市',\n 360483: '庐山市',\n 360502: '渝水区',\n 360521: '分宜县',\n 360602: '月湖区',\n 360622: '余江县',\n 360681: '贵溪市',\n 360702: '章贡区',\n 360703: '南康区',\n 360721: '赣县',\n 360722: '信丰县',\n 360723: '大余县',\n 360724: '上犹县',\n 360725: '崇义县',\n 360726: '安远县',\n 360727: '龙南县',\n 360728: '定南县',\n 360729: '全南县',\n 360730: '宁都县',\n 360731: '于都县',\n 360732: '兴国县',\n 360733: '会昌县',\n 360734: '寻乌县',\n 360735: '石城县',\n 360781: '瑞金市',\n 360802: '吉州区',\n 360803: '青原区',\n 360821: '吉安县',\n 360822: '吉水县',\n 360823: '峡江县',\n 360824: '新干县',\n 360825: '永丰县',\n 360826: '泰和县',\n 360827: '遂川县',\n 360828: '万安县',\n 360829: '安福县',\n 360830: '永新县',\n 360881: '井冈山市',\n 360902: '袁州区',\n 360921: '奉新县',\n 360922: '万载县',\n 360923: '上高县',\n 360924: '宜丰县',\n 360925: '靖安县',\n 360926: '铜鼓县',\n 360981: '丰城市',\n 360982: '樟树市',\n 360983: '高安市',\n 361002: '临川区',\n 361021: '南城县',\n 361022: '黎川县',\n 361023: '南丰县',\n 361024: '崇仁县',\n 361025: '乐安县',\n 361026: '宜黄县',\n 361027: '金溪县',\n 361028: '资溪县',\n 361029: '东乡县',\n 361030: '广昌县',\n 361102: '信州区',\n 361103: '广丰区',\n 361121: '上饶县',\n 361123: '玉山县',\n 361124: '铅山县',\n 361125: '横峰县',\n 361126: '弋阳县',\n 361127: '余干县',\n 361128: '鄱阳县',\n 361129: '万年县',\n 361130: '婺源县',\n 361181: '德兴市',\n 370102: '历下区',\n 370103: '市中区',\n 370104: '槐荫区',\n 370105: '天桥区',\n 370112: '历城区',\n 370113: '长清区',\n 370124: '平阴县',\n 370125: '济阳县',\n 370126: '商河县',\n 370181: '章丘市',\n 370202: '市南区',\n 370203: '市北区',\n 370211: '黄岛区',\n 370212: '崂山区',\n 370213: '李沧区',\n 370214: '城阳区',\n 370281: '胶州市',\n 370282: '即墨市',\n 370283: '平度市',\n 370285: '莱西市',\n 370302: '淄川区',\n 370303: '张店区',\n 370304: '博山区',\n 370305: '临淄区',\n 370306: '周村区',\n 370321: '桓台县',\n 370322: '高青县',\n 370323: '沂源县',\n 370402: '市中区',\n 370403: '薛城区',\n 370404: '峄城区',\n 370405: '台儿庄区',\n 370406: '山亭区',\n 370481: '滕州市',\n 370502: '东营区',\n 370503: '河口区',\n 370505: '垦利区',\n 370522: '利津县',\n 370523: '广饶县',\n 370602: '芝罘区',\n 370611: '福山区',\n 370612: '牟平区',\n 370613: '莱山区',\n 370634: '长岛县',\n 370681: '龙口市',\n 370682: '莱阳市',\n 370683: '莱州市',\n 370684: '蓬莱市',\n 370685: '招远市',\n 370686: '栖霞市',\n 370687: '海阳市',\n 370702: '潍城区',\n 370703: '寒亭区',\n 370704: '坊子区',\n 370705: '奎文区',\n 370724: '临朐县',\n 370725: '昌乐县',\n 370781: '青州市',\n 370782: '诸城市',\n 370783: '寿光市',\n 370784: '安丘市',\n 370785: '高密市',\n 370786: '昌邑市',\n 370811: '任城区',\n 370812: '兖州区',\n 370826: '微山县',\n 370827: '鱼台县',\n 370828: '金乡县',\n 370829: '嘉祥县',\n 370830: '汶上县',\n 370831: '泗水县',\n 370832: '梁山县',\n 370881: '曲阜市',\n 370883: '邹城市',\n 370902: '泰山区',\n 370911: '岱岳区',\n 370921: '宁阳县',\n 370923: '东平县',\n 370982: '新泰市',\n 370983: '肥城市',\n 371002: '环翠区',\n 371003: '文登区',\n 371082: '荣成市',\n 371083: '乳山市',\n 371102: '东港区',\n 371103: '岚山区',\n 371121: '五莲县',\n 371122: '莒县',\n 371202: '莱城区',\n 371203: '钢城区',\n 371302: '兰山区',\n 371311: '罗庄区',\n 371312: '河东区',\n 371321: '沂南县',\n 371322: '郯城县',\n 371323: '沂水县',\n 371324: '兰陵县',\n 371325: '费县',\n 371326: '平邑县',\n 371327: '莒南县',\n 371328: '蒙阴县',\n 371329: '临沭县',\n 371402: '德城区',\n 371403: '陵城区',\n 371422: '宁津县',\n 371423: '庆云县',\n 371424: '临邑县',\n 371425: '齐河县',\n 371426: '平原县',\n 371427: '夏津县',\n 371428: '武城县',\n 371481: '乐陵市',\n 371482: '禹城市',\n 371502: '东昌府区',\n 371521: '阳谷县',\n 371522: '莘县',\n 371523: '茌平县',\n 371524: '东阿县',\n 371525: '冠县',\n 371526: '高唐县',\n 371581: '临清市',\n 371602: '滨城区',\n 371603: '沾化区',\n 371621: '惠民县',\n 371622: '阳信县',\n 371623: '无棣县',\n 371625: '博兴县',\n 371626: '邹平县',\n 371702: '牡丹区',\n 371703: '定陶区',\n 371721: '曹县',\n 371722: '单县',\n 371723: '成武县',\n 371724: '巨野县',\n 371725: '郓城县',\n 371726: '鄄城县',\n 371728: '东明县',\n 410102: '中原区',\n 410103: '二七区',\n 410104: '管城回族区',\n 410105: '金水区',\n 410106: '上街区',\n 410108: '惠济区',\n 410122: '中牟县',\n 410181: '巩义市',\n 410182: '荥阳市',\n 410183: '新密市',\n 410184: '新郑市',\n 410185: '登封市',\n 410202: '龙亭区',\n 410203: '顺河回族区',\n 410204: '鼓楼区',\n 410205: '禹王台区',\n 410211: '金明区',\n 410212: '祥符区',\n 410221: '杞县',\n 410222: '通许县',\n 410223: '尉氏县',\n 410225: '兰考县',\n 410302: '老城区',\n 410303: '西工区',\n 410304: '瀍河回族区',\n 410305: '涧西区',\n 410306: '吉利区',\n 410311: '洛龙区',\n 410322: '孟津县',\n 410323: '新安县',\n 410324: '栾川县',\n 410325: '嵩县',\n 410326: '汝阳县',\n 410327: '宜阳县',\n 410328: '洛宁县',\n 410329: '伊川县',\n 410381: '偃师市',\n 410402: '新华区',\n 410403: '卫东区',\n 410404: '石龙区',\n 410411: '湛河区',\n 410421: '宝丰县',\n 410422: '叶县',\n 410423: '鲁山县',\n 410425: '郏县',\n 410481: '舞钢市',\n 410482: '汝州市',\n 410502: '文峰区',\n 410503: '北关区',\n 410505: '殷都区',\n 410506: '龙安区',\n 410522: '安阳县',\n 410523: '汤阴县',\n 410526: '滑县',\n 410527: '内黄县',\n 410581: '林州市',\n 410602: '鹤山区',\n 410603: '山城区',\n 410611: '淇滨区',\n 410621: '浚县',\n 410622: '淇县',\n 410702: '红旗区',\n 410703: '卫滨区',\n 410704: '凤泉区',\n 410711: '牧野区',\n 410721: '新乡县',\n 410724: '获嘉县',\n 410725: '原阳县',\n 410726: '延津县',\n 410727: '封丘县',\n 410728: '长垣县',\n 410781: '卫辉市',\n 410782: '辉县市',\n 410802: '解放区',\n 410803: '中站区',\n 410804: '马村区',\n 410811: '山阳区',\n 410821: '修武县',\n 410822: '博爱县',\n 410823: '武陟县',\n 410825: '温县',\n 410882: '沁阳市',\n 410883: '孟州市',\n 410902: '华龙区',\n 410922: '清丰县',\n 410923: '南乐县',\n 410926: '范县',\n 410927: '台前县',\n 410928: '濮阳县',\n 411002: '魏都区',\n 411023: '许昌县',\n 411024: '鄢陵县',\n 411025: '襄城县',\n 411081: '禹州市',\n 411082: '长葛市',\n 411102: '源汇区',\n 411103: '郾城区',\n 411104: '召陵区',\n 411121: '舞阳县',\n 411122: '临颍县',\n 411202: '湖滨区',\n 411203: '陕州区',\n 411221: '渑池县',\n 411224: '卢氏县',\n 411281: '义马市',\n 411282: '灵宝市',\n 411302: '宛城区',\n 411303: '卧龙区',\n 411321: '南召县',\n 411322: '方城县',\n 411323: '西峡县',\n 411324: '镇平县',\n 411325: '内乡县',\n 411326: '淅川县',\n 411327: '社旗县',\n 411328: '唐河县',\n 411329: '新野县',\n 411330: '桐柏县',\n 411381: '邓州市',\n 411402: '梁园区',\n 411403: '睢阳区',\n 411421: '民权县',\n 411422: '睢县',\n 411423: '宁陵县',\n 411424: '柘城县',\n 411425: '虞城县',\n 411426: '夏邑县',\n 411481: '永城市',\n 411502: '浉河区',\n 411503: '平桥区',\n 411521: '罗山县',\n 411522: '光山县',\n 411523: '新县',\n 411524: '商城县',\n 411525: '固始县',\n 411526: '潢川县',\n 411527: '淮滨县',\n 411528: '息县',\n 411602: '川汇区',\n 411621: '扶沟县',\n 411622: '西华县',\n 411623: '商水县',\n 411624: '沈丘县',\n 411625: '郸城县',\n 411626: '淮阳县',\n 411627: '太康县',\n 411628: '鹿邑县',\n 411681: '项城市',\n 411702: '驿城区',\n 411721: '西平县',\n 411722: '上蔡县',\n 411723: '平舆县',\n 411724: '正阳县',\n 411725: '确山县',\n 411726: '泌阳县',\n 411727: '汝南县',\n 411728: '遂平县',\n 411729: '新蔡县',\n 419001: '济源市',\n 420102: '江岸区',\n 420103: '江汉区',\n 420104: '硚口区',\n 420105: '汉阳区',\n 420106: '武昌区',\n 420107: '青山区',\n 420111: '洪山区',\n 420112: '东西湖区',\n 420113: '汉南区',\n 420114: '蔡甸区',\n 420115: '江夏区',\n 420116: '黄陂区',\n 420117: '新洲区',\n 420202: '黄石港区',\n 420203: '西塞山区',\n 420204: '下陆区',\n 420205: '铁山区',\n 420222: '阳新县',\n 420281: '大冶市',\n 420302: '茅箭区',\n 420303: '张湾区',\n 420304: '郧阳区',\n 420322: '郧西县',\n 420323: '竹山县',\n 420324: '竹溪县',\n 420325: '房县',\n 420381: '丹江口市',\n 420502: '西陵区',\n 420503: '伍家岗区',\n 420504: '点军区',\n 420505: '猇亭区',\n 420506: '夷陵区',\n 420525: '远安县',\n 420526: '兴山县',\n 420527: '秭归县',\n 420528: '长阳土家族自治县',\n 420529: '五峰土家族自治县',\n 420581: '宜都市',\n 420582: '当阳市',\n 420583: '枝江市',\n 420602: '襄城区',\n 420606: '樊城区',\n 420607: '襄州区',\n 420624: '南漳县',\n 420625: '谷城县',\n 420626: '保康县',\n 420682: '老河口市',\n 420683: '枣阳市',\n 420684: '宜城市',\n 420702: '梁子湖区',\n 420703: '华容区',\n 420704: '鄂城区',\n 420802: '东宝区',\n 420804: '掇刀区',\n 420821: '京山县',\n 420822: '沙洋县',\n 420881: '钟祥市',\n 420902: '孝南区',\n 420921: '孝昌县',\n 420922: '大悟县',\n 420923: '云梦县',\n 420981: '应城市',\n 420982: '安陆市',\n 420984: '汉川市',\n 421002: '沙市区',\n 421003: '荆州区',\n 421022: '公安县',\n 421023: '监利县',\n 421024: '江陵县',\n 421081: '石首市',\n 421083: '洪湖市',\n 421087: '松滋市',\n 421102: '黄州区',\n 421121: '团风县',\n 421122: '红安县',\n 421123: '罗田县',\n 421124: '英山县',\n 421125: '浠水县',\n 421126: '蕲春县',\n 421127: '黄梅县',\n 421181: '麻城市',\n 421182: '武穴市',\n 421202: '咸安区',\n 421221: '嘉鱼县',\n 421222: '通城县',\n 421223: '崇阳县',\n 421224: '通山县',\n 421281: '赤壁市',\n 421303: '曾都区',\n 421321: '随县',\n 421381: '广水市',\n 422801: '恩施市',\n 422802: '利川市',\n 422822: '建始县',\n 422823: '巴东县',\n 422825: '宣恩县',\n 422826: '咸丰县',\n 422827: '来凤县',\n 422828: '鹤峰县',\n 429004: '仙桃市',\n 429005: '潜江市',\n 429006: '天门市',\n 429021: '神农架林区',\n 430102: '芙蓉区',\n 430103: '天心区',\n 430104: '岳麓区',\n 430105: '开福区',\n 430111: '雨花区',\n 430112: '望城区',\n 430121: '长沙县',\n 430124: '宁乡县',\n 430181: '浏阳市',\n 430202: '荷塘区',\n 430203: '芦淞区',\n 430204: '石峰区',\n 430211: '天元区',\n 430221: '株洲县',\n 430223: '攸县',\n 430224: '茶陵县',\n 430225: '炎陵县',\n 430281: '醴陵市',\n 430302: '雨湖区',\n 430304: '岳塘区',\n 430321: '湘潭县',\n 430381: '湘乡市',\n 430382: '韶山市',\n 430405: '珠晖区',\n 430406: '雁峰区',\n 430407: '石鼓区',\n 430408: '蒸湘区',\n 430412: '南岳区',\n 430421: '衡阳县',\n 430422: '衡南县',\n 430423: '衡山县',\n 430424: '衡东县',\n 430426: '祁东县',\n 430481: '耒阳市',\n 430482: '常宁市',\n 430502: '双清区',\n 430503: '大祥区',\n 430511: '北塔区',\n 430521: '邵东县',\n 430522: '新邵县',\n 430523: '邵阳县',\n 430524: '隆回县',\n 430525: '洞口县',\n 430527: '绥宁县',\n 430528: '新宁县',\n 430529: '城步苗族自治县',\n 430581: '武冈市',\n 430602: '岳阳楼区',\n 430603: '云溪区',\n 430611: '君山区',\n 430621: '岳阳县',\n 430623: '华容县',\n 430624: '湘阴县',\n 430626: '平江县',\n 430681: '汨罗市',\n 430682: '临湘市',\n 430702: '武陵区',\n 430703: '鼎城区',\n 430721: '安乡县',\n 430722: '汉寿县',\n 430723: '澧县',\n 430724: '临澧县',\n 430725: '桃源县',\n 430726: '石门县',\n 430781: '津市市',\n 430802: '永定区',\n 430811: '武陵源区',\n 430821: '慈利县',\n 430822: '桑植县',\n 430902: '资阳区',\n 430903: '赫山区',\n 430921: '南县',\n 430922: '桃江县',\n 430923: '安化县',\n 430981: '沅江市',\n 431002: '北湖区',\n 431003: '苏仙区',\n 431021: '桂阳县',\n 431022: '宜章县',\n 431023: '永兴县',\n 431024: '嘉禾县',\n 431025: '临武县',\n 431026: '汝城县',\n 431027: '桂东县',\n 431028: '安仁县',\n 431081: '资兴市',\n 431102: '零陵区',\n 431103: '冷水滩区',\n 431121: '祁阳县',\n 431122: '东安县',\n 431123: '双牌县',\n 431124: '道县',\n 431125: '江永县',\n 431126: '宁远县',\n 431127: '蓝山县',\n 431128: '新田县',\n 431129: '江华瑶族自治县',\n 431202: '鹤城区',\n 431221: '中方县',\n 431222: '沅陵县',\n 431223: '辰溪县',\n 431224: '溆浦县',\n 431225: '会同县',\n 431226: '麻阳苗族自治县',\n 431227: '新晃侗族自治县',\n 431228: '芷江侗族自治县',\n 431229: '靖州苗族侗族自治县',\n 431230: '通道侗族自治县',\n 431281: '洪江市',\n 431302: '娄星区',\n 431321: '双峰县',\n 431322: '新化县',\n 431381: '冷水江市',\n 431382: '涟源市',\n 433101: '吉首市',\n 433122: '泸溪县',\n 433123: '凤凰县',\n 433124: '花垣县',\n 433125: '保靖县',\n 433126: '古丈县',\n 433127: '永顺县',\n 433130: '龙山县',\n 440103: '荔湾区',\n 440104: '越秀区',\n 440105: '海珠区',\n 440106: '天河区',\n 440111: '白云区',\n 440112: '黄埔区',\n 440113: '番禺区',\n 440114: '花都区',\n 440115: '南沙区',\n 440117: '从化区',\n 440118: '增城区',\n 440203: '武江区',\n 440204: '浈江区',\n 440205: '曲江区',\n 440222: '始兴县',\n 440224: '仁化县',\n 440229: '翁源县',\n 440232: '乳源瑶族自治县',\n 440233: '新丰县',\n 440281: '乐昌市',\n 440282: '南雄市',\n 440303: '罗湖区',\n 440304: '福田区',\n 440305: '南山区',\n 440306: '宝安区',\n 440307: '龙岗区',\n 440308: '盐田区',\n 440402: '香洲区',\n 440403: '斗门区',\n 440404: '金湾区',\n 440507: '龙湖区',\n 440511: '金平区',\n 440512: '濠江区',\n 440513: '潮阳区',\n 440514: '潮南区',\n 440515: '澄海区',\n 440523: '南澳县',\n 440604: '禅城区',\n 440605: '南海区',\n 440606: '顺德区',\n 440607: '三水区',\n 440608: '高明区',\n 440703: '蓬江区',\n 440704: '江海区',\n 440705: '新会区',\n 440781: '台山市',\n 440783: '开平市',\n 440784: '鹤山市',\n 440785: '恩平市',\n 440802: '赤坎区',\n 440803: '霞山区',\n 440804: '坡头区',\n 440811: '麻章区',\n 440823: '遂溪县',\n 440825: '徐闻县',\n 440881: '廉江市',\n 440882: '雷州市',\n 440883: '吴川市',\n 440902: '茂南区',\n 440904: '电白区',\n 440981: '高州市',\n 440982: '化州市',\n 440983: '信宜市',\n 441202: '端州区',\n 441203: '鼎湖区',\n 441204: '高要区',\n 441223: '广宁县',\n 441224: '怀集县',\n 441225: '封开县',\n 441226: '德庆县',\n 441284: '四会市',\n 441302: '惠城区',\n 441303: '惠阳区',\n 441322: '博罗县',\n 441323: '惠东县',\n 441324: '龙门县',\n 441402: '梅江区',\n 441403: '梅县区',\n 441422: '大埔县',\n 441423: '丰顺县',\n 441424: '五华县',\n 441426: '平远县',\n 441427: '蕉岭县',\n 441481: '兴宁市',\n 441502: '城区',\n 441521: '海丰县',\n 441523: '陆河县',\n 441581: '陆丰市',\n 441602: '源城区',\n 441621: '紫金县',\n 441622: '龙川县',\n 441623: '连平县',\n 441624: '和平县',\n 441625: '东源县',\n 441702: '江城区',\n 441704: '阳东区',\n 441721: '阳西县',\n 441781: '阳春市',\n 441802: '清城区',\n 441803: '清新区',\n 441821: '佛冈县',\n 441823: '阳山县',\n 441825: '连山壮族瑶族自治县',\n 441826: '连南瑶族自治县',\n 441881: '英德市',\n 441882: '连州市',\n 441900: '东莞市',\n 442000: '中山市',\n 445102: '湘桥区',\n 445103: '潮安区',\n 445122: '饶平县',\n 445202: '榕城区',\n 445203: '揭东区',\n 445222: '揭西县',\n 445224: '惠来县',\n 445281: '普宁市',\n 445302: '云城区',\n 445303: '云安区',\n 445321: '新兴县',\n 445322: '郁南县',\n 445381: '罗定市',\n 450102: '兴宁区',\n 450103: '青秀区',\n 450105: '江南区',\n 450107: '西乡塘区',\n 450108: '良庆区',\n 450109: '邕宁区',\n 450110: '武鸣区',\n 450123: '隆安县',\n 450124: '马山县',\n 450125: '上林县',\n 450126: '宾阳县',\n 450127: '横县',\n 450202: '城中区',\n 450203: '鱼峰区',\n 450204: '柳南区',\n 450205: '柳北区',\n 450206: '柳江区',\n 450222: '柳城县',\n 450223: '鹿寨县',\n 450224: '融安县',\n 450225: '融水苗族自治县',\n 450226: '三江侗族自治县',\n 450302: '秀峰区',\n 450303: '叠彩区',\n 450304: '象山区',\n 450305: '七星区',\n 450311: '雁山区',\n 450312: '临桂区',\n 450321: '阳朔县',\n 450323: '灵川县',\n 450324: '全州县',\n 450325: '兴安县',\n 450326: '永福县',\n 450327: '灌阳县',\n 450328: '龙胜各族自治县',\n 450329: '资源县',\n 450330: '平乐县',\n 450331: '荔浦县',\n 450332: '恭城瑶族自治县',\n 450403: '万秀区',\n 450405: '长洲区',\n 450406: '龙圩区',\n 450421: '苍梧县',\n 450422: '藤县',\n 450423: '蒙山县',\n 450481: '岑溪市',\n 450502: '海城区',\n 450503: '银海区',\n 450512: '铁山港区',\n 450521: '合浦县',\n 450602: '港口区',\n 450603: '防城区',\n 450621: '上思县',\n 450681: '东兴市',\n 450702: '钦南区',\n 450703: '钦北区',\n 450721: '灵山县',\n 450722: '浦北县',\n 450802: '港北区',\n 450803: '港南区',\n 450804: '覃塘区',\n 450821: '平南县',\n 450881: '桂平市',\n 450902: '玉州区',\n 450903: '福绵区',\n 450921: '容县',\n 450922: '陆川县',\n 450923: '博白县',\n 450924: '兴业县',\n 450981: '北流市',\n 451002: '右江区',\n 451021: '田阳县',\n 451022: '田东县',\n 451023: '平果县',\n 451024: '德保县',\n 451026: '那坡县',\n 451027: '凌云县',\n 451028: '乐业县',\n 451029: '田林县',\n 451030: '西林县',\n 451031: '隆林各族自治县',\n 451081: '靖西市',\n 451102: '八步区',\n 451103: '平桂区',\n 451121: '昭平县',\n 451122: '钟山县',\n 451123: '富川瑶族自治县',\n 451202: '金城江区',\n 451221: '南丹县',\n 451222: '天峨县',\n 451223: '凤山县',\n 451224: '东兰县',\n 451225: '罗城仫佬族自治县',\n 451226: '环江毛南族自治县',\n 451227: '巴马瑶族自治县',\n 451228: '都安瑶族自治县',\n 451229: '大化瑶族自治县',\n 451281: '宜州市',\n 451302: '兴宾区',\n 451321: '忻城县',\n 451322: '象州县',\n 451323: '武宣县',\n 451324: '金秀瑶族自治县',\n 451381: '合山市',\n 451402: '江州区',\n 451421: '扶绥县',\n 451422: '宁明县',\n 451423: '龙州县',\n 451424: '大新县',\n 451425: '天等县',\n 451481: '凭祥市',\n 460105: '秀英区',\n 460106: '龙华区',\n 460107: '琼山区',\n 460108: '美兰区',\n 460201: '市辖区',\n 460202: '海棠区',\n 460203: '吉阳区',\n 460204: '天涯区',\n 460205: '崖州区',\n 460321: '西沙群岛',\n 460322: '南沙群岛',\n 460323: '中沙群岛的岛礁及其海域',\n 460400: '儋州市',\n 469001: '五指山市',\n 469002: '琼海市',\n 469005: '文昌市',\n 469006: '万宁市',\n 469007: '东方市',\n 469021: '定安县',\n 469022: '屯昌县',\n 469023: '澄迈县',\n 469024: '临高县',\n 469025: '白沙黎族自治县',\n 469026: '昌江黎族自治县',\n 469027: '乐东黎族自治县',\n 469028: '陵水黎族自治县',\n 469029: '保亭黎族苗族自治县',\n 469030: '琼中黎族苗族自治县',\n 500101: '万州区',\n 500102: '涪陵区',\n 500103: '渝中区',\n 500104: '大渡口区',\n 500105: '江北区',\n 500106: '沙坪坝区',\n 500107: '九龙坡区',\n 500108: '南岸区',\n 500109: '北碚区',\n 500110: '綦江区',\n 500111: '大足区',\n 500112: '渝北区',\n 500113: '巴南区',\n 500114: '黔江区',\n 500115: '长寿区',\n 500116: '江津区',\n 500117: '合川区',\n 500118: '永川区',\n 500119: '南川区',\n 500120: '璧山区',\n 500151: '铜梁区',\n 500152: '潼南区',\n 500153: '荣昌区',\n 500154: '开州区',\n 500228: '梁平县',\n 500229: '城口县',\n 500230: '丰都县',\n 500231: '垫江县',\n 500232: '武隆县',\n 500233: '忠县',\n 500235: '云阳县',\n 500236: '奉节县',\n 500237: '巫山县',\n 500238: '巫溪县',\n 500240: '石柱土家族自治县',\n 500241: '秀山土家族苗族自治县',\n 500242: '酉阳土家族苗族自治县',\n 500243: '彭水苗族土家族自治县',\n 510104: '锦江区',\n 510105: '青羊区',\n 510106: '金牛区',\n 510107: '武侯区',\n 510108: '成华区',\n 510112: '龙泉驿区',\n 510113: '青白江区',\n 510114: '新都区',\n 510115: '温江区',\n 510116: '双流区',\n 510121: '金堂县',\n 510124: '郫县',\n 510129: '大邑县',\n 510131: '蒲江县',\n 510132: '新津县',\n 510181: '都江堰市',\n 510182: '彭州市',\n 510183: '邛崃市',\n 510184: '崇州市',\n 510185: '简阳市',\n 510302: '自流井区',\n 510303: '贡井区',\n 510304: '大安区',\n 510311: '沿滩区',\n 510321: '荣县',\n 510322: '富顺县',\n 510402: '东区',\n 510403: '西区',\n 510411: '仁和区',\n 510421: '米易县',\n 510422: '盐边县',\n 510502: '江阳区',\n 510503: '纳溪区',\n 510504: '龙马潭区',\n 510521: '泸县',\n 510522: '合江县',\n 510524: '叙永县',\n 510525: '古蔺县',\n 510603: '旌阳区',\n 510623: '中江县',\n 510626: '罗江县',\n 510681: '广汉市',\n 510682: '什邡市',\n 510683: '绵竹市',\n 510703: '涪城区',\n 510704: '游仙区',\n 510705: '安州区',\n 510722: '三台县',\n 510723: '盐亭县',\n 510725: '梓潼县',\n 510726: '北川羌族自治县',\n 510727: '平武县',\n 510781: '江油市',\n 510802: '利州区',\n 510811: '昭化区',\n 510812: '朝天区',\n 510821: '旺苍县',\n 510822: '青川县',\n 510823: '剑阁县',\n 510824: '苍溪县',\n 510903: '船山区',\n 510904: '安居区',\n 510921: '蓬溪县',\n 510922: '射洪县',\n 510923: '大英县',\n 511002: '市中区',\n 511011: '东兴区',\n 511024: '威远县',\n 511025: '资中县',\n 511028: '隆昌县',\n 511102: '市中区',\n 511111: '沙湾区',\n 511112: '五通桥区',\n 511113: '金口河区',\n 511123: '犍为县',\n 511124: '井研县',\n 511126: '夹江县',\n 511129: '沐川县',\n 511132: '峨边彝族自治县',\n 511133: '马边彝族自治县',\n 511181: '峨眉山市',\n 511302: '顺庆区',\n 511303: '高坪区',\n 511304: '嘉陵区',\n 511321: '南部县',\n 511322: '营山县',\n 511323: '蓬安县',\n 511324: '仪陇县',\n 511325: '西充县',\n 511381: '阆中市',\n 511402: '东坡区',\n 511403: '彭山区',\n 511421: '仁寿县',\n 511423: '洪雅县',\n 511424: '丹棱县',\n 511425: '青神县',\n 511502: '翠屏区',\n 511503: '南溪区',\n 511521: '宜宾县',\n 511523: '江安县',\n 511524: '长宁县',\n 511525: '高县',\n 511526: '珙县',\n 511527: '筠连县',\n 511528: '兴文县',\n 511529: '屏山县',\n 511602: '广安区',\n 511603: '前锋区',\n 511621: '岳池县',\n 511622: '武胜县',\n 511623: '邻水县',\n 511681: '华蓥市',\n 511702: '通川区',\n 511703: '达川区',\n 511722: '宣汉县',\n 511723: '开江县',\n 511724: '大竹县',\n 511725: '渠县',\n 511781: '万源市',\n 511802: '雨城区',\n 511803: '名山区',\n 511822: '荥经县',\n 511823: '汉源县',\n 511824: '石棉县',\n 511825: '天全县',\n 511826: '芦山县',\n 511827: '宝兴县',\n 511902: '巴州区',\n 511903: '恩阳区',\n 511921: '通江县',\n 511922: '南江县',\n 511923: '平昌县',\n 512002: '雁江区',\n 512021: '安岳县',\n 512022: '乐至县',\n 513201: '马尔康市',\n 513221: '汶川县',\n 513222: '理县',\n 513223: '茂县',\n 513224: '松潘县',\n 513225: '九寨沟县',\n 513226: '金川县',\n 513227: '小金县',\n 513228: '黑水县',\n 513230: '壤塘县',\n 513231: '阿坝县',\n 513232: '若尔盖县',\n 513233: '红原县',\n 513301: '康定市',\n 513322: '泸定县',\n 513323: '丹巴县',\n 513324: '九龙县',\n 513325: '雅江县',\n 513326: '道孚县',\n 513327: '炉霍县',\n 513328: '甘孜县',\n 513329: '新龙县',\n 513330: '德格县',\n 513331: '白玉县',\n 513332: '石渠县',\n 513333: '色达县',\n 513334: '理塘县',\n 513335: '巴塘县',\n 513336: '乡城县',\n 513337: '稻城县',\n 513338: '得荣县',\n 513401: '西昌市',\n 513422: '木里藏族自治县',\n 513423: '盐源县',\n 513424: '德昌县',\n 513425: '会理县',\n 513426: '会东县',\n 513427: '宁南县',\n 513428: '普格县',\n 513429: '布拖县',\n 513430: '金阳县',\n 513431: '昭觉县',\n 513432: '喜德县',\n 513433: '冕宁县',\n 513434: '越西县',\n 513435: '甘洛县',\n 513436: '美姑县',\n 513437: '雷波县',\n 520102: '南明区',\n 520103: '云岩区',\n 520111: '花溪区',\n 520112: '乌当区',\n 520113: '白云区',\n 520115: '观山湖区',\n 520121: '开阳县',\n 520122: '息烽县',\n 520123: '修文县',\n 520181: '清镇市',\n 520201: '钟山区',\n 520203: '六枝特区',\n 520221: '水城县',\n 520222: '盘县',\n 520302: '红花岗区',\n 520303: '汇川区',\n 520304: '播州区',\n 520322: '桐梓县',\n 520323: '绥阳县',\n 520324: '正安县',\n 520325: '道真仡佬族苗族自治县',\n 520326: '务川仡佬族苗族自治县',\n 520327: '凤冈县',\n 520328: '湄潭县',\n 520329: '余庆县',\n 520330: '习水县',\n 520381: '赤水市',\n 520382: '仁怀市',\n 520402: '西秀区',\n 520403: '平坝区',\n 520422: '普定县',\n 520423: '镇宁布依族苗族自治县',\n 520424: '关岭布依族苗族自治县',\n 520425: '紫云苗族布依族自治县',\n 520502: '七星关区',\n 520521: '大方县',\n 520522: '黔西县',\n 520523: '金沙县',\n 520524: '织金县',\n 520525: '纳雍县',\n 520526: '威宁彝族回族苗族自治县',\n 520527: '赫章县',\n 520602: '碧江区',\n 520603: '万山区',\n 520621: '江口县',\n 520622: '玉屏侗族自治县',\n 520623: '石阡县',\n 520624: '思南县',\n 520625: '印江土家族苗族自治县',\n 520626: '德江县',\n 520627: '沿河土家族自治县',\n 520628: '松桃苗族自治县',\n 522301: '兴义市',\n 522322: '兴仁县',\n 522323: '普安县',\n 522324: '晴隆县',\n 522325: '贞丰县',\n 522326: '望谟县',\n 522327: '册亨县',\n 522328: '安龙县',\n 522601: '凯里市',\n 522622: '黄平县',\n 522623: '施秉县',\n 522624: '三穗县',\n 522625: '镇远县',\n 522626: '岑巩县',\n 522627: '天柱县',\n 522628: '锦屏县',\n 522629: '剑河县',\n 522630: '台江县',\n 522631: '黎平县',\n 522632: '榕江县',\n 522633: '从江县',\n 522634: '雷山县',\n 522635: '麻江县',\n 522636: '丹寨县',\n 522701: '都匀市',\n 522702: '福泉市',\n 522722: '荔波县',\n 522723: '贵定县',\n 522725: '瓮安县',\n 522726: '独山县',\n 522727: '平塘县',\n 522728: '罗甸县',\n 522729: '长顺县',\n 522730: '龙里县',\n 522731: '惠水县',\n 522732: '三都水族自治县',\n 530102: '五华区',\n 530103: '盘龙区',\n 530111: '官渡区',\n 530112: '西山区',\n 530113: '东川区',\n 530114: '呈贡区',\n 530122: '晋宁县',\n 530124: '富民县',\n 530125: '宜良县',\n 530126: '石林彝族自治县',\n 530127: '嵩明县',\n 530128: '禄劝彝族苗族自治县',\n 530129: '寻甸回族彝族自治县',\n 530181: '安宁市',\n 530302: '麒麟区',\n 530303: '沾益区',\n 530321: '马龙县',\n 530322: '陆良县',\n 530323: '师宗县',\n 530324: '罗平县',\n 530325: '富源县',\n 530326: '会泽县',\n 530381: '宣威市',\n 530402: '红塔区',\n 530403: '江川区',\n 530422: '澄江县',\n 530423: '通海县',\n 530424: '华宁县',\n 530425: '易门县',\n 530426: '峨山彝族自治县',\n 530427: '新平彝族傣族自治县',\n 530428: '元江哈尼族彝族傣族自治县',\n 530502: '隆阳区',\n 530521: '施甸县',\n 530523: '龙陵县',\n 530524: '昌宁县',\n 530581: '腾冲市',\n 530602: '昭阳区',\n 530621: '鲁甸县',\n 530622: '巧家县',\n 530623: '盐津县',\n 530624: '大关县',\n 530625: '永善县',\n 530626: '绥江县',\n 530627: '镇雄县',\n 530628: '彝良县',\n 530629: '威信县',\n 530630: '水富县',\n 530702: '古城区',\n 530721: '玉龙纳西族自治县',\n 530722: '永胜县',\n 530723: '华坪县',\n 530724: '宁蒗彝族自治县',\n 530802: '思茅区',\n 530821: '宁洱哈尼族彝族自治县',\n 530822: '墨江哈尼族自治县',\n 530823: '景东彝族自治县',\n 530824: '景谷傣族彝族自治县',\n 530825: '镇沅彝族哈尼族拉祜族自治县',\n 530826: '江城哈尼族彝族自治县',\n 530827: '孟连傣族拉祜族佤族自治县',\n 530828: '澜沧拉祜族自治县',\n 530829: '西盟佤族自治县',\n 530902: '临翔区',\n 530921: '凤庆县',\n 530922: '云县',\n 530923: '永德县',\n 530924: '镇康县',\n 530925: '双江拉祜族佤族布朗族傣族自治县',\n 530926: '耿马傣族佤族自治县',\n 530927: '沧源佤族自治县',\n 532301: '楚雄市',\n 532322: '双柏县',\n 532323: '牟定县',\n 532324: '南华县',\n 532325: '姚安县',\n 532326: '大姚县',\n 532327: '永仁县',\n 532328: '元谋县',\n 532329: '武定县',\n 532331: '禄丰县',\n 532501: '个旧市',\n 532502: '开远市',\n 532503: '蒙自市',\n 532504: '弥勒市',\n 532523: '屏边苗族自治县',\n 532524: '建水县',\n 532525: '石屏县',\n 532527: '泸西县',\n 532528: '元阳县',\n 532529: '红河县',\n 532530: '金平苗族瑶族傣族自治县',\n 532531: '绿春县',\n 532532: '河口瑶族自治县',\n 532601: '文山市',\n 532622: '砚山县',\n 532623: '西畴县',\n 532624: '麻栗坡县',\n 532625: '马关县',\n 532626: '丘北县',\n 532627: '广南县',\n 532628: '富宁县',\n 532801: '景洪市',\n 532822: '勐海县',\n 532823: '勐腊县',\n 532901: '大理市',\n 532922: '漾濞彝族自治县',\n 532923: '祥云县',\n 532924: '宾川县',\n 532925: '弥渡县',\n 532926: '南涧彝族自治县',\n 532927: '巍山彝族回族自治县',\n 532928: '永平县',\n 532929: '云龙县',\n 532930: '洱源县',\n 532931: '剑川县',\n 532932: '鹤庆县',\n 533102: '瑞丽市',\n 533103: '芒市',\n 533122: '梁河县',\n 533123: '盈江县',\n 533124: '陇川县',\n 533301: '泸水市',\n 533323: '福贡县',\n 533324: '贡山独龙族怒族自治县',\n 533325: '兰坪白族普米族自治县',\n 533401: '香格里拉市',\n 533422: '德钦县',\n 533423: '维西傈僳族自治县',\n 540102: '城关区',\n 540103: '堆龙德庆区',\n 540121: '林周县',\n 540122: '当雄县',\n 540123: '尼木县',\n 540124: '曲水县',\n 540126: '达孜县',\n 540127: '墨竹工卡县',\n 540202: '桑珠孜区',\n 540221: '南木林县',\n 540222: '江孜县',\n 540223: '定日县',\n 540224: '萨迦县',\n 540225: '拉孜县',\n 540226: '昂仁县',\n 540227: '谢通门县',\n 540228: '白朗县',\n 540229: '仁布县',\n 540230: '康马县',\n 540231: '定结县',\n 540232: '仲巴县',\n 540233: '亚东县',\n 540234: '吉隆县',\n 540235: '聂拉木县',\n 540236: '萨嘎县',\n 540237: '岗巴县',\n 540302: '卡若区',\n 540321: '江达县',\n 540322: '贡觉县',\n 540323: '类乌齐县',\n 540324: '丁青县',\n 540325: '察雅县',\n 540326: '八宿县',\n 540327: '左贡县',\n 540328: '芒康县',\n 540329: '洛隆县',\n 540330: '边坝县',\n 540402: '巴宜区',\n 540421: '工布江达县',\n 540422: '米林县',\n 540423: '墨脱县',\n 540424: '波密县',\n 540425: '察隅县',\n 540426: '朗县',\n 540502: '乃东区',\n 540521: '扎囊县',\n 540522: '贡嘎县',\n 540523: '桑日县',\n 540524: '琼结县',\n 540525: '曲松县',\n 540526: '措美县',\n 540527: '洛扎县',\n 540528: '加查县',\n 540529: '隆子县',\n 540530: '错那县',\n 540531: '浪卡子县',\n 542421: '那曲县',\n 542422: '嘉黎县',\n 542423: '比如县',\n 542424: '聂荣县',\n 542425: '安多县',\n 542426: '申扎县',\n 542427: '索县',\n 542428: '班戈县',\n 542429: '巴青县',\n 542430: '尼玛县',\n 542431: '双湖县',\n 542521: '普兰县',\n 542522: '札达县',\n 542523: '噶尔县',\n 542524: '日土县',\n 542525: '革吉县',\n 542526: '改则县',\n 542527: '措勤县',\n 610102: '新城区',\n 610103: '碑林区',\n 610104: '莲湖区',\n 610111: '灞桥区',\n 610112: '未央区',\n 610113: '雁塔区',\n 610114: '阎良区',\n 610115: '临潼区',\n 610116: '长安区',\n 610117: '高陵区',\n 610122: '蓝田县',\n 610124: '周至县',\n 610125: '户县',\n 610202: '王益区',\n 610203: '印台区',\n 610204: '耀州区',\n 610222: '宜君县',\n 610302: '渭滨区',\n 610303: '金台区',\n 610304: '陈仓区',\n 610322: '凤翔县',\n 610323: '岐山县',\n 610324: '扶风县',\n 610326: '眉县',\n 610327: '陇县',\n 610328: '千阳县',\n 610329: '麟游县',\n 610330: '凤县',\n 610331: '太白县',\n 610402: '秦都区',\n 610403: '杨陵区',\n 610404: '渭城区',\n 610422: '三原县',\n 610423: '泾阳县',\n 610424: '乾县',\n 610425: '礼泉县',\n 610426: '永寿县',\n 610427: '彬县',\n 610428: '长武县',\n 610429: '旬邑县',\n 610430: '淳化县',\n 610431: '武功县',\n 610481: '兴平市',\n 610502: '临渭区',\n 610503: '华州区',\n 610522: '潼关县',\n 610523: '大荔县',\n 610524: '合阳县',\n 610525: '澄城县',\n 610526: '蒲城县',\n 610527: '白水县',\n 610528: '富平县',\n 610581: '韩城市',\n 610582: '华阴市',\n 610602: '宝塔区',\n 610603: '安塞区',\n 610621: '延长县',\n 610622: '延川县',\n 610623: '子长县',\n 610625: '志丹县',\n 610626: '吴起县',\n 610627: '甘泉县',\n 610628: '富县',\n 610629: '洛川县',\n 610630: '宜川县',\n 610631: '黄龙县',\n 610632: '黄陵县',\n 610702: '汉台区',\n 610721: '南郑县',\n 610722: '城固县',\n 610723: '洋县',\n 610724: '西乡县',\n 610725: '勉县',\n 610726: '宁强县',\n 610727: '略阳县',\n 610728: '镇巴县',\n 610729: '留坝县',\n 610730: '佛坪县',\n 610802: '榆阳区',\n 610803: '横山区',\n 610821: '神木县',\n 610822: '府谷县',\n 610824: '靖边县',\n 610825: '定边县',\n 610826: '绥德县',\n 610827: '米脂县',\n 610828: '佳县',\n 610829: '吴堡县',\n 610830: '清涧县',\n 610831: '子洲县',\n 610902: '汉滨区',\n 610921: '汉阴县',\n 610922: '石泉县',\n 610923: '宁陕县',\n 610924: '紫阳县',\n 610925: '岚皋县',\n 610926: '平利县',\n 610927: '镇坪县',\n 610928: '旬阳县',\n 610929: '白河县',\n 611002: '商州区',\n 611021: '洛南县',\n 611022: '丹凤县',\n 611023: '商南县',\n 611024: '山阳县',\n 611025: '镇安县',\n 611026: '柞水县',\n 620102: '城关区',\n 620103: '七里河区',\n 620104: '西固区',\n 620105: '安宁区',\n 620111: '红古区',\n 620121: '永登县',\n 620122: '皋兰县',\n 620123: '榆中县',\n 620201: '嘉峪关市',\n 620302: '金川区',\n 620321: '永昌县',\n 620402: '白银区',\n 620403: '平川区',\n 620421: '靖远县',\n 620422: '会宁县',\n 620423: '景泰县',\n 620502: '秦州区',\n 620503: '麦积区',\n 620521: '清水县',\n 620522: '秦安县',\n 620523: '甘谷县',\n 620524: '武山县',\n 620525: '张家川回族自治县',\n 620602: '凉州区',\n 620621: '民勤县',\n 620622: '古浪县',\n 620623: '天祝藏族自治县',\n 620702: '甘州区',\n 620721: '肃南裕固族自治县',\n 620722: '民乐县',\n 620723: '临泽县',\n 620724: '高台县',\n 620725: '山丹县',\n 620802: '崆峒区',\n 620821: '泾川县',\n 620822: '灵台县',\n 620823: '崇信县',\n 620824: '华亭县',\n 620825: '庄浪县',\n 620826: '静宁县',\n 620902: '肃州区',\n 620921: '金塔县',\n 620922: '瓜州县',\n 620923: '肃北蒙古族自治县',\n 620924: '阿克塞哈萨克族自治县',\n 620981: '玉门市',\n 620982: '敦煌市',\n 621002: '西峰区',\n 621021: '庆城县',\n 621022: '环县',\n 621023: '华池县',\n 621024: '合水县',\n 621025: '正宁县',\n 621026: '宁县',\n 621027: '镇原县',\n 621102: '安定区',\n 621121: '通渭县',\n 621122: '陇西县',\n 621123: '渭源县',\n 621124: '临洮县',\n 621125: '漳县',\n 621126: '岷县',\n 621202: '武都区',\n 621221: '成县',\n 621222: '文县',\n 621223: '宕昌县',\n 621224: '康县',\n 621225: '西和县',\n 621226: '礼县',\n 621227: '徽县',\n 621228: '两当县',\n 622901: '临夏市',\n 622921: '临夏县',\n 622922: '康乐县',\n 622923: '永靖县',\n 622924: '广河县',\n 622925: '和政县',\n 622926: '东乡族自治县',\n 622927: '积石山保安族东乡族撒拉族自治县',\n 623001: '合作市',\n 623021: '临潭县',\n 623022: '卓尼县',\n 623023: '舟曲县',\n 623024: '迭部县',\n 623025: '玛曲县',\n 623026: '碌曲县',\n 623027: '夏河县',\n 630102: '城东区',\n 630103: '城中区',\n 630104: '城西区',\n 630105: '城北区',\n 630121: '大通回族土族自治县',\n 630122: '湟中县',\n 630123: '湟源县',\n 630202: '乐都区',\n 630203: '平安区',\n 630222: '民和回族土族自治县',\n 630223: '互助土族自治县',\n 630224: '化隆回族自治县',\n 630225: '循化撒拉族自治县',\n 632221: '门源回族自治县',\n 632222: '祁连县',\n 632223: '海晏县',\n 632224: '刚察县',\n 632321: '同仁县',\n 632322: '尖扎县',\n 632323: '泽库县',\n 632324: '河南蒙古族自治县',\n 632521: '共和县',\n 632522: '同德县',\n 632523: '贵德县',\n 632524: '兴海县',\n 632525: '贵南县',\n 632621: '玛沁县',\n 632622: '班玛县',\n 632623: '甘德县',\n 632624: '达日县',\n 632625: '久治县',\n 632626: '玛多县',\n 632701: '玉树市',\n 632722: '杂多县',\n 632723: '称多县',\n 632724: '治多县',\n 632725: '囊谦县',\n 632726: '曲麻莱县',\n 632801: '格尔木市',\n 632802: '德令哈市',\n 632821: '乌兰县',\n 632822: '都兰县',\n 632823: '天峻县',\n 640104: '兴庆区',\n 640105: '西夏区',\n 640106: '金凤区',\n 640121: '永宁县',\n 640122: '贺兰县',\n 640181: '灵武市',\n 640202: '大武口区',\n 640205: '惠农区',\n 640221: '平罗县',\n 640302: '利通区',\n 640303: '红寺堡区',\n 640323: '盐池县',\n 640324: '同心县',\n 640381: '青铜峡市',\n 640402: '原州区',\n 640422: '西吉县',\n 640423: '隆德县',\n 640424: '泾源县',\n 640425: '彭阳县',\n 640502: '沙坡头区',\n 640521: '中宁县',\n 640522: '海原县',\n 650102: '天山区',\n 650103: '沙依巴克区',\n 650104: '新市区',\n 650105: '水磨沟区',\n 650106: '头屯河区',\n 650107: '达坂城区',\n 650109: '米东区',\n 650121: '乌鲁木齐县',\n 650202: '独山子区',\n 650203: '克拉玛依区',\n 650204: '白碱滩区',\n 650205: '乌尔禾区',\n 650402: '高昌区',\n 650421: '鄯善县',\n 650422: '托克逊县',\n 650502: '伊州区',\n 650521: '巴里坤哈萨克自治县',\n 650522: '伊吾县',\n 652301: '昌吉市',\n 652302: '阜康市',\n 652323: '呼图壁县',\n 652324: '玛纳斯县',\n 652325: '奇台县',\n 652327: '吉木萨尔县',\n 652328: '木垒哈萨克自治县',\n 652701: '博乐市',\n 652702: '阿拉山口市',\n 652722: '精河县',\n 652723: '温泉县',\n 652801: '库尔勒市',\n 652822: '轮台县',\n 652823: '尉犁县',\n 652824: '若羌县',\n 652825: '且末县',\n 652826: '焉耆回族自治县',\n 652827: '和静县',\n 652828: '和硕县',\n 652829: '博湖县',\n 652901: '阿克苏市',\n 652922: '温宿县',\n 652923: '库车县',\n 652924: '沙雅县',\n 652925: '新和县',\n 652926: '拜城县',\n 652927: '乌什县',\n 652928: '阿瓦提县',\n 652929: '柯坪县',\n 653001: '阿图什市',\n 653022: '阿克陶县',\n 653023: '阿合奇县',\n 653024: '乌恰县',\n 653101: '喀什市',\n 653121: '疏附县',\n 653122: '疏勒县',\n 653123: '英吉沙县',\n 653124: '泽普县',\n 653125: '莎车县',\n 653126: '叶城县',\n 653127: '麦盖提县',\n 653128: '岳普湖县',\n 653129: '伽师县',\n 653130: '巴楚县',\n 653131: '塔什库尔干塔吉克自治县',\n 653201: '和田市',\n 653221: '和田县',\n 653222: '墨玉县',\n 653223: '皮山县',\n 653224: '洛浦县',\n 653225: '策勒县',\n 653226: '于田县',\n 653227: '民丰县',\n 654002: '伊宁市',\n 654003: '奎屯市',\n 654004: '霍尔果斯市',\n 654021: '伊宁县',\n 654022: '察布查尔锡伯自治县',\n 654023: '霍城县',\n 654024: '巩留县',\n 654025: '新源县',\n 654026: '昭苏县',\n 654027: '特克斯县',\n 654028: '尼勒克县',\n 654201: '塔城市',\n 654202: '乌苏市',\n 654221: '额敏县',\n 654223: '沙湾县',\n 654224: '托里县',\n 654225: '裕民县',\n 654226: '和布克赛尔蒙古自治县',\n 654301: '阿勒泰市',\n 654321: '布尔津县',\n 654322: '富蕴县',\n 654323: '福海县',\n 654324: '哈巴河县',\n 654325: '青河县',\n 654326: '吉木乃县',\n 659001: '石河子市',\n 659002: '阿拉尔市',\n 659003: '图木舒克市',\n 659004: '五家渠市',\n 659006: '铁门关市'\n }\n};\n\nfunction getConfig(type) {\n return (areaList && areaList[`${type}_list`]) || {};\n}\n\nfunction getList(type, code) {\n let result = [];\n\n if (type !== 'province' && !code) {\n return result;\n }\n\n const list = getConfig(type);\n result = Object.keys(list).map((code) => ({\n code,\n name: list[code]\n }));\n\n if (code) {\n // oversea code\n if (code[0] === '9' && type === 'city') {\n code = '9';\n }\n\n result = result.filter((item) => item.code.indexOf(code) === 0);\n }\n\n return result;\n} // get index by code\n\nfunction getIndex(type, code) {\n let compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6;\n const list = getList(type, code.slice(0, compareNum - 2)); // oversea code\n\n if (code[0] === '9' && type === 'province') {\n compareNum = 1;\n }\n\n code = code.slice(0, compareNum);\n\n for (let i = 0; i < list.length; i++) {\n if (list[i].code.slice(0, compareNum) === code) {\n return i;\n }\n }\n\n return 0;\n} // 参考 https://github.com/youzan/vant-weapp/blob/dev/packages/area/index.ts\n// 定义数据出口\n\nmodule.exports = {\n areaList: areaList,\n getList: getList,\n getIndex: getIndex\n};\n","var api = require('@/config/api.js');\n\nvar app = getApp();\n\nfunction formatTime(date) {\n var year = date.getFullYear();\n var month = date.getMonth() + 1;\n var day = date.getDate();\n var hour = date.getHours();\n var minute = date.getMinutes();\n var second = date.getSeconds();\n return [year, month, day].map(formatNumber).join('-') + ' ' + [hour, minute, second].map(formatNumber).join(':');\n}\n\nfunction formatNumber(n) {\n n = n.toString();\n return n[1] ? n : '0' + n;\n}\n/**\n * 封封微信的的request\n */\n\nfunction request(url, data = {}, method = 'GET') {\n return new Promise(function (resolve, reject) {\n uni.request({\n url: url,\n data: data,\n method: method,\n header: {\n 'Content-Type': 'application/json',\n 'X-Litemall-Token': uni.getStorageSync('token')\n },\n success: function (res) {\n if (res.statusCode == 200) {\n if (res.data.errno == 501) {\n // 清除登录相关内容\n try {\n uni.removeStorageSync('userInfo');\n uni.removeStorageSync('token');\n } catch (e) {\n // Do something when catch error\n } // 切换到登录页面\n\n uni.navigateTo({\n url: '/pages/auth/login/login'\n });\n } else {\n resolve(res.data);\n }\n } else {\n reject(res.errMsg);\n }\n },\n fail: function (err) {\n reject(err);\n }\n });\n });\n}\n\nfunction redirect(url) {\n //判断页面是否需要登录\n if (false) {\n uni.redirectTo({\n url: '/pages/auth/login/login'\n });\n return false;\n } else {\n uni.redirectTo({\n url: url\n });\n }\n}\n\nfunction showErrorToast(msg) {\n uni.showToast({\n title: msg,\n image: '/static/images/icon_error.png'\n });\n}\n\nmodule.exports = {\n formatTime,\n request,\n redirect,\n showErrorToast\n};\n"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/button/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/button/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..d6957fb8d49226ed3e30d1effc610e46c8681ed8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/button/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":[null,"webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?7fa7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?a91e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?fb0d","uni-app:///lib/vant-weapp2/icon/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?1163","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?2888","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?b68d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7b51","uni-app:///lib/vant-weapp2/info/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?f544","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7091","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?69eb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?26af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?25af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?0c06","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?e115","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?9e11","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?538c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?45ea","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?b841","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?cc3a","uni-app:///lib/vant-weapp2/loading/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?8d07","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?e87f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?bc58","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?4b14","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.wxs?b0ca","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.wxs?79ed","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/button/index.vue?c2c0","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/button/index.vue?dcb9","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/button/index.vue?9a66","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/button/index.vue?a9da","uni-app:///lib/vant-weapp2/button/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/button/index.vue?6e61","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/button/index.vue?1b43","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?1cae","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?7f4d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/button/index.wxs?cf04","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/button/index.wxs?b425"],"names":[],"mappings":"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","file":"lib/vant-weapp2/button/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/icon/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/info/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n {{ dot ? '' : info }} \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060727\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060599\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=2d5c4ea3&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/loading/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=2d5c4ea3&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060716\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=16c805fe&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cbutton%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cbutton%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/button/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=16c805fe&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\ntry {\n components = {\n vanIcon: function() {\n return import(\n /* webpackChunkName: \"lib/vant-weapp2/icon/index\" */ \"@/lib/vant-weapp2/icon/index.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\n \r\n\t\t\r\n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638930472897\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cbutton%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cbutton%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cbutton%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cbutton%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/cell-group/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/cell-group/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..f71e40281e0473c179945660a89b89963559966a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/cell-group/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell-group/index.vue?92d9","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell-group/index.vue?288c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell-group/index.vue?f4ce","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell-group/index.vue?a9af","uni-app:///lib/vant-weapp2/cell-group/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell-group/index.vue?2de1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell-group/index.vue?4ef6","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?e202","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?5da5"],"names":[],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA4S;AAC5S;AACyD;AACL;AACa;;;AAGjE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,0QAAM;AACR,EAAE,mRAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,8QAAU;AACZ;AACA;;AAEA;AACyN;AACzN,WAAW,0OAAM,iBAAiB,kPAAM;;AAExC;AACe,gF;;;;;;;;;;;;AC3Bf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqtB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;ACczuB,qE;;;;;;;;;;;;;AACA,gCACA,SACA,aADA,EAEA,UACA,aADA,EAEA,WAFA,EAFA,EAMA,cANA,EADA,I;;;;;;;;;;;;ACfA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA,wCAA0W,CAAgB,qaAAG,EAAC,C;;;;;;;;;;;;ACA9X;AAAe;AACf;AACA;AACA;;AAEA,M","file":"lib/vant-weapp2/cell-group/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=93f0c8ba&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell-group%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/cell-group/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=93f0c8ba&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n {{ title }}\n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060613\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell-group%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell-group%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/cell/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/cell/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..5cf6dd9a40092db26c54a86f05a4131e37bb4370
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/cell/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?1363","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?7fa7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?a91e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?fb0d","uni-app:///lib/vant-weapp2/icon/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?1163","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?2888","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?b68d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7b51","uni-app:///lib/vant-weapp2/info/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?f544","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7091","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?69eb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?26af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?25af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?0c06","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?e115","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?9e11","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?ea59","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?1e55","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?6e6b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?b3f9","uni-app:///lib/vant-weapp2/cell/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?32e6","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?4d1f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?4388","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?4398","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.wxs?1948","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.wxs?2a80"],"names":[],"mappings":"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","file":"lib/vant-weapp2/cell/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/icon/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/info/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n {{ dot ? '' : info }} \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060727\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060599\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=6dcf2031&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/cell/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=6dcf2031&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\ntry {\n components = {\n vanIcon: function() {\n return import(\n /* webpackChunkName: \"lib/vant-weapp2/icon/index\" */ \"@/lib/vant-weapp2/icon/index.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\r\n\t\n \n \n \n\n \n \n {{ title }} \n \n\n \n \n {{ label }} \n \n \n\n \n {{ value }} \n \n \n\n \n \n\n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060534\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/checkbox/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/checkbox/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..94d416c59c54f04350ac746730090ca8565c5ed6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/checkbox/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?1363","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?7fa7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?a91e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?fb0d","uni-app:///lib/vant-weapp2/icon/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?1163","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?2888","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?b68d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7b51","uni-app:///lib/vant-weapp2/info/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?f544","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7091","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?69eb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?26af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?25af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?0c06","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?e115","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?9e11","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/checkbox/index.vue?3f3c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/checkbox/index.vue?8039","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/checkbox/index.vue?9014","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/checkbox/index.vue?921a","uni-app:///lib/vant-weapp2/checkbox/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/checkbox/index.vue?c650","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/checkbox/index.vue?3996","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?6576","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?7f9b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/checkbox/index.wxs?5ef2","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/checkbox/index.wxs?8fe4"],"names":[],"mappings":"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A,oDAFA,EAGA,sCAHA,EAIA,SACA,cADA,EAEA,iBAFA,EAGA,oBAHA,EAIA,oBAJA,EAKA,iBACA,YADA,EAEA,cAFA,EALA,EASA,sBATA,EAUA,SACA,YADA,EAEA,cAFA,EAVA,EAcA,YACA,UADA,EAEA,SAFA,EAdA,EAJA,EAuBA,QACA,qBADA;AAEA,yBAFA,EAvBA;;AA2BA;AACA,cADA,sBACA,KADA,EACA;AACA;AACA;AACA,OAFA,MAEA;AACA;AACA;AACA,KAPA;;AASA,UATA,oBASA;AACA,oBADA,GACA,IADA,CACA,cADA,CACA,QADA,GACA,IADA,CACA,QADA,CACA,KADA,GACA,IADA,CACA,KADA;;AAGA;AACA;AACA;AACA,KAfA;;AAiBA,gBAjBA,0BAiBA;AACA,mBADA,GACA,IADA,CACA,aADA,CACA,cADA,GACA,IADA,CACA,cADA,CACA,QADA,GACA,IADA,CACA,QADA,CACA,KADA,GACA,IADA,CACA,KADA;;AAGA;AACA;AACA;AACA,KAvBA;;AAyBA,kBAzBA,0BAyBA,MAzBA,EAyBA,KAzBA,EAyBA;AACA,kDADA;AAEA,UAFA,GAEA,IAFA,CAEA,IAFA;AAGA,SAHA,GAGA,WAHA,CAGA,GAHA;;AAKA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OATA,MASA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KA/CA,EA3BA,I;;;;;;;;;;;;ACzCA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA,wCAAwW,CAAgB,maAAG,EAAC,C;;;;;;;;;;;;ACA5X;AAAe;AACf;AACA;AACA;;AAEA,M;;;;;;;;;;;;ACLA;AAAA;AAAA,wCAA2W,CAAgB,saAAG,EAAC,C;;;;;;;;;;;;ACA/X;AAAe;AACf;AACA;AACA;;AAEA,M","file":"lib/vant-weapp2/checkbox/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/icon/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/info/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n {{ dot ? '' : info }} \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060727\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060599\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=54a0b352&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccheckbox%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccheckbox%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/checkbox/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=54a0b352&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\ntry {\n components = {\n vanIcon: function() {\n return import(\n /* webpackChunkName: \"lib/vant-weapp2/icon/index\" */ \"@/lib/vant-weapp2/icon/index.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\n \n \n \n \n \n \n \r\n\t\t\t\r\n\t\t\t\n \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060493\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccheckbox%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccheckbox%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccheckbox%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccheckbox%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/field/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/field/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..a493c5d9cb7e6cb0c822a643f66c18d5e7078603
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/field/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?1363","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?7fa7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?a91e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?fb0d","uni-app:///lib/vant-weapp2/icon/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?1163","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?2888","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?b68d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7b51","uni-app:///lib/vant-weapp2/info/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?f544","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7091","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?69eb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?26af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?25af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?0c06","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?e115","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?9e11","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?ea59","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?1e55","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?6e6b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?b3f9","uni-app:///lib/vant-weapp2/cell/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?32e6","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.vue?4d1f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?4388","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?4398","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.wxs?1948","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/cell/index.wxs?2a80","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/field/index.vue?6ca3","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/field/index.vue?768a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/field/index.vue?575d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/field/index.vue?d65e","uni-app:///lib/vant-weapp2/field/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/field/index.vue?c555","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/field/index.vue?445e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?0dcb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?773e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/field/index.wxs?11e5","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/field/index.wxs?66f0"],"names":[],"mappings":"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","file":"lib/vant-weapp2/field/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/icon/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/info/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n {{ dot ? '' : info }} \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060727\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060599\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=6dcf2031&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/cell/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=6dcf2031&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\ntry {\n components = {\n vanIcon: function() {\n return import(\n /* webpackChunkName: \"lib/vant-weapp2/icon/index\" */ \"@/lib/vant-weapp2/icon/index.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\r\n\t\n \n \n \n\n \n \n {{ title }} \n \n\n \n \n {{ label }} \n \n \n\n \n {{ value }} \n \n \n\n \n \n\n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060534\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ccell%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a358483e&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cfield%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cfield%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/field/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a358483e&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\ntry {\n components = {\n vanCell: function() {\n return import(\n /* webpackChunkName: \"lib/vant-weapp2/cell/index\" */ \"@/lib/vant-weapp2/cell/index.vue\"\n )\n },\n vanIcon: function() {\n return import(\n /* webpackChunkName: \"lib/vant-weapp2/icon/index\" */ \"@/lib/vant-weapp2/icon/index.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n if (_vm.$scope.data.scopedSlotsCompiler === \"augmented\") {\n _vm.$setScopedSlotsParams(\"left-icon\", {\n slot: \"icon\"\n })\n _vm.$setScopedSlotsParams(\"label\", {\n slot: \"title\"\n })\n }\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\n \n \n \n \n \n {{ label }}\n \n \n \n \n \n \n \n \n \r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\n \n\n \r\n\t\t\t\t\r\n\t\t\t\t\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n {{ value.length >= maxlength ? maxlength : value.length }} \n /{{ maxlength }}\n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060627\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cfield%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cfield%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cfield%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cfield%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/icon/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/icon/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..0afa73287c914638cf1f68bd66c3c984291e18f6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/icon/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?1363","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?7fa7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?a91e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?fb0d","uni-app:///lib/vant-weapp2/icon/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?1163","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?2888","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?b68d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7b51","uni-app:///lib/vant-weapp2/info/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?f544","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7091","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?69eb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?26af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?25af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?0c06","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?e115","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?9e11"],"names":[],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA0S;AAC1S;AACyD;AACL;AACa;;;AAGjE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,wQAAM;AACR,EAAE,iRAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,4QAAU;AACZ;AACA;;AAEA;AACiN;AACjN,WAAW,mOAAM,iBAAiB,2OAAM;;AAExC;AACe,gF;;;;;;;;;;;;AC3Bf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqtB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;ACWzuB;AACA,qE;;;;;;;;;;AACA,gCACA,SACA,YADA,EAEA,UAFA,EAGA,UAHA,EAIA,aAJA,EAKA,mBALA,EAMA,eACA,YADA,EAEA,iBAFA,EANA;;AAUA,gBAVA,EADA;;AAaA;AACA,WADA,qBACA;AACA;AACA,KAHA,EAbA,I;;;;;;;;;;;;ACbA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA4S;AAC5S;AACyD;AACL;AACa;;;AAGjE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,0QAAM;AACR,EAAE,mRAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,8QAAU;AACZ;AACA;;AAEA;AACmN;AACnN,WAAW,oOAAM,iBAAiB,4OAAM;;AAExC;AACe,gF;;;;;;;;;;;;AC3Bf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqtB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;ACOzuB,qE;;;;;;AACA,gCACA,SACA,YADA,EAEA,UAFA,EAGA,mBAHA,EADA,I;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA,wCAAoW,CAAgB,+ZAAG,EAAC,C;;;;;;;;;;;;ACAxX;AAAe;AACf;AACA;AACA;;AAEA,M;;;;;;;;;;;;ACLA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA,wCAAuW,CAAgB,kaAAG,EAAC,C;;;;;;;;;;;;ACA3X;AAAe;AACf;AACA;AACA;;AAEA,M","file":"lib/vant-weapp2/icon/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/icon/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/info/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n {{ dot ? '' : info }} \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060727\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060599\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/picker/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/picker/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..e832bcbbf2dd4d9d8d65a195be9231725e9be60a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/picker/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?538c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?45ea","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?b841","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?cc3a","uni-app:///lib/vant-weapp2/loading/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?8d07","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?e87f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?bc58","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?4b14","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.wxs?b0ca","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.wxs?79ed","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker/index.vue?ebe4","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker/index.vue?0c03","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker/index.vue?b619","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker/index.vue?987f","uni-app:///lib/vant-weapp2/picker/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker-column/index.vue?f51d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker-column/index.vue?6085","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker-column/index.vue?a17d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker-column/index.vue?7f3f","uni-app:///lib/vant-weapp2/picker-column/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker-column/index.vue?d7df","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker-column/index.vue?593c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?36d9","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?4bc0","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker-column/index.wxs?6290","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker-column/index.wxs?6c1e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker/index.vue?0e07","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker/index.vue?3d90","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker/index.wxs?6840","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/picker/index.wxs?9240"],"names":[],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkd;AACld;AACyD;AACL;AACa;;;AAGjE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gbAAM;AACR,EAAE,ybAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,obAAU;AACZ;AACA;;AAEA;AACsN;AACtN,WAAW,uOAAM,iBAAiB,+OAAM;AAC4K;AACpN,WAAW,sOAAM,iBAAiB,8OAAM;;AAExC;AACe,gF;;;;;;;;;;;;AC7Bf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqtB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiBzuB,qE;;;;;;;;;;;;;;;;AACA,gCACA,SACA,aADA,EAEA,iBAFA,EAGA,QACA,YADA,EAEA,iBAFA,EAHA,EAOA,YAPA,EAQA,gBARA,EADA,EAWA,QACA,sBACA,UADA,GADA,EAXA,I;;;;;;;;;;;;AClBA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA,wCAAuW,CAAgB,kaAAG,EAAC,C;;;;;;;;;;;;ACA3X;AAAe;AACf;AACA;AACA;;AAEA,M;;;;;;;;;;;;ACLA;AAAA;AAAA,wCAA0W,CAAgB,qaAAG,EAAC,C;;;;;;;;;;;;ACA9X;AAAe;AACf;AACA;AACA;;AAEA,M;;;;;;;;;;;;ACLA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA0S;AAC1S;AACyD;AACL;AACa;;;AAGjE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,wQAAM;AACR,EAAE,iRAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,4QAAU;AACZ;AACA;;AAEA;AACmN;AACnN,WAAW,qOAAM,iBAAiB,6OAAM;;AAExC;AACe,gF;;;;;;;;;;;;AC3Bf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqtB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACsDzuB;AACA;AACA;AACA,uD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,gCACA,0DADA,EAEA,+DACA,YACA,YADA,EAEA,aAFA,EADA,EAKA,mBACA,YADA,EAEA,YAFA,EALA,EASA,gBACA,YADA,EAEA,QAFA,EATA,EAaA,WACA,WADA,EAEA,SAFA,EAIA,QAJA,sBAIA,sFACA,mDAEA,2DACA,wCACA,CACA,CAVA,EAbA,GAFA,EA6BA,YA7BA,0BA6BA,kBACA,0CACA,oFADA,IAGA,CAjCA,EAmCA,WACA,IADA,kBACA,EADA,EAGA,UAHA,wBAGA,uBACA,IADA,GACA,IADA,CACA,IADA,CAEA,4BACA,CACA,EACA,oBADA,EADA,CADA,GAMA,YANA,CAOA,yGACA,0BACA,CAdA,EAgBA,IAhBA,gBAgBA,KAhBA,EAgBA,KACA,IADA,GACA,2BADA,CACA,IADA;;AAGA;AACA;AACA,uCADA;AAEA,uCAFA;;AAIA,OALA,MAKA;AACA;AACA,iCADA;AAEA,kCAFA;;AAIA;AACA,KA9BA;;AAgCA,YAhCA,oBAgCA,KAhCA,EAgCA;AACA;AACA;AACA,sBADA;AAEA,uCAFA;AAGA,uCAHA;;AAKA,OANA,MAMA;AACA;AACA,sBADA;AAEA,iCAFA;AAGA,kDAHA;;AAKA;AACA,KA9CA;;AAgDA;AACA,aAjDA,qBAiDA,KAjDA,EAiDA;AACA;AACA,KAnDA;;AAqDA;AACA,kBAtDA,0BAsDA,KAtDA,EAsDA;AACA;AACA;AACA,KAzDA;;AA2DA;AACA,kBA5DA,0BA4DA,KA5DA,EA4DA,KA5DA,EA4DA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,KApEA;;AAsEA;AACA,kBAvEA,0BAuEA,WAvEA,EAuEA;AACA;AACA,KAzEA;;AA2EA;AACA,kBA5EA,0BA4EA,WA5EA,EA4EA,WA5EA,EA4EA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,KApFA;;AAsFA;AACA,mBAvFA,2BAuFA,KAvFA,EAuFA;AACA;AACA,KAzFA;;AA2FA;AACA,mBA5FA,2BA4FA,KA5FA,EA4FA,OA5FA,EA4FA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA,SADA,CACA;AACA,wBADA,EADA;;AAIA,UAJA,CAIA;AACA;AACA;AACA;AACA,OARA;AASA,KAlHA;;AAoHA;AACA,aArHA,uBAqHA;AACA;AACA,KAvHA;;AAyHA;AACA,aA1HA,qBA0HA,MA1HA,EA0HA;AACA;AACA;AACA,KA7HA;;AA+HA;AACA,cAhIA,wBAgIA;AACA;AACA,KAlIA;;AAoIA;AACA,cArIA,sBAqIA,OArIA,EAqIA;AACA;AACA;AACA,KAxIA,EAnCA,I;;;;;;;;;;;;AC1DA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkd;AACld;AACyD;AACL;AACa;;;AAGjE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gbAAM;AACR,EAAE,ybAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,obAAU;AACZ;AACA;;AAEA;AAC4N;AAC5N,WAAW,6OAAM,iBAAiB,qPAAM;AACkL;AAC1N,WAAW,4OAAM,iBAAiB,oPAAM;;AAExC;AACe,gF;;;;;;;;;;;;AC7Bf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqtB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACmCzuB;AACA;AACA,qE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,2BACA,gCACA,yBADA,EAEA,SACA,gBADA,EAEA,iBAFA,EAGA,kBAHA,EAIA,wBAJA,EAKA,kBACA,WADA,EAEA,SAFA,EALA,EASA,gBACA,YADA,EAEA,QAFA,EAIA,QAJA,oBAIA,KAJA,EAIA,CACA,qBACA,CANA,EATA,EAFA,EAoBA,QACA,SADA,EAEA,SAFA,EAGA,WAHA,EAIA,cAJA,EAKA,WALA,EAMA,eANA,EApBA,EA6BA,OA7BA,qBA6BA,sBACA,YADA,GACA,IADA,CACA,YADA,CACA,cADA,GACA,IADA,CACA,cADA,CAEA,WACA,0BADA;AAEA,6BAFA;AAGA,QAHA,CAGA;AACA;AACA,KALA;AAMA,GArCA;;AAuCA;AACA,YADA,sBACA;AACA;AACA,KAHA;;AAKA,gBALA,wBAKA,KALA,EAKA;AACA;AACA,wCADA;AAEA,gCAFA;AAGA,mBAHA;;AAKA,KAXA;;AAaA,eAbA,uBAaA,KAbA,EAaA;AACA,UADA,GACA,IADA,CACA,IADA;AAEA;AACA;AACA,mHADA;;AAGA,KAnBA;;AAqBA,cArBA,wBAqBA;AACA,UADA,GACA,IADA,CACA,IADA;;AAGA;AACA;AACA,oCADA;;AAGA;AACA;AACA;AACA,KA/BA;;AAiCA,eAjCA,uBAiCA,KAjCA,EAiCA;AACA,WADA,GACA,2BADA,CACA,KADA;AAEA;AACA,KApCA;;AAsCA,eAtCA,uBAsCA,KAtCA,EAsCA;AACA,UADA,GACA,IADA,CACA,IADA;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,KAtDA;;AAwDA,cAxDA,sBAwDA,MAxDA,EAwDA;AACA;AACA,KA1DA;;AA4DA,iBA5DA,yBA4DA,MA5DA,EA4DA;AACA,UADA,GACA,IADA,CACA,IADA;AAEA;AACA,KA/DA;;AAiEA,YAjEA,oBAiEA,KAjEA,EAiEA,UAjEA,EAiEA;AACA,UADA,GACA,IADA,CACA,IADA;AAEA;AACA;;AAEA;AACA;AACA,wBADA;AAEA,6BAFA;AAGA,YAHA,CAGA;AACA;AACA;AACA;AACA,SAPA;AAQA;;AAEA;AACA,sBADA;;AAGA,KApFA;;AAsFA,YAtFA,oBAsFA,KAtFA,EAsFA;AACA,aADA,GACA,IADA,CACA,OADA;;AAGA;AACA;AACA;AACA;AACA;;AAEA;AACA,KAhGA;;AAkGA,YAlGA,sBAkGA;AACA,UADA,GACA,IADA,CACA,IADA;AAEA;AACA,KArGA,EAvCA,I;;;;;;;;;;;;ACvCA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA,wCAA6W,CAAgB,waAAG,EAAC,C;;;;;;;;;;;;ACAjY;AAAe;AACf;AACA;AACA;;AAEA,M;;;;;;;;;;;;ACLA;AAAA;AAAA,wCAAgX,CAAgB,2aAAG,EAAC,C;;;;;;;;;;;;ACApY;AAAe;AACf;AACA;AACA;;AAEA,M;;;;;;;;;;;;ACLA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA,wCAAyW,CAAgB,oaAAG,EAAC,C;;;;;;;;;;;;ACA7X;AAAe;AACf;AACA;AACA;;AAEA,M","file":"lib/vant-weapp2/picker/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=2d5c4ea3&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/loading/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=2d5c4ea3&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060716\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=8ecc4946&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpicker%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/picker/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=8ecc4946&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n {{ cancelButtonText }}\n \n {{ title }} \n \n {{ confirmButtonText }}\n \n \n\n \n \n \n\n \n \r\n\t\t\t\n \n \n \n \n \n \n\n \n \n \n {{ cancelButtonText }}\n \n {{ title }} \n \n {{ confirmButtonText }}\n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=128e2a9c&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpicker-column%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpicker-column%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/picker-column/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=128e2a9c&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\r\n\t\n \n \r\n \r\n\t\t\t\n \n {{ computed.optionText(option, valueKey) }}\n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060745\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpicker-column%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpicker-column%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpicker-column%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpicker-column%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060698\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpicker%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpicker%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/popup/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/popup/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..45aacc7d76afe6274bb484fbd69570d6f721c68d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/popup/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?1363","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?7fa7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?a91e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?fb0d","uni-app:///lib/vant-weapp2/icon/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?1163","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?2888","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?b68d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7b51","uni-app:///lib/vant-weapp2/info/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?f544","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7091","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?69eb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?26af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?25af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?0c06","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?e115","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?9e11","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/popup/index.vue?7fa7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/popup/index.vue?3d00","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/popup/index.vue?0ad8","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/popup/index.vue?b873","uni-app:///lib/vant-weapp2/popup/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/overlay/index.vue?daca","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/overlay/index.vue?cd7a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/overlay/index.vue?da6e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/overlay/index.vue?11ee","uni-app:///lib/vant-weapp2/overlay/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/transition/index.vue?d2da","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/transition/index.vue?9001","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/transition/index.vue?9bc0","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/transition/index.vue?3513","uni-app:///lib/vant-weapp2/transition/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/transition/index.vue?a66d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/transition/index.vue?4dfa","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/transition/index.wxs?c6d7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/transition/index.wxs?21c0","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/overlay/index.vue?f2d3","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/overlay/index.vue?9a2a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/popup/index.vue?f800","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/popup/index.vue?f54f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?1a9d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?e08b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/popup/index.wxs?6418","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/popup/index.wxs?0d8a"],"names":[],"mappings":"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","file":"lib/vant-weapp2/popup/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/icon/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/info/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n {{ dot ? '' : info }} \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060727\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060599\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=089d95da&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpopup%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpopup%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/popup/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=089d95da&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\ntry {\n components = {\n vanIcon: function() {\n return import(\n /* webpackChunkName: \"lib/vant-weapp2/icon/index\" */ \"@/lib/vant-weapp2/icon/index.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\n \n \r\n\t\t\r\n\t\t\n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=29042e92&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"lib/vant-weapp2/overlay/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=29042e92&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=22670d38&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ctransition%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/transition/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=22670d38&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060763\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ctransition%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ctransition%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060735\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060520\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpopup%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpopup%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpopup%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cpopup%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/steps/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/steps/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..83ee8746325d269338db66414bb5f59f05b4174b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/steps/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?1363","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?7fa7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?a91e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?fb0d","uni-app:///lib/vant-weapp2/icon/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?1163","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?2888","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?b68d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7b51","uni-app:///lib/vant-weapp2/info/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?f544","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7091","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?69eb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?26af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?25af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?0c06","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?e115","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?9e11","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/steps/index.vue?cc36","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/steps/index.vue?55bd","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/steps/index.vue?4702","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/steps/index.vue?56c9","uni-app:///lib/vant-weapp2/steps/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/steps/index.vue?867f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/steps/index.vue?a15d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?caa4","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?1c91","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/steps/index.vue?ed67","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/steps/index.vue?6a35"],"names":[],"mappings":"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","file":"lib/vant-weapp2/steps/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/icon/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/info/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n {{ dot ? '' : info }} \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060727\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060599\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=69a60c64&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwic3RhdHVzIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiZnVuY3Rpb24gZ2V0KGluZGV4LCBhY3RpdmUpIHtcbiAgaWYgKGluZGV4IDwgYWN0aXZlKSB7XG4gICAgcmV0dXJuICdmaW5pc2gnO1xuICB9IGVsc2UgaWYgKGluZGV4ID09PSBhY3RpdmUpIHtcbiAgICByZXR1cm4gJ3Byb2Nlc3MnO1xuICB9XG5cbiAgcmV0dXJuICdpbmFjdGl2ZSc7XG59XG5cbm1vZHVsZS5leHBvcnRzID0gZ2V0OyIsInN0YXJ0IjoxOTQ1LCJhdHRycyI6eyJtb2R1bGUiOiJzdGF0dXMiLCJsYW5nIjoid3hzIn0sImVuZCI6MjEyN319&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Csteps%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.vue?vue&type=custom&index=1&blockType=script&module=status&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/steps/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=69a60c64&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwic3RhdHVzIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiZnVuY3Rpb24gZ2V0KGluZGV4LCBhY3RpdmUpIHtcbiAgaWYgKGluZGV4IDwgYWN0aXZlKSB7XG4gICAgcmV0dXJuICdmaW5pc2gnO1xuICB9IGVsc2UgaWYgKGluZGV4ID09PSBhY3RpdmUpIHtcbiAgICByZXR1cm4gJ3Byb2Nlc3MnO1xuICB9XG5cbiAgcmV0dXJuICdpbmFjdGl2ZSc7XG59XG5cbm1vZHVsZS5leHBvcnRzID0gZ2V0OyIsInN0YXJ0IjoxOTQ1LCJhdHRycyI6eyJtb2R1bGUiOiJzdGF0dXMiLCJsYW5nIjoid3hzIn0sImVuZCI6MjEyN319&\"","var components\ntry {\n components = {\n vanIcon: function() {\n return import(\n /* webpackChunkName: \"lib/vant-weapp2/icon/index\" */ \"@/lib/vant-weapp2/icon/index.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n var l0 = _vm.__map(_vm.steps, function(item, index) {\n var $orig = _vm.__get_orig(item)\n\n var m0 = _vm.status(index, _vm.active)\n var m1 =\n index !== _vm.active && (item.inactiveIcon || _vm.inactiveIcon)\n ? _vm.status(index, _vm.active)\n : null\n return {\n $orig: $orig,\n m0: m0,\n m1: m1\n }\n })\n\n _vm.$mp.data = Object.assign(\n {},\n {\n $root: {\n l0: l0\n }\n }\n )\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \r\n\t\t\t\n \n \n {{ item.text }} \n {{ item.desc }} \n \n\n \n \n \n \n \n\n \n \n\n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060685\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Csteps%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Csteps%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=custom&index=1&blockType=script&module=status&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=custom&index=1&blockType=script&module=status&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/tag/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/tag/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..811f20005a0b836f74bd94e970c5fc02f0a6e961
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/tag/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?1363","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?7fa7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?a91e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?fb0d","uni-app:///lib/vant-weapp2/icon/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?1163","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?2888","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?b68d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7b51","uni-app:///lib/vant-weapp2/info/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?f544","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7091","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?69eb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?26af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?25af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?0c06","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?e115","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?9e11","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/tag/index.vue?caef","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/tag/index.vue?504c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/tag/index.vue?80ef","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/tag/index.vue?e862","uni-app:///lib/vant-weapp2/tag/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/tag/index.vue?da40","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/tag/index.vue?b49f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?e698","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?e6b8","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/tag/index.wxs?9364","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/tag/index.wxs?3d80"],"names":[],"mappings":"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","file":"lib/vant-weapp2/tag/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/icon/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/info/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n {{ dot ? '' : info }} \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060727\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060599\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=bcb454fe&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ctag%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ctag%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/tag/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=bcb454fe&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\ntry {\n components = {\n vanIcon: function() {\n return import(\n /* webpackChunkName: \"lib/vant-weapp2/icon/index\" */ \"@/lib/vant-weapp2/icon/index.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060505\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ctag%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ctag%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ctag%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Ctag%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/uploader/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/uploader/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..13be348e1d026321114a0b5a4f0642eb03faef8f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/lib/vant-weapp2/uploader/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?1363","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?7fa7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?a91e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?fb0d","uni-app:///lib/vant-weapp2/icon/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?1163","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?2888","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?b68d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7b51","uni-app:///lib/vant-weapp2/info/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?f544","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/info/index.vue?7091","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?69eb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?26af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?25af","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.vue?0c06","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?e115","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/icon/index.wxs?9e11","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/uploader/index.vue?b4ca","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/uploader/index.vue?5e64","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/uploader/index.vue?5424","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/uploader/index.vue?e289","uni-app:///lib/vant-weapp2/uploader/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?538c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?45ea","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?b841","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?cc3a","uni-app:///lib/vant-weapp2/loading/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?8d07","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.vue?e87f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?bc58","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?4b14","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.wxs?b0ca","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/loading/index.wxs?79ed","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/uploader/index.vue?3054","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/uploader/index.vue?6d58","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?b666","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/wxs/utils.wxs?cf48","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/uploader/index.wxs?b321","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/lib/vant-weapp2/uploader/index.wxs?c56a"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,gCACA,qBACA,cACA,EACA,iBADA,EAEA,iBAFA,EAGA,kBAHA,EAIA,sBAJA,EAKA,eALA,EAMA,gBANA,EAOA,eACA,UADA,EAEA,SAFA,EAPA,EAWA,QACA,UADA,EAEA,SAFA,EAXA,EAeA,UACA,YADA,EAEA,cAFA,EAfA,EAmBA,YACA,WADA,EAEA,SAFA,EAGA,0BAHA,EAnBA,EAwBA,WACA,YADA,EAEA,uBAFA,EAxBA,EA4BA,YACA,YADA,EAEA,UAFA,EA5BA,EAgCA,aACA,aADA,EAEA,WAFA,EAhCA,EAoCA,cACA,aADA,EAEA,WAFA,EApCA,EAwCA,gBACA,aADA,EAEA,WAFA,EAxCA,EA4CA,oBACA,aADA,EAEA,WAFA,EA5CA,EAgDA,YACA,YADA,EAEA,oBAFA,EAhDA,EAoDA,cACA,YADA,EAEA,mBAFA,EApDA,EADA,EA0DA,wBA1DA,CADA,EA6DA,wBA7DA,CADA,EAgEA,QACA,SADA,EAEA,eAFA,EAhEA;;AAoEA;AACA,kBADA,4BACA;AACA,UADA,CACA,QADA,CACA,QADA,+BACA,EADA,kBACA,QADA,GACA,IADA,CACA,QADA;AAEA;AACA;AACA,kDADA;AAEA,kDAFA;AAGA,wFAHA,GADA;;;AAOA;AACA,oBADA;AAEA,0CAFA;;AAIA,KAdA;;AAgBA,aAhBA,qBAgBA,KAhBA,EAgBA;AACA;AACA,uBADA;AAEA,2DAFA;;AAIA,KArBA;;AAuBA,eAvBA,yBAuBA;AACA,cADA,GACA,IADA,CACA,QADA,CACA,QADA,GACA,IADA,CACA,QADA,CACA,KADA,GACA,IADA,CACA,KADA,CACA,QADA,GACA,IADA,CACA,QADA;;AAGA;AACA;AACA;;AAEA;AACA;AACA,yCADA,GADA;;;AAKA,UALA,CAKA;AACA;AACA,OAPA;AAQA,WARA,CAQA;AACA;AACA,OAVA;AAWA,KAzCA;;AA2CA,gBA3CA,wBA2CA,IA3CA,EA2CA;AACA,gBADA,GACA,IADA,CACA,UADA,CACA,aADA,GACA,IADA,CACA,aADA;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,uBADA;AAEA;AACA;AACA;AACA,sBADA,EADA;;AAIA,4BAJA,CADA;;AAOA;AACA;AACA;AACA;AACA,eAFA,MAEA;AACA;AACA;AACA,aAPA,EAPA,CAFA;;;;AAoBA,SArBA;AAsBA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,OAFA,MAEA;AACA;AACA;AACA,KArFA;;AAuFA,eAvFA,uBAuFA,IAvFA,EAuFA;AACA,aADA,GACA,IADA,CACA,OADA,CACA,SADA,GACA,IADA,CACA,SADA;AAEA;;AAEA;AACA;AACA,kBADA;AAEA;AACA;AACA,oBADA,EADA;;AAIA,wBAJA,CAFA;;;AASA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,kBADA;AAEA;AACA;AACA,kBADA,EADA;;AAIA,sBAJA,CAFA;;;AASA,KArHA;;AAuHA,cAvHA,sBAuHA,KAvHA,EAuHA;AACA,WADA,GACA,2BADA,CACA,KADA;AAEA;AACA,cADA;AAEA;AACA,kCADA,GAFA;;;AAMA,KA/HA;;AAiIA,kBAjIA,0BAiIA,KAjIA,EAiIA;AACA;AACA;AACA,OAHA;;AAKA,WALA,GAKA,2BALA,CAKA,KALA;AAMA,WANA,GAMA,IANA,CAMA,KANA;AAOA;AACA;AACA,2HADA;AAEA,yBAFA;;AAIA,YAJA,kBAIA;AACA;AACA,2BADA;AAEA,wBAFA;;AAIA,SATA;;AAWA,KApJA;;AAsJA,kBAtJA,0BAsJA,KAtJA,EAsJA;AACA;AACA;AACA,OAHA;;AAKA,WALA,GAKA,2BALA,CAKA,KALA;AAMA,WANA,GAMA,IANA,CAMA,KANA;AAOA;AACA;AACA,cADA,CACA,uDADA;AAEA,WAFA,CAEA;AACA;AACA,2BADA,GADA,GAFA,CADA;;;AAQA,sBARA;;AAUA,YAVA,kBAUA;AACA;AACA,2BADA;AAEA,wBAFA;;AAIA,SAfA;;AAiBA,KA9KA;;AAgLA,iBAhLA,yBAgLA,KAhLA,EAgLA;AACA,WADA,GACA,2BADA,CACA,KADA;AAEA;AACA,uCADA;AAEA,sBAFA;;AAIA,KAtLA;;AAwLA,kBAxLA,0BAwLA,KAxLA,EAwLA;AACA,WADA,GACA,2BADA,CACA,KADA;AAEA;AACA;AACA,KA5LA,EApEA,I;;;;;;;;;;;;;AC1EA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkd;AACld;AACyD;AACL;AACa;;;AAGjE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gbAAM;AACR,EAAE,ybAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,obAAU;AACZ;AACA;;AAEA;AACsN;AACtN,WAAW,uOAAM,iBAAiB,+OAAM;AAC4K;AACpN,WAAW,sOAAM,iBAAiB,8OAAM;;AAExC;AACe,gF;;;;;;;;;;;;AC7Bf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqtB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiBzuB,qE;;;;;;;;;;;;;;;;AACA,gCACA,SACA,aADA,EAEA,iBAFA,EAGA,QACA,YADA,EAEA,iBAFA,EAHA,EAOA,YAPA,EAQA,gBARA,EADA,EAWA,QACA,sBACA,UADA,GADA,EAXA,I;;;;;;;;;;;;AClBA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA,wCAAuW,CAAgB,kaAAG,EAAC,C;;;;;;;;;;;;ACA3X;AAAe;AACf;AACA;AACA;;AAEA,M;;;;;;;;;;;;ACLA;AAAA;AAAA,wCAA0W,CAAgB,qaAAG,EAAC,C;;;;;;;;;;;;ACA9X;AAAe;AACf;AACA;AACA;;AAEA,M;;;;;;;;;;;;ACLA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd;;;;;;;;;;;;;ACNL;AAAA;AAAA,wCAAwW,CAAgB,maAAG,EAAC,C;;;;;;;;;;;;ACA5X;AAAe;AACf;AACA;AACA;;AAEA,M;;;;;;;;;;;;ACLA;AAAA;AAAA,wCAA2W,CAAgB,saAAG,EAAC,C;;;;;;;;;;;;ACA/X;AAAe;AACf;AACA;AACA;;AAEA,M","file":"lib/vant-weapp2/uploader/index.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/icon/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=1cda2288&filter-modules=eyJjb21wdXRlZCI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NSwiYXR0cnMiOnsibW9kdWxlIjoiY29tcHV0ZWQiLCJsYW5nIjoid3hzIiwic3JjIjoiLi9pbmRleC53eHMifSwiZW5kIjo1NX19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/info/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a7bd6706&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fX0%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\r\n\n \n {{ dot ? '' : info }} \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060727\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cinfo%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060599\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cicon%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=4d871c3d&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cuploader%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cuploader%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/uploader/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=4d871c3d&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\ntry {\n components = {\n vanIcon: function() {\n return import(\n /* webpackChunkName: \"lib/vant-weapp2/icon/index\" */ \"@/lib/vant-weapp2/icon/index.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\n \n \n \n \r\n\t\t\t\t\n \n \n \n\n \n \n \n {{ item.name || item.url }} \n \n\n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n\n \r\n\t\t\t\t\n \n \n {{ uploadText }} \n \n \n \n \n\n\n\n\n","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=2d5c4ea3&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"../wxs/utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=utils&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\nimport block1 from \"./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=computed&lang=wxs\"\nif (typeof block1 === 'function') block1(component)\n\ncomponent.options.__file = \"lib/vant-weapp2/loading/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=2d5c4ea3&filter-modules=eyJ1dGlscyI6eyJ0eXBlIjoic2NyaXB0IiwiY29udGVudCI6IiIsInN0YXJ0Ijo1NywiYXR0cnMiOnsibW9kdWxlIjoidXRpbHMiLCJsYW5nIjoid3hzIiwic3JjIjoiLi4vd3hzL3V0aWxzLnd4cyJ9LCJlbmQiOjU3fSwiY29tcHV0ZWQiOnsidHlwZSI6InNjcmlwdCIsImNvbnRlbnQiOiIiLCJzdGFydCI6MTIyLCJhdHRycyI6eyJtb2R1bGUiOiJjb21wdXRlZCIsImxhbmciOiJ3eHMiLCJzcmMiOiIuL2luZGV4Lnd4cyJ9LCJlbmQiOjEyMn19&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n\r\n\n \n \n \n \n \n \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060716\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cloading%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638892060646\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cuploader%5Cindex.vue&module=utils&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./utils.wxs?vue&type=custom&index=0&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cuploader%5Cindex.vue&module=utils&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cuploader%5Cindex.vue&module=computed&lang=wxs\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!./index.wxs?vue&type=custom&index=1&blockType=script&issuerPath=D%3A%5Cprojects%5Cbeijingcanghe%5Clitemall%5Clitemall-wx_uni%5Clib%5Cvant-weapp2%5Cuploader%5Cindex.vue&module=computed&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/about/about.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/about/about.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..ea54eacdde41f2b2b440a65b118ce32cc596d07c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/about/about.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?2560","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?9a34","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?5439","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?4995","uni-app:///pages/about/about.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?5725","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?42c6"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACa;;;AAGjE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAssB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC0C1tB;;AAEA,6D,CAAA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,sBADA;AAEA,uDAFA;AAGA,2BAHA;AAIA,6BAJA;AAKA,4BALA;AAMA,qBANA;;AAQA;AACA;;OAXA;AAcA;AACA;AACA,GAhBA;AAiBA;AACA;AACA;AACA;AACA;AACA;AACA,+BADA;AAEA,qCAFA;AAGA,iCAHA;AAIA,2BAJA;AAKA,uCALA;AAMA,yCANA;;AAQA;AACA,OAXA;AAYA,KAfA;;AAiBA;AACA;AACA;AACA,2CADA;AAEA,6CAFA;AAGA,uBAHA;AAIA,6BAJA;;AAMA,KAzBA;;AA2BA;AACA;AACA;AACA,+BADA;;AAGA,KAhCA,EAjBA,E;;;;;;;;;;;;;AC/CA;AAAA;AAAA;AAAA;AAAigC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACArhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/about/about.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/about/about.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./about.vue?vue&type=template&id=92c79dbc&\"\nvar renderjs\nimport script from \"./about.vue?vue&type=script&lang=js&\"\nexport * from \"./about.vue?vue&type=script&lang=js&\"\nimport style0 from \"./about.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/about/about.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./about.vue?vue&type=template&id=92c79dbc&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./about.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./about.vue?vue&type=script&lang=js&\"","\n \n 项目名称: \n \n \n {{ name }} \n \n \n\n 项目地址: \n \n \n {{ address }} \n \n \n \n \n \n\n 电话号码: \n \n \n {{ phone }} \n \n \n \n \n \n\n QQ交流群: \n \n \n {{ qq }} \n \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./about.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./about.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275190\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/accountLogin/accountLogin.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/accountLogin/accountLogin.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..dc6851df8e7f1c1adb42eaffd4f072b886602a00
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/accountLogin/accountLogin.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?915a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?e5b1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?84f2","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?5d50","uni-app:///pages/auth/accountLogin/accountLogin.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?bea1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?d181"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,uH,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,qBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAyH;AACzH;AACgE;AACL;AACa;;;AAGxE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,kFAAM;AACR,EAAE,uFAAM;AACR,EAAE,gGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,2FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA4tB,CAAgB,4rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACgChvB;;AAEA;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA;AACA,iBADA,EADA;;AAIA;AACA,iBADA,EAJA;;AAOA,cAPA;AAQA,wBARA;;AAUA,GAZA;AAaA;AACA;AACA;AACA,GAhBA;AAiBA,gCAjBA;AAkBA;AACA;AACA,GApBA;AAqBA;AACA;AACA,GAvBA;AAwBA;AACA;AACA,GA1BA;AA2BA;AACA;AACA;;AAEA;AACA;AACA,uBADA;AAEA,8BAFA;AAGA,2BAHA;;AAKA;AACA;;AAEA;AACA,mCADA;AAEA;AACA,iCADA;AAEA,iCAFA,EAFA;;AAMA,sBANA;AAOA;AACA,4CADA,EAPA;;AAUA;AACA;AACA;AACA,gCADA;;AAGA;AACA;AACA;AACA,0BADA;AAEA,uCAFA;AAGA;AACA;AACA,mDADA;;AAGA,eAPA;;AASA,WAfA,MAeA;AACA;AACA,uDADA;;AAGA;AACA;AACA;AACA,SAjCA;;AAmCA,KAhDA;;AAkDA;AACA;AACA,gCADA;;AAGA,KAtDA;;AAwDA;AACA;AACA,gCADA;;AAGA,KA5DA;;AA8DA;AACA;AACA,4BADA;;AAGA,KAlEA;;AAoEA;AACA;AACA;AACA;AACA,wBADA;;AAGA;;AAEA;AACA;AACA,wBADA;;AAGA;;AAEA;AACA;AACA,oBADA;;AAGA,gBAjBA;;AAmBA,KAxFA,EA3BA,E;;;;;;;;;;;;;ACvCA;AAAA;AAAA;AAAA;AAA6hC,CAAgB,68BAAG,EAAC,C;;;;;;;;;;;ACAjjC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/auth/accountLogin/accountLogin.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/auth/accountLogin/accountLogin.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./accountLogin.vue?vue&type=template&id=f026e77e&\"\nvar renderjs\nimport script from \"./accountLogin.vue?vue&type=script&lang=js&\"\nexport * from \"./accountLogin.vue?vue&type=script&lang=js&\"\nimport style0 from \"./accountLogin.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/auth/accountLogin/accountLogin.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./accountLogin.vue?vue&type=template&id=f026e77e&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./accountLogin.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./accountLogin.vue?vue&type=script&lang=js&\"","\n \n \n \n \n 0\" id=\"clear-username\" class=\"clear\" @tap.native.stop.prevent=\"clearInput\" />\n \n\n \n \n 0\" name=\"close\" @tap.native.stop.prevent=\"clearInput\" />\n \n\n \n\n \n\n \n 注册账号 \n 忘记密码 \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./accountLogin.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./accountLogin.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275220\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/login/login.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/login/login.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..5b05ae4395c69190f17cc262e2b319345475ff3a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/login/login.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?b771","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?b60d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?458e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?aebe","uni-app:///pages/auth/login/login.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?22a1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?39b0"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,kG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACa;;;AAGjE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqtB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;ACWzuB;;AAEA;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,kCADA;;AAGA,GALA;AAMA;AACA;AACA;AACA;AACA;AACA,mCADA;;AAGA;AACA,GAdA;AAeA,gCAfA;AAgBA;AACA;AACA,GAlBA;AAmBA;AACA;AACA,GArBA;AAsBA;AACA;AACA,GAxBA;AAyBA;AACA;AACA;AACA;AACA,0BADA;AAEA;AACA;AACA;AACA,WALA;AAMA;AACA;AACA,WARA;;AAUA,OAXA,MAWA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,KAtBA;;AAwBA;AACA;AACA;AACA,YADA,CACA;AACA;AACA;AACA,oBADA;;AAGA,SANA;AAOA,aAPA,CAOA;AACA;AACA;AACA,SAVA;AAWA,OAZA;AAaA,KAtCA;;AAwCA;AACA;AACA,oDADA;;AAGA,KA5CA,EAzBA,E;;;;;;;;;;;;;AClBA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/auth/login/login.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/auth/login/login.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./login.vue?vue&type=template&id=b50ac456&\"\nvar renderjs\nimport script from \"./login.vue?vue&type=script&lang=js&\"\nexport * from \"./login.vue?vue&type=script&lang=js&\"\nimport style0 from \"./login.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/auth/login/login.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./login.vue?vue&type=template&id=b50ac456&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./login.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./login.vue?vue&type=script&lang=js&\"","\n \n \r\n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./login.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./login.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275226\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/register/register.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/register/register.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..2b3aec4d518b818cff3d4918f24cbafb69ef8587
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/register/register.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?022f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?13c1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?a606","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?0496","uni-app:///pages/auth/register/register.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?28b5","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?dd3b"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":"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","file":"pages/auth/register/register.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/auth/register/register.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./register.vue?vue&type=template&id=4586e8be&\"\nvar renderjs\nimport script from \"./register.vue?vue&type=script&lang=js&\"\nexport * from \"./register.vue?vue&type=script&lang=js&\"\nimport style0 from \"./register.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/auth/register/register.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./register.vue?vue&type=template&id=4586e8be&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./register.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./register.vue?vue&type=script&lang=js&\"","\n \n \n \n \n 0\" id=\"clear-username\" class=\"clear\" name=\"close\" @tap.native.stop.prevent=\"clearInput\" />\n \n\n \n \n 0\" name=\"close\" @tap.native.stop.prevent=\"clearInput\" />\n \n\n \n \n 0\" name=\"close\" @tap.native.stop.prevent=\"clearInput\" />\n \n\n \n \n 0\" name=\"close\" @tap.native.stop.prevent=\"clearInput\" />\n \n\n \n \n \n 0\" name=\"close\" @tap.native.stop.prevent=\"clearInput\" />\n \n 获取验证码 \n \n\n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./register.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./register.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275218\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/reset/reset.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/reset/reset.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..894ab60b66a26c7bc383ee532ca57d9550354cda
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/auth/reset/reset.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?98e9","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?fd01","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?f942","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?da7e","uni-app:///pages/auth/reset/reset.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?3ec0","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?4f64"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,kG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACa;;;AAGjE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqtB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACgCzuB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA;AACA,iBADA,EADA;;AAIA;AACA,iBADA,EAJA;;AAOA;AACA,iBADA,EAPA;;AAUA;AACA,iBADA,EAVA;;;AAcA,GAhBA;AAiBA;AACA;AACA;AACA,GApBA;AAqBA,gCArBA;AAsBA;AACA;AACA,GAxBA;AAyBA;AACA;AACA,GA3BA;AA4BA;AACA;AACA,GA9BA;AA+BA;AACA;AACA;AACA;AACA,oCADA;AAEA;AACA,6BADA,EAFA;;AAKA,sBALA;AAMA;AACA,4CADA,EANA;;AASA;AACA;AACA;AACA,2BADA;AAEA,+BAFA;AAGA,+BAHA;;AAKA,WANA,MAMA;AACA;AACA,2BADA;AAEA,sCAFA;AAGA,+BAHA;;AAKA;AACA,SAvBA;;AAyBA,KA5BA;;AA8BA;AACA;;AAEA;AACA;AACA,uBADA;AAEA,gCAFA;AAGA,2BAHA;;AAKA;AACA;;AAEA;AACA;AACA,uBADA;AAEA,iCAFA;AAGA,2BAHA;;AAKA;AACA;;AAEA;AACA;AACA,uBADA;AAEA,4BAFA;AAGA,2BAHA;;AAKA;AACA;;AAEA;AACA,0BADA;AAEA;AACA,6BADA;AAEA,yBAFA;AAGA,iCAHA,EAFA;;AAOA,sBAPA;AAQA;AACA,4CADA,EARA;;AAWA;AACA;AACA;AACA,WAFA,MAEA;AACA;AACA,6BADA;AAEA,sCAFA;AAGA,+BAHA;;AAKA;AACA,SArBA;;AAuBA,KAnFA;;AAqFA;AACA;AACA,gCADA;;AAGA,KAzFA;;AA2FA;AACA;AACA,uCADA;;AAGA,KA/FA;;AAiGA;AACA;AACA,8BADA;;AAGA,KArGA;;AAuGA;AACA;AACA,4BADA;;AAGA,KA3GA;;AA6GA;AACA;AACA;AACA;AACA,wBADA;;AAGA;;AAEA;AACA;AACA,+BADA;;AAGA;;AAEA;AACA;AACA,sBADA;;AAGA;;AAEA;AACA;AACA,oBADA;;AAGA,gBAvBA;;AAyBA,KAvIA,EA/BA,E;;;;;;;;;;;;;ACrCA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/auth/reset/reset.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/auth/reset/reset.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./reset.vue?vue&type=template&id=59c9ef21&\"\nvar renderjs\nimport script from \"./reset.vue?vue&type=script&lang=js&\"\nexport * from \"./reset.vue?vue&type=script&lang=js&\"\nimport style0 from \"./reset.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/auth/reset/reset.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./reset.vue?vue&type=template&id=59c9ef21&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./reset.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./reset.vue?vue&type=script&lang=js&\"","\n \n \n \n \n 0\" id=\"clear-mobile\" class=\"clear\" @tap.native.stop.prevent=\"clearInput\" name=\"close\" />\n \n\n \n \n \n 0\" id=\"clear-code\" class=\"clear\" @tap.native.stop.prevent=\"clearInput\" name=\"close\" />\n \n 获取验证码 \n \n\n \n \n 0\" id=\"clear-password\" class=\"clear\" @tap.native.stop.prevent=\"clearInput\" name=\"close\" />\n \n\n \n \n 0\" id=\"clear-confirm-password\" class=\"clear\" @tap.native.stop.prevent=\"clearInput\" name=\"close\" />\n \n\n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./reset.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./reset.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275216\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/brand/brand.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/brand/brand.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..116e4297f65b4a047219845a49e325f51df4cfb1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/brand/brand.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?697e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?e95b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?5ef0","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?ca60","uni-app:///pages/brand/brand.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?dca8","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?cec4"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACa;;;AAGjE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAssB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACqB1tB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,mBADA;AAEA,aAFA;AAGA,eAHA;AAIA,mBAJA;;AAMA,GARA;AASA;AACA;AACA;AACA,GAZA;AAaA,eAbA,2BAaA;AACA;AACA;AACA,2BADA;;AAGA,KAJA,MAIA;AACA;AACA;;AAEA;AACA,GAvBA;AAwBA,gCAxBA;AAyBA;AACA;AACA,GA3BA;AA4BA;AACA;AACA,GA9BA;AA+BA;AACA;AACA,GAjCA;AAkCA;AACA;AACA;AACA,uBADA;;AAGA;AACA;AACA,uBADA;AAEA,yBAFA;AAGA,UAHA,CAGA;AACA;AACA;AACA,2DADA;AAEA,sCAFA;;AAIA;;AAEA;AACA,OAZA;AAaA,KAnBA,EAlCA,E;;;;;;;;;;;;;AC1BA;AAAA;AAAA;AAAA;AAAigC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACArhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/brand/brand.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/brand/brand.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./brand.vue?vue&type=template&id=802078d4&\"\nvar renderjs\nimport script from \"./brand.vue?vue&type=script&lang=js&\"\nexport * from \"./brand.vue?vue&type=script&lang=js&\"\nimport style0 from \"./brand.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/brand/brand.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brand.vue?vue&type=template&id=802078d4&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brand.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brand.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n\n \n \n {{ item.name }} \n | \n {{ item.floorPrice }}元起 \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brand.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brand.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275262\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/brandDetail/brandDetail.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/brandDetail/brandDetail.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..f2adc6d66e0f362dc97fe7151c5a2b4f284da825
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/brandDetail/brandDetail.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?2b69","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?9422","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?c978","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?1d17","uni-app:///pages/brandDetail/brandDetail.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?37b9","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?616f"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,+G,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,oBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAwH;AACxH;AAC+D;AACL;AACa;;;AAGvE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,iFAAM;AACR,EAAE,sFAAM;AACR,EAAE,+FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,0FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA4sB,CAAgB,2rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACgChuB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,WADA;;AAGA;AACA,kBADA;AAEA,gBAFA;AAGA,gBAHA,EAHA;;;AASA,mBATA;AAUA,aAVA;AAWA,eAXA;;AAaA;AACA,cADA;AAEA,kBAFA;AAGA,gBAHA;AAIA,uBAJA,EAbA;;;AAoBA,eApBA;;AAsBA,GAxBA;AAyBA;AACA;AACA;AACA;AACA,8BADA;;AAGA;AACA,GAhCA;AAiCA;AACA;AACA,GAnCA;AAoCA;AACA;AACA,GAtCA;AAuCA;AACA;AACA,GAzCA;AA0CA;AACA;AACA,GA5CA;AA6CA;AACA;AACA;AACA;AACA,mBADA;AAEA,UAFA,CAEA;AACA;AACA;AACA,2BADA;;AAGA;AACA;AACA,OATA;AAUA,KAbA;;AAeA,gBAfA,0BAeA;AACA;AACA;AACA,wBADA;AAEA,uBAFA;AAGA,yBAHA;AAIA,UAJA,CAIA;AACA;AACA;AACA,oCADA;;AAGA;AACA,OAVA;AAWA,KA5BA,EA7CA,E;;;;;;;;;;;;ACrCA;AAAA;AAAA;AAAA;AAAugC,CAAgB,48BAAG,EAAC,C;;;;;;;;;;;ACA3hC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/brandDetail/brandDetail.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/brandDetail/brandDetail.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./brandDetail.vue?vue&type=template&id=8bd6f210&\"\nvar renderjs\nimport script from \"./brandDetail.vue?vue&type=script&lang=js&\"\nexport * from \"./brandDetail.vue?vue&type=script&lang=js&\"\nimport style0 from \"./brandDetail.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/brandDetail/brandDetail.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brandDetail.vue?vue&type=template&id=8bd6f210&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brandDetail.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brandDetail.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n {{ brand.name }} \n \n \n \n \n \n {{ brand.desc }}\n \n \n\n \n \n \n \n \n {{ iitem.name }} \n ¥{{ iitem.retailPrice }} \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brandDetail.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brandDetail.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275252\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/cart/cart.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/cart/cart.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..fb37a428448426d9d965d0282a1bbaf3d69d7ef8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/cart/cart.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?ee2d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?5c69","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?c210","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?ee3c","uni-app:///pages/cart/cart.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?165f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?df26"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,0F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,aAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAiH;AACjH;AACwD;AACL;AACa;;;AAGhE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,0EAAM;AACR,EAAE,+EAAM;AACR,EAAE,wFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,mFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqsB,CAAgB,orBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiEztB;;AAEA;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,mBADA;AAEA;AACA,qBADA;AAEA,sBAFA;AAGA,4BAHA;AAIA,6BAJA,EAFA;;AAQA,uBARA;AASA,4BATA;AAUA,sBAVA;AAWA,qBAXA;;AAaA,GAfA;AAgBA;AACA;AACA,GAlBA;AAmBA;AACA;AACA,GArBA;AAsBA,mBAtBA,+BAsBA;AACA,mCADA,CACA;;AAEA;AACA,mCAJA,CAIA;;AAEA,8BANA,CAMA;AACA,GA7BA;AA8BA;AACA;AACA;AACA;AACA;;AAEA;AACA,uCADA;;AAGA,GAvCA;AAwCA;AACA;AACA,GA1CA;AA2CA;AACA;AACA,GA7CA;AA8CA;AACA,WADA,qBACA;AACA;AACA,sCADA;;AAGA,KALA;;AAOA;AACA;AACA;AACA;AACA;AACA,wCADA;AAEA,yCAFA;;AAIA;AACA,iDADA;;AAGA;AACA,OAVA;AAWA,KApBA;;AAsBA;AACA;AACA;AACA;AACA;AACA,SAFA,MAEA;AACA;AACA;AACA,OANA;AAOA,KA/BA;;AAiCA;AACA;AACA;AACA,6CADA;;AAGA,KAtCA;;AAwCA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,uBADA;AAEA;AACA,gCADA;AAEA,8DAFA,EAFA;;AAMA,cANA;AAOA,YAPA,CAOA;AACA;AACA;AACA,0CADA;AAEA,2CAFA;;AAIA;;AAEA;AACA,iDADA;;AAGA,SAlBA;AAmBA,OApBA,MAoBA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,SANA;AAOA;AACA,gCADA;AAEA,+CAFA;AAGA,oEAHA;;AAKA;AACA,KAjFA;;AAmFA;AACA;AACA;AACA;AACA;AACA;AACA,OAJA;AAKA;AACA;AACA,KA5FA;;AA8FA;AACA;;AAEA;AACA;AACA;AACA,SAFA;AAGA;AACA,uBADA;AAEA;AACA,gCADA;AAEA,gDAFA,EAFA;;AAMA,cANA;AAOA,YAPA,CAOA;AACA;AACA;AACA;AACA,0CADA;AAEA,2CAFA;;AAIA;;AAEA;AACA,iDADA;;AAGA,SAnBA;AAoBA,OAxBA,MAwBA;AACA;AACA;AACA;AACA;AACA;AACA,SAHA;AAIA;AACA,gCADA;AAEA,+CAFA;AAGA,oEAHA;;AAKA;AACA,KAtIA;;AAwIA;AACA;;AAEA;AACA;AACA;AACA,sCADA;;AAGA,OALA,MAKA;AACA;AACA;AACA;AACA;AACA,SAHA;AAIA;AACA,sCADA;AAEA,gCAFA;AAGA,sCAHA;AAIA,+CAJA;AAKA,oEALA;;AAOA;AACA,KA9JA;;AAgKA;AACA;AACA;AACA,oBADA;AAEA;AACA,4BADA;AAEA,wBAFA;AAGA,sBAHA;AAIA,cAJA,EAFA;;AAQA,YARA;AASA,UATA,CASA;AACA;AACA,+CADA;;AAGA,OAbA;AAcA,KAhLA;;AAkLA;AACA;AACA;AACA;AACA;AACA;AACA,iCADA;;AAGA;AACA,KA3LA;;AA6LA;AACA;AACA;AACA;AACA;AACA;AACA,iCADA;;AAGA;AACA,KAtMA;;AAwMA;AACA;AACA;AACA;AACA;AACA;AACA,SAFA,MAEA;AACA;AACA;AACA,OANA;;AAQA;AACA;AACA,OAbA,CAaA;;AAEA;AACA;AACA;AACA,yCADA;;AAGA,OALA,CAKA;AACA,KA7NA;;AA+NA;AACA;AACA;AACA;AACA;AACA;AACA,SAFA,MAEA;AACA;AACA;AACA,OANA;;AAQA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,OAJA;AAKA;AACA,oBADA;AAEA;AACA,8BADA,EAFA;;AAKA,YALA;AAMA,UANA,CAMA;AACA;AACA;AACA;AACA;AACA;AACA,WAHA;AAIA;AACA,+BADA;AAEA,yCAFA;;AAIA;;AAEA;AACA,+CADA;;AAGA,OAtBA;AAuBA,KA1QA,EA9CA,E;;;;;;;;;;;;;ACxEA;AAAA;AAAA;AAAA;AAAggC,CAAgB,q8BAAG,EAAC,C;;;;;;;;;;;ACAphC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/cart/cart.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/cart/cart.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./cart.vue?vue&type=template&id=0f00adf4&\"\nvar renderjs\nimport script from \"./cart.vue?vue&type=script&lang=js&\"\nexport * from \"./cart.vue?vue&type=script&lang=js&\"\nimport style0 from \"./cart.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/cart/cart.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./cart.vue?vue&type=template&id=0f00adf4&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./cart.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./cart.vue?vue&type=script&lang=js&\"","\n \n \n \n 还没有登录 \n \n \n \n \n \n 30天无忧退货 \n 48小时快速退款 \n 满88元免邮费 \n \n \n \n 空空如也~ \n 去添加点什么吧 \n \n \n \n \n \n \n \n \n\n \n \n \n \n {{ item.goodsName }} \n x{{ item.number }} \n \n {{ isEditCart ? '已选择:' : '' }}{{ item.specifications || '' }} \n \n ¥{{ item.price }} \n \n - \n \n + \n \n \n \n \n \n \n \n \n \n 全选({{ cartTotal.checkedGoodsCount }}) \n {{ !isEditCart ? '¥' + cartTotal.checkedGoodsAmount : '' }} \n \n {{ !isEditCart ? '编辑' : '完成' }} \n 删除({{ cartTotal.checkedGoodsCount }}) \n 下单 \n \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./cart.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./cart.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275261\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/catalog/catalog.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/catalog/catalog.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..6d3924c9f5a17d703237148d930c6c1454683194
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/catalog/catalog.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?24ba","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?33d2","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?e4f5","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?cdca","uni-app:///pages/catalog/catalog.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?f2fd","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?4fde"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,kG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,gBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAoH;AACpH;AAC2D;AACL;AACa;;;AAGnE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,6EAAM;AACR,EAAE,kFAAM;AACR,EAAE,2FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,sFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAwsB,CAAgB,urBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiD5tB;;AAEA,6D;;AAEA;AACA,MADA,kBACA;AACA;AACA,sBADA;AAEA;AACA,cADA;AAEA,kBAFA;AAGA,qBAHA;AAIA,gBAJA,EAFA;;AAQA,gCARA;AASA,mBATA;AAUA,kBAVA;AAWA,mBAXA;AAYA,qBAZA;;AAcA,GAhBA;AAiBA;AACA;AACA,GAnBA;AAoBA,mBApBA,+BAoBA;AACA,mCADA,CACA;;AAEA;AACA,mCAJA,CAIA;;AAEA,8BANA,CAMA;AACA,GA3BA;AA4BA;AACA;AACA,GA9BA;AA+BA;AACA;AACA,GAjCA;AAkCA;AACA;AACA,GApCA;AAqCA;AACA;AACA,GAvCA;AAwCA;AACA;AACA;AACA;AACA;AACA,uBADA;;AAGA;AACA;AACA,6CADA;AAEA,mDAFA;AAGA,6DAHA;;AAKA;AACA,OAPA;AAQA;AACA;AACA,8BADA;;AAGA,OAJA;AAKA,KApBA;;AAsBA;AACA;AACA;AACA,cADA;AAEA,UAFA,CAEA;AACA;AACA,mDADA;AAEA,6DAFA;;AAIA,OAPA;AAQA,KAhCA;;AAkCA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,KA3CA,EAxCA,E;;;;;;;;;;;;;ACrDA;AAAA;AAAA;AAAA;AAAmgC,CAAgB,w8BAAG,EAAC,C;;;;;;;;;;;ACAvhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/catalog/catalog.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/catalog/catalog.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./catalog.vue?vue&type=template&id=7565998c&\"\nvar renderjs\nimport script from \"./catalog.vue?vue&type=script&lang=js&\"\nexport * from \"./catalog.vue?vue&type=script&lang=js&\"\nimport style0 from \"./catalog.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/catalog/catalog.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./catalog.vue?vue&type=template&id=7565998c&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./catalog.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./catalog.vue?vue&type=script&lang=js&\"","\n \n \n \n \n 商品搜索, 共{{ goodsCount }}款好物 \n \n \n \n \n \n {{ item.name }}\n \n \n \n \n \n {{ currentCategory.frontName }} \n \n \n \n {{ currentCategory.name }}分类 \n \n \n \n \n \n\n {{ item.name }} \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./catalog.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./catalog.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275195\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/category/category.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/category/category.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..5715854db1aa94f362db75b9889ed46b91c8989e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/category/category.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?ec0c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?5e54","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?d464","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?3216","uni-app:///pages/category/category.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?ff67","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?055f"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,sG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,iBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAqH;AACrH;AAC4D;AACL;AACa;;;AAGpE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,8EAAM;AACR,EAAE,mFAAM;AACR,EAAE,4FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,uFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAysB,CAAgB,wrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACmC7tB;;AAEA,6D;;AAEA;AACA,MADA,kBACA;AACA;AACA,iBADA;AAEA,mBAFA;AAGA,WAHA;;AAKA;AACA,gBADA;AAEA,gBAFA,EALA;;;AAUA,mBAVA;AAWA,kBAXA;AAYA,qBAZA;AAaA,aAbA;AAcA,eAdA;;AAgBA;AACA,cAjBA;;AAmBA,eAnBA;;AAqBA;AACA,cADA;AAEA,kBAFA;AAGA,gBAHA;AAIA,uBAJA,EArBA;;;AA4BA,GA9BA;AA+BA;AACA;AACA;;AAEA;AACA;AACA,gCADA;;AAGA;;AAEA;AACA;AACA;AACA,wCADA;;AAGA,OALA;;AAOA;AACA,GAjDA;AAkDA;AACA;AACA,GApDA;AAqDA;AACA;AACA,GAvDA;AAwDA;AACA;AACA,GA1DA;AA2DA;AACA;AACA;AACA,gCAFA,CAEA;;AAEA;AACA;AACA,qBADA,CACA;AADA;AAGA,0BAJA,CAIA;AACA,KALA,MAKA;AACA;AACA;AACA,GAxEA;AAyEA;AACA;AACA,GA3EA;AA4EA;AACA;AACA;AACA;AACA,mBADA;AAEA,UAFA,CAEA;AACA;AACA;AACA,6CADA;AAEA,qDAFA;;AAIA;AACA,+CADA;AAEA;;AAEA;AACA;AACA,6CADA;;AAGA,WAbA,CAaA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,2CADA;;AAGA;;AAEA;AACA,SAjCA,MAiCA;AACA;AACA;AACA,OAvCA;AAwCA,KA3CA;;AA6CA;AACA;AACA;AACA,2BADA;AAEA,uBAFA;AAGA,yBAHA;AAIA,UAJA,CAIA;AACA,kCADA,CACA;;AAEA,iCAHA,CAGA;;AAEA,iCALA,CAKA;;AAEA;AACA,yBADA;AAEA,+BAFA,CAEA;AAFA;AAIA,OAfA;AAgBA,KA/DA;;AAiEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,mDADA;;AAGA,OAJA,MAIA;AACA;AACA;AACA,gDADA;;AAGA;AACA;;AAEA;AACA,0CADA;AAEA,eAFA;AAGA;AACA,qBAJA;;AAMA;AACA,KA7FA,EA5EA,E;;;;;;;;;;;;;ACvCA;AAAA;AAAA;AAAA;AAAogC,CAAgB,y8BAAG,EAAC,C;;;;;;;;;;;ACAxhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/category/category.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/category/category.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./category.vue?vue&type=template&id=682a9774&\"\nvar renderjs\nimport script from \"./category.vue?vue&type=script&lang=js&\"\nexport * from \"./category.vue?vue&type=script&lang=js&\"\nimport style0 from \"./category.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/category/category.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./category.vue?vue&type=template&id=682a9774&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./category.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./category.vue?vue&type=script&lang=js&\"","\n \n \n \n \n {{ item.name }} \n \n \n \n \n \n \n {{ currentCategory.name }} \n {{ currentCategory.desc }} \n \n \n \n \n\n {{ iitem.name }} \n\n ¥{{ iitem.retailPrice }} \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./category.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./category.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275256\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/checkout/checkout.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/checkout/checkout.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..12a31fa98199747629cf544999852b05f0290f2b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/checkout/checkout.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?797c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?bb65","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?4946","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?97aa","uni-app:///pages/checkout/checkout.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?57f2","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?d84c"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":"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","file":"pages/checkout/checkout.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/checkout/checkout.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./checkout.vue?vue&type=template&id=a037f574&\"\nvar renderjs\nimport script from \"./checkout.vue?vue&type=script&lang=js&\"\nexport * from \"./checkout.vue?vue&type=script&lang=js&\"\nimport style0 from \"./checkout.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/checkout/checkout.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./checkout.vue?vue&type=template&id=a037f574&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./checkout.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./checkout.vue?vue&type=script&lang=js&\"","\n \n \n 0\">\n \n {{ checkedAddress.name }} \n 默认 \n \n \n {{ checkedAddress.tel }} \n {{ checkedAddress.addressDetail }} \n \n \n \n \n \n \n 还没有收货地址,去添加 \n \n \n \n \n \n\n \n \n \n 没有可用的优惠券 \n 0张 \n \n \n 优惠券 \n {{ availableCouponLength }}张 \n \n \n 优惠券 \n -¥{{ couponPrice }}元 \n \n \n \n \n \n \n\n \n\n \n \n \n 商品合计 \n \n \n ¥{{ goodsTotalPrice }}元 \n \n \n \n \n 运费 \n \n \n ¥{{ freightPrice }}元 \n \n \n \n \n 优惠券 \n \n \n -¥{{ couponPrice }}元 \n \n \n \n\n \n \n \n \n \n\n \n \n {{ item.goodsName }} \n x{{ item.number }} \n \n {{ item.specifications }} \n ¥{{ item.price }} \n \n \n \n\n \n 实付:¥{{ actualPrice }} \n 去付款 \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./checkout.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./checkout.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275259\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/comment/comment.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/comment/comment.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..08ae033bc5d2eade32ded3aacd4cbe524bbfcdaf
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/comment/comment.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?9fd7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?df74","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?3bbb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?d98f","uni-app:///pages/comment/comment.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?335e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?6fa2"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,mG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,gBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAoH;AACpH;AAC2D;AACL;AACa;;;AAGnE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,6EAAM;AACR,EAAE,kFAAM;AACR,EAAE,2FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,sFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAwsB,CAAgB,urBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACoC5tB;;AAEA;;AAEA,6D;;AAEA;AACA,MADA,kBACA;AACA;AACA,kBADA;AAEA,wBAFA;AAGA,wBAHA;AAIA,aAJA;AAKA,gBALA;AAMA,iBANA;AAOA,iBAPA;AAQA,oBARA;AASA,gBATA;AAUA,gBAVA;AAWA,eAXA;AAYA,eAZA;;AAcA,GAhBA;AAiBA;AACA;AACA;AACA,wBADA;AAEA,8BAFA;;AAIA;AACA;AACA,GAzBA;AA0BA,mBA1BA,+BA0BA;AACA;AACA,wBADA;AAEA,gBAFA;AAGA,wBAHA;AAIA,gBAJA;AAKA,kBALA;;AAOA,mCARA,CAQA;;AAEA;AACA;AACA,mCAZA,CAYA;;AAEA,8BAdA,CAcA;AACA,GAzCA;AA0CA;AACA;AACA,GA5CA;AA6CA;AACA;AACA,GA/CA;AAgDA;AACA;AACA,GAlDA;AAmDA;AACA;AACA,GArDA;AAsDA;AACA;AACA;AACA;AACA;;AAEA;AACA,iCADA;;AAGA,KARA,MAQA;AACA;AACA;AACA;;AAEA;AACA,iCADA;;AAGA;;AAEA;AACA,GA1EA;AA2EA;AACA;AACA;AACA;AACA,6BADA;AAEA,uBAFA;AAGA,UAHA,CAGA;AACA;AACA;AACA,uCADA;AAEA,6CAFA;;AAIA;AACA,OAVA;AAWA,KAdA;;AAgBA;AACA;AACA;AACA,6BADA;AAEA,uBAFA;AAGA,yBAHA;AAIA,8DAJA;AAKA,+BALA;AAMA,UANA,CAMA;AACA;AACA;AACA;AACA,uEADA;AAEA,oCAFA;AAGA,iEAHA;;AAKA,WANA,MAMA;AACA;AACA,uEADA;AAEA,oCAFA;AAGA,iEAHA;;AAKA;AACA;AACA,OAtBA;AAuBA,KAzCA;;AA2CA;AACA;;AAEA;AACA;AACA,4BADA;AAEA,oBAFA;AAGA,sBAHA;AAIA,qBAJA;;AAMA,OAPA,MAOA;AACA;AACA,4BADA;AAEA,oBAFA;AAGA,sBAHA;AAIA,qBAJA;;AAMA;;AAEA;AACA,KA/DA,EA3EA,E;;;;;;;;;;;;;AC1CA;AAAA;AAAA;AAAA;AAAmgC,CAAgB,w8BAAG,EAAC,C;;;;;;;;;;;ACAvhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/comment/comment.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/comment/comment.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./comment.vue?vue&type=template&id=62ac83c6&\"\nvar renderjs\nimport script from \"./comment.vue?vue&type=script&lang=js&\"\nexport * from \"./comment.vue?vue&type=script&lang=js&\"\nimport style0 from \"./comment.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/comment/comment.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./comment.vue?vue&type=template&id=62ac83c6&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./comment.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./comment.vue?vue&type=script&lang=js&\"","\n \n \n \n 全部({{ allCount }}) \n \n \n 有图({{ hasPicCount }}) \n \n \n \n \n \n \n \n {{ item.userInfo.nickname }} \n \n {{ item.addTime }} \n \n\n {{ item.content }} \n\n 0\">\n \n \n\n \n 商家回复: \n {{ item.adminContent }} \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./comment.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./comment.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275266\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/commentPost/commentPost.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/commentPost/commentPost.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..2c1a3ca5759d2ec19d383f12bb1056a04108ace3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/commentPost/commentPost.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?cf3b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?9c77","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?18aa","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?ab45","uni-app:///pages/commentPost/commentPost.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?4f0b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?37f1"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":"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","file":"pages/commentPost/commentPost.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/commentPost/commentPost.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./commentPost.vue?vue&type=template&id=aa485174&\"\nvar renderjs\nimport script from \"./commentPost.vue?vue&type=script&lang=js&\"\nexport * from \"./commentPost.vue?vue&type=script&lang=js&\"\nimport style0 from \"./commentPost.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/commentPost/commentPost.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./commentPost.vue?vue&type=template&id=aa485174&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./commentPost.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./commentPost.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n \n \n {{ orderGoods.goodsName }} x{{ orderGoods.number }} \n \n {{ orderGoods.goodsSpecificationValues }} \n \n \n \n 评分 \n \n \n\n \n \n {{ starText }} \n \n \n \n {{ 140 - content.length }} \n \n\n \n \n 图片上传 \n {{ picUrls.length }}/{{ files.length }} \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n\n \n 取消 \n 发表 \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./commentPost.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./commentPost.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275271\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/coupon/coupon.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/coupon/coupon.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..5fde73ea1b58dbcd3f79a336655cee870b24d43e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/coupon/coupon.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?73d4","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?3445","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?7d27","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?bdbf","uni-app:///pages/coupon/coupon.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?f60b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?e80b"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,gG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,eAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAmH;AACnH;AAC0D;AACL;AACa;;;AAGlE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,4EAAM;AACR,EAAE,iFAAM;AACR,EAAE,0FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,qFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAusB,CAAgB,srBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACiC3tB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,oBADA;AAEA,aAFA;AAGA,eAHA;AAIA,cAJA;AAKA,kBALA;AAMA,qBANA;;AAQA;AACA;;OAXA;AAcA;AACA;AACA,GAhBA;AAiBA;;;AAGA,gCApBA;AAqBA;;;AAGA,8BAxBA;AAyBA;;;AAGA,8BA5BA;AA6BA;;;AAGA,kCAhCA;AAiCA;;;AAGA,oDApCA;AAqCA;;;AAGA,4CAxCA;AAyCA;;;AAGA,oDA5CA;AA6CA;AACA;AACA;AACA;AACA,oBADA;AAEA,uBAFA;AAGA,sBAHA;AAIA;;AAEA;AACA,uBADA;AAEA,uBAFA;AAGA,sBAHA;;AAKA;AACA,uBADA;AAEA,yBAFA;AAGA,UAHA,CAGA;AACA;AACA;AACA,wBADA;AAEA,qCAFA;AAGA,0BAHA;AAIA,iCAJA;;AAMA;;AAEA;AACA,OAdA;AAeA,KA7BA;;AA+BA,aA/BA,qBA+BA,CA/BA,EA+BA;AACA;AACA;AACA,wCADA;;AAGA;AACA;;AAEA;AACA;AACA,uBADA;AAEA;AACA,0BADA,EAFA;;AAKA,YALA;AAMA,UANA,CAMA;AACA;AACA;AACA,yBADA;;AAGA,SAJA,MAIA;AACA;AACA;AACA,OAdA;AAeA,KAvDA;;AAyDA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,2BADA;;AAGA;AACA,KApEA;;AAsEA;AACA;AACA;AACA;;AAEA;AACA;AACA,2BADA;;AAGA;AACA,KAhFA,EA7CA,E;;;;;;;;;;;;;ACtCA;AAAA;AAAA;AAAA;AAAkgC,CAAgB,u8BAAG,EAAC,C;;;;;;;;;;;ACAthC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/coupon/coupon.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/coupon/coupon.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./coupon.vue?vue&type=template&id=032f11f4&\"\nvar renderjs\nimport script from \"./coupon.vue?vue&type=script&lang=js&\"\nexport * from \"./coupon.vue?vue&type=script&lang=js&\"\nimport style0 from \"./coupon.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/coupon/coupon.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./coupon.vue?vue&type=template&id=032f11f4&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./coupon.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./coupon.vue?vue&type=script&lang=js&\"","\n \n \n \n {{ item.tag }} \n\n \n \n {{ item.discount }}元 \n 满{{ item.min }}元使用 \n \n \n {{ item.name }} \n 有效期:{{ item.days }}天 \n 有效期:{{ item.startTime }} - {{ item.endTime }} \n \n \n\n \n {{ item.desc }} \n \n \n \n\n \n 上一页 \n 下一页 \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./coupon.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./coupon.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275188\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/goods/goods.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/goods/goods.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..24560065eacd111f43bffe90ddf85b900ce23ee1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/goods/goods.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?8b8b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?8674","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?d095","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?ae53","uni-app:///pages/goods/goods.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?e18b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?1f3f"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACa;;;AAGjE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,oSAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACjCA;AAAA;AAAA;AAAA;AAAssB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACsO1tB;;AAEA;;AAEA;;AAEA;;AAEA,8D;;AAEA;AACA,MADA,kBACA;AACA;AACA,qBADA;AAEA,WAFA;;AAIA;AACA,mBADA;AAEA,gBAFA;AAGA,iBAHA;AAIA,wBAJA;AAKA,cALA,EAJA;;;AAYA,iBAZA;;AAcA;AACA,qBAfA;;AAiBA;AACA,mBAlBA;;AAoBA,mBApBA;AAqBA,iBArBA;;AAuBA;AACA,gBADA;AAEA,cAFA,EAvBA;;;AA4BA,2BA5BA;AA6BA,qBA7BA;AA8BA,sBA9BA;AA+BA,uBA/BA;AAgCA,uBAhCA;AAiCA,eAjCA;AAkCA,mBAlCA;AAmCA,+BAnCA;AAoCA,4BApCA;AAqCA,yBArCA;AAsCA,qBAtCA;AAuCA,sBAvCA;AAwCA,oBAxCA;AAyCA,oBAzCA;AA0CA,sBA1CA;;AA4CA;AACA,oBA7CA;;AA+CA;AACA,qBAhDA;;AAkDA,eAlDA;AAmDA,6BAnDA;;AAqDA;AACA,sBADA;AAEA,cAFA;AAGA,yBAHA;AAIA,iBAJA;AAKA,oBALA;AAMA,0BANA,EArDA;;;AA8DA,GAhEA,EAgEA;AACA;AACA;AACA;AACA,4BADA;AAEA,uBAFA;AAGA,kDAHA;;AAKA,GAxEA;AAyEA;AACA;AACA;AACA;AACA,gCADA;;AAGA;AACA;;AAEA;AACA;AACA,uBADA;;AAGA;AACA;;AAEA;AACA;AACA;AACA,yBADA,CACA;;AAEA;AACA;AACA,2CADA;AAEA;AACA;AACA,8BADA;;AAGA,aANA;AAOA;AACA;AACA,+BADA;;AAGA,aAXA;;AAaA,SAdA,MAcA;AACA;AACA,0BADA;;AAGA;AACA,OAvBA;;AAyBA,GAnHA;AAoHA;AACA;AACA;AACA;AACA;AACA;AACA,kCADA;;AAGA;AACA,KANA;AAOA,GA9HA;AA+HA;AACA;AACA,GAjIA;AAkIA;AACA;AACA,GApIA;AAqIA;AACA;AACA,GAvIA;AAwIA;AACA;AACA;AACA;AACA;AACA,oCADA;;AAGA,OAJA,MAIA;AACA;AACA;AACA,KAVA;;AAYA;AACA,sBADA,CACA;;AAEA;AACA;AACA,qBADA;AAEA,4BAFA;AAGA,2BAHA;;AAKA;AACA,yBADA;;AAGA,OATA,MASA;AACA;AACA,uBADA;;AAGA;AACA,wBADA;;AAGA;AACA,KAhCA;;AAkCA;AACA;AACA;AACA;AACA,4BADA;AAEA;AACA;AACA;AACA,sCADA;AAEA;AACA;AACA,+BADA;AAEA,+CAFA;AAGA,iCAHA;AAIA,iCAJA;AAKA,uCALA;AAMA;AACA;AACA;AACA;AACA,iBAVA;;AAYA,aAfA;AAgBA;AACA;AACA,aAlBA;;AAoBA,SAxBA;AAyBA;AACA;AACA,SA3BA;;AA6BA,KAlEA;;AAoEA;AACA;AACA;AACA;AACA,4BADA;AAEA,UAFA,CAEA;AACA;AACA;AACA,yCADA;AAEA,iCAFA;AAGA;;AAEA;AACA;AACA,OAXA;AAYA,KAnFA;;AAqFA;AACA;AACA;AACA;AACA,mBADA;AAEA,UAFA,CAEA;AACA;AACA;AACA,uDAFA,CAEA;AACA;;AAEA;AACA;AACA,gEADA,CACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,yEADA;AAEA,8EAFA;;AAIA;AACA;;AAEA;AACA,gCADA;AAEA,yCAFA;AAGA,qCAHA;AAIA,qCAJA;AAKA,iCALA;AAMA,yDANA;AAOA,6CAPA;AAQA,mDARA;AASA,2CATA;AAUA,uDAVA;AAWA,qCAXA;AAYA,oCAZA;AAaA;AACA,iCAdA;AAeA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,uCATA,CASA;;AAEA;AACA,+BADA;;AAGA;;AAEA;AACA;AACA,2BADA;;AAGA,WAJA,MAIA;AACA;AACA,4BADA;;AAGA;;AAEA;AACA,4EApEA,CAoEA;;AAEA;AACA;AACA,OA3EA;AA4EA,KApKA;;AAsKA;AACA;AACA;AACA;AACA,mBADA;AAEA,UAFA,CAEA;AACA;AACA;AACA,uCADA;;AAGA;AACA,OARA;AASA,KAlLA;;AAoLA;AACA;AACA,sBADA,CACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,WAFA,MAEA;AACA;AACA;AACA,SANA,MAMA;AACA;AACA;AACA;;AAEA;AACA,6BADA;;AAGA,KA/MA;;AAiNA;AACA;AACA;AACA;AACA,4DAHA,CAGA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAFA,MAEA;AACA;AACA;AACA,aAPA,MAOA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,6CADA;AAEA;;AAEA,4BA7BA,CA6BA;AACA,KAhPA;;AAkPA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,KA9PA;;AAgQA;AACA;AACA;AACA;;AAEA;AACA;AACA,0CADA;AAEA,oBAFA;AAGA,uBAHA;;;AAMA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,KAvRA;;AAyRA;AACA;AACA;AACA;AACA;AACA;AACA,OAJA;AAKA,KAhSA;;AAkSA;AACA;AACA;AACA,OAFA;AAGA;AACA,KAvSA;;AAySA;AACA;AACA,wDADA,CACA;;AAEA;AACA,YADA,CACA;AACA;AACA;AACA,SAFA,MAEA;AACA;AACA;AACA,OAPA;AAQA,SARA,CAQA;AACA;AACA,OAVA;;AAYA;AACA;AACA,6CADA;;AAGA,OAJA,MAIA;AACA;AACA,gCADA;;AAGA;;AAEA;AACA;AACA,2CADA;AAEA;;AAEA;;AAEA;AACA;AACA,yBADA;;AAGA;AACA;AACA;;AAEA,oDAfA,CAeA;;AAEA;AACA;AACA,kDADA;AAEA,yCAFA;AAGA,0BAHA;;AAKA,SANA,MAMA;AACA;AACA,oDADA;AAEA,yBAFA;;AAIA;AACA,OA7BA,MA6BA;AACA;AACA,mCADA;AAEA,kDAFA;AAGA,wBAHA;;AAKA;AACA,KAvWA;;AAyWA;AACA;AACA;AACA;AACA;AACA,SAFA,MAEA;AACA;AACA;AACA,OANA;AAOA,KAlXA;;AAoXA;AACA;AACA;AACA;AACA,4BADA;AAEA;AACA,eADA;AAEA,wBAFA,EAFA;;AAMA,YANA;AAOA,UAPA,CAOA;AACA;AACA;AACA,0BADA;AAEA,6BAFA;;AAIA,SALA,MAKA;AACA;AACA,yBADA;AAEA,6BAFA;;AAIA;AACA,OAnBA;AAoBA,KA3YA;;AA6YA;AACA;AACA;;AAEA;AACA;AACA;AACA,kCADA;;AAGA,OALA,MAKA;AACA;AACA;AACA;AACA;AACA,SALA,CAKA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,oDAfA,CAeA;;AAEA;AACA;AACA;AACA,SApBA,CAoBA;;AAEA,2DAtBA,CAsBA;;AAEA;AACA,uBADA;AAEA;AACA,gCADA;AAEA,6BAFA;AAGA,sCAHA,EAFA;;AAOA,cAPA;AAQA,YARA,CAQA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,+CADA;;AAGA,aAPA,CAOA;AACA,WAVA,MAUA;AACA;AACA;AACA,SAtBA;AAuBA;AACA,KAtcA;;AAwcA;AACA;AACA;;AAEA;AACA;AACA;AACA,kCADA;;AAGA,OALA,MAKA;AACA;AACA;AACA;AACA;AACA,SALA,CAKA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,oDAfA,CAeA;;AAEA;AACA;AACA;AACA,SApBA,CAoBA;;AAEA;AACA,mBADA;AAEA;AACA,gCADA;AAEA,6BAFA;AAGA,sCAHA,EAFA;;AAOA,cAPA;AAQA,YARA,CAQA;AACA;;AAEA;AACA;AACA,2BADA;;AAGA;AACA,sCADA;AAEA,uCAFA;;;AAKA;AACA;AACA,6BADA;;AAGA,aAJA,MAIA;AACA;AACA,8BADA;;AAGA;AACA,WAlBA,MAkBA;AACA;AACA;AACA,SAhCA;AAiCA;AACA,KAzgBA;;AA2gBA;AACA;AACA,yDADA;;AAGA,KA/gBA;;AAihBA;AACA;AACA,+BADA;;AAGA,KArhBA;;AAuhBA;AACA;AACA;AACA,kCADA;;AAGA;AACA,KA7hBA;;AA+hBA;AACA;AACA,uBADA;;AAGA,KAniBA;;AAqiBA;AACA;AACA,wBADA;;AAGA,KAziBA;;AA2iBA;AACA;AACA,+BADA;;AAGA,KA/iBA,EAxIA,E;;;;;;;;;;;;;AChPA;AAAA;AAAA;AAAA;AAAigC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACArhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/goods/goods.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/goods/goods.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./goods.vue?vue&type=template&id=5566b618&\"\nvar renderjs\nimport script from \"./goods.vue?vue&type=script&lang=js&\"\nexport * from \"./goods.vue?vue&type=script&lang=js&\"\nimport style0 from \"./goods.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/goods/goods.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./goods.vue?vue&type=template&id=5566b618&\"","var components\ntry {\n components = {\n mpHtml: function() {\n return import(\n /* webpackChunkName: \"uni_modules/mp-html/components/mp-html/mp-html\" */ \"@/uni_modules/mp-html/components/mp-html/mp-html.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./goods.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./goods.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n \n \n \n {{ goods.name }} \n 分享 \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n {{ goods.brief }} \n \n 原价:¥{{ goods.counterPrice }} \n 现价:¥{{ checkedSpecPrice }} \n \n\n \n \n {{ brand.name }} \n \n \n \n \n \n {{ checkedSpecText }} \n \n \n 0\">\n \n \n 评价({{ comment.count > 999 ? '999+' : comment.count }}) \n \n 查看全部\n \n \n \n \n \n \n \n \n \n {{ item.nickname }} \n \n {{ item.addTime }} \n \n\n \n {{ item.content }}\n \n\n 0\">\n \n \n\n \n 商家回复: \n {{ item.adminContent }} \n \n \n \n \n \n 商品参数 \n \n \n {{ item.attribute }} \n\n {{ item.value }} \n \n \n \n\n \n \n \n \n\n \n \n \n 常见问题 \n \n \n \n \n \n {{ item.question }} \n \n\n \n {{ item.answer }}\n \n \n \n \n\n \n 0\">\n \n \n 大家都在看 \n \n \n \n \n \n {{ item.name }} \n ¥{{ item.retailPrice }} \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n 价格:¥{{ checkedSpecPrice }} \n {{ tmpSpecText }} \n \n \n \n\n \n \n \n {{ item.name }} \n\n \n \n {{ vitem.value }}\n \n \n \n\n 0\">\n 团购立减 \n \n \n ¥{{ vitem.discount }} ({{ vitem.discountMember }}人)\n \n \n \n\n \n \n 数量 \n \n - \n \n + \n \n \n \n \n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n {{ cartGoodsCount }} \n \n \n \n 加入购物车 \n {{ isGroupon ? '参加团购' : '立即购买' }} \n 商品已售空 \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./goods.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./goods.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275511\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/groupon/grouponDetail/grouponDetail.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/groupon/grouponDetail/grouponDetail.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..080656f219156fa1af92d6a765fadc73a1334cbd
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/groupon/grouponDetail/grouponDetail.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?38f3","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?8bf1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?89c7","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?b3f4","uni-app:///pages/groupon/grouponDetail/grouponDetail.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?6063","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?a3e6"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6H,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,sBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA0H;AAC1H;AACiE;AACL;AACa;;;AAGzE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,mFAAM;AACR,EAAE,wFAAM;AACR,EAAE,iGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,4FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA6tB,CAAgB,6rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACwEjvB;;AAEA,gE;;AAEA;AACA,MADA,kBACA;AACA;AACA,WADA;AAEA;AACA,iBADA,EAFA;;AAKA,iBALA;AAMA;AACA,sBADA;AAEA,wBAFA;AAGA,uBAHA,EANA;;AAWA,oBAXA;AAYA;AACA,yBADA,EAZA;;AAeA,eAfA;AAgBA,eAhBA;AAiBA,oBAjBA;AAkBA,qBAlBA;;AAoBA,GAtBA;AAuBA;AACA;AACA;AACA,oBADA;;AAGA;AACA,GA7BA;AA8BA;AACA;AACA;AACA;AACA,mBADA;AAEA,uBAFA;AAGA,qDAHA;;AAKA,GAtCA;AAuCA;AACA;AACA,GAzCA;AA0CA;AACA;AACA,GA5CA;AA6CA;AACA;AACA,GA/CA;AAgDA;AACA;AACA,GAlDA;AAmDA;AACA;AACA;AACA;AACA,0BADA;AAEA,UAFA,CAEA;AACA;AACA;AACA;AACA,uBADA,EADA;;AAIA;AACA,uBADA,EAJA;;AAOA;AACA,wBADA,EAPA;;;AAWA;AACA;AACA;;AAEA;AACA;AACA;AACA,yBADA,EADA;;AAIA;AACA,yBADA,EAJA;;AAOA;AACA,0BADA,EAPA;;;AAWA;AACA;AACA;AACA;;AAEA;AACA,qCADA;AAEA,qCAFA;AAGA,yCAHA;AAIA,2CAJA;AAKA,iCALA;AAMA,2BANA;AAOA,yBAPA;AAQA,mCARA;AASA,qCATA;;AAWA;AACA,OAhDA;AAiDA,KApDA,EAnDA,E;;;;;;;;;;;;AC5EA;AAAA;AAAA;AAAA;AAA8hC,CAAgB,88BAAG,EAAC,C;;;;;;;;;;;ACAljC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/groupon/grouponDetail/grouponDetail.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/groupon/grouponDetail/grouponDetail.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./grouponDetail.vue?vue&type=template&id=f4b3fd96&\"\nvar renderjs\nimport script from \"./grouponDetail.vue?vue&type=script&lang=js&\"\nexport * from \"./grouponDetail.vue?vue&type=script&lang=js&\"\nimport style0 from \"./grouponDetail.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/groupon/grouponDetail/grouponDetail.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponDetail.vue?vue&type=template&id=f4b3fd96&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponDetail.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponDetail.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n \n 开团还缺\n {{ rules.discountMember - joiners.length }} \n 人\n \n \n \n \n \n \n\n \n \n 参与团购 ( {{ joiners.length }}人) \n 查看全部 \n \n \n \n\n {{ item.nickname }} \n \n \n\n \n \n 商品信息 \n \n \n \n \n \n \n\n \n \n {{ item.goodsName }} \n x{{ item.number }} \n \n {{ item.goodsSpecificationValues }} \n ¥{{ item.retailPrice }} \n \n \n \n\n \n \n \n 商品合计: \n ¥{{ orderInfo.goodsPrice }} \n \n \n 商品运费: \n ¥{{ orderInfo.freightPrice }} \n \n \n \n 商品实付: \n ¥{{ orderInfo.actualPrice }} \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponDetail.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponDetail.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275213\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/groupon/grouponList/grouponList.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/groupon/grouponList/grouponList.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..c8c46a3b95914960be3491fb1581d158c5d1d9c6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/groupon/grouponList/grouponList.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?2acc","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?0c40","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?faf2","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?6f51","uni-app:///pages/groupon/grouponList/grouponList.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?4bdc","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?a143"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,uH,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,oBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAwH;AACxH;AAC+D;AACL;AACa;;;AAGvE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,iFAAM;AACR,EAAE,sFAAM;AACR,EAAE,+FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,0FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA2tB,CAAgB,2rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACkC/uB;AACA;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,qBADA;AAEA,aAFA;AAGA,eAHA;AAIA,cAJA;AAKA,kBALA;AAMA,qBANA;;AAQA;AACA;;OAXA;AAcA;AACA;AACA,GAhBA;AAiBA;;;AAGA,gCApBA;AAqBA;;;AAGA,8BAxBA;AAyBA;;;AAGA,8BA5BA;AA6BA;;;AAGA,kCAhCA;AAiCA;;;AAGA,oDApCA;AAqCA;;;AAGA,4CAxCA;AAyCA;;;AAGA,oDA5CA;AA6CA;AACA;AACA;AACA;AACA,oBADA;AAEA,uBAFA;AAGA,uBAHA;AAIA;;AAEA;AACA,uBADA;AAEA,uBAFA;AAGA,sBAHA;;AAKA;AACA,uBADA;AAEA,yBAFA;AAGA,UAHA,CAGA;AACA;AACA;AACA,wBADA;AAEA,sCAFA;AAGA,0BAHA;AAIA,iCAJA;;AAMA;;AAEA;AACA,OAdA;AAeA,KA7BA;;AA+BA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,2BADA;;AAGA;AACA,KA1CA;;AA4CA;AACA;AACA;AACA;;AAEA;AACA;AACA,2BADA;;AAGA;AACA,KAtDA,EA7CA,E;;;;;;;;;;;;;ACxCA;AAAA;AAAA;AAAA;AAA4hC,CAAgB,48BAAG,EAAC,C;;;;;;;;;;;ACAhjC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/groupon/grouponList/grouponList.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/groupon/grouponList/grouponList.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./grouponList.vue?vue&type=template&id=ac0de162&\"\nvar renderjs\nimport script from \"./grouponList.vue?vue&type=script&lang=js&\"\nexport * from \"./grouponList.vue?vue&type=script&lang=js&\"\nimport style0 from \"./grouponList.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/groupon/grouponList/grouponList.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponList.vue?vue&type=template&id=ac0de162&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponList.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n \n \n {{ item.name }} \n {{ item.grouponMember }}人成团 \n \n \n 有效期至 {{ item.expireTime }} \n \n {{ item.brief }} \n \n 现价:¥{{ item.retailPrice }} \n 团购价:¥{{ item.grouponPrice }} \n \n \n \n \n \n\n \n 上一页 \n 下一页 \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponList.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponList.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275201\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/groupon/myGroupon/myGroupon.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/groupon/myGroupon/myGroupon.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..cc027ff93f8cf8c7d16613feab0d4e2aa45a2f84
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/groupon/myGroupon/myGroupon.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?1dc6","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?f339","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?8914","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?209f","uni-app:///pages/groupon/myGroupon/myGroupon.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?3e32","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?2776"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,iH,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,kBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAsH;AACtH;AAC6D;AACL;AACa;;;AAGrE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,+EAAM;AACR,EAAE,oFAAM;AACR,EAAE,6FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,wFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAytB,CAAgB,yrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC8D7uB;;AAEA,gE;;AAEA;AACA,MADA,kBACA;AACA;AACA,mBADA;AAEA,iBAFA;;AAIA;AACA,cADA;AAEA,kBAFA;AAGA,qBAHA;AAIA,kBAJA,EAJA;;;AAWA,GAbA;AAcA;AACA;AACA,GAhBA;AAiBA,mBAjBA,+BAiBA;AACA,mCADA,CACA;;AAEA;AACA,mCAJA,CAIA;;AAEA,8BANA,CAMA;AACA,GAxBA;AAyBA;AACA;AACA,GA3BA;AA4BA;AACA;AACA;AACA,GA/BA;AAgCA;AACA;AACA,GAlCA;AAmCA;AACA;AACA,GArCA;AAsCA;AACA,gBADA,0BACA;AACA;AACA;AACA,+BADA;AAEA,UAFA,CAEA;AACA;AACA;AACA,oCADA;;AAGA;AACA,OARA;AASA,KAZA;;AAcA;AACA;AACA;AACA,0BADA;;AAGA;AACA,KApBA,EAtCA,E;;;;;;;;;;;;;AClEA;AAAA;AAAA;AAAA;AAA0hC,CAAgB,08BAAG,EAAC,C;;;;;;;;;;;ACA9iC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/groupon/myGroupon/myGroupon.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/groupon/myGroupon/myGroupon.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./myGroupon.vue?vue&type=template&id=548f79fb&\"\nvar renderjs\nimport script from \"./myGroupon.vue?vue&type=script&lang=js&\"\nexport * from \"./myGroupon.vue?vue&type=script&lang=js&\"\nimport style0 from \"./myGroupon.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/groupon/myGroupon/myGroupon.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./myGroupon.vue?vue&type=template&id=548f79fb&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./myGroupon.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./myGroupon.vue?vue&type=script&lang=js&\"","\n \n \n \n 发起的团购 \n \n \n 参加的团购 \n \n \n \n \n 尚未参加任何团购 \n \n \n\n \n \n \n 开团中 \n 开团成功 \n 开团失败 \n {{ item.creator }}发起 \n \n\n \n 订单编号:{{ item.orderSn }} \n {{ item.orderStatusText }} \n \n\n \n 团购立减:¥{{ item.rules.discount }} \n 参与时间:{{ item.groupon.addTime }} \n \n\n \n 团购要求:{{ item.rules.discountMember }}人 \n 当前参团:{{ item.joinerCount }}人 \n \n\n \n \n \n \n\n \n {{ gitem.goodsName }} \n 共{{ gitem.number }}件商品 \n \n\n \n \n\n \n 实付:¥{{ item.actualPrice }} \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./myGroupon.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./myGroupon.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275205\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/help/help.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/help/help.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..baa599f449139623c0a8f4cec673ee88341d9297
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/help/help.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?85cc","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?a21b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?1952","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?2412","uni-app:///pages/help/help.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?6784","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?0908"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,0F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,aAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAiH;AACjH;AACwD;AACL;AACa;;;AAGhE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,0EAAM;AACR,EAAE,+EAAM;AACR,EAAE,wFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,mFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqsB,CAAgB,orBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACuBztB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,mBADA;AAEA,aAFA;AAGA,eAHA;AAIA,cAJA;AAKA,qBALA;;AAOA;AACA;;OAVA;AAaA;AACA;AACA,GAfA;AAgBA;;;AAGA,gCAnBA;AAoBA;;;AAGA,8BAvBA;AAwBA;;;AAGA,8BA3BA;AA4BA;;;AAGA,kCA/BA;AAgCA;;;AAGA,oDAnCA;AAoCA;;;AAGA,4CAvCA;AAwCA;;;AAGA,oDA3CA;AA4CA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,2BADA;;AAGA;AACA,KAZA;;AAcA;AACA;AACA;AACA,uBADA;AAEA,qBAFA;;AAIA;AACA,uBADA;AAEA,yBAFA;AAGA,UAHA,CAGA;AACA;AACA;AACA,oCADA;AAEA,0BAFA;AAGA,iCAHA;;AAKA;AACA,OAXA;AAYA,KAhCA;;AAkCA;AACA;AACA;AACA;;AAEA;AACA;AACA,2BADA;;AAGA;AACA,KA5CA,EA5CA,E;;;;;;;;;;;;AC5BA;AAAA;AAAA;AAAA;AAAggC,CAAgB,q8BAAG,EAAC,C;;;;;;;;;;;ACAphC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/help/help.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/help/help.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./help.vue?vue&type=template&id=41dcc5a6&\"\nvar renderjs\nimport script from \"./help.vue?vue&type=script&lang=js&\"\nexport * from \"./help.vue?vue&type=script&lang=js&\"\nimport style0 from \"./help.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/help/help.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./help.vue?vue&type=template&id=41dcc5a6&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./help.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./help.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n {{ item.question }} \n \n\n \n {{ item.answer }}\n \n \n \n\n \n 上一页 \n 下一页 \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./help.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./help.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275185\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/hotGoods/hotGoods.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/hotGoods/hotGoods.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..3cc6fcf78aabaf5cfe4e1b671bc43820ecbd688a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/hotGoods/hotGoods.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?e601","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?2c60","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?3bad","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?0bca","uni-app:///pages/hotGoods/hotGoods.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?5937","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?9e7e"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,qG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,iBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAqH;AACrH;AAC4D;AACL;AACa;;;AAGpE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,8EAAM;AACR,EAAE,mFAAM;AACR,EAAE,4FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,uFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAysB,CAAgB,wrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACgD7tB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA;AACA,wCADA;AAEA,sBAFA,EADA;;;AAMA,2BANA;AAOA,wBAPA;AAQA,mBARA;AASA,mBATA;AAUA,gCAVA;AAWA,6BAXA;AAYA,8BAZA;AAaA,aAbA;AAcA,eAdA;;AAgBA;AACA,cADA;AAEA,kBAFA;AAGA,gBAHA;AAIA,uBAJA,EAhBA;;;AAuBA,eAvBA;;AAyBA,GA3BA;AA4BA;AACA;AACA;AACA,GA/BA;AAgCA;AACA;AACA,GAlCA;AAmCA;AACA;AACA,GArCA;AAsCA;AACA;AACA,GAxCA;AAyCA;AACA;AACA,GA3CA;AA4CA;AACA;AACA;AACA;AACA,gBADA;AAEA,UAFA,CAEA;AACA;AACA;AACA,uDADA;;AAGA;AACA,OARA;AASA,KAZA;;AAcA;AACA;AACA;AACA,mBADA;AAEA,uBAFA;AAGA,yBAHA;AAIA,oCAJA;AAKA,8BALA;AAMA,mCANA;AAOA,UAPA,CAOA;AACA;AACA;AACA,oCADA;AAEA,uDAFA;;AAIA;AACA,OAdA;AAeA,KA/BA;;AAiCA;AACA;;AAEA;AACA;AACA;AACA,gDADA;AAEA,uCAFA;AAGA,mCAHA;AAIA,oCAJA;;AAMA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,oCADA;AAEA,uCAFA;AAGA,0CAHA;AAIA,iCAJA;;AAMA;AACA;;AAEA;AACA;AACA;AACA,sCADA;AAEA,mCAFA;AAGA,oCAHA;AAIA,iCAJA;AAKA,yBALA;;AAOA,8BAnCA;;AAqCA,KAzEA;;AA2EA;AACA;AACA;AACA,6BADA;AAEA,wDAFA;;AAIA;AACA,KAlFA,EA5CA,E;;;;;;;;;;;;ACrDA;AAAA;AAAA;AAAA;AAAogC,CAAgB,y8BAAG,EAAC,C;;;;;;;;;;;ACAxhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/hotGoods/hotGoods.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/hotGoods/hotGoods.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./hotGoods.vue?vue&type=template&id=0e8b20a6&\"\nvar renderjs\nimport script from \"./hotGoods.vue?vue&type=script&lang=js&\"\nexport * from \"./hotGoods.vue?vue&type=script&lang=js&\"\nimport style0 from \"./hotGoods.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/hotGoods/hotGoods.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./hotGoods.vue?vue&type=template&id=0e8b20a6&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./hotGoods.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./hotGoods.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n {{ bannerInfo.name }} \n \n \n \n \n \n \n \n \n 综合 \n \n \n 价格 \n \n \n \n \n 分类 \n \n \n \n \n {{ item.name }}\n \n \n \n \n \n \n \n \n {{ iitem.name }} \n ¥{{ iitem.retailPrice }} \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./hotGoods.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./hotGoods.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275199\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..f1aa1705bf7857ad0b7f5791a5564c98f2737069
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?d85e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?5371","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?8282","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?d640","uni-app:///pages/index/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?e51e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?12c3"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,4F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACa;;;AAGjE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAssB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC+M1tB;;AAEA;;AAEA,8D,CAAA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,kBADA;AAEA,kBAFA;AAGA,gBAHA;AAIA,gBAJA;AAKA,kBALA;AAMA,oBANA;AAOA,gBAPA;AAQA,iBARA;AASA,gBATA;AAUA,mBAVA;;AAYA;AACA,cADA;AAEA,kBAFA;AAGA,gBAHA;AAIA,uBAJA,EAZA;;;AAmBA,eAnBA;;AAqBA,GAvBA;AAwBA;AACA;AACA,4BADA;AAEA,uBAFA;AAGA,gCAHA;;AAKA,GA9BA;AA+BA,mBA/BA,+BA+BA;AACA,mCADA,CACA;;AAEA;AACA,mCAJA,CAIA;;AAEA,8BANA,CAMA;AACA,GAtCA;AAuCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,wCADA;;AAGA,OAJA,MAIA;AACA;AACA;AACA,iDADA;;AAGA,SAJA,MAIA;AACA;AACA,iCADA;;AAGA;AACA;AACA,KA1BA,CA0BA;;AAEA;AACA;AACA;AACA,4DADA;;AAGA,KAjCA,CAiCA;;AAEA;AACA;AACA;AACA,kDADA;;AAGA,KAxCA,CAwCA;;AAEA;AACA;AACA;AACA,uEADA;;AAGA;;AAEA;AACA,GAzFA;AA0FA;AACA;AACA,GA5FA;AA6FA;AACA;AACA,GA/FA;AAgGA;AACA;AACA,GAlGA;AAmGA;AACA;AACA,GArGA;AAsGA;AACA;AACA;AACA;AACA;AACA;AACA,2CADA;AAEA,2CAFA;AAGA,sCAHA;AAIA,sCAJA;AAKA,+CALA;AAMA,mCANA;AAOA,0CAPA;AAQA,qCARA;AASA,uCATA;;AAWA;AACA,OAdA;AAeA;AACA;AACA,8BADA;;AAGA,OAJA;AAKA,KAvBA;;AAyBA,aAzBA,qBAyBA,CAzBA,EAyBA;AACA;AACA;AACA,uBADA;AAEA;AACA,0BADA,EAFA;;AAKA,YALA;AAMA,UANA,CAMA;AACA;AACA;AACA,yBADA;;AAGA,SAJA,MAIA;AACA;AACA;AACA,OAdA;AAeA,KA1CA,EAtGA,E;;;;;;;;;;;;;ACtNA;AAAA;AAAA;AAAA;AAAigC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACArhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/index/index.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/index/index.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=57280228&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/index/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=57280228&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n 商品搜索, 共{{ goodsCount }}款好物 \n \n \n \n \n 0\">\n \n \n \n \n\n \n \n \n \n \n \n \n \n\n {{ item.name }} \n \n \n\n 0\">\n \n \n \n \n 优惠券 \n \n \n \n \n 0\" class=\"b\">\n \n {{ item.tag }} \n\n \n \n {{ item.discount }}元 \n 满{{ item.min }}元使用 \n \n \n {{ item.name }} \n {{ item.desc }} \n 有效期:{{ item.days }}天 \n 有效期:{{ item.startTime }} - {{ item.endTime }} \n \n \n \n \n \n\n 0\">\n \n \n \n \n 团购专区 \n \n \n \n \n \n \n \n \n \n \n \n {{ item.name }} \n {{ item.grouponMember }}人成团 \n \n \n 有效期至 {{ item.expireTime }} \n \n {{ item.brief }} \n \n 现价:¥{{ item.retailPrice }} \n 团购价:¥{{ item.grouponPrice }} \n \n \n \n \n \n \n \n\n \n \n \n 品牌制造商直供 \n \n \n \n \n \n \n \n \n {{ item.name }} \n {{ item.floorPrice }} \n 元起 \n \n \n \n \n \n \n 0\">\n \n \n \n 周一周四 · 新品首发 \n \n \n \n \n \n \n \n {{ item.name }} \n ¥{{ item.retailPrice }} \n \n \n \n \n\n 0\">\n \n \n \n 人气推荐 \n \n \n \n \n \n \n \n \n \n {{ item.name }} \n {{ item.brief }} \n ¥{{ item.retailPrice }} \n \n \n \n \n \n \n\n 0\">\n \n \n \n 专题精选 \n \n \n \n \n \n \n \n \n \n {{ item.title }} \n ¥{{ item.price }}元起 \n \n {{ item.subtitle }} \n \n \n \n \n \n \n 0\">\n {{ item.name }} \n \n\n \n \n \n \n \n {{ iitem.name }} \n ¥{{ iitem.retailPrice }} \n \n \n \n \n\n 0\">\n {{ '更多' + item.name + '好物 >' }} \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275193\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/newGoods/newGoods.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/newGoods/newGoods.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..1059eb74ba1a9fc1bf6430814f0133427ca46f07
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/newGoods/newGoods.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?1cd1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?6eb3","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?0153","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?0eec","uni-app:///pages/newGoods/newGoods.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?ca47","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?77d7"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,qG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,iBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAqH;AACrH;AAC4D;AACL;AACa;;;AAGpE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,8EAAM;AACR,EAAE,mFAAM;AACR,EAAE,4FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,uFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAysB,CAAgB,wrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACgD7tB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA;AACA,wCADA;AAEA,sBAFA,EADA;;;AAMA,2BANA;AAOA,wBAPA;AAQA,mBARA;AASA,mBATA;AAUA,gCAVA;AAWA,6BAXA;AAYA,8BAZA;AAaA,aAbA;AAcA,eAdA;;AAgBA;AACA,cADA;AAEA,kBAFA;AAGA,gBAHA;AAIA,uBAJA,EAhBA;;;AAuBA,eAvBA;;AAyBA,GA3BA;AA4BA;AACA;AACA;AACA,GA/BA;AAgCA;AACA;AACA,GAlCA;AAmCA;AACA;AACA,GArCA;AAsCA;AACA;AACA,GAxCA;AAyCA;AACA;AACA,GA3CA;AA4CA;AACA;AACA;AACA;AACA,mBADA;AAEA,uBAFA;AAGA,yBAHA;AAIA,oCAJA;AAKA,8BALA;AAMA,mCANA;AAOA,UAPA,CAOA;AACA;AACA;AACA,oCADA;AAEA,uDAFA;;AAIA;AACA,OAdA;AAeA,KAlBA;;AAoBA;AACA;;AAEA;AACA;AACA;AACA,gDADA;AAEA,uCAFA;AAGA,mCAHA;AAIA,oCAJA;;AAMA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,oCADA;AAEA,uCAFA;AAGA,0CAHA;AAIA,iCAJA;;AAMA;AACA;;AAEA;AACA;AACA;AACA,sCADA;AAEA,mCAFA;AAGA,oCAHA;AAIA,iCAJA;AAKA,yBALA;;AAOA,8BAnCA;;AAqCA,KA5DA;;AA8DA;AACA;AACA;AACA,6BADA;AAEA,wDAFA;;AAIA;AACA,KArEA,EA5CA,E;;;;;;;;;;;;ACrDA;AAAA;AAAA;AAAA;AAAogC,CAAgB,y8BAAG,EAAC,C;;;;;;;;;;;ACAxhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/newGoods/newGoods.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/newGoods/newGoods.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./newGoods.vue?vue&type=template&id=1e364174&\"\nvar renderjs\nimport script from \"./newGoods.vue?vue&type=script&lang=js&\"\nexport * from \"./newGoods.vue?vue&type=script&lang=js&\"\nimport style0 from \"./newGoods.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/newGoods/newGoods.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./newGoods.vue?vue&type=template&id=1e364174&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./newGoods.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./newGoods.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n {{ bannerInfo.name }} \n \n \n \n \n \n \n \n \n 综合 \n \n \n 价格 \n \n \n \n \n 分类 \n \n \n \n \n {{ item.name }}\n \n \n \n \n \n \n \n \n {{ iitem.name }} \n ¥{{ iitem.retailPrice }} \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./newGoods.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./newGoods.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275197\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/payResult/payResult.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/payResult/payResult.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..0add1bdf16539b7affdfb9b3debc055094861208
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/payResult/payResult.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?fcce","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?b56d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?04d3","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?2e9d","uni-app:///pages/payResult/payResult.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?3045","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?34f0"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,yG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,kBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAsH;AACtH;AAC6D;AACL;AACa;;;AAGrE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,+EAAM;AACR,EAAE,oFAAM;AACR,EAAE,6FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,wFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA0sB,CAAgB,yrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC8B9tB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,mBADA;AAEA,gBAFA;;AAIA,GANA;AAOA;AACA;AACA;AACA,8BADA;AAEA,mDAFA;;AAIA,GAbA;AAcA,gCAdA;AAeA;AACA;AACA,GAjBA;AAkBA;AACA;AACA,GApBA;AAqBA;AACA;AACA,GAvBA;AAwBA;AACA,YADA,sBACA;AACA;AACA;AACA,qBADA;AAEA;AACA,6BADA,EAFA;;AAKA,YALA;AAMA,UANA,CAMA;AACA;AACA;AACA;AACA;AACA,yCADA;AAEA,uCAFA;AAGA,0CAHA;AAIA,uCAJA;AAKA,qCALA;AAMA;AACA;AACA;AACA,4BADA;;AAGA,aAXA;AAYA;AACA;AACA;AACA,aAfA;AAgBA;AACA;AACA,aAlBA;;AAoBA;AACA,OA/BA;AAgCA,KAnCA,EAxBA,E;;;;;;;;;;;;;ACnCA;AAAA;AAAA;AAAA;AAAqgC,CAAgB,08BAAG,EAAC,C;;;;;;;;;;;ACAzhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/payResult/payResult.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/payResult/payResult.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./payResult.vue?vue&type=template&id=66a3985c&\"\nvar renderjs\nimport script from \"./payResult.vue?vue&type=script&lang=js&\"\nexport * from \"./payResult.vue?vue&type=script&lang=js&\"\nimport style0 from \"./payResult.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/payResult/payResult.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./payResult.vue?vue&type=template&id=66a3985c&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./payResult.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./payResult.vue?vue&type=script&lang=js&\"","\n \n \n \n 付款成功 \n \n 查看订单 \n 继续逛 \n \n \n \n 付款失败 \n \n \n 请在\n 半小时 \n 内完成付款\n \n 否则订单将会被系统取消 \n \n \n 查看订单 \n 重新付款 \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./payResult.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./payResult.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275358\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/search/search.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/search/search.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..c4f85970539966582854a46de54e69e9c5778822
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/search/search.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?004c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?dde2","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?cb18","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?712e","uni-app:///pages/search/search.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?75e9","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?2ed2"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":"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","file":"pages/search/search.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/search/search.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./search.vue?vue&type=template&id=4cedc0c6&\"\nvar renderjs\nimport script from \"./search.vue?vue&type=script&lang=js&\"\nexport * from \"./search.vue?vue&type=script&lang=js&\"\nimport style0 from \"./search.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/search/search.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./search.vue?vue&type=template&id=4cedc0c6&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./search.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./search.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n \n \n 取消 \n \n \n \n \n 历史记录 \n \n \n \n \n {{ item.keyword }}\n \n \n \n \n \n 热门搜索 \n \n \n \n {{ item.keyword }}\n \n \n \n \n {{ item }} \n \n \n\n \n \n \n \n 综合 \n \n \n 价格 \n \n \n \n \n 分类 \n \n \n \n \n {{ item.name }}\n \n \n \n \n \n \n \n\n {{ iitem.name }} \n\n ¥{{ iitem.retailPrice }} \n \n \n \n \n\n \n 您寻找的商品还未上架 \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./search.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./search.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275254\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topic/topic.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topic/topic.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..06802f260c73d40ee9a58fb11ff504f86fba5155
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topic/topic.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?86cf","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?a7f1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?09e4","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?d4c3","uni-app:///pages/topic/topic.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?42e1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?97a8"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6F,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACa;;;AAGjE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAssB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACqB1tB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,mBADA;AAEA,aAFA;AAGA,eAHA;AAIA,cAJA;AAKA,kBALA;AAMA,qBANA;AAOA,aAPA;;AASA,GAXA;AAYA;AACA;AACA;AACA,GAfA;AAgBA;AACA;AACA,GAlBA;AAmBA;AACA;AACA,GArBA;AAsBA;AACA;AACA,GAxBA;AAyBA;AACA;AACA,GA3BA;AA4BA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,2BADA;;AAGA;AACA,KAZA;;AAcA;AACA;AACA;AACA,oBADA;AAEA,uBAFA;AAGA,qBAHA;AAIA;;AAEA;AACA,uBADA;AAEA,uBAFA;AAGA,sBAHA;;AAKA;AACA,uBADA;AAEA,yBAFA;AAGA,UAHA,CAGA;AACA;AACA;AACA,wBADA;AAEA,oCAFA;AAGA,0BAHA;AAIA,iCAJA;;AAMA;;AAEA;AACA,OAdA;AAeA,KA1CA;;AA4CA;AACA;AACA;AACA;;AAEA;AACA;AACA,2BADA;;AAGA;AACA,KAtDA,EA5BA,E;;;;;;;;;;;;;AC1BA;AAAA;AAAA;AAAA;AAAigC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACArhC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/topic/topic.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/topic/topic.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./topic.vue?vue&type=template&id=1fb07e34&\"\nvar renderjs\nimport script from \"./topic.vue?vue&type=script&lang=js&\"\nexport * from \"./topic.vue?vue&type=script&lang=js&\"\nimport style0 from \"./topic.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/topic/topic.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topic.vue?vue&type=template&id=1fb07e34&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topic.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topic.vue?vue&type=script&lang=js&\"","\n \n \n \n \n\n \n {{ item.title }} \n {{ item.subtitle }} \n {{ item.price }}元起 \n \n \n \n 上一页 \n 下一页 \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topic.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topic.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275269\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topicComment/topicComment.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topicComment/topicComment.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..5db45465354ce551eed104946107a0f61f0ec538
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topicComment/topicComment.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?d66b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?e0e9","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?6834","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?029c","uni-app:///pages/topicComment/topicComment.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?61ca","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?fe1d"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,kH,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,qBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAyH;AACzH;AACgE;AACL;AACa;;;AAGxE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,kFAAM;AACR,EAAE,uFAAM;AACR,EAAE,gGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,2FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA6sB,CAAgB,4rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC+BjuB;;AAEA;;AAEA,6D;;AAEA;AACA,MADA,kBACA;AACA;AACA,kBADA;AAEA,wBAFA;AAGA,wBAHA;AAIA,aAJA;AAKA,gBALA;AAMA,iBANA;AAOA,iBAPA;AAQA,oBARA;AASA,gBATA;AAUA,gBAVA;AAWA,eAXA;AAYA,eAZA;;AAcA,GAhBA;AAiBA;AACA;AACA;AACA,wBADA;AAEA,8BAFA;;AAIA;AACA;AACA,GAzBA;AA0BA,mBA1BA,+BA0BA;AACA,mCADA,CACA;;AAEA;AACA;AACA,mCALA,CAKA;;AAEA,8BAPA,CAOA;AACA,GAlCA;AAmCA;AACA;AACA,GArCA;AAsCA;AACA;AACA,GAxCA;AAyCA;AACA;AACA,GA3CA;AA4CA;AACA;AACA,GA9CA;AA+CA;AACA;AACA;AACA;AACA;;AAEA;AACA,iCADA;;AAGA,KARA,MAQA;AACA;AACA;AACA;;AAEA;AACA,iCADA;;AAGA;;AAEA;AACA,GAnEA;AAoEA;AACA;AACA;AACA;AACA,6BADA;AAEA,uBAFA;AAGA,UAHA,CAGA;AACA;AACA;AACA,uCADA;AAEA,6CAFA;;AAIA;AACA,OAVA;AAWA,KAdA;;AAgBA;AACA;AACA;AACA,6BADA;AAEA,uBAFA;AAGA,yBAHA;AAIA,8DAJA;AAKA,+BALA;AAMA,UANA,CAMA;AACA;AACA;AACA;AACA,uEADA;AAEA,oCAFA;AAGA,iEAHA;;AAKA,WANA,MAMA;AACA;AACA,uEADA;AAEA,oCAFA;AAGA,iEAHA;;AAKA;AACA;AACA,OAtBA;AAuBA,KAzCA;;AA2CA;AACA;;AAEA;AACA;AACA,4BADA;AAEA,oBAFA;AAGA,sBAHA;AAIA,qBAJA;;AAMA,OAPA,MAOA;AACA;AACA,4BADA;AAEA,oBAFA;AAGA,sBAHA;AAIA,qBAJA;;AAMA;;AAEA;AACA,KA/DA,EApEA,E;;;;;;;;;;;;;ACrCA;AAAA;AAAA;AAAA;AAAwgC,CAAgB,68BAAG,EAAC,C;;;;;;;;;;;ACA5hC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/topicComment/topicComment.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/topicComment/topicComment.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./topicComment.vue?vue&type=template&id=2dcf4606&\"\nvar renderjs\nimport script from \"./topicComment.vue?vue&type=script&lang=js&\"\nexport * from \"./topicComment.vue?vue&type=script&lang=js&\"\nimport style0 from \"./topicComment.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/topicComment/topicComment.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicComment.vue?vue&type=template&id=2dcf4606&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicComment.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicComment.vue?vue&type=script&lang=js&\"","\n \n \n \n 全部({{ allCount }}) \n \n \n 有图({{ hasPicCount }}) \n \n \n \n \n \n \n \n {{ item.userInfo.nickName }} \n \n {{ item.addTime }} \n \n\n {{ item.content }} \n\n 0\">\n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicComment.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicComment.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275264\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topicCommentPost/topicCommentPost.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topicCommentPost/topicCommentPost.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..8607ff46edb28add0e544feebf0bbc404e9d5773
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topicCommentPost/topicCommentPost.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?996c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?a401","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?97a8","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?3e3e","uni-app:///pages/topicCommentPost/topicCommentPost.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?95a3","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?7501"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":"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","file":"pages/topicCommentPost/topicCommentPost.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/topicCommentPost/topicCommentPost.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./topicCommentPost.vue?vue&type=template&id=97fed0f4&\"\nvar renderjs\nimport script from \"./topicCommentPost.vue?vue&type=script&lang=js&\"\nexport * from \"./topicCommentPost.vue?vue&type=script&lang=js&\"\nimport style0 from \"./topicCommentPost.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/topicCommentPost/topicCommentPost.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicCommentPost.vue?vue&type=template&id=97fed0f4&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicCommentPost.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicCommentPost.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n \n \n {{ topic.title }} \n \n {{ topic.subtitle }} \n \n \n \n 评分 \n \n \n\n \n \n {{ starText }} \n \n \n \n {{ 140 - content.length }} \n \n\n \n \n 图片上传 \n {{ picUrls.length }}/{{ files.length }} \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n 取消 \n 发表 \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicCommentPost.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicCommentPost.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275268\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topicDetail/topicDetail.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topicDetail/topicDetail.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..16e9fc81c1d84c50a8db0c169288b22b29decea5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/topicDetail/topicDetail.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?894b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?be63","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?8592","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?292b","uni-app:///pages/topicDetail/topicDetail.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?9f3a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?2fb1"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,+G,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,oBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAwH;AACxH;AAC+D;AACL;AACa;;;AAGvE;AACuL;AACvL,gBAAgB,2LAAU;AAC1B,EAAE,iFAAM;AACR,EAAE,sFAAM;AACR,EAAE,+FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,0FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA,aAAa,oSAEN;AACP;AACA;AACA,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACjCA;AAAA;AAAA;AAAA;AAA4sB,CAAgB,2rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC4EhuB;;AAEA;;AAEA;;AAEA,6D;;AAEA;AACA,MADA,kBACA;AACA;AACA,WADA;;AAGA;AACA,cADA,EAHA;;;AAOA,mBAPA;AAQA,qBARA;AASA,qBATA;AAUA,oBAVA;AAWA,oBAXA;AAYA,uBAZA;AAaA,4BAbA;;AAeA,GAjBA;AAkBA;AACA;AACA;AACA;AACA,oBADA;;AAGA;AACA,iBADA;AAEA,QAFA,CAEA;AACA;AACA;AACA,+BADA;AAEA,oCAFA;AAGA,iDAHA;AAIA,+CAJA;;AAMA;AACA;AACA;AACA,KAbA;AAcA;AACA,iBADA;AAEA,QAFA,CAEA;AACA;AACA;AACA,kCADA;;AAGA;AACA,KARA;AASA,GA/CA;AAgDA,gCAhDA;AAiDA;AACA;AACA;AACA,GApDA;AAqDA;AACA;AACA,GAvDA;AAwDA;AACA;AACA,GA1DA;AA2DA;AACA,kBADA,4BACA;AACA;AACA;AACA,wBADA;AAEA,eAFA;AAGA,mBAHA;AAIA,eAJA;AAKA,gBALA;AAMA,UANA,CAMA;AACA;AACA;AACA,sCADA;AAEA,wCAFA;;AAIA;AACA,OAbA;AAcA,KAjBA;;AAmBA;AACA;AACA;AACA;AACA,4BADA;AAEA;AACA,eADA;AAEA,wBAFA,EAFA;;AAMA,YANA;AAOA,UAPA,CAOA;AACA;AACA;AACA,0BADA;AAEA,6BAFA;;AAIA,SALA,MAKA;AACA;AACA,yBADA;AAEA,6BAFA;;AAIA;AACA,OAnBA;AAoBA,KA1CA;;AA4CA,eA5CA,yBA4CA;AACA;AACA;AACA,wCADA;;AAGA,OAJA,MAIA;AACA;AACA,wFADA;;AAGA;AACA,KAtDA,EA3DA,E;;;;;;;;;;;;;ACpFA;AAAA;AAAA;AAAA;AAAugC,CAAgB,48BAAG,EAAC,C;;;;;;;;;;;ACA3hC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/topicDetail/topicDetail.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/topicDetail/topicDetail.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./topicDetail.vue?vue&type=template&id=2efb6a48&\"\nvar renderjs\nimport script from \"./topicDetail.vue?vue&type=script&lang=js&\"\nexport * from \"./topicDetail.vue?vue&type=script&lang=js&\"\nimport style0 from \"./topicDetail.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/topicDetail/topicDetail.vue\"\nexport default component.exports","export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicDetail.vue?vue&type=template&id=2efb6a48&\"","var components\ntry {\n components = {\n mpHtml: function() {\n return import(\n /* webpackChunkName: \"uni_modules/mp-html/components/mp-html/mp-html\" */ \"@/uni_modules/mp-html/components/mp-html/mp-html.vue\"\n )\n }\n }\n} catch (e) {\n if (\n e.message.indexOf(\"Cannot find module\") !== -1 &&\n e.message.indexOf(\".vue\") !== -1\n ) {\n console.error(e.message)\n console.error(\"1. 排查组件名称拼写是否正确\")\n console.error(\n \"2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom\"\n )\n console.error(\n \"3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件\"\n )\n } else {\n throw e\n }\n}\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicDetail.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicDetail.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n 0\">\n \n \n 专题商品 \n \n \n \n \n \n \n \n \n \n {{ item.name }} \n {{ item.brief }} \n ¥{{ item.retailPrice }} \n \n \n \n \n \n \n \n \n \n 精选留言 \n \n \n 0\">\n \n \n \n \n \n {{ item.userInfo.nickName }} \n \n {{ item.addTime }} \n \n\n \n {{ item.content }}\n \n \n \n 5\">\n 查看更多 \n \n \n \n 等你来留言 \n \n \n \n \n 专题推荐 \n \n \n \n \n\n {{ item.title }} \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicDetail.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicDetail.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275257\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/address/address.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/address/address.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..ec46614cba659ebdef143745ba8d0ad02d16a46d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/address/address.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?5969","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?cc2f","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?0908","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?5f6e","uni-app:///pages/ucenter/address/address.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?bfc8","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?8c5d"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,0G,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,gBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAoH;AACpH;AAC2D;AACL;AACa;;;AAGnE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,6EAAM;AACR,EAAE,kFAAM;AACR,EAAE,2FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,sFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAutB,CAAgB,urBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC2B3uB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,qBADA;AAEA,cAFA;;AAIA,GANA;AAOA;AACA;AACA,GATA;AAUA;AACA;AACA,GAZA;AAaA;AACA;AACA;AACA,GAhBA;AAiBA;AACA;AACA,GAnBA;AAoBA;AACA;AACA,GAtBA;AAuBA;AACA,kBADA,4BACA;AACA;AACA;AACA;AACA;AACA,sCADA;AAEA,iCAFA;;AAIA;AACA,OAPA;AAQA,KAXA;;AAaA,sBAbA,8BAaA,KAbA,EAaA;AACA,yBADA,CACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,SAFA,CAEA;;AAEA;;AAEA;AACA;AACA,SAFA,MAEA;AACA;AACA,uEADA;;AAGA;AACA,OAdA,MAcA;AACA;AACA,iGADA;;AAGA;AACA,KAtCA;;AAwCA,iBAxCA,yBAwCA,KAxCA,EAwCA;AACA;AACA;AACA;AACA,iBADA;AAEA,2BAFA;AAGA;AACA;AACA;AACA;AACA,6BADA;AAEA;AACA,2BADA,EAFA;;AAKA,kBALA;AAMA,gBANA,CAMA;AACA;AACA;AACA;AACA,kCADA;AAEA,mDAFA;;AAIA;AACA,aAdA;AAeA;AACA;AACA,SAvBA;;AAyBA;AACA,KArEA,EAvBA,E;;;;;;;;;;;;;AChCA;AAAA;AAAA;AAAA;AAAwhC,CAAgB,w8BAAG,EAAC,C;;;;;;;;;;;ACA5iC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/address/address.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/address/address.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./address.vue?vue&type=template&id=2fd98d2a&\"\nvar renderjs\nimport script from \"./address.vue?vue&type=script&lang=js&\"\nexport * from \"./address.vue?vue&type=script&lang=js&\"\nimport style0 from \"./address.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/address/address.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./address.vue?vue&type=template&id=2fd98d2a&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./address.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./address.vue?vue&type=script&lang=js&\"","\n \n 0\">\n \n \n {{ item.name }} \n 默认 \n \n\n \n {{ item.tel }} \n {{ item.addressDetail }} \n \n\n \n \n \n \n \n \n 收货地址还没有~~~ \n \n 新建 \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./address.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./address.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275248\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/addressAdd/addressAdd.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/addressAdd/addressAdd.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..239f63a656d3940078794efe91006146d5d28149
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/addressAdd/addressAdd.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?869b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?2481","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?89b9","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?3dfb","uni-app:///pages/ucenter/addressAdd/addressAdd.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?b3fa","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?78dc"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,mH,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,mBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAuH;AACvH;AAC8D;AACL;AACa;;;AAGtE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,gFAAM;AACR,EAAE,qFAAM;AACR,EAAE,8FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,yFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA0tB,CAAgB,0rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC6D9uB;;AAEA;;AAEA;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA;AACA,aADA;AAEA,mBAFA;AAGA,mBAHA;AAIA,gBAJA;AAKA,eALA;AAMA,oBANA;AAOA,oBAPA;AAQA,gBARA;AASA,kBATA;AAUA,yBAVA,EADA;;AAaA,kBAbA;AAcA,6BAdA;AAeA;AACA;AACA,eADA;AAEA,kBAFA,EADA;;AAKA;AACA,eADA;AAEA,kBAFA,EALA;;AASA;AACA,eADA;AAEA,kBAFA,EATA,CAfA;;;AA6BA,mBA7BA;AA8BA,oBA9BA;AA+BA,6BA/BA;;AAiCA,GAnCA;AAoCA;AACA;AACA;;AAEA;AACA;AACA,6BADA;;AAGA;AACA;AACA,GA9CA;AA+CA,gCA/CA;AAgDA;AACA;AACA,GAlDA;AAmDA;AACA;AACA,GArDA;AAsDA;AACA;AACA,GAxDA;AAyDA;AACA,mBADA,2BACA,KADA,EACA;AACA;AACA;AACA;AACA,wBADA;;AAGA,KAPA;;AASA,iBATA,yBASA,KATA,EASA;AACA;AACA;AACA;AACA,wBADA;;AAGA,KAfA;;AAiBA,oBAjBA,4BAiBA,KAjBA,EAiBA;AACA;AACA;AACA;AACA,wBADA;;AAGA,KAvBA;;AAyBA,iBAzBA,2BAyBA;AACA;AACA;AACA;AACA,wBADA;;AAGA,KA/BA;;AAiCA,oBAjCA,8BAiCA;AACA;AACA;AACA,0BADA;AAEA,UAFA,CAEA;AACA;AACA;AACA;AACA,+BADA;;AAGA;AACA;AACA,OAVA;AAWA,KA9CA;;AAgDA,uBAhDA,iCAgDA;AACA;AACA;AACA;AACA,OAFA;AAGA;AACA,oCADA;;AAGA,KAxDA;;AA0DA,gBA1DA,0BA0DA;AACA;AACA;AACA,gDADA;AAEA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAFA,MAEA;AACA;AACA;;AAEA;AACA,SATA;AAUA;AACA,4CADA;AAEA,uBAFA;AAGA,gCAHA;;AAKA,OAxBA,MAwBA;AACA;AACA;AACA,iBADA;AAEA,oBAFA,EADA;;AAKA;AACA,iBADA;AAEA,oBAFA,EALA;;AASA;AACA,iBADA;AAEA,oBAFA,EATA;;;AAcA;AACA,6CADA;AAEA,uBAFA;AAGA,8CAHA;;AAKA;;AAEA;AACA,KAjHA;;AAmHA,oBAnHA,4BAmHA,KAnHA,EAmHA;AACA;AACA;AACA,mDAHA,CAGA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,OAHA,MAGA;AACA;AACA;AACA;AACA,SAHA,MAGA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,SAFA,MAEA;AACA;AACA;;AAEA;AACA,OATA;AAUA;AACA,8BADA;AAEA,uCAFA;;AAIA;AACA,KA5JA;;AA8JA,gBA9JA,wBA8JA,KA9JA,EA8JA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,4CADA;;AAGA;AACA;AACA;AACA;AACA,WAFA,MAEA;AACA;AACA;;AAEA;AACA,SATA;AAUA;AACA,iCADA;;AAGA;AACA;AACA,OA3BA,CA2BA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,WAFA,MAEA;AACA;AACA;AACA;;AAEA;AACA,OAZA;AAaA;AACA,0CADA;AAEA,kCAFA;;AAIA;AACA;;AAEA;AACA;AACA;AACA,OAHA,MAGA;AACA;AACA;AACA;;AAEA;AACA,8BADA;;AAGA;AACA,KA3NA;;AA6NA,oBA7NA,8BA6NA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,wBADA;AAEA,+BAFA;;AAIA,KA5OA;;AA8OA,sBA9OA,gCA8OA;AACA;AACA,+BADA;AAEA,iDAFA;;AAIA,KAnPA;;AAqPA,iBArPA,2BAqPA;AACA;AACA,KAvPA;;AAyPA,eAzPA,yBAyPA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA,qBADA;AAEA;AACA,sBADA;AAEA,0BAFA;AAGA,wBAHA;AAIA,kCAJA;AAKA,0BALA;AAMA,8BANA;AAOA,kCAPA;AAQA,4CARA;AASA,oCATA,EAFA;;AAaA,YAbA;AAcA,UAdA,CAcA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,iCADA;;;AAIA;AACA;AACA,aAFA,CAEA;;AAEA;AACA;;AAEA;AACA;AACA,OAnCA;AAoCA,KAtTA,EAzDA,E;;;;;;;;;;;;;ACtEA;AAAA;AAAA;AAAA;AAA2hC,CAAgB,28BAAG,EAAC,C;;;;;;;;;;;ACA/iC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/addressAdd/addressAdd.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/addressAdd/addressAdd.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./addressAdd.vue?vue&type=template&id=0f9ac161&\"\nvar renderjs\nimport script from \"./addressAdd.vue?vue&type=script&lang=js&\"\nexport * from \"./addressAdd.vue?vue&type=script&lang=js&\"\nimport style0 from \"./addressAdd.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/addressAdd/addressAdd.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./addressAdd.vue?vue&type=template&id=0f9ac161&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./addressAdd.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./addressAdd.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n 设为默认地址 \n \n \n\n \n \n \n \n\n \n \n \n \n {{ item.name }}\n \n \n 确定 \n \n \n \n \n {{ item.name }}\n \n \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./addressAdd.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./addressAdd.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275228\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/aftersale/aftersale.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/aftersale/aftersale.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..7133cd324c9467da2db18b862505bc30a52ef074
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/aftersale/aftersale.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?5e00","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?52fa","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?ee8d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?73c0","uni-app:///pages/ucenter/aftersale/aftersale.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?4f5a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?8c20"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":"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","file":"pages/ucenter/aftersale/aftersale.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/aftersale/aftersale.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./aftersale.vue?vue&type=template&id=47d9f1c9&\"\nvar renderjs\nimport script from \"./aftersale.vue?vue&type=script&lang=js&\"\nexport * from \"./aftersale.vue?vue&type=script&lang=js&\"\nimport style0 from \"./aftersale.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/aftersale/aftersale.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersale.vue?vue&type=template&id=47d9f1c9&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersale.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersale.vue?vue&type=script&lang=js&\"","\n \n \n 退款商品 \n \n \n \n \n \n\n \n \n {{ item.goodsName }} \n x{{ item.number }} \n \n {{ item.specifications }} \n ¥{{ item.price }} \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n\n 申请售后 \n\n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersale.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersale.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275223\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..40f067bc60461be24695b6a2f1d51a5597fa2a13
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?8118","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?a156","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?e8e1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?50bc","uni-app:///pages/ucenter/aftersaleDetail/aftersaleDetail.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?f63c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?e967"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,mI,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,wBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA4H;AAC5H;AACmE;AACL;AACa;;;AAG3E;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,qFAAM;AACR,EAAE,0FAAM;AACR,EAAE,mGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,8FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA+tB,CAAgB,+rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC6CnvB;;AAEA,gE;;AAEA;AACA,MADA,kBACA;AACA;AACA,gBADA;AAEA;AACA,sBADA;AAEA,wBAFA;AAGA,uBAHA;AAIA,uBAJA,EAFA;;AAQA,oBARA;AASA;AACA,kBADA;AAEA,mBAFA;AAGA,uBAHA;AAIA,gBAJA;AAKA,kBALA;AAMA,kBANA;AAOA,mBAPA,EATA;;AAkBA,wEAlBA;AAmBA,6CAnBA;AAoBA,kBApBA;;AAsBA,GAxBA;AAyBA;AACA;AACA;AACA,yBADA;;AAGA;AACA,GA/BA;AAgCA;AACA;AACA,GAlCA;AAmCA;AACA;AACA,GArCA;AAsCA;AACA;AACA,GAxCA;AAyCA;AACA;AACA,GA3CA;AA4CA;AACA;AACA;AACA,oBADA;;AAGA;AACA;AACA,OAFA,EAEA,IAFA;AAGA;AACA;AACA,6BADA;AAEA,UAFA,CAEA;AACA;AACA;AACA;AACA;AACA,oBADA;;AAGA,WAJA;AAKA;AACA,iCADA;AAEA,2CAFA;AAGA,yCAHA;AAIA,+BAJA;;AAMA;;AAEA;AACA,OAnBA;AAoBA,KA7BA,EA5CA,E;;;;;;;;;;;;;ACjDA;AAAA;AAAA;AAAA;AAAgiC,CAAgB,g9BAAG,EAAC,C;;;;;;;;;;;ACApjC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/aftersaleDetail/aftersaleDetail.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/aftersaleDetail/aftersaleDetail.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./aftersaleDetail.vue?vue&type=template&id=d8a8b5aa&\"\nvar renderjs\nimport script from \"./aftersaleDetail.vue?vue&type=script&lang=js&\"\nexport * from \"./aftersaleDetail.vue?vue&type=script&lang=js&\"\nimport style0 from \"./aftersaleDetail.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/aftersaleDetail/aftersaleDetail.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleDetail.vue?vue&type=template&id=d8a8b5aa&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleDetail.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleDetail.vue?vue&type=script&lang=js&\"","\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n 退款商品 \n \n \n \n \n \n\n \n \n {{ item.goodsName }} \n x{{ item.number }} \n \n {{ item.specifications }} \n ¥{{ item.price }} \n \n \n \n \n\n \n \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleDetail.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleDetail.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275210\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..fbb9657421b213af3be618e5dd3e9c3ffcdeffba
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?78ea","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?a4d2","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?c996","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?036e","uni-app:///pages/ucenter/aftersaleList/aftersaleList.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?ee3a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?fbdf"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6H,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,sBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAA0H;AAC1H;AACiE;AACL;AACa;;;AAGzE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,mFAAM;AACR,EAAE,wFAAM;AACR,EAAE,iGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,4FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA6tB,CAAgB,6rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACwDjvB;;AAEA,gE;;AAEA;AACA,MADA,kBACA;AACA;AACA,uBADA;AAEA,iBAFA;AAGA,aAHA;AAIA,eAJA;AAKA,mBALA;;AAOA;AACA,cADA;AAEA,kBAFA;AAGA,qBAHA;AAIA,kBAJA,EAPA;;;AAcA,GAhBA;AAiBA,qCAjBA;AAkBA,eAlBA,2BAkBA;AACA;AACA;AACA,2BADA;;AAGA;AACA,KALA,MAKA;AACA;AACA,wBADA;AAEA,oBAFA;AAGA,sBAHA;;AAKA;AACA;AACA,GAhCA;AAiCA;AACA;AACA,GAnCA;AAoCA;AACA;AACA;AACA,GAvCA;AAwCA;AACA;AACA,GA1CA;AA2CA;AACA;AACA,GA7CA;AA8CA;AACA,oBADA,8BACA;AACA;AACA;AACA,6BADA;AAEA,uBAFA;AAGA,yBAHA;AAIA,UAJA,CAIA;AACA;AACA;AACA;AACA,mEADA;AAEA,sCAFA;;AAIA;AACA,OAZA;AAaA,KAhBA;;AAkBA;AACA;AACA;AACA,yBADA;AAEA,0BAFA;AAGA,eAHA;AAIA,iBAJA;AAKA,qBALA;;AAOA;AACA,KA5BA,EA9CA,E;;;;;;;;;;;;;AC5DA;AAAA;AAAA;AAAA;AAA8hC,CAAgB,88BAAG,EAAC,C;;;;;;;;;;;ACAljC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/aftersaleList/aftersaleList.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/aftersaleList/aftersaleList.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./aftersaleList.vue?vue&type=template&id=efa7fc76&\"\nvar renderjs\nimport script from \"./aftersaleList.vue?vue&type=script&lang=js&\"\nexport * from \"./aftersaleList.vue?vue&type=script&lang=js&\"\nimport style0 from \"./aftersaleList.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/aftersaleList/aftersaleList.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleList.vue?vue&type=template&id=efa7fc76&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleList.vue?vue&type=script&lang=js&\"","\n \n \n \n 申请中 \n \n \n 处理中 \n \n \n 已完成 \n \n \n 已拒绝 \n \n \n \n \n 还没有呢 \n \n \n\n \n \n \n 售后编号:{{ item.aftersale.aftersaleSn }} \n \n\n \n \n \n \n\n \n {{ gitem.goodsName }} \n {{ gitem.number }}件商品 \n \n\n \n \n\n \n 申请退款金额:¥{{ item.aftersale.amount }}元 \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleList.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleList.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275203\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/collect/collect.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/collect/collect.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..ec936aabf116d18a520efbd1ba7e90967193e279
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/collect/collect.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?f1b6","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?ce79","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?71f3","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?8f49","uni-app:///pages/ucenter/collect/collect.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?4259","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?0211"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,2G,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,gBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAoH;AACpH;AAC2D;AACL;AACa;;;AAGnE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,6EAAM;AACR,EAAE,kFAAM;AACR,EAAE,2FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,sFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAutB,CAAgB,urBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACoC3uB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,aADA;AAEA,qBAFA;AAGA,aAHA;AAIA,eAJA;AAKA,mBALA;AAMA,oBANA;AAOA,kBAPA;;AASA,GAXA;AAYA;AACA;AACA,GAdA;AAeA,eAfA,2BAeA;AACA;AACA;AACA,2BADA;;AAGA;AACA,KALA,MAKA;AACA;AACA,0BADA;AAEA,oBAFA;AAGA,sBAHA;;AAKA;AACA;AACA,GA7BA;AA8BA,gCA9BA;AA+BA,8BA/BA;AAgCA;AACA;AACA,GAlCA;AAmCA;AACA;AACA,GArCA;AAsCA;AACA,kBADA,4BACA;AACA;AACA,uBADA;;AAGA;AACA;AACA,uBADA;AAEA,uBAFA;AAGA,yBAHA;;AAKA,UALA,CAKA;AACA;AACA;AACA,+DADA;AAEA,sCAFA;;AAIA;AACA,OAZA;AAaA,aAbA,CAaA;AACA;AACA,OAfA;AAgBA,KAtBA;;AAwBA;AACA;AACA;AACA,uBADA;AAEA,kBAFA;AAGA,eAHA;AAIA,iBAJA;AAKA,qBALA;;AAOA;AACA,KAlCA;;AAoCA,eApCA,uBAoCA,KApCA,EAoCA;AACA;AACA;AACA,oDAHA,CAGA;;AAEA,sDALA,CAKA;;AAEA;AACA;AACA,mBADA;AAEA,2BAFA;AAGA;AACA;AACA;AACA,oCADA;AAEA;AACA,+BADA;AAEA,gCAFA,EAFA;;AAMA,oBANA;AAOA,kBAPA,CAOA;AACA;AACA;AACA,iCADA;AAEA,mCAFA;AAGA,kCAHA;;AAKA;AACA;AACA,iDADA;;AAGA;AACA,eAnBA;AAoBA;AACA,WA1BA;;AA4BA,OA7BA,MA6BA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,+BADA;;AAGA;AACA,KAnFA;;AAqFA;AACA;AACA;AACA;AACA,+BADA;;AAGA,KA3FA;;AA6FA;AACA;AACA;AACA;AACA,6BADA;;AAGA,KAnGA,EAtCA,E;;;;;;;;;;;;;ACzCA;AAAA;AAAA;AAAA;AAAwhC,CAAgB,w8BAAG,EAAC,C;;;;;;;;;;;ACA5iC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/collect/collect.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/collect/collect.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./collect.vue?vue&type=template&id=7a75d052&\"\nvar renderjs\nimport script from \"./collect.vue?vue&type=script&lang=js&\"\nexport * from \"./collect.vue?vue&type=script&lang=js&\"\nimport style0 from \"./collect.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/collect/collect.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./collect.vue?vue&type=template&id=7a75d052&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./collect.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./collect.vue?vue&type=script&lang=js&\"","\n \n \n \n 商品收藏 \n \n \n 专题收藏 \n \n \n \n \n 还没有收藏 \n \n \n \n \n \n\n \n {{ item.name }} \n {{ item.brief }} \n ¥{{ item.retailPrice }} \n \n\n \n {{ item.title }} \n {{ item.subtitle }} \n {{ item.price }}元起 \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./collect.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./collect.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275244\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/couponList/couponList.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/couponList/couponList.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..86e2e746c3520e2663835486a713cdd81a413fa5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/couponList/couponList.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?15b4","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?698e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?2e89","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?8da4","uni-app:///pages/ucenter/couponList/couponList.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?166c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?c351"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,oH,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,mBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAuH;AACvH;AAC8D;AACL;AACa;;;AAGtE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,gFAAM;AACR,EAAE,qFAAM;AACR,EAAE,8FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,yFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA0tB,CAAgB,0rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC2D9uB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,oBADA;;AAGA;AACA,iBADA,EAHA;;;AAOA,eAPA;AAQA,aARA;AASA,eATA;AAUA,cAVA;AAWA,kBAXA;AAYA,qBAZA;AAaA,aAbA;;AAeA;AACA;;OAlBA;AAqBA;AACA;AACA,GAvBA;AAwBA;;;AAGA,gCA3BA;AA4BA;;;AAGA,8BA/BA;AAgCA;;;AAGA,8BAnCA;AAoCA;;;AAGA,kCAvCA;AAwCA;;;AAGA,mBA3CA,+BA2CA;AACA,mCADA,CACA;;AAEA;AACA,mCAJA,CAIA;;AAEA,8BANA,CAMA;AACA,GAlDA;AAmDA;;;AAGA,4CAtDA;AAuDA;;;AAGA,oDA1DA;AA2DA;AACA;AACA;AACA;AACA,oBADA;AAEA,uBAFA;AAGA,sBAHA;;AAKA;AACA,2BADA;AAEA,uBAFA;AAGA,yBAHA;AAIA,UAJA,CAIA;AACA;AACA;AACA,wBADA;AAEA,qCAFA;AAGA,iDAHA;AAIA,iCAJA;;AAMA;AACA,OAbA;AAcA,KAtBA;;AAwBA;AACA;AACA,4BADA;;AAGA,KA5BA;;AA8BA;AACA;AACA,gBADA;;AAGA,KAlCA;;AAoCA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,wBADA;AAEA;AACA,uBADA,EAFA;;AAKA,YALA;AAMA,UANA,CAMA;AACA;AACA;AACA;AACA;AACA,yBADA;AAEA,0BAFA;;AAIA,SAPA,MAOA;AACA;AACA;AACA,OAjBA;AAkBA,KA7DA;;AA+DA;AACA;;AAEA;AACA;AACA;;AAEA;AACA,2BADA;;AAGA;AACA,KA1EA;;AA4EA;AACA;AACA;AACA;;AAEA;AACA;AACA,2BADA;;AAGA;AACA,KAtFA;;AAwFA;AACA;AACA,sBADA;AAEA,6CAFA;AAGA,eAHA;AAIA,iBAJA;AAKA,gBALA;AAMA,oBANA;AAOA,uBAPA;;AASA;AACA,KAnGA,EA3DA,E;;;;;;;;;;;;;AChEA;AAAA;AAAA;AAAA;AAA2hC,CAAgB,28BAAG,EAAC,C;;;;;;;;;;;ACA/iC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/couponList/couponList.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/couponList/couponList.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./couponList.vue?vue&type=template&id=f3db95fe&\"\nvar renderjs\nimport script from \"./couponList.vue?vue&type=script&lang=js&\"\nexport * from \"./couponList.vue?vue&type=script&lang=js&\"\nimport style0 from \"./couponList.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/couponList/couponList.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponList.vue?vue&type=template&id=f3db95fe&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponList.vue?vue&type=script&lang=js&\"","\n \n \n \n 未使用 \n \n \n 已使用 \n \n \n 已过期 \n \n \n\n \n \n \n \n 0\" @tap.native.stop.prevent=\"clearExchange\" />\n \n 兑换 \n \n\n \n \n 使用说明\n \n\n \n \n {{ item.tag }} \n\n \n \n {{ item.discount }}元 \n 满{{ item.min }}元使用 \n \n \n {{ item.name }} \n 有效期:{{ item.startTime }} - {{ item.endTime }} \n \n \n\n \n {{ item.desc }} \n \n \n \n\n \n 上一页 \n 下一页 \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponList.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponList.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275236\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/couponSelect/couponSelect.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/couponSelect/couponSelect.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..a60cf50c21fb86c97f962e4e9c2b49ebc66468b6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/couponSelect/couponSelect.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?a16c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?66e9","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?77b8","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?c22b","uni-app:///pages/ucenter/couponSelect/couponSelect.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?f12a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?65b5"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,0H,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,qBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAyH;AACzH;AACgE;AACL;AACa;;;AAGxE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,kFAAM;AACR,EAAE,uFAAM;AACR,EAAE,gGAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,2FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA4tB,CAAgB,4rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC6BhvB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,oBADA;AAEA,eAFA;AAGA,iBAHA;AAIA,qBAJA;AAKA,sBALA;AAMA,kBANA;AAOA,wBAPA;;AASA;AACA;;OAZA;AAeA,qCAfA;AAgBA;;;AAGA,gCAnBA;AAoBA;;;AAGA;AACA;AACA;AACA,qBADA;;;AAIA;AACA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA,sBADA;AAEA,0BAFA;AAGA,kCAHA;AAIA,sCAJA;;AAMA,KA/BA,CA+BA;AACA;AACA;AACA;;AAEA;AACA,GAlEA;AAmEA;;;AAGA,8BAtEA;AAuEA;;;AAGA,kCA1EA;AA2EA;;;AAGA,oDA9EA;AA+EA;;;AAGA,eAlFA,2BAkFA,EAlFA;AAmFA;;;AAGA,oDAtFA;AAuFA;AACA;AACA;AACA;AACA,sBADA;AAEA;;AAEA;AACA,uBADA;AAEA,uBAFA;AAGA,sBAHA;;AAKA;AACA,2BADA;AAEA,2CAFA;AAGA,UAHA,CAGA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA,4BADA;;AAGA;;AAEA;AACA,OAnBA;AAoBA,KAhCA;;AAkCA;AACA;AACA;AACA;AACA,OAHA,CAGA;;AAEA;AACA,KAzCA;;AA2CA;AACA;AACA;AACA;AACA;AACA,OAHA,CAGA;;AAEA;AACA,KAnDA,EAvFA,E;;;;;;;;;;;;;AClCA;AAAA;AAAA;AAAA;AAA6hC,CAAgB,68BAAG,EAAC,C;;;;;;;;;;;ACAjjC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/couponSelect/couponSelect.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/couponSelect/couponSelect.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./couponSelect.vue?vue&type=template&id=0aebabfe&\"\nvar renderjs\nimport script from \"./couponSelect.vue?vue&type=script&lang=js&\"\nexport * from \"./couponSelect.vue?vue&type=script&lang=js&\"\nimport style0 from \"./couponSelect.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/couponSelect/couponSelect.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponSelect.vue?vue&type=template&id=0aebabfe&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponSelect.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponSelect.vue?vue&type=script&lang=js&\"","\n \n \n 不选择优惠券 \n\n \n {{ item.tag }} \n\n \n \n {{ item.discount }}元 \n 满{{ item.min }}元使用 \n \n \n {{ item.name }} \n 有效期:{{ item.startTime }} - {{ item.endTime }} \n \n \n\n \n {{ item.desc }} \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponSelect.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponSelect.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275233\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/feedback/feedback.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/feedback/feedback.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..87bf36730ca9f8ba61b8bcb1f2e003ae846e4723
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/feedback/feedback.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?4273","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?d40a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?c37a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?8cb4","uni-app:///pages/ucenter/feedback/feedback.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?733c","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?2d77"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,6G,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,iBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAqH;AACrH;AAC4D;AACL;AACa;;;AAGpE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,8EAAM;AACR,EAAE,mFAAM;AACR,EAAE,4FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,uFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAwtB,CAAgB,wrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC4C5uB;;AAEA;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,sDADA;AAEA,cAFA;AAGA,iBAHA;AAIA,sBAJA;AAKA;AACA,iBADA,EALA;;AAQA,uBARA;AASA,iBATA;AAUA,eAVA;;AAYA,GAdA;AAeA,qCAfA;AAgBA,gCAhBA;AAiBA,8BAjBA;AAkBA;AACA;AACA,GApBA;AAqBA;AACA;AACA,GAvBA;AAwBA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,gBADA;AAEA,4CAFA;AAGA,uCAHA;AAIA;AACA;AACA,uDADA;;AAGA;AACA,SATA;;AAWA,KAnBA;;AAqBA;AACA;AACA;AACA,8BADA;AAEA,sCAFA;AAGA,oBAHA;AAIA;AACA;;AAEA;AACA;AACA;AACA;AACA,8BADA;AAEA,mCAFA;;AAIA;AACA,SAfA;AAgBA;AACA;AACA,uBADA;AAEA,2BAFA;AAGA,6BAHA;;AAKA,SAtBA;;AAwBA;AACA;AACA;AACA;AACA,OAJA;AAKA,KApDA;;AAsDA;AACA;AACA,mCADA;AAEA;AACA,wBAHA,CAGA;AAHA;AAKA,KA5DA;;AA8DA;AACA;AACA,6BADA;;AAGA,KAlEA;;AAoEA;AACA;AACA,8BADA;;AAGA,KAxEA;;AA0EA;AACA;AACA,sCADA;AAEA,+BAFA;;AAIA,KA/EA;;AAiFA;AACA;AACA,kBADA;;AAGA,KArFA;;AAuFA;AACA;AACA;AACA,wCADA;;AAGA;;AAEA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA,uBADA;AAEA,kBAFA;AAGA,sCAHA;;AAKA;AACA,qBADA;AAEA;AACA,2BADA;AAEA,wCAFA;AAGA,6BAHA;AAIA,mCAJA;AAKA,6BALA,EAFA;;AASA,YATA;AAUA,UAVA,CAUA;AACA;;AAEA;AACA;AACA,4BADA;AAEA,2BAFA;AAGA,0BAHA;AAIA;AACA;AACA,wBADA;AAEA,2BAFA;AAGA,gCAHA;AAIA,0BAJA;AAKA,iCALA;AAMA,2BANA;AAOA,yBAPA;;AASA,aAdA;;AAgBA,SAjBA,MAiBA;AACA;AACA;AACA,OAjCA;AAkCA,KAtJA,EAxBA,E;;;;;;;;;;;;;ACnDA;AAAA;AAAA;AAAA;AAAyhC,CAAgB,y8BAAG,EAAC,C;;;;;;;;;;;ACA7iC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/feedback/feedback.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/feedback/feedback.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./feedback.vue?vue&type=template&id=927c443e&\"\nvar renderjs\nimport script from \"./feedback.vue?vue&type=script&lang=js&\"\nexport * from \"./feedback.vue?vue&type=script&lang=js&\"\nimport style0 from \"./feedback.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/feedback/feedback.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./feedback.vue?vue&type=template&id=927c443e&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./feedback.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./feedback.vue?vue&type=script&lang=js&\"","\n \n \n \n \n {{ array[index] }} \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {{ contentLength }}/500 \n \n \n 手机号码 \n \n \n 0\" @tap.native.stop.prevent=\"clearMobile\" />\n \n \n\n 提交 \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./feedback.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./feedback.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275240\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/footprint/footprint.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/footprint/footprint.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..ea6690d78a757a8b3835c9249e76cf511480ca50
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/footprint/footprint.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?63db","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?a511","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?ba8d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?0b92","uni-app:///pages/ucenter/footprint/footprint.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?dcc1","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?11ac"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,gH,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,kBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAsH;AACtH;AAC6D;AACL;AACa;;;AAGrE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,+EAAM;AACR,EAAE,oFAAM;AACR,EAAE,6FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,wFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAytB,CAAgB,yrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACqC7uB;;AAEA;;AAEA,mB;AACA;AACA,MADA,kBACA;AACA;AACA,uBADA;AAEA,aAFA;AAGA,eAHA;AAIA,mBAJA;AAKA,oBALA;AAMA,kBANA;AAOA,eAPA;;AASA;AACA,cADA;AAEA,kBAFA;AAGA,gBAHA;AAIA,iBAJA;AAKA,uBALA,EATA;;;AAiBA,GAnBA;AAoBA;AACA;AACA,GAtBA;AAuBA,eAvBA,2BAuBA;AACA;AACA;AACA,2BADA;;AAGA;AACA,KALA,MAKA;AACA;AACA,0BADA;AAEA,oBAFA;AAGA,sBAHA;;AAKA;AACA;AACA,GArCA;AAsCA,gCAtCA;AAuCA,8BAvCA;AAwCA;AACA;AACA,GA1CA;AA2CA;AACA;AACA,GA7CA;AA8CA;AACA,oBADA,8BACA;AACA;AACA,uBADA;;AAGA;AACA;AACA,uBADA;AAEA,yBAFA;AAGA,UAHA,CAGA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,aAFA,MAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA,6BADA;AAEA,sCAFA;;AAIA;;AAEA;AACA,OA5BA;AA6BA,KAnCA;;AAqCA,cArCA,sBAqCA,KArCA,EAqCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6BAPA,CAOA;;AAEA;AACA;AACA,mBADA;AAEA,6BAFA;AAGA;AACA;AACA;AACA,iCADA;AAEA;AACA,+BADA,EAFA;;AAKA,oBALA;AAMA,kBANA,CAMA;AACA;AACA;AACA,iCADA;AAEA,mCAFA;AAGA,kCAHA;;AAKA;;AAEA;AACA;AACA;;AAEA;AACA,qDADA;;AAGA;AACA,eAvBA;AAwBA;AACA,WA9BA;;AAgCA,OAjCA,MAiCA;AACA;AACA,iDADA;;AAGA;AACA,KApFA;;AAsFA;AACA;AACA;AACA;AACA,+BADA;;AAGA;AACA,KA7FA;;AA+FA;AACA;AACA;AACA;AACA,6BADA;;AAGA;AACA,KAtGA,EA9CA,E;;;;;;;;;;;;;AC1CA;AAAA;AAAA;AAAA;AAA0hC,CAAgB,08BAAG,EAAC,C;;;;;;;;;;;ACA9iC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/footprint/footprint.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/footprint/footprint.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./footprint.vue?vue&type=template&id=66147881&\"\nvar renderjs\nimport script from \"./footprint.vue?vue&type=script&lang=js&\"\nexport * from \"./footprint.vue?vue&type=script&lang=js&\"\nimport style0 from \"./footprint.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/footprint/footprint.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./footprint.vue?vue&type=template&id=66147881&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./footprint.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./footprint.vue?vue&type=script&lang=js&\"","\n \n \n \n 没有浏览足迹 \n \n \n 0\">\n \n 0\">{{ item[0].addDate }} \n\n 0\">\n \n \n\n \n {{ iitem.name }} \n {{ iitem.brief }} \n ¥{{ iitem.retailPrice }} \n \n \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./footprint.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./footprint.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275242\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/index/index.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/index/index.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..68df136e60adc46e3512726a5650039c5214ff88
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/index/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?5d99","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?895a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?b0cb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?603d","uni-app:///pages/ucenter/index/index.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?f5e5","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?8581"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":"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","file":"pages/ucenter/index/index.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/index/index.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./index.vue?vue&type=template&id=a9934e32&\"\nvar renderjs\nimport script from \"./index.vue?vue&type=script&lang=js&\"\nexport * from \"./index.vue?vue&type=script&lang=js&\"\nimport style0 from \"./index.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/index/index.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a9934e32&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js&\"","\n \n \n \n \n {{ userInfo.nickName }} \n \n \n\n \n\n \n \n 我的订单 \n \n \n \n \n {{ order.unpaid }} \n \n 待付款 \n \n \n {{ order.unship }} \n \n 待发货 \n \n \n {{ order.unrecv }} \n \n 待收货 \n \n \n {{ order.uncomment }} \n \n 待评价 \n \n \n \n 售后 \n \n \n \n\n \n\n \n 核心服务 \n \n \n \n \n 优惠卷 \n \n \n \n 收藏夹 \n \n \n \n 浏览足迹 \n \n \n \n 我的拼团 \n \n\n \n \n 地址管理 \n \n \n \n\n \n 必备工具 \n \n \n \n \n \n 帮助中心 \n \n \n \n 意见反馈 \n \n \n \n \n 联系客服 \n \n \n \n 关于我们 \n \n \n \n\n 退出登录 \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275246\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/order/order.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/order/order.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..fb10761bde4449a24d6f62976fda1ac5aa97807d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/order/order.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?8195","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?ab86","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?fae3","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?660d","uni-app:///pages/ucenter/order/order.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?ba4e","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?d612"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,oG,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,cAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAkH;AAClH;AACyD;AACL;AACa;;;AAGjE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,2EAAM;AACR,EAAE,gFAAM;AACR,EAAE,yFAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,oFAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAAqtB,CAAgB,qrBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACsDzuB;;AAEA,gE;;AAEA;AACA,MADA,kBACA;AACA;AACA,mBADA;AAEA,iBAFA;AAGA,aAHA;AAIA,eAJA;AAKA,mBALA;;AAOA;AACA,cADA;AAEA,kBAFA;AAGA,qBAHA;AAIA,kBAJA,EAPA;;;AAcA,GAhBA;AAiBA;AACA;AACA;;AAEA;AACA;AACA;AACA,qBADA;;AAGA,KALA,CAKA;AACA,GA3BA;AA4BA,eA5BA,2BA4BA;AACA;AACA;AACA,2BADA;;AAGA;AACA,KALA,MAKA;AACA;AACA,wBADA;AAEA,oBAFA;AAGA,sBAHA;;AAKA;AACA;AACA,GA1CA;AA2CA;AACA;AACA,GA7CA;AA8CA;AACA;AACA;AACA,GAjDA;AAkDA;AACA;AACA,GApDA;AAqDA;AACA;AACA,GAvDA;AAwDA;AACA,gBADA,0BACA;AACA;AACA;AACA,+BADA;AAEA,uBAFA;AAGA,yBAHA;AAIA,UAJA,CAIA;AACA;AACA;AACA;AACA,2DADA;AAEA,sCAFA;;AAIA;AACA,OAZA;AAaA,KAhBA;;AAkBA;AACA;AACA;AACA,qBADA;AAEA,0BAFA;AAGA,eAHA;AAIA,iBAJA;AAKA,qBALA;;AAOA;AACA,KA5BA,EAxDA,E;;;;;;;;;;;;;AC1DA;AAAA;AAAA;AAAA;AAAshC,CAAgB,s8BAAG,EAAC,C;;;;;;;;;;;ACA1iC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/order/order.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/order/order.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./order.vue?vue&type=template&id=2d7ee642&\"\nvar renderjs\nimport script from \"./order.vue?vue&type=script&lang=js&\"\nexport * from \"./order.vue?vue&type=script&lang=js&\"\nimport style0 from \"./order.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/order/order.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./order.vue?vue&type=template&id=2d7ee642&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./order.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./order.vue?vue&type=script&lang=js&\"","\n \n \n \n 全部 \n \n \n 待付款 \n \n \n 待发货 \n \n \n 待收货 \n \n \n 待评价 \n \n \n \n \n 还没有任何订单呢 \n \n \n\n \n \n \n 订单编号:{{ item.orderSn }} \n {{ item.orderStatusText }} \n \n\n \n \n \n \n\n \n {{ gitem.goodsName }} \n 共{{ gitem.number }}件商品 \n \n\n \n \n\n \n 实付:¥{{ item.actualPrice }} \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./order.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./order.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275231\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/orderDetail/orderDetail.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/orderDetail/orderDetail.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..7f384a7ea5c87955552d769c3b4430d1fedf0567
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/pages/ucenter/orderDetail/orderDetail.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["uni-app:///main.js","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?1e35","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?1e22","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?71cc","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?de1e","uni-app:///pages/ucenter/orderDetail/orderDetail.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?e0b9","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?a914"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;kDAAA;AACA;AACA,uH,6FAFmBA,EAAE,CAACC,iCAAH,GAAuCC,mBAAvC;AAGnBC,UAAU,CAACC,oBAAD,CAAV,C;;;;;;;;;;;;;ACHA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAwH;AACxH;AAC+D;AACL;AACa;;;AAGvE;AAC0L;AAC1L,gBAAgB,2LAAU;AAC1B,EAAE,iFAAM;AACR,EAAE,sFAAM;AACR,EAAE,+FAAe;AACjB;AACA;AACA;AACA;AACA;AACA,EAAE,0FAAU;AACZ;AACA;;AAEA;AACe,gF;;;;;;;;;;;;ACvBf;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;;ACRA;AAAA;AAAA;AAAA;AAA2tB,CAAgB,2rBAAG,EAAC,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACkG/uB;;AAEA,gE;;AAEA;AACA,MADA,kBACA;AACA;AACA,gBADA;;AAGA;AACA,mBADA;AAEA,mBAFA;AAGA,mBAHA;AAIA,uBAJA;AAKA,2BALA;AAMA,qBANA;AAOA,kBAPA;AAQA,mBARA;AASA,sBATA;AAUA,wBAVA;AAWA,uBAXA;AAYA,iBAZA;AAaA,mBAbA,EAHA;;;AAmBA,oBAnBA;;AAqBA;AACA,kBADA,EArBA;;;AAyBA,iBAzBA;;AA2BA;AACA,kBADA;AAEA,eAFA;AAGA,mBAHA;AAIA,kBAJA;AAKA,kBALA;AAMA,qBANA;AAOA,mBAPA;AAQA,iBARA,EA3BA;;;AAsCA;AACA,yBADA;AAEA,sBAFA,EAtCA;;;AA2CA,GA7CA;AA8CA;AACA;AACA;AACA,yBADA;;AAGA;AACA,GApDA;AAqDA,mBArDA,+BAqDA;AACA,mCADA,CACA;;AAEA;AACA,mCAJA,CAIA;;AAEA,8BANA,CAMA;AACA,GA5DA;AA6DA;AACA;AACA,GA/DA;AAgEA;AACA;AACA,GAlEA;AAmEA;AACA;AACA,GArEA;AAsEA;AACA;AACA,GAxEA;AAyEA;AACA;AACA;AACA;AACA,wBADA;;AAGA,KANA;;AAQA;AACA;AACA,oBADA;;AAGA;AACA;AACA,OAFA,EAEA,IAFA;AAGA;AACA;AACA,6BADA;AAEA,UAFA,CAEA;AACA;AACA;AACA;AACA,yCADA;AAEA,2CAFA;AAGA,yDAHA;AAIA,6CAJA;;AAMA;;AAEA;AACA,OAdA;AAeA,KA/BA;;AAiCA;AACA;AACA;AACA;AACA,qBADA;AAEA;AACA,6BADA,EAFA;;AAKA,YALA;AAMA,UANA,CAMA;AACA;AACA;AACA;AACA;AACA,yCADA;AAEA,uCAFA;AAGA,0CAHA;AAIA,uCAJA;AAKA,qCALA;AAMA;AACA;AACA;AACA,aATA;AAUA;AACA;AACA;AACA,aAbA;AAcA;AACA;AACA,aAhBA;;AAkBA;AACA,OA7BA;AA8BA,KAlEA;;AAoEA;AACA;AACA;AACA;AACA;AACA,iBADA;AAEA,4BAFA;AAGA;AACA;AACA;AACA,2BADA;AAEA;AACA,mCADA,EAFA;;AAKA,kBALA;AAMA,gBANA,CAMA;AACA;AACA;AACA,iCADA;;AAGA;AACA,eALA,MAKA;AACA;AACA;AACA,aAfA;AAgBA;AACA,SAtBA;;AAwBA,KAhGA;;AAkGA;AACA;AACA;AACA;AACA;AACA,iBADA;AAEA,4BAFA;AAGA;AACA;AACA;AACA,2BADA;AAEA;AACA,mCADA,EAFA;;AAKA,kBALA;AAMA,gBANA,CAMA;AACA;AACA;AACA,iCADA;;AAGA;AACA,eALA,MAKA;AACA;AACA;AACA,aAfA;AAgBA;AACA,SAtBA;;AAwBA,KA9HA;;AAgIA;AACA;AACA;AACA;AACA;AACA,iBADA;AAEA,4BAFA;AAGA;AACA;AACA;AACA,2BADA;AAEA;AACA,mCADA,EAFA;;AAKA,kBALA;AAMA,gBANA,CAMA;AACA;AACA;AACA,iCADA;;AAGA;AACA,eALA,MAKA;AACA;AACA;AACA,aAfA;AAgBA;AACA,SAtBA;;AAwBA,KA5JA;;AA8JA;AACA;AACA;AACA;AACA;AACA,iBADA;AAEA,wBAFA;AAGA;AACA;AACA;AACA,4BADA;AAEA;AACA,mCADA,EAFA;;AAKA,kBALA;AAMA,gBANA,CAMA;AACA;AACA;AACA,kCADA;;AAGA;AACA,eALA,MAKA;AACA;AACA;AACA,aAfA;AAgBA;AACA,SAtBA;;AAwBA,KA1LA;;AA4LA;AACA;AACA;AACA;AACA,OAFA,MAEA;AACA;AACA;AACA,KAnMA,EAzEA,E;;;;;;;;;;;;;ACtGA;AAAA;AAAA;AAAA;AAA4hC,CAAgB,48BAAG,EAAC,C;;;;;;;;;;;ACAhjC;AACA,OAAO,KAAU,EAAE,kBAKd","file":"pages/ucenter/orderDetail/orderDetail.js","sourcesContent":["import 'uni-pages';wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pages/ucenter/orderDetail/orderDetail.vue'\ncreatePage(Page)","import { render, staticRenderFns, recyclableRender, components } from \"./orderDetail.vue?vue&type=template&id=063f67fe&\"\nvar renderjs\nimport script from \"./orderDetail.vue?vue&type=script&lang=js&\"\nexport * from \"./orderDetail.vue?vue&type=script&lang=js&\"\nimport style0 from \"./orderDetail.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"pages/ucenter/orderDetail/orderDetail.vue\"\nexport default component.exports","export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./orderDetail.vue?vue&type=template&id=063f67fe&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./orderDetail.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./orderDetail.vue?vue&type=script&lang=js&\"","\n \n \n 下单时间:{{ orderInfo.addTime }} \n 订单编号:{{ orderInfo.orderSn }} \n 订单留言:{{ orderInfo.message }} \n \n \n 实付:\n ¥{{ orderInfo.actualPrice }} \n \n \n 取消订单 \n 去付款 \n 确认收货 \n 删除订单 \n 申请退款 \n 申请售后 \n \n \n \n\n \n \n 商品信息 \n {{ orderInfo.orderStatusText }} \n \n \n \n \n \n \n\n \n \n {{ item.goodsName }} \n x{{ item.number }} \n \n {{ item.specifications }} \n ¥{{ item.price }} \n \n 去评价 \n \n \n 再次购买 \n \n \n \n \n\n \n \n \n {{ orderInfo.consignee }} \n {{ orderInfo.mobile }} \n \n {{ orderInfo.address }} \n \n \n \n 商品合计: \n ¥{{ orderInfo.goodsPrice }} \n \n \n 运费: \n ¥{{ orderInfo.freightPrice }} \n \n \n 优惠: \n ¥-{{ orderInfo.couponPrice }} \n \n \n \n 实付: \n ¥{{ orderInfo.actualPrice }} \n \n \n \n\n \n \n \n 快递公司:{{ orderInfo.expName }} \n 物流单号:{{ orderInfo.expNo }} \n \n \n \n \n \n {{ iitem.AcceptStation }} \n {{ iitem.AcceptTime }} \n \n \n \n \n\n\n\n\n","import mod from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./orderDetail.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./orderDetail.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275238\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..ce2e6e40e3d4e0191bd2892fdd3f0497600f0b7d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?8d33","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?6554","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?98df","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?37bd","uni-app:///uni_modules/mp-html/components/mp-html/mp-html.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?d58d","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?8ecf"],"names":[],"mappings":"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","file":"uni_modules/mp-html/components/mp-html/mp-html.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./mp-html.vue?vue&type=template&id=0cfd6ca1&\"\nvar renderjs\nimport script from \"./mp-html.vue?vue&type=script&lang=js&\"\nexport * from \"./mp-html.vue?vue&type=script&lang=js&\"\nimport style0 from \"./mp-html.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\ncomponent.options.__file = \"uni_modules/mp-html/components/mp-html/mp-html.vue\"\nexport default component.exports","export * from \"-!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./mp-html.vue?vue&type=template&id=0cfd6ca1&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./mp-html.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./mp-html.vue?vue&type=script&lang=js&\"","\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./mp-html.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./mp-html.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275250\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n "],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.js.map b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.js.map
new file mode 100644
index 0000000000000000000000000000000000000000..252e3f09362340eee4f751cfea714e0784697a93
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/.sourcemap/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?50cb","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?9079","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?a255","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?6e23","uni-app:///uni_modules/mp-html/components/mp-html/node/node.vue","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?0b10","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?d25b","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?de9a","webpack:///D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?b0c0"],"names":[],"mappings":"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","file":"uni_modules/mp-html/components/mp-html/node/node.js","sourcesContent":["import { render, staticRenderFns, recyclableRender, components } from \"./node.vue?vue&type=template&id=35a45afb&filter-modules=eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562%2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK%2FlkKbkvb%2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ%3D%3D&\"\nvar renderjs\nimport script from \"./node.vue?vue&type=script&lang=js&\"\nexport * from \"./node.vue?vue&type=script&lang=js&\"\nimport style0 from \"./node.vue?vue&type=style&index=0&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null,\n false,\n components,\n renderjs\n)\n\n/* custom blocks */\nimport block0 from \"./node.vue?vue&type=custom&index=0&blockType=script&module=handler&lang=wxs\"\nif (typeof block0 === 'function') block0(component)\n\ncomponent.options.__file = \"uni_modules/mp-html/components/mp-html/node/node.vue\"\nexport default component.exports","export * from \"-!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--16-0!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=template&id=35a45afb&filter-modules=eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562%2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK%2FlkKbkvb%2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ%3D%3D&\"","var components\nvar render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n}\nvar recyclableRender = false\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns, recyclableRender, components }","import mod from \"-!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib/index.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--12-1!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=script&lang=js&\"","\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n {{n.text}} \r\n \r\n \\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n","import mod from \"-!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=style&index=0&lang=css&\"; export default mod; export * from \"-!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader/index.js??ref--6-oneOf-1-2!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-3!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=style&index=0&lang=css&\"","// extracted by mini-css-extract-plugin\n if(module.hot) {\n // 1638933275732\n var cssReload = require(\"D:/Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js\")(module.id, {\"hmr\":true,\"publicPath\":\"../../\",\"locals\":false});\n module.hot.dispose(cssReload);\n module.hot.accept(undefined, cssReload);\n }\n ","import mod from \"-!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=custom&index=0&blockType=script&module=handler&lang=wxs\"; export default mod; export * from \"-!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader/index.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/index.js??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=custom&index=0&blockType=script&module=handler&lang=wxs\"","export default function (Component) {\n if(!Component.options.wxsCallMethods){\n Component.options.wxsCallMethods = []\n }\n \n }"],"sourceRoot":""}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/app.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/app.js
new file mode 100644
index 0000000000000000000000000000000000000000..2bb776e302cc2e8a6f864e47b8b765b39816e6d9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/app.js
@@ -0,0 +1,4 @@
+
+require('./common/runtime.js')
+require('./common/vendor.js')
+require('./common/main.js')
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/app.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/app.json
new file mode 100644
index 0000000000000000000000000000000000000000..58a87e147cae1f018ddc03c1178128ca552836d7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/app.json
@@ -0,0 +1,112 @@
+{
+ "pages": [
+ "pages/index/index",
+ "pages/catalog/catalog",
+ "pages/newGoods/newGoods",
+ "pages/hotGoods/hotGoods",
+ "pages/ucenter/index/index",
+ "pages/ucenter/address/address",
+ "pages/ucenter/addressAdd/addressAdd",
+ "pages/ucenter/feedback/feedback",
+ "pages/ucenter/footprint/footprint",
+ "pages/ucenter/order/order",
+ "pages/ucenter/orderDetail/orderDetail",
+ "pages/ucenter/couponList/couponList",
+ "pages/ucenter/couponSelect/couponSelect",
+ "pages/ucenter/collect/collect",
+ "pages/auth/login/login",
+ "pages/auth/accountLogin/accountLogin",
+ "pages/auth/register/register",
+ "pages/auth/reset/reset",
+ "pages/payResult/payResult",
+ "pages/comment/comment",
+ "pages/commentPost/commentPost",
+ "pages/topic/topic",
+ "pages/topicComment/topicComment",
+ "pages/topicDetail/topicDetail",
+ "pages/topicCommentPost/topicCommentPost",
+ "pages/brand/brand",
+ "pages/brandDetail/brandDetail",
+ "pages/search/search",
+ "pages/category/category",
+ "pages/cart/cart",
+ "pages/checkout/checkout",
+ "pages/goods/goods",
+ "pages/about/about",
+ "pages/groupon/myGroupon/myGroupon",
+ "pages/groupon/grouponDetail/grouponDetail",
+ "pages/groupon/grouponList/grouponList",
+ "pages/coupon/coupon",
+ "pages/help/help",
+ "pages/ucenter/aftersale/aftersale",
+ "pages/ucenter/aftersaleList/aftersaleList",
+ "pages/ucenter/aftersaleDetail/aftersaleDetail"
+ ],
+ "subPackages": [],
+ "window": {
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationBarTitleText": "litemall小程序商城",
+ "enablePullDownRefresh": false,
+ "navigationBarTextStyle": "black",
+ "backgroundColor": "#FFFFFF",
+ "backgroundTextStyle": "dark"
+ },
+ "tabBar": {
+ "backgroundColor": "#fafafa",
+ "borderStyle": "white",
+ "selectedColor": "#AB956D",
+ "color": "#666",
+ "list": [
+ {
+ "pagePath": "pages/index/index",
+ "iconPath": "static/images/home.png",
+ "selectedIconPath": "static/images/home@selected.png",
+ "text": "首页"
+ },
+ {
+ "pagePath": "pages/catalog/catalog",
+ "iconPath": "static/images/category.png",
+ "selectedIconPath": "static/images/category@selected.png",
+ "text": "分类"
+ },
+ {
+ "pagePath": "pages/cart/cart",
+ "iconPath": "static/images/cart.png",
+ "selectedIconPath": "static/images/cart@selected.png",
+ "text": "购物车"
+ },
+ {
+ "pagePath": "pages/ucenter/index/index",
+ "iconPath": "static/images/my.png",
+ "selectedIconPath": "static/images/my@selected.png",
+ "text": "个人"
+ }
+ ]
+ },
+ "networkTimeout": {
+ "request": 10000,
+ "connectSocket": 10000,
+ "uploadFile": 10000,
+ "downloadFile": 10000
+ },
+ "permission": {
+ "scope.userLocation": {
+ "desc": "你的位置信息将用于小程序位置接口的效果展示"
+ }
+ },
+ "plugins": {},
+ "usingComponents": {
+ "van-cell-group": "/wxcomponents/vant-weapp/cell-group/index",
+ "van-cell": "/wxcomponents/vant-weapp/cell/index",
+ "van-picker": "/wxcomponents/vant-weapp/picker/index",
+ "van-popup": "/wxcomponents/vant-weapp/popup/index",
+ "van-field": "/wxcomponents/vant-weapp/field/index",
+ "van-uploader": "/wxcomponents/vant-weapp/uploader/index",
+ "van-button": "/wxcomponents/vant-weapp/button/index",
+ "van-tag": "/wxcomponents/vant-weapp/tag/index",
+ "van-icon": "/wxcomponents/vant-weapp/icon/index",
+ "van-checkbox": "/wxcomponents/vant-weapp/checkbox/index",
+ "van-steps": "/wxcomponents/vant-weapp/steps/index"
+ },
+ "sitemapLocation": "sitemap.json"
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/app.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/app.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..705b29748c62ccf8ee238390b6ee075dfcd6fbb1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/app.wxss
@@ -0,0 +1,3 @@
+@import './common/main.wxss';
+
+[data-custom-hidden="true"],[bind-data-custom-hidden="true"]{display: none !important;}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/main.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/main.js
new file mode 100644
index 0000000000000000000000000000000000000000..089cba8fffb0d9146ce2f1133c28ed3ab8c1cb28
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/main.js
@@ -0,0 +1,184 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["common/main"],[
+/* 0 */
+/*!******************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js ***!
+ \******************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createApp) {__webpack_require__(/*! uni-pages */ 5);var _App = _interopRequireDefault(__webpack_require__(/*! ./App */ 6));
+
+
+var _polyfill = _interopRequireDefault(__webpack_require__(/*! ./polyfill/polyfill */ 15));
+
+
+
+var _mixins = _interopRequireDefault(__webpack_require__(/*! ./polyfill/mixins */ 17));
+
+
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));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 _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;}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;_polyfill.default.init(); // 全局mixins,用于实现setData等功能,请勿删除!';
+
+_vue.default.mixin(_mixins.default);
+_vue.default.config.productionTip = false;
+_App.default.mpType = 'app';
+var app = new _vue.default(_objectSpread({},
+_App.default));
+
+createApp(app).$mount();
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createApp"]))
+
+/***/ }),
+/* 1 */,
+/* 2 */,
+/* 3 */,
+/* 4 */,
+/* 5 */,
+/* 6 */
+/*!******************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/App.vue ***!
+ \******************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./App.vue?vue&type=script&lang=js& */ 7);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./App.vue?vue&type=style&index=0&lang=css& */ 12);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+var render, staticRenderFns, recyclableRender, components
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
+ _App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"],
+ render,
+ staticRenderFns,
+ false,
+ null,
+ null,
+ null,
+ false,
+ components,
+ renderjs
+)
+
+component.options.__file = "App.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+/* 7 */
+/*!*******************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/App.vue?vue&type=script&lang=js& ***!
+ \*******************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./App.vue?vue&type=script&lang=js& */ 8);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+/* 8 */
+/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/App.vue?vue&type=script&lang=js& ***!
+ \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;
+var util = __webpack_require__(/*! ./utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ./config/api.js */ 10);
+
+var user = __webpack_require__(/*! ./utils/user.js */ 11);var _default =
+
+{
+ data: function data() {
+ return {};
+ },
+ onLaunch: function onLaunch() {
+ Promise.prototype.finally = function (callback) {
+ var P = this.constructor;
+ return this.then(
+ function (value) {
+ P.resolve(callback()).then(function () {return value;});
+ },
+ function (reason) {
+ P.resolve(callback()).then(function () {
+ throw reason;
+ });
+ });
+
+ };
+
+ var updateManager = uni.getUpdateManager();
+ uni.getUpdateManager().onUpdateReady(function () {
+ uni.showModal({
+ title: '更新提示',
+ content: '新版本已经准备好,是否重启应用?',
+ success: function success(res) {
+ if (res.confirm) {
+ // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
+ updateManager.applyUpdate();
+ }
+ } });
+
+ });
+ },
+ onShow: function onShow(options) {var _this = this;
+ user.checkLogin().
+ then(function (res) {
+ _this.globalData.hasLogin = true;
+ }).
+ catch(function () {
+ _this.globalData.hasLogin = false;
+ });
+ },
+ globalData: {
+ hasLogin: false } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+/* 9 */,
+/* 10 */,
+/* 11 */,
+/* 12 */
+/*!***************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/App.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./App.vue?vue&type=style&index=0&lang=css& */ 13);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_App_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+/* 13 */
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/App.vue?vue&type=style&index=0&lang=css& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+],[[0,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../.sourcemap/mp-weixin/common/main.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/main.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/main.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..f43586982e10db1c0c447a899e0728a3906d8c1c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/main.wxss
@@ -0,0 +1,21 @@
+/**app.wxss**/
+.container {
+ box-sizing: border-box;
+ background-color: #f4f4f4;
+ font-family: PingFangSC-Light, helvetica, 'Heiti SC';
+}
+view,
+image,
+text,
+navigator {
+ box-sizing: border-box;
+ padding: 0;
+ margin: 0;
+}
+view,
+text {
+ font-family: PingFangSC-Light, helvetica, 'Heiti SC';
+ font-size: 29rpx;
+ color: #333;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/runtime.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/runtime.js
new file mode 100644
index 0000000000000000000000000000000000000000..e87711ad5a07023eefdd69ec880e079f10aa6735
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/runtime.js
@@ -0,0 +1,273 @@
+
+ !function(){try{var a=Function("return this")();a&&!a.Math&&(Object.assign(a,{isFinite:isFinite,Array:Array,Date:Date,Error:Error,Function:Function,Math:Math,Object:Object,RegExp:RegExp,String:String,TypeError:TypeError,setTimeout:setTimeout,clearTimeout:clearTimeout,setInterval:setInterval,clearInterval:clearInterval}),"undefined"!=typeof Reflect&&(a.Reflect=Reflect))}catch(a){}}();
+ /******/ (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;
+/******/ }
+/******/
+/******/ // The module cache
+/******/ var installedModules = {};
+/******/
+/******/ // object to store loaded CSS chunks
+/******/ var installedCssChunks = {
+/******/ "common/runtime": 0
+/******/ }
+/******/
+/******/ // object to store loaded and loading chunks
+/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
+/******/ // Promise = chunk loading, 0 = chunk loaded
+/******/ var installedChunks = {
+/******/ "common/runtime": 0
+/******/ };
+/******/
+/******/ var deferredModules = [];
+/******/
+/******/ // script path function
+/******/ function jsonpScriptSrc(chunkId) {
+/******/ return __webpack_require__.p + "" + chunkId + ".js"
+/******/ }
+/******/
+/******/ // 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: {}
+/******/ };
+/******/
+/******/ // Execute the module function
+/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
+/******/
+/******/ // Flag the module as loaded
+/******/ module.l = true;
+/******/
+/******/ // Return the exports of the module
+/******/ return module.exports;
+/******/ }
+/******/
+/******/ // This file contains only the entry chunk.
+/******/ // The chunk loading function for additional chunks
+/******/ __webpack_require__.e = function requireEnsure(chunkId) {
+/******/ var promises = [];
+/******/
+/******/
+/******/ // mini-css-extract-plugin CSS loading
+/******/ var cssChunks = {"uni_modules/mp-html/components/mp-html/mp-html":1,"uni_modules/mp-html/components/mp-html/node/node":1};
+/******/ if(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);
+/******/ else if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {
+/******/ promises.push(installedCssChunks[chunkId] = new Promise(function(resolve, reject) {
+/******/ var href = "" + ({"uni_modules/mp-html/components/mp-html/mp-html":"uni_modules/mp-html/components/mp-html/mp-html","uni_modules/mp-html/components/mp-html/node/node":"uni_modules/mp-html/components/mp-html/node/node"}[chunkId]||chunkId) + ".wxss";
+/******/ var fullhref = __webpack_require__.p + href;
+/******/ var existingLinkTags = document.getElementsByTagName("link");
+/******/ for(var i = 0; i < existingLinkTags.length; i++) {
+/******/ var tag = existingLinkTags[i];
+/******/ var dataHref = tag.getAttribute("data-href") || tag.getAttribute("href");
+/******/ if(tag.rel === "stylesheet" && (dataHref === href || dataHref === fullhref)) return resolve();
+/******/ }
+/******/ var existingStyleTags = document.getElementsByTagName("style");
+/******/ for(var i = 0; i < existingStyleTags.length; i++) {
+/******/ var tag = existingStyleTags[i];
+/******/ var dataHref = tag.getAttribute("data-href");
+/******/ if(dataHref === href || dataHref === fullhref) return resolve();
+/******/ }
+/******/ var linkTag = document.createElement("link");
+/******/ linkTag.rel = "stylesheet";
+/******/ linkTag.type = "text/css";
+/******/ linkTag.onload = resolve;
+/******/ linkTag.onerror = function(event) {
+/******/ var request = event && event.target && event.target.src || fullhref;
+/******/ var err = new Error("Loading CSS chunk " + chunkId + " failed.\n(" + request + ")");
+/******/ err.code = "CSS_CHUNK_LOAD_FAILED";
+/******/ err.request = request;
+/******/ delete installedCssChunks[chunkId]
+/******/ linkTag.parentNode.removeChild(linkTag)
+/******/ reject(err);
+/******/ };
+/******/ linkTag.href = fullhref;
+/******/
+/******/ var head = document.getElementsByTagName("head")[0];
+/******/ head.appendChild(linkTag);
+/******/ }).then(function() {
+/******/ installedCssChunks[chunkId] = 0;
+/******/ }));
+/******/ }
+/******/
+/******/ // JSONP chunk loading for javascript
+/******/
+/******/ var installedChunkData = installedChunks[chunkId];
+/******/ if(installedChunkData !== 0) { // 0 means "already installed".
+/******/
+/******/ // a Promise means "currently loading".
+/******/ if(installedChunkData) {
+/******/ promises.push(installedChunkData[2]);
+/******/ } else {
+/******/ // setup Promise in chunk cache
+/******/ var promise = new Promise(function(resolve, reject) {
+/******/ installedChunkData = installedChunks[chunkId] = [resolve, reject];
+/******/ });
+/******/ promises.push(installedChunkData[2] = promise);
+/******/
+/******/ // start chunk loading
+/******/ var script = document.createElement('script');
+/******/ var onScriptComplete;
+/******/
+/******/ script.charset = 'utf-8';
+/******/ script.timeout = 120;
+/******/ if (__webpack_require__.nc) {
+/******/ script.setAttribute("nonce", __webpack_require__.nc);
+/******/ }
+/******/ script.src = jsonpScriptSrc(chunkId);
+/******/
+/******/ // create error before stack unwound to get useful stacktrace later
+/******/ var error = new Error();
+/******/ onScriptComplete = function (event) {
+/******/ // avoid mem leaks in IE.
+/******/ script.onerror = script.onload = null;
+/******/ clearTimeout(timeout);
+/******/ var chunk = installedChunks[chunkId];
+/******/ if(chunk !== 0) {
+/******/ if(chunk) {
+/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
+/******/ var realSrc = event && event.target && event.target.src;
+/******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
+/******/ error.name = 'ChunkLoadError';
+/******/ error.type = errorType;
+/******/ error.request = realSrc;
+/******/ chunk[1](error);
+/******/ }
+/******/ installedChunks[chunkId] = undefined;
+/******/ }
+/******/ };
+/******/ var timeout = setTimeout(function(){
+/******/ onScriptComplete({ type: 'timeout', target: script });
+/******/ }, 120000);
+/******/ script.onerror = script.onload = onScriptComplete;
+/******/ document.head.appendChild(script);
+/******/ }
+/******/ }
+/******/ return Promise.all(promises);
+/******/ };
+/******/
+/******/ // 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 = "/";
+/******/
+/******/ // on error function for async loading
+/******/ __webpack_require__.oe = function(err) { console.error(err); throw err; };
+/******/
+/******/ var jsonpArray = global["webpackJsonp"] = global["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();
+/******/ })
+/************************************************************************/
+/******/ ([]);
+//# sourceMappingURL=../../.sourcemap/mp-weixin/common/runtime.js.map
+
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/vendor.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/vendor.js
new file mode 100644
index 0000000000000000000000000000000000000000..673f93f08fbd736d1767d5b03737d49fe1eeb0aa
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/common/vendor.js
@@ -0,0 +1,15006 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["common/vendor"],{
+
+/***/ 1:
+/*!************************************************************!*\
+ !*** ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js ***!
+ \************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* 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 _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _uniI18n = __webpack_require__(/*! @dcloudio/uni-i18n */ 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;}
+
+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() : '';});
+});
+
+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 =
+/^\$|Window$|WindowStyle$|sendNativeEvent|restoreGlobal|getCurrentSubNVue|getMenuButtonBoundingClientRect|^report|interceptors|Interceptor$|getSubNVueById|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64|getLocale|setLocale/;
+
+var CONTEXT_API_RE = /^create|Manager$/;
+
+// Context例外情况
+var CONTEXT_API_RE_EXC = ['createBLEConnection'];
+
+// 同步例外情况
+var ASYNC_API = ['createBLEConnection'];
+
+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;
+}
+
+function getLocale() {
+ // 优先使用 $locale
+ var app = getApp({
+ allowDefault: true });
+
+ if (app && app.$vm) {
+ return app.$vm.$locale;
+ }
+ return wx.getSystemInfoSync().language || 'zh-Hans';
+}
+
+function setLocale(locale) {
+ 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') {
+ global.getLocale = getLocale;
+}
+
+var interceptors = {
+ promiseInterceptor: promiseInterceptor };
+
+
+var baseApi = /*#__PURE__*/Object.freeze({
+ __proto__: null,
+ upx2px: upx2px,
+ getLocale: getLocale,
+ setLocale: setLocale,
+ 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;
+function addUuid(result) {
+ 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,
+ bottom: result.windowHeight - safeArea.bottom };
+
+ }
+}
+
+var getSystemInfo = {
+ returnValue: function returnValue(result) {
+ addUuid(result);
+ addSafeAreaInsets(result);
+ } };
+
+
+// import navigateTo from 'uni-helpers/navigate-to'
+
+var protocols = {
+ redirectTo: redirectTo,
+ // navigateTo, // 由于在微信开发者工具的页面参数,会显示__id__参数,因此暂时关闭mp-weixin对于navigateTo的AOP
+ previewImage: previewImage,
+ getSystemInfo: getSystemInfo,
+ getSystemInfoSync: getSystemInfo };
+
+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 });
+
+
+var api = /*#__PURE__*/Object.freeze({
+ __proto__: null });
+
+
+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;
+ mpInstance.triggerEvent = function (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));
+ };
+}
+
+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({"VUE_APP_NAME":"litemall-wx","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","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;
+}
+
+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 properties = {};
+ if (!isBehavior) {
+ properties.vueId = {
+ type: String,
+ value: '' };
+
+ // 用于字节跳动小程序模拟抽象节点
+ properties.generic = {
+ type: Object,
+ value: null };
+
+ // 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;
+}
+
+function handleEvent(event) {var _this = this;
+ 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) {
+ var handlerCtx = _this.$vm;
+ if (handlerCtx.$options.generic) {// mp-weixin,mp-toutiao 抽象节点模拟 scoped slots
+ handlerCtx = getContextVm(handlerCtx) || handlerCtx;
+ }
+ if (methodName === '$emit') {
+ handlerCtx.$emit.apply(handlerCtx,
+ processEventArgs(
+ _this.$vm,
+ event,
+ eventArray[1],
+ eventArray[2],
+ isCustom,
+ methodName));
+
+ return;
+ }
+ var handler = handlerCtx[methodName];
+ if (!isFn(handler)) {
+ throw new Error(" _vm.".concat(methodName, " is not a function"));
+ }
+ if (isOnce) {
+ if (handler.once) {
+ return;
+ }
+ handler.once = true;
+ }
+ var params = processEventArgs(
+ _this.$vm,
+ 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];
+ }
+}
+
+var locale;
+
+{
+ locale = wx.getSystemInfoSync().language;
+}
+
+var i18n = (0, _uniI18n.initVueI18n)(
+locale,
+{});
+
+var t = i18n.t;
+var i18nMixin = i18n.mixin = {
+ beforeCreate: function beforeCreate() {var _this2 = this;
+ var unwatch = i18n.i18n.watchLocale(function () {
+ _this2.$forceUpdate();
+ });
+ this.$once('hook:beforeDestroy', function () {
+ unwatch();
+ });
+ },
+ methods: {
+ $$t: function $$t(key, values) {
+ return t(key, values);
+ } } };
+
+
+var setLocale$1 = i18n.setLocale;
+var getLocale$1 = 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);});
+ } });
+
+}
+
+var eventChannels = {};
+
+var eventChannelStack = [];
+
+function getEventChannel(id) {
+ if (id) {
+ var eventChannel = eventChannels[id];
+ delete eventChannels[id];
+ return eventChannel;
+ }
+ return eventChannelStack.shift();
+}
+
+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];
+ });
+ }
+
+ initAppLocale(_vue.default, vm, wx.getSystemInfoSync().language || 'zh-Hans');
+
+ 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),
+ properties: initProperties(vueOptions.props, false, vueOptions.__file),
+ 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];}
+ appOptions.onShow.apply(vm, 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];}
+ appOptions.onHide.apply(vm, args);
+ });
+ }
+ if (isFn(appOptions.onLaunch)) {
+ var args = wx.getLaunchOptionsSync && wx.getLaunchOptionsSync();
+ appOptions.onLaunch.call(vm, 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)))
+
+/***/ }),
+
+/***/ 10:
+/*!************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/config/api.js ***!
+ \************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports) {
+
+// 以下是业务服务器API地址
+// 本机开发时使用
+var WxApiRoot = 'http://127.0.0.1/wx/'; // 局域网测试使用
+// var WxApiRoot = 'http://192.168.1.3:8080/wx/';
+// 云平台部署时使用
+// var WxApiRoot = 'http://122.51.199.160:8080/wx/';
+// 云平台上线时使用
+// var WxApiRoot = 'https://www.menethil.com.cn/wx/';
+
+module.exports = {
+ IndexUrl: WxApiRoot + 'home/index',
+ //首页数据接口
+ AboutUrl: WxApiRoot + 'home/about',
+ //介绍信息
+ CatalogList: WxApiRoot + 'catalog/index',
+ //分类目录全部分类数据接口
+ CatalogCurrent: WxApiRoot + 'catalog/current',
+ //分类目录当前分类数据接口
+ AuthLoginByWeixin: WxApiRoot + 'auth/login_by_weixin',
+ //微信登录
+ AuthLoginByAccount: WxApiRoot + 'auth/login',
+ //账号登录
+ AuthLogout: WxApiRoot + 'auth/logout',
+ //账号登出
+ AuthRegister: WxApiRoot + 'auth/register',
+ //账号注册
+ AuthReset: WxApiRoot + 'auth/reset',
+ //账号密码重置
+ AuthRegisterCaptcha: WxApiRoot + 'auth/regCaptcha',
+ //验证码
+ AuthBindPhone: WxApiRoot + 'auth/bindPhone',
+ //绑定微信手机号
+ GoodsCount: WxApiRoot + 'goods/count',
+ //统计商品总数
+ GoodsList: WxApiRoot + 'goods/list',
+ //获得商品列表
+ GoodsCategory: WxApiRoot + 'goods/category',
+ //获得分类数据
+ GoodsDetail: WxApiRoot + 'goods/detail',
+ //获得商品的详情
+ GoodsRelated: WxApiRoot + 'goods/related',
+ //商品详情页的关联商品(大家都在看)
+ BrandList: WxApiRoot + 'brand/list',
+ //品牌列表
+ BrandDetail: WxApiRoot + 'brand/detail',
+ //品牌详情
+ CartList: WxApiRoot + 'cart/index',
+ //获取购物车的数据
+ CartAdd: WxApiRoot + 'cart/add',
+ // 添加商品到购物车
+ CartFastAdd: WxApiRoot + 'cart/fastadd',
+ // 立即购买商品
+ CartUpdate: WxApiRoot + 'cart/update',
+ // 更新购物车的商品
+ CartDelete: WxApiRoot + 'cart/delete',
+ // 删除购物车的商品
+ CartChecked: WxApiRoot + 'cart/checked',
+ // 选择或取消选择商品
+ CartGoodsCount: WxApiRoot + 'cart/goodscount',
+ // 获取购物车商品件数
+ CartCheckout: WxApiRoot + 'cart/checkout',
+ // 下单前信息确认
+ CollectList: WxApiRoot + 'collect/list',
+ //收藏列表
+ CollectAddOrDelete: WxApiRoot + 'collect/addordelete',
+ //添加或取消收藏
+ CommentList: WxApiRoot + 'comment/list',
+ //评论列表
+ CommentCount: WxApiRoot + 'comment/count',
+ //评论总数
+ CommentPost: WxApiRoot + 'comment/post',
+ //发表评论
+ TopicList: WxApiRoot + 'topic/list',
+ //专题列表
+ TopicDetail: WxApiRoot + 'topic/detail',
+ //专题详情
+ TopicRelated: WxApiRoot + 'topic/related',
+ //相关专题
+ SearchIndex: WxApiRoot + 'search/index',
+ //搜索关键字
+ SearchResult: WxApiRoot + 'search/result',
+ //搜索结果
+ SearchHelper: WxApiRoot + 'search/helper',
+ //搜索帮助
+ SearchClearHistory: WxApiRoot + 'search/clearhistory',
+ //搜索历史清楚
+ AddressList: WxApiRoot + 'address/list',
+ //收货地址列表
+ AddressDetail: WxApiRoot + 'address/detail',
+ //收货地址详情
+ AddressSave: WxApiRoot + 'address/save',
+ //保存收货地址
+ AddressDelete: WxApiRoot + 'address/delete',
+ //保存收货地址
+ ExpressQuery: WxApiRoot + 'express/query',
+ //物流查询
+ RegionList: WxApiRoot + 'region/list',
+ //获取区域列表
+ OrderSubmit: WxApiRoot + 'order/submit',
+ // 提交订单
+ OrderPrepay: WxApiRoot + 'order/prepay',
+ // 订单的预支付会话
+ OrderList: WxApiRoot + 'order/list',
+ //订单列表
+ OrderDetail: WxApiRoot + 'order/detail',
+ //订单详情
+ OrderCancel: WxApiRoot + 'order/cancel',
+ //取消订单
+ OrderRefund: WxApiRoot + 'order/refund',
+ //退款取消订单
+ OrderDelete: WxApiRoot + 'order/delete',
+ //删除订单
+ OrderConfirm: WxApiRoot + 'order/confirm',
+ //确认收货
+ OrderGoods: WxApiRoot + 'order/goods',
+ // 代评价商品信息
+ OrderComment: WxApiRoot + 'order/comment',
+ // 评价订单商品信息
+ AftersaleSubmit: WxApiRoot + 'aftersale/submit',
+ // 提交售后申请
+ AftersaleList: WxApiRoot + 'aftersale/list',
+ // 售后列表
+ AftersaleDetail: WxApiRoot + 'aftersale/detail',
+ // 售后详情
+ FeedbackAdd: WxApiRoot + 'feedback/submit',
+ //添加反馈
+ FootprintList: WxApiRoot + 'footprint/list',
+ //足迹列表
+ FootprintDelete: WxApiRoot + 'footprint/delete',
+ //删除足迹
+ GroupOnList: WxApiRoot + 'groupon/list',
+ //团购列表
+ GroupOnMy: WxApiRoot + 'groupon/my',
+ //团购API-我的团购
+ GroupOnDetail: WxApiRoot + 'groupon/detail',
+ //团购API-详情
+ GroupOnJoin: WxApiRoot + 'groupon/join',
+ //团购API-详情
+ CouponList: WxApiRoot + 'coupon/list',
+ //优惠券列表
+ CouponMyList: WxApiRoot + 'coupon/mylist',
+ //我的优惠券列表
+ CouponSelectList: WxApiRoot + 'coupon/selectlist',
+ //当前订单可用优惠券列表
+ CouponReceive: WxApiRoot + 'coupon/receive',
+ //优惠券领取
+ CouponExchange: WxApiRoot + 'coupon/exchange',
+ //优惠券兑换
+ StorageUpload: WxApiRoot + 'storage/upload',
+ //图片上传,
+ UserIndex: WxApiRoot + 'user/index',
+ //个人页面用户相关信息
+ IssueList: WxApiRoot + 'issue/list' //帮助信息
+};
+
+/***/ }),
+
+/***/ 11:
+/*!************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/utils/user.js ***!
+ \************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+/* WEBPACK VAR INJECTION */(function(uni) {/**
+ * 用户相关服务
+ */
+var util = __webpack_require__(/*! @/utils/util.js */ 9);
+
+var api = __webpack_require__(/*! @/config/api.js */ 10);
+/**
+ * Promise封装wx.checkSession
+ */
+
+function checkSession() {
+ return new Promise(function (resolve, reject) {
+ uni.checkSession({
+ success: function success() {
+ resolve(true);
+ },
+ fail: function fail() {
+ reject(false);
+ } });
+
+ });
+}
+/**
+ * Promise封装wx.login
+ */
+
+function login() {
+ return new Promise(function (resolve, reject) {
+ uni.login({
+ success: function success(res) {
+ if (res.code) {
+ resolve(res);
+ } else {
+ reject(res);
+ }
+ },
+ fail: function fail(err) {
+ reject(err);
+ } });
+
+ });
+}
+/**
+ * 调用微信登录
+ */
+
+function loginByWeixin(userInfo) {
+ return new Promise(function (resolve, reject) {
+ return login().
+ then(function (res) {
+ //登录远程服务器
+ util.request(
+ api.AuthLoginByWeixin,
+ {
+ code: res.code,
+ userInfo: userInfo },
+
+ 'POST').
+
+ then(function (res) {
+ if (res.errno === 0) {
+ //存储用户信息
+ uni.setStorageSync('userInfo', res.data.userInfo);
+ uni.setStorageSync('token', res.data.token);
+ resolve(res);
+ } else {
+ reject(res);
+ }
+ }).
+ catch(function (err) {
+ reject(err);
+ });
+ }).
+ catch(function (err) {
+ reject(err);
+ });
+ });
+}
+/**
+ * 判断用户是否登录
+ */
+
+function checkLogin() {
+ return new Promise(function (resolve, reject) {
+ if (uni.getStorageSync('userInfo') && uni.getStorageSync('token')) {
+ checkSession().
+ then(function () {
+ resolve(true);
+ }).
+ catch(function () {
+ reject(false);
+ });
+ } else {
+ reject(false);
+ }
+ });
+}
+
+module.exports = {
+ loginByWeixin: loginByWeixin,
+ checkLogin: checkLogin };
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 14:
+/*!**********************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js ***!
+ \**********************************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return normalizeComponent; });
+/* globals __VUE_SSR_CONTEXT__ */
+
+// 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.
+
+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
+
+ // 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)
+ }
+
+ // render functions
+ if (render) {
+ options.render = render
+ options.staticRenderFns = staticRenderFns
+ options._compiled = true
+ }
+
+ // functional template
+ if (functionalTemplate) {
+ options.functional = true
+ }
+
+ // scopedId
+ if (scopeId) {
+ options._scopeId = 'data-v-' + scopeId
+ }
+
+ 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
+ }
+
+ 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]
+ }
+ }
+
+ return {
+ exports: scriptExports,
+ options: options
+ }
+}
+
+
+/***/ }),
+
+/***/ 15:
+/*!*******************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/polyfill/polyfill.js ***!
+ \*******************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+/* WEBPACK VAR INJECTION */(function(uni) {/*
+ * @Author: zhang peng
+ * @Date: 2021-08-03 10:57:51
+ * @LastEditTime: 2021-10-15 20:24:24
+ * @LastEditors: zhang peng
+ * @Description:
+ * @FilePath: \miniprogram-to-uniapp2\src\project\template\polyfill\polyfill.js
+ *
+ * Api polyfill
+ * 2021-03-06
+ * 因小程序转换到uniapp,再运行到各平台时,总有这样那样的api,没法支持,
+ * 现根据uniapp文档对各平台的支持度,或实现,或调用success来抹平各平台的差异,
+ * 让代码能正常运行,下一步再解决这些api的兼容问题。
+ *
+ * Author: 375890534@qq.com
+ */
+var base64Binary = __webpack_require__(/*! ./base64Binary */ 16);
+
+/**
+ * 获取guid
+ */
+function guid() {
+ return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
+ var r = Math.random() * 16 | 0,
+ v = c == 'x' ? r : r & 0x3 | 0x8;
+ return v.toString(16);
+ });
+}
+
+/**
+ * 检查api是否未实现,没实现返回true
+ * @param {Object} api
+ */
+function isApiNotImplemented(api) {
+ return uni[api] === undefined || true && uni[api].toString().indexOf("is not yet implemented") > -1;
+}
+
+/**
+ * 条件编译
+ */
+function platformPolyfill() {
+
+
+
+
+
+}
+
+
+/**
+ * 登录相关api polyfill
+ */
+function loginPolyfill() {
+ if (isApiNotImplemented("login")) {
+ uni.login = function (options) {
+ console.warn("api: uni.login 登录 在当前平台不支持,【关键流程函数】 回调成功");
+ options.success && options.success({
+ code: guid(),
+ errMsg: "login:ok" });
+
+ };
+ }
+
+ if (isApiNotImplemented("checkSession")) {
+ uni.checkSession = function (options) {
+ console.warn("api: uni.checkSession 检查登录状态是否过期 在当前平台不支持,【关键流程函数】 回调成功");
+ options.success && options.success();
+ };
+ }
+
+ if (isApiNotImplemented("getUserInfo")) {
+ uni.getUserInfo = function (options) {
+ console.warn("api: uni.getUserInfo 获取用户信息 在当前平台不支持,【关键流程函数】回调成功");
+ options.success && options.success({
+ userInfo: "" });
+
+ };
+ }
+ if (isApiNotImplemented("getUserProfile")) {
+ uni.getUserProfile = function (options) {
+ console.warn("api: uni.getUserProfile 获取用户授权信息 在当前平台不支持,【关键流程函数】回调成功");
+ options.success && options.success({
+ userInfo: "" });
+
+ };
+ }
+}
+
+/**
+ * 地图相关
+ */
+function mapPolyfill() {
+ if (isApiNotImplemented("chooseLocation")) {
+ uni.chooseLocation = function (options) {
+ console.warn("api: uni.chooseLocation 打开地图选择位置 在当前平台不支持,回调失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("openLocation")) {
+ uni.openLocation = function (object) {
+ console.warn("api: uni.openLocation 使用应用内置地图查看位置 在当前平台不支持,回调失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("createMapContext")) {
+ uni.createMapContext = function (mapId) {
+ console.warn("api: uni.createMapContext 创建并返回 map 上下文 mapContext 对象 在当前平台不支持,返回空");
+ return {
+ $getAppMap: null,
+ getCenterLocation: function getCenterLocation(options) {
+ options.fail && options.fail();
+ },
+ moveToLocation: function moveToLocation(options) {
+ options.fail && options.fail();
+ },
+ translateMarker: function translateMarker(options) {
+ options.fail && options.fail();
+ },
+ includePoints: function includePoints(options) {},
+ getRegion: function getRegion(options) {
+ options.fail && options.fail();
+ },
+ getScale: function getScale(options) {
+ options.fail && options.fail();
+ } };
+
+ };
+ }
+}
+
+/**
+ * 字符编码
+ */
+function base64Polyfill() {
+ //将 Base64 字符串转成 ArrayBuffer 对象
+ if (isApiNotImplemented("base64ToArrayBuffer")) {
+ uni.base64ToArrayBuffer = function (base64) {
+ return base64Binary.base64ToArrayBuffer(base64);
+ };
+ }
+
+ //将 ArrayBuffer 对象转成 Base64 字符串
+ if (isApiNotImplemented("arrayBufferToBase64")) {
+ uni.arrayBufferToBase64 = function (buffer) {
+ return base64Binary.arrayBufferToBase64(buffer);
+ };
+ }
+}
+
+
+/**
+ * 媒体相关
+ */
+function mediaPolyfill() {
+ if (isApiNotImplemented("saveImageToPhotosAlbum")) {
+ uni.saveImageToPhotosAlbum = function (options) {
+ console.warn("api: uni.saveImageToPhotosAlbum 保存图片到系统相册 在当前平台不支持,回调失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("compressImage")) {
+ uni.compressImage = function (object) {
+ console.warn("api: uni.compressImage 压缩图片接口 在当前平台不支持,回调失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("chooseMessageFile")) {
+ //从微信聊天会话中选择文件。
+ uni.chooseMessageFile = function (object) {
+ console.warn("api: uni.chooseMessageFile 从微信聊天会话中选择文件。 在当前平台不支持,回调失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("getRecorderManager")) {
+ //获取全局唯一的录音管理器 recorderManager
+ uni.getRecorderManager = function (object) {
+ console.warn("api: uni.getRecorderManager 获取全局唯一的录音管理器 在当前平台不支持");
+ };
+ }
+
+ if (isApiNotImplemented("getBackgroundAudioManager")) {
+ //获取全局唯一的背景音频管理器 backgroundAudioManager
+ uni.getBackgroundAudioManager = function (object) {
+ console.warn("api: uni.getBackgroundAudioManager 获取全局唯一的背景音频管理器 在当前平台不支持");
+ };
+ }
+
+ if (isApiNotImplemented("chooseMedia")) {
+ // 拍摄或从手机相册中选择图片或视频
+ uni.chooseMedia = function (object) {
+ console.warn("api: uni.chooseMedia 拍摄或从手机相册中选择图片或视频 在当前平台不支持,回调失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("saveVideoToPhotosAlbum")) {
+ // 保存视频到系统相册
+ uni.saveVideoToPhotosAlbum = function (object) {
+ console.warn("api: uni.saveVideoToPhotosAlbum 保存视频到系统相册 在当前平台不支持,回调失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("getVideoInfo")) {
+ // 获取视频详细信息
+ uni.getVideoInfo = function (object) {
+ console.warn("api: uni.getVideoInfo 获取视频详细信息 在当前平台不支持,回调失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("compressVideo")) {
+ // 压缩视频接口
+ uni.compressVideo = function (object) {
+ console.warn("api: uni.compressVideo 压缩视频接口 在当前平台不支持,回调失败");
+ options.fail && options.fail();
+ };
+ }
+
+
+ if (isApiNotImplemented("openVideoEditor")) {
+ // 打开视频编辑器
+ uni.openVideoEditor = function (object) {
+ console.warn("api: uni.openVideoEditor 打开视频编辑器 在当前平台不支持,回调失败");
+ options.fail && options.fail();
+ };
+ }
+}
+
+/**
+ * 设备
+ */
+function devicePolyfill() {
+ if (isApiNotImplemented("canIUse")) {
+ // 判断应用的 API,回调,参数,组件等是否在当前版本可用。
+ // h5时,恒返回true
+ uni.canIUse = function (object) {
+ console.warn("api: uni.canIUse 判断API在当前平台是否可用 返回true");
+ return true;
+ };
+ }
+
+ //微信小程序
+ if (isApiNotImplemented("startDeviceMotionListening")) {
+ // 开始监听设备方向的变化
+ uni.startDeviceMotionListening = function (options) {
+ console.warn("api: uni.startDeviceMotionListening 开始监听设备方向的变化 在当前平台不支持");
+ options.success && options.success();
+ };
+ }
+
+ if (isApiNotImplemented("onMemoryWarning")) {
+ // 监听内存不足告警事件。
+ uni.onMemoryWarning = function (callback) {
+ console.warn("监听内存不足告警事件,仅支持微信小程序、支付宝小程序、百度小程序、QQ小程序,当前平台不支持,已注释");
+ };
+ }
+
+ if (isApiNotImplemented("offNetworkStatusChange")) {
+ // 取消监听网络状态变化
+ uni.offNetworkStatusChange = function (callback) {};
+ }
+ if (isApiNotImplemented("offAccelerometerChange")) {
+ // 取消监听加速度数据。
+ uni.offAccelerometerChange = function (callback) {};
+ }
+ if (isApiNotImplemented("startAccelerometer")) {
+ // 开始监听加速度数据。
+ uni.startAccelerometer = function (callback) {
+ console.warn("api: uni.startAccelerometer 开始监听加速度数据 在当前平台不支持");
+ };
+ }
+
+ if (isApiNotImplemented("offCompassChange")) {
+ // 取消监听罗盘数据
+ uni.offCompassChange = function (callback) {
+ console.warn("api: uni.offCompassChange 取消监听罗盘数据 在当前平台不支持");
+ };
+ }
+
+ if (isApiNotImplemented("startCompass")) {
+ // 开始监听罗盘数据
+ uni.startCompass = function (callback) {
+ console.warn("api: uni.startCompass 开始监听罗盘数据 在当前平台不支持");
+ };
+ }
+
+
+ if (isApiNotImplemented("onGyroscopeChange")) {
+ // 监听陀螺仪数据变化事件
+ uni.onGyroscopeChange = function (callback) {
+ console.warn("api: uni.onGyroscopeChange 监听陀螺仪数据变化事件 在当前平台不支持");
+ };
+ }
+
+ if (isApiNotImplemented("startGyroscope")) {
+ // 开始监听陀螺仪数据
+ uni.startGyroscope = function (callback) {
+ console.warn("api: uni.startGyroscope 监听陀螺仪数据变化事件 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("stopGyroscope")) {
+ // 停止监听陀螺仪数据
+ uni.stopGyroscope = function (callback) {
+ console.warn("api: uni.stopGyroscope 停止监听陀螺仪数据 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("scanCode")) {
+ // 调起客户端扫码界面,扫码成功后返回对应的结果
+ uni.scanCode = function (callback) {
+ console.warn("api: uni.scanCode 扫描二维码 在当前平台不支持");
+ };
+ }
+
+ if (isApiNotImplemented("setClipboardData")) {
+ // 设置系统剪贴板的内容
+ uni.setClipboardData = function (callback) {
+ console.warn("api: uni.setClipboardData 设置系统剪贴板的内容 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("getClipboardData")) {
+ // 获取系统剪贴板内容
+ uni.getClipboardData = function (callback) {
+ console.warn("api: uni.getClipboardData 获取系统剪贴板内容 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("setScreenBrightness")) {
+ // 设置屏幕亮度
+ uni.setScreenBrightness = function (callback) {
+ console.warn("api: uni.setScreenBrightness 设置屏幕亮度 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("getScreenBrightness")) {
+ // 获取屏幕亮度
+ uni.getScreenBrightness = function (callback) {
+ console.warn("api: uni.getScreenBrightness 获取屏幕亮度 在当前平台不支持");
+ };
+ }
+
+ if (isApiNotImplemented("setKeepScreenOn")) {
+ // 设置是否保持常亮状态
+ uni.setKeepScreenOn = function (callback) {
+ console.warn("api: uni.setKeepScreenOn 设置是否保持常亮状态 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("onUserCaptureScreen")) {
+ // 监听用户主动截屏事件
+ uni.onUserCaptureScreen = function (callback) {
+ console.warn("api: uni.onUserCaptureScreen 监听用户主动截屏事件 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("addPhoneContact")) {
+ // 添加联系人
+ uni.addPhoneContact = function (callback) {
+ console.warn("api: uni.addPhoneContact 添加联系人 在当前平台不支持");
+ };
+ }
+}
+
+/**
+ * 界面相关
+ */
+function uiPolyfill() {
+ if (isApiNotImplemented("hideNavigationBarLoading")) {
+ // 在当前页面隐藏导航条加载动画
+ uni.hideNavigationBarLoading = function (options) {
+ console.warn("api: uni.hideNavigationBarLoading 在当前页面隐藏导航条加载动画 在当前平台不支持,回调成功");
+ options.success && options.success();
+ };
+ }
+ if (isApiNotImplemented("hideHomeButton")) {
+ // 隐藏返回首页按钮
+ uni.hideHomeButton = function (options) {
+ console.warn("api: uni.hideHomeButton 隐藏返回首页按钮 在当前平台不支持,回调成功");
+ options.success && options.success();
+ };
+ }
+
+ if (isApiNotImplemented("setTabBarItem")) {
+ // 动态设置 tabBar 某一项的内容
+ uni.setTabBarItem = function (options) {
+ console.warn("api: uni.setTabBarItem 动态设置 tabBar 某一项的内容 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("setTabBarStyle")) {
+ // 动态设置 tabBar 的整体样式
+ uni.setTabBarStyle = function (options) {
+ console.warn("api: uni.setTabBarStyle 动态设置 tabBar 的整体样式 在当前平台不支持,回调成功");
+ options.success && options.success();
+ };
+ }
+
+ if (isApiNotImplemented("hideTabBar")) {
+ // 隐藏 tabBar
+ uni.hideTabBar = function (options) {
+ console.warn("api: uni.hideTabBar 隐藏 tabBar 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+
+
+ if (isApiNotImplemented("showTabBar")) {
+ // 显示 tabBar
+ uni.showTabBar = function (options) {
+ console.warn("api: uni.showTabBar 显示 tabBar 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("setTabBarBadge")) {
+ // 为 tabBar 某一项的右上角添加文本
+ uni.setTabBarBadge = function (options) {
+ console.warn("api: uni.setTabBarBadge 为 tabBar 某一项的右上角添加文本 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("removeTabBarBadge")) {
+ // 移除 tabBar 某一项右上角的文本
+ uni.removeTabBarBadge = function (options) {
+ console.warn("api: uni.removeTabBarBadge 移除 tabBar 某一项右上角的文本 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("showTabBarRedDot")) {
+ // 显示 tabBar 某一项的右上角的红点
+ uni.showTabBarRedDot = function (options) {
+ console.warn("api: uni.showTabBarRedDot 显示 tabBar 某一项的右上角的红点 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("hideTabBarRedDot")) {
+ // 隐藏 tabBar 某一项的右上角的红点
+ uni.hideTabBarRedDot = function (options) {
+ console.warn("api: uni.hideTabBarRedDot 隐藏 tabBar 某一项的右上角的红点 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ ///////////////////////////////
+ if (isApiNotImplemented("setBackgroundColor")) {
+ // 动态设置窗口的背景色
+ uni.setBackgroundColor = function (options) {
+ console.warn("api: uni.setBackgroundColor 动态设置窗口的背景色 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("setBackgroundTextStyle")) {
+ // 动态设置下拉背景字体、loading 图的样式
+ uni.setBackgroundTextStyle = function (options) {
+ console.warn("api: uni.setBackgroundTextStyle 动态设置下拉背景字体、loading 图的样式 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("onWindowResize")) {
+ // 监听窗口尺寸变化事件
+ uni.onWindowResize = function (callback) {
+ console.warn("api: uni.onWindowResize 监听窗口尺寸变化事件 在当前平台不支持,执行失败");
+ callback && callback();
+ };
+ }
+ if (isApiNotImplemented("offWindowResize")) {
+ // 取消监听窗口尺寸变化事件
+ uni.offWindowResize = function (callback) {
+ console.warn("api: uni.offWindowResize 取消监听窗口尺寸变化事件 在当前平台不支持,执行失败");
+ callback && callback();
+ };
+ }
+ if (isApiNotImplemented("loadFontFace")) {
+ // 动态加载网络字体
+ uni.loadFontFace = function (options) {
+ console.warn("api: uni.loadFontFace 动态加载网络字体 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("getMenuButtonBoundingClientRect")) {
+ // 微信胶囊按钮布局信息
+ uni.getMenuButtonBoundingClientRect = function () {
+ console.warn("api: uni.getMenuButtonBoundingClientRect 微信胶囊按钮布局信息 在当前平台不支持,执行失败");
+ };
+ }
+}
+/**
+ * file
+ */
+function filePolyfill() {
+ if (isApiNotImplemented("saveFile")) {
+ // 保存文件到本地
+ uni.saveFile = function (options) {
+ console.warn("api: uni.saveFile 保存文件到本地 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("getSavedFileList")) {
+ // 获取本地已保存的文件列表
+ uni.getSavedFileList = function (options) {
+ console.warn("api: uni.getSavedFileList 获取本地已保存的文件列表 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("getSavedFileInfo")) {
+ // 获取本地文件的文件信息
+ uni.getSavedFileInfo = function (options) {
+ console.warn("api: uni.getSavedFileInfo 获取本地文件的文件信息 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("removeSavedFile")) {
+ // 删除本地存储的文件
+ uni.removeSavedFile = function (options) {
+ console.warn("api: uni.removeSavedFile 删除本地存储的文件 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("getFileInfo")) {
+ // 获取文件信息
+ uni.getFileInfo = function (options) {
+ console.warn("api: uni.getFileInfo 获取文件信息 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("openDocument")) {
+ // 新开页面打开文档
+ uni.openDocument = function (options) {
+ console.warn("api: uni.openDocument 新开页面打开文档 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("getFileSystemManager")) {
+ // 获取全局唯一的文件管理器
+ uni.getFileSystemManager = function () {
+ console.warn("api: uni.getFileSystemManager 获取全局唯一的文件管理器 在当前平台不支持,执行失败");
+ };
+ }
+}
+
+/**
+ * canvas
+ */
+function canvasPolyfill() {
+ if (isApiNotImplemented("createOffscreenCanvas")) {
+ // 创建离屏 canvas 实例
+ uni.createOffscreenCanvas = function () {
+ console.warn("api: uni.createOffscreenCanvas 创建离屏 canvas 实例 在当前平台不支持,执行失败");
+ };
+ }
+
+ if (isApiNotImplemented("canvasToTempFilePath")) {
+ // 把当前画布指定区域的内容导出生成指定大小的图片
+ uni.canvasToTempFilePath = function () {
+ console.warn("api: uni.canvasToTempFilePath 把当前画布指定区域的内容导出生成指定大小的图片 在当前平台不支持,执行失败");
+ };
+ }
+}
+
+/**
+ * Ad广告
+ */
+function adPolyfill() {
+ if (isApiNotImplemented("createRewardedVideoAd")) {
+ // 激励视频广告
+ uni.createRewardedVideoAd = function () {
+ console.warn("api: uni.createRewardedVideoAd 激励视频广告 在当前平台不支持,执行失败");
+ return {
+ show: function show() {},
+ onLoad: function onLoad() {},
+ offLoad: function offLoad() {},
+ load: function load() {},
+ onError: function onError() {},
+ offError: function offError() {},
+ onClose: function onClose() {},
+ offClose: function offClose() {} };
+
+ };
+ }
+ if (isApiNotImplemented("createInterstitialAd")) {
+ // 插屏广告组件
+ uni.createInterstitialAd = function () {
+ console.warn("api: uni.createInterstitialAd 插屏广告组件 在当前平台不支持,执行失败");
+ };
+ }
+}
+
+/**
+ * 第三方
+ */
+function pluginsPolyfill() {
+ if (isApiNotImplemented("getProvider")) {
+ // 获取服务供应商
+ uni.getProvider = function (options) {
+ console.warn("api: uni.getProvider 获取服务供应商 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("showShareMenu")) {
+ // 小程序的原生菜单中显示分享按钮
+ uni.showShareMenu = function (options) {
+ console.warn("api: uni.showShareMenu 小程序的原生菜单中显示分享按钮 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("hideShareMenu")) {
+ // 小程序的原生菜单中显示分享按钮
+ uni.hideShareMenu = function (options) {
+ console.warn("api: uni.hideShareMenu 小程序的原生菜单中隐藏分享按钮 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("requestPayment")) {
+ // 支付
+ uni.requestPayment = function (options) {
+ console.error("api: uni.requestPayment 支付 在当前平台不支持(需自行参考文档封装),执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("createWorker")) {
+ // 创建一个 Worker 线程
+ uni.createWorker = function () {
+ console.error("api: uni.createWorker 创建一个 Worker 线程 在当前平台不支持,执行失败");
+ };
+ }
+}
+
+/**
+ * 其他
+ */
+function otherPolyfill() {
+ if (isApiNotImplemented("authorize")) {
+ // 提前向用户发起授权请求
+ uni.authorize = function (options) {
+ console.warn("api: uni.authorize 提前向用户发起授权请求 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("openSetting")) {
+ // 调起客户端小程序设置界面
+ uni.openSetting = function (options) {
+ console.warn("api: uni.openSetting 调起客户端小程序设置界面 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("getSetting")) {
+ // 获取用户的当前设置
+ uni.getSetting = function (options) {
+ console.warn("api: uni.getSetting 获取用户的当前设置 在当前平台不支持,【关键流程函数】回调成功");
+ options.success && options.success({
+ authSetting: {
+ scope: {
+ userInfo: false } } });
+
+
+
+ };
+ }
+
+ if (isApiNotImplemented("chooseAddress")) {
+ // 获取用户收货地址
+ uni.chooseAddress = function (options) {
+ console.warn("api: uni.chooseAddress 获取用户收货地址 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("chooseInvoiceTitle")) {
+ // 选择用户的发票抬头
+ uni.chooseInvoiceTitle = function (options) {
+ console.warn("api: uni.chooseInvoiceTitle 选择用户的发票抬头 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("navigateToMiniProgram")) {
+ // 打开另一个小程序
+ uni.navigateToMiniProgram = function (options) {
+ console.warn("api: uni.navigateToMiniProgram 打开另一个小程序 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("navigateBackMiniProgram")) {
+ // 跳转回上一个小程序
+ uni.navigateBackMiniProgram = function (options) {
+ console.warn("api: uni.navigateBackMiniProgram 跳转回上一个小程序 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("getAccountInfoSync")) {
+ // 获取当前帐号信息
+ uni.getAccountInfoSync = function (options) {
+ console.warn("api: uni.getAccountInfoSync 获取当前帐号信息 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+
+ if (isApiNotImplemented("requestSubscribeMessage")) {
+ // 订阅消息
+ uni.requestSubscribeMessage = function (options) {
+ console.warn("api: uni.requestSubscribeMessage 订阅消息 在当前平台不支持,执行失败");
+ options.fail && options.fail();
+ };
+ }
+ if (isApiNotImplemented("getUpdateManager")) {
+ // 管理小程序更新
+ uni.getUpdateManager = function (options) {
+ console.error("api: uni.getUpdateManager 管理小程序更新 在当前平台不支持,执行失败");
+ };
+ }
+ if (isApiNotImplemented("setEnableDebug")) {
+ // 设置是否打开调试开关
+ uni.setEnableDebug = function (options) {
+ console.error("api: uni.setEnableDebug 设置是否打开调试开关 在当前平台不支持,执行失败");
+ };
+ }
+ if (isApiNotImplemented("getExtConfig")) {
+ // 获取第三方平台自定义的数据字段
+ uni.getExtConfig = function (options) {
+ console.error("api: uni.getExtConfig 获取第三方平台自定义的数据字段 在当前平台不支持,执行失败");
+ };
+ }
+ if (isApiNotImplemented("getExtConfigSync")) {
+ // uni.getExtConfig 的同步版本
+ uni.getExtConfigSync = function (options) {
+ console.error("api: uni.getExtConfigSync uni.getExtConfig 的同步版本 在当前平台不支持,执行失败");
+ };
+ }
+}
+
+/**
+ * 认证
+ */
+function soterAuthPolyfill() {
+ if (isApiNotImplemented("startSoterAuthentication")) {
+ // 开始 SOTER 生物认证
+ uni.startSoterAuthentication = function (options) {
+ console.warn("api: uni.startSoterAuthentication 开始 SOTER 生物认证 在当前平台不支持");
+ options.success && options.success();
+ };
+ }
+ if (isApiNotImplemented("checkIsSupportSoterAuthentication")) {
+ // 获取本机支持的 SOTER 生物认证方式
+ uni.checkIsSupportSoterAuthentication = function (options) {
+ console.warn("api: uni.checkIsSupportSoterAuthentication 开获取本机支持的 SOTER 生物认证方式 在当前平台不支持");
+ options.success && options.success();
+ };
+ }
+ if (isApiNotImplemented("checkIsSoterEnrolledInDevice")) {
+ // 获取设备内是否录入如指纹等生物信息的接口
+ uni.checkIsSoterEnrolledInDevice = function (options) {
+ console.warn("api: uni.checkIsSoterEnrolledInDevice 获取设备内是否录入如指纹等生物信息的接口 在当前平台不支持");
+ options.success && options.success();
+ };
+ }
+}
+
+/**
+ * nfc
+ */
+function nfcPolyfill() {
+ //微信小程序
+ if (isApiNotImplemented("startHCE")) {
+ // 初始化 NFC 模块
+ uni.startHCE = function (options) {
+ console.warn("api: uni.startHCE 初始化 NFC 模块 在当前平台不支持");
+ options.success && options.success();
+ };
+ }
+}
+
+/**
+ * 电量
+ */
+function batteryPolyfill() {
+ //微信小程序
+ if (isApiNotImplemented("getBatteryInfo")) {
+ // 获取设备电量
+ uni.getBatteryInfo = function (options) {
+ console.warn("api: uni.getBatteryInfo 获取设备电量 在当前平台不支持");
+ options.success && options.success();
+ };
+ }
+ //微信小程序
+ if (isApiNotImplemented("getBatteryInfoSync")) {
+ // 同步获取设备电量
+ uni.getBatteryInfoSync = function (options) {
+ console.warn("api: uni.getBatteryInfoSync 同步获取设备电量 在当前平台不支持");
+ };
+ }
+}
+
+/**
+ * wifi
+ */
+function wifiPolyfill() {
+ //微信小程序
+ if (isApiNotImplemented("startWifi")) {
+ // 初始化 Wi-Fi 模块
+ uni.startWifi = function (options) {
+ console.warn("api: uni.startWifi 初始化 Wi-Fi 模块 在当前平台不支持");
+ options.success && options.success();
+ };
+ }
+ //字节跳动
+ if (isApiNotImplemented("getConnectedWifi")) {
+ // 获取设备当前所连的 WiFi 信息
+ uni.getConnectedWifi = function (options) {
+ console.warn("api: uni.getConnectedWifi 初获取设备当前所连的 WiFi 信息 在当前平台不支持");
+ options.success && options.success();
+ };
+ }
+}
+
+/**
+ * 蓝牙
+ */
+function bluetoothPolyfill() {
+ //蓝牙
+ if (isApiNotImplemented("openBluetoothAdapter")) {
+ // 初始化蓝牙模块
+ uni.openBluetoothAdapter = function (object) {
+ console.warn("api: uni.openBluetoothAdapter 初始化蓝牙模块 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("startBluetoothDevicesDiscovery")) {
+ // 开始搜寻附近的蓝牙外围设备
+ uni.startBluetoothDevicesDiscovery = function (callback) {
+ console.warn("api: uni.startBluetoothDevicesDiscovery 开始搜寻附近的蓝牙外围设备 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("onBluetoothDeviceFound")) {
+ // 监听寻找到新设备的事件
+ uni.onBluetoothDeviceFound = function (callback) {
+ console.warn("api: uni.onBluetoothDeviceFound 监听寻找到新设备的事件 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("stopBluetoothDevicesDiscovery")) {
+ // 停止搜寻附近的蓝牙外围设备
+ uni.stopBluetoothDevicesDiscovery = function (callback) {
+ console.warn("api: uni.stopBluetoothDevicesDiscovery 停止搜寻附近的蓝牙外围设备 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("onBluetoothAdapterStateChange")) {
+ // 监听蓝牙适配器状态变化事件
+ uni.onBluetoothAdapterStateChange = function (callback) {
+ console.warn("api: uni.onBluetoothAdapterStateChange 监听蓝牙适配器状态变化事件 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("getConnectedBluetoothDevices")) {
+ // 根据 uuid 获取处于已连接状态的设备
+ uni.getConnectedBluetoothDevices = function (callback) {
+ console.warn("api: uni.getConnectedBluetoothDevices 根据 uuid 获取处于已连接状态的设备 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("getBluetoothDevices")) {
+ // 获取在蓝牙模块生效期间所有已发现的蓝牙设备
+ uni.getBluetoothDevices = function (callback) {
+ console.warn("api: uni.getBluetoothDevices 获取在蓝牙模块生效期间所有已发现的蓝牙设备 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("getBluetoothAdapterState")) {
+ // 获取本机蓝牙适配器状态
+ uni.getBluetoothAdapterState = function (callback) {
+ console.warn("api: uni.getBluetoothAdapterState 获取本机蓝牙适配器状态 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("closeBluetoothAdapter")) {
+ // 关闭蓝牙模块
+ uni.closeBluetoothAdapter = function (callback) {
+ console.warn("api: uni.closeBluetoothAdapter 关闭蓝牙模块 在当前平台不支持");
+ };
+ }
+}
+
+/**
+ * 低功耗蓝牙
+ */
+function blePolyfill() {
+ if (isApiNotImplemented("setBLEMTU")) {
+ // 设置蓝牙最大传输单元
+ uni.setBLEMTU = function (callback) {
+ console.warn("api: uni.setBLEMTU 设置蓝牙最大传输单元 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("readBLECharacteristicValue")) {
+ // 读取低功耗蓝牙设备的特征值的二进制数据值
+ uni.readBLECharacteristicValue = function (callback) {
+ console.warn("api: uni.readBLECharacteristicValue 读取低功耗蓝牙设备的特征值的二进制数据值 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("onBLEConnectionStateChange")) {
+ // 关闭蓝牙模块
+ uni.onBLEConnectionStateChange = function (callback) {
+ console.warn("api: uni.onBLEConnectionStateChange 监听低功耗蓝牙连接状态的改变事件 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("notifyBLECharacteristicValueChange")) {
+ // 启用低功耗蓝牙设备特征值变化时的 notify 功能
+ uni.notifyBLECharacteristicValueChange = function (callback) {
+ console.warn("api: uni.notifyBLECharacteristicValueChange 启用低功耗蓝牙设备特征值变化时的 notify 功能 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("getBLEDeviceServices")) {
+ // 获取蓝牙设备所有服务
+ uni.getBLEDeviceServices = function (callback) {
+ console.warn("api: uni.getBLEDeviceServices 获取蓝牙设备所有服务 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("getBLEDeviceRSSI")) {
+ // 获取蓝牙设备的信号强度
+ uni.getBLEDeviceRSSI = function (callback) {
+ console.warn("api: uni.getBLEDeviceRSSI 获取蓝牙设备的信号强度 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("createBLEConnection")) {
+ // 连接低功耗蓝牙设备
+ uni.createBLEConnection = function (callback) {
+ console.warn("api: uni.createBLEConnection 连接低功耗蓝牙设备 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("closeBLEConnection")) {
+ // 断开与低功耗蓝牙设备的连接
+ uni.closeBLEConnection = function (callback) {
+ console.warn("api: uni.closeBLEConnection 断开与低功耗蓝牙设备的连接 在当前平台不支持");
+ };
+ }
+}
+
+/**
+ * iBeacon
+ */
+function iBeaconPolyfill() {
+ if (isApiNotImplemented("onBeaconServiceChange")) {
+ // 监听 iBeacon 服务状态变化事件
+ uni.onBeaconServiceChange = function (callback) {
+ console.warn("api: uni.onBeaconServiceChange 监听 iBeacon 服务状态变化事件 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("onBeaconUpdate")) {
+ // 监听 iBeacon 设备更新事件
+ uni.onBeaconUpdate = function (callback) {
+ console.warn("api: uni.onBeaconUpdate 监听 iBeacon 设备更新事件 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("getBeacons")) {
+ // 获取所有已搜索到的 iBeacon 设备
+ uni.getBeacons = function (callback) {
+ console.warn("api: uni.getBeacons 获取所有已搜索到的 iBeacon 设备 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("startBeaconDiscovery")) {
+ // 开始搜索附近的 iBeacon 设备
+ uni.startBeaconDiscovery = function (callback) {
+ console.warn("api: uni.startBeaconDiscovery 开始搜索附近的 iBeacon 设备 在当前平台不支持");
+ };
+ }
+ if (isApiNotImplemented("stopBeaconDiscovery")) {
+ // 停止搜索附近的 iBeacon 设备
+ uni.stopBeaconDiscovery = function (callback) {
+ console.warn("api: uni.stopBeaconDiscovery 停止搜索附近的 iBeacon 设备 在当前平台不支持");
+ };
+ }
+}
+
+/**
+ * uni.navigateTo 和 uni.redirectTo 不能直接跳转tabbar里面的页面,拦截fail,并当它为tabbar页面时,直接调用uni.switchTab()
+ */
+function routerPolyfill() {
+ var routerApiFailEventHandle = function routerApiFailEventHandle(res, options) {
+ if (res.errMsg.indexOf('tabbar page') > -1) {
+ console.error('res.errMsg: ' + res.errMsg);
+ var apiName = res.errMsg.match(/not\s(\w+)\sa/)[1];
+ console.log(apiName);
+ var url = options.url;
+ if (url) {
+ var queryString = url.split('?')[1];
+ if (queryString) {
+ console.error(apiName + " 的参数将被忽略:" + queryString);
+ }
+ uni.switchTab({
+ url: url });
+
+ }
+ }
+ };
+
+ var routerApiHandle = function routerApiHandle(oriLogFunc) {
+ return function (options) {
+ try {
+ if (options.fail) {
+ options.fail = function fail(failFun) {
+ return function (res) {
+ routerApiFailEventHandle(res, options);
+ failFun(res);
+ };
+ }(options.fail);
+ } else {
+ options.fail = function (res) {
+ routerApiFailEventHandle(res, options);
+ };
+ }
+ oriLogFunc.call(oriLogFunc, options);
+ } catch (e) {
+ console.error('uni.navigateTo or uni.redirectTo error', e);
+ }
+ };
+ };
+
+ uni.navigateTo = routerApiHandle(uni.navigateTo);
+ uni.redirectTo = routerApiHandle(uni.redirectTo);
+}
+
+var isInit = false;
+/**
+ * polyfill 入口
+ */
+function init() {
+ if (isInit) return;
+ isInit = true;
+
+ console.log("Api polyfill start");
+ //条件编译
+ platformPolyfill();
+ //登录
+ loginPolyfill();
+ //base64
+ base64Polyfill();
+ //地图
+ mapPolyfill();
+ //设备
+ devicePolyfill();
+
+ //媒体相关
+ mediaPolyfill();
+
+ //蓝牙
+ bluetoothPolyfill();
+ //低功耗蓝牙
+ blePolyfill();
+ //iBeacon
+ iBeaconPolyfill();
+ //wifi
+ wifiPolyfill();
+ //电量信息
+ batteryPolyfill();
+ //nfc
+ nfcPolyfill();
+ //auth
+ soterAuthPolyfill();
+
+ //ui
+ uiPolyfill();
+ //file
+ filePolyfill();
+ //canvas
+ canvasPolyfill();
+ //ad
+ adPolyfill();
+ //plugins
+ pluginsPolyfill();
+ //other
+ otherPolyfill();
+
+ //router
+ routerPolyfill();
+}
+
+
+module.exports = {
+ init: init,
+ guid: guid };
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 16:
+/*!***********************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/polyfill/base64Binary.js ***!
+ \***********************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports) {
+
+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;} /*
+ * @Author: zhang peng
+ * @Date: 2021-08-03 10:57:51
+ * @LastEditTime: 2021-08-16 17:25:43
+ * @LastEditors: zhang peng
+ * @Description:
+ * @FilePath: \miniprogram-to-uniapp2\src\project\template\polyfill\base64Binary.js
+ *
+ * 借鉴自:https://github.com/dankogai/js-base64/blob/main/base64.js
+ * 因uniapp没有window,也无法使用Buffer,因此直接使用polyfill
+ *
+ */
+var b64ch = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
+var b64chs = _toConsumableArray(b64ch);
+var b64re = /^(?:[A-Za-z\d+\/]{4})*?(?:[A-Za-z\d+\/]{2}(?:==)?|[A-Za-z\d+\/]{3}=?)?$/;
+var b64tab = function (a) {
+ var tab = {};
+ a.forEach(function (c, i) {return tab[c] = i;});
+ return tab;
+}(b64chs);
+var _fromCC = String.fromCharCode.bind(String);
+
+/**
+ * polyfill version of `btoa`
+ */
+var btoaPolyfill = function btoaPolyfill(bin) {
+ // console.log('polyfilled');
+ var u32,c0,c1,c2,asc = '';
+ var pad = bin.length % 3;
+ for (var i = 0; i < bin.length;) {
+ if ((c0 = bin.charCodeAt(i++)) > 255 ||
+ (c1 = bin.charCodeAt(i++)) > 255 ||
+ (c2 = bin.charCodeAt(i++)) > 255)
+ throw new TypeError('invalid character found');
+ u32 = c0 << 16 | c1 << 8 | c2;
+ asc += b64chs[u32 >> 18 & 63] +
+ b64chs[u32 >> 12 & 63] +
+ b64chs[u32 >> 6 & 63] +
+ b64chs[u32 & 63];
+ }
+ return pad ? asc.slice(0, pad - 3) + "===".substring(pad) : asc;
+};
+
+/**
+ * polyfill version of `atob`
+ */
+var atobPolyfill = function atobPolyfill(asc) {
+ // console.log('polyfilled');
+ asc = asc.replace(/\s+/g, '');
+ if (!b64re.test(asc))
+ throw new TypeError('malformed base64.');
+ asc += '=='.slice(2 - (asc.length & 3));
+ var u24,bin = '',r1,r2;
+ for (var i = 0; i < asc.length;) {
+ u24 = b64tab[asc.charAt(i++)] << 18 |
+ b64tab[asc.charAt(i++)] << 12 |
+ (r1 = b64tab[asc.charAt(i++)]) << 6 | (
+ r2 = b64tab[asc.charAt(i++)]);
+ bin += r1 === 64 ? _fromCC(u24 >> 16 & 255) :
+ r2 === 64 ? _fromCC(u24 >> 16 & 255, u24 >> 8 & 255) :
+ _fromCC(u24 >> 16 & 255, u24 >> 8 & 255, u24 & 255);
+ }
+ return bin;
+};
+
+/**
+ * base64转ArrayBuffer
+ */
+function base64ToArrayBuffer(base64) {
+ var binaryStr = atobPolyfill(base64);
+ var byteLength = binaryStr.length;
+ var bytes = new Uint8Array(byteLength);
+ for (var i = 0; i < byteLength; i++) {
+ bytes[i] = binary.charCodeAt(i);
+ }
+ return bytes.buffer;
+}
+
+/**
+ * ArrayBuffer转base64
+ */
+function arrayBufferToBase64(buffer) {
+ var binaryStr = "";
+ var bytes = new Uint8Array(buffer);
+ var len = bytes.byteLength;
+ for (var i = 0; i < len; i++) {
+ binaryStr += String.fromCharCode(bytes[i]);
+ }
+ return btoaPolyfill(binaryStr);
+}
+
+module.exports = {
+ base64ToArrayBuffer: base64ToArrayBuffer,
+ arrayBufferToBase64: arrayBufferToBase64 };
+
+/***/ }),
+
+/***/ 17:
+/*!*****************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/polyfill/mixins.js ***!
+ \*****************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; /*
+ * @Author: zhang peng
+ * @Date: 2021-08-03 10:57:51
+ * @LastEditTime: 2021-10-15 20:27:53
+ * @LastEditors: zhang peng
+ * @Description:
+ * @FilePath: \miniprogram-to-uniapp2\src\project\template\polyfill\mixins.js
+ *
+ * 如果你想删除本文件,请先确认它使用的范围,感谢合作~
+ * 如有疑问,请直接联系: 375890534@qq.com
+ */var _default =
+{
+ methods: {
+ /**
+ * 转义符换成普通字符
+ * @param {*} str
+ * @returns
+ */
+ escape2Html: function escape2Html(str) {
+ if (!str) return str;
+ var arrEntities = {
+ 'lt': '<',
+ 'gt': '>',
+ 'nbsp': ' ',
+ 'amp': '&',
+ 'quot': '"' };
+
+ return str.replace(/&(lt|gt|nbsp|amp|quot);/ig, function (all, t) {
+ return arrEntities[t];
+ });
+ },
+ /**
+ * 普通字符转换成转义符
+ * @param {*} sHtml
+ * @returns
+ */
+ html2Escape: function html2Escape(sHtml) {
+ if (!sHtml) return sHtml;
+ return sHtml.replace(/[<>&"]/g, function (c) {
+ return {
+ '<': '<',
+ '>': '>',
+ '&': '&',
+ '"': '"' }[
+ c];
+ });
+ },
+ /**
+ * setData polyfill 勿删!!!
+ * 用于转换后的uniapp的项目能直接使用this.setData()函数
+ * @param {*} obj
+ * @param {*} callback
+ */
+ setData: function setData(obj, callback) {
+ var that = this;
+ var handleData = function handleData(tepData, tepKey, afterKey) {
+ var tepData2 = tepData;
+ tepKey = tepKey.split('.');
+ tepKey.forEach(function (item) {
+ if (tepData[item] === null || tepData[item] === undefined) {
+ var reg = /^[0-9]+$/;
+ tepData[item] = reg.test(afterKey) ? [] : {};
+ tepData2 = tepData[item];
+ } else {
+ tepData2 = tepData[item];
+ }
+ });
+ return tepData2;
+ };
+ var isFn = function isFn(value) {
+ return typeof value == 'function' || false;
+ };
+ Object.keys(obj).forEach(function (key) {
+ var val = obj[key];
+ key = key.replace(/\]/g, '').replace(/\[/g, '.');
+ var front, after;
+ var index_after = key.lastIndexOf('.');
+ if (index_after != -1) {
+ after = key.slice(index_after + 1);
+ front = handleData(that, key.slice(0, index_after), after);
+ } else {
+ after = key;
+ front = that;
+ }
+ if (front.$data && front.$data[after] === undefined) {
+ Object.defineProperty(front, after, {
+ get: function get() {
+ return front.$data[after];
+ },
+ set: function set(newValue) {
+ front.$data[after] = newValue;
+ that.hasOwnProperty("$forceUpdate") && that.$forceUpdate();
+ },
+ enumerable: true,
+ configurable: true });
+
+ front[after] = val;
+ } else {
+ that.$set(front, after, val);
+ }
+ });
+ // this.$forceUpdate();
+ isFn(callback) && this.$nextTick(callback);
+ },
+ /**
+ * 解析事件里的动态函数名,这种没有()的函数名,在uniapp不被执行
+ * 比如:立即
+ * @param {*} exp
+ */
+ parseEventDynamicCode: function parseEventDynamicCode(exp) {
+ if (typeof eval("this." + exp) === 'function') {
+ eval("this." + exp + '()');
+ }
+ },
+ /**
+ * 用于处理对props进行赋值的情况
+ * //简单处理一下就行了
+ *
+ * @param {*} target
+ * @returns
+ */
+ deepClone: function deepClone(target) {
+ //判断拷贝的要进行深拷贝的是数组还是对象,是数组的话进行数组拷贝,对象的话进行对象拷贝
+ // const toString = Object.prototype.toString
+ // toString.call(obj) === '[object Array]' ? clone = clone || [] : clone = clone || {}
+ // for (const i in obj) {
+ // if (typeof obj[i] === 'object' && obj[i]!==null) {
+ // // 要考虑深复制问题了
+ // if (Array.isArray(obj[i])) {
+ // // 这是数组
+ // clone[i] = []
+ // } else {
+ // // 这是对象
+ // clone[i] = {}
+ // }
+ // deepClone(obj[i], clone[i])
+ // } else {
+ // clone[i] = obj[i]
+ // }
+ // }
+ // return clone
+ return JSON.parse(JSON.stringify(obj));
+ } } };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;
+}
+
+// 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;
+
+
+/***/ }),
+
+/***/ 3:
+/*!******************************************************************************************!*\
+ !*** ./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-2021 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
+}
+
+function isFalse (v) {
+ return v === false
+}
+
+/**
+ * Check if value is primitive.
+ */
+function isPrimitive (value) {
+ return (
+ typeof value === 'string' ||
+ typeof value === 'number' ||
+ // $flow-disable-line
+ typeof value === 'symbol' ||
+ typeof value === 'boolean'
+ )
+}
+
+/**
+ * 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'
+}
+
+/**
+ * Get the raw type string of a value, e.g., [object Object].
+ */
+var _toString = Object.prototype.toString;
+
+function toRawType (value) {
+ return _toString.call(value).slice(8, -1)
+}
+
+/**
+ * Strict object type check. Only returns true
+ * for plain JavaScript objects.
+ */
+function isPlainObject (obj) {
+ return _toString.call(obj) === '[object Object]'
+}
+
+function isRegExp (v) {
+ return _toString.call(v) === '[object RegExp]'
+}
+
+/**
+ * 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)
+}
+
+function isPromise (val) {
+ return (
+ isDef(val) &&
+ typeof val.then === 'function' &&
+ typeof val.catch === 'function'
+ )
+}
+
+/**
+ * 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)
+}
+
+/**
+ * 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
+}
+
+/**
+ * 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]; }
+}
+
+/**
+ * Check if a tag is a built-in tag.
+ */
+var isBuiltInTag = makeMap('slot,component', true);
+
+/**
+ * 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)
+ }
+ }
+}
+
+/**
+ * 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)
+ }
+
+ 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];
+ }
+ return ret
+}
+
+/**
+ * Mix properties into target object.
+ */
+function extend (to, _from) {
+ for (var key in _from) {
+ to[key] = _from[key];
+ }
+ return to
+}
+
+/**
+ * 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]);
+ }
+ }
+ 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])
+ })
+ } else {
+ /* istanbul ignore next */
+ return false
+ }
+ } 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);
+ }
+ }
+}
+
+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
+});
+
+/* */
+
+/**
+ * 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
+}
+
+/**
+ * Define a property.
+ */
+function def (obj, key, val, enumerable) {
+ Object.defineProperty(obj, key, {
+ value: val,
+ enumerable: !!enumerable,
+ writable: true,
+ configurable: true
+ });
+}
+
+/**
+ * Parse simple path.
+ */
+var bailRE = new RegExp(("[^" + (unicodeRegExp.source) + ".$_\\d]"));
+function parsePath (path) {
+ if (bailRE.test(path)) {
+ return
+ }
+ var segments = path.split('.');
+ return function (obj) {
+ for (var i = 0; i < segments.length; i++) {
+ if (!obj) { return }
+ obj = obj[segments[i]];
+ }
+ return obj
+ }
+}
+
+/* */
+
+// 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;
+ }
+ }
+ 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);
+ }
+ 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));
+ }
+ };
+
+ 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
+ }
+ return ''
+ }
+ 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];
+ }
+
+ return (
+ (name ? ("<" + (classify(name)) + ">") : "") +
+ (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;
+ }
+ }
+ !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)) + ")")
+ }
+ };
+}
+
+/* */
+
+var uid = 0;
+
+/**
+ * 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);
+ }
+};
+
+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
+ });
+});
+
+/* */
+
+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;
+}
+
+/**
+ * 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);
+ }
+ }
+ } 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]);
+ }
+};
+
+// helpers
+
+/**
+ * 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 */
+}
+
+/**
+ * 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]);
+ }
+}
+
+/**
+ * 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
+ }
+ 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);
+ }
+ if (asRootData && ob) {
+ ob.vmCount++;
+ }
+ return ob
+}
+
+/**
+ * Define a reactive property on an Object.
+ */
+function defineReactive$$1 (
+ obj,
+ key,
+ val,
+ customSetter,
+ shallow
+) {
+ var dep = new Dep();
+
+ var property = Object.getOwnPropertyDescriptor(obj, key);
+ if (property && property.configurable === false) {
+ return
+ }
+
+ // 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();
+ }
+ });
+}
+
+/**
+ * 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))));
+ }
+ 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
+}
+
+/**
+ * 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))));
+ }
+ if (Array.isArray(target) && isValidArrayIndex(key)) {
+ target.splice(key, 1);
+ return
+ }
+ 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);
+ }
+ }
+ return to
+}
+
+/**
+ * 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)
+ } else {
+ return defaultData
+ }
+ }
+ }
+}
+
+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];
+ }
+ ret[key$1] = parent
+ ? parent.concat(child)
+ : Array.isArray(child) ? child : [child];
+ }
+ return ret
+};
+
+/**
+ * Other object hashes.
+ */
+strats.props =
+strats.methods =
+strats.inject =
+strats.computed = function (
+ parentVal,
+ childVal,
+ vm,
+ key
+) {
+ if (childVal && "development" !== 'production') {
+ assertObjectType(key, childVal, vm);
+ }
+ 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
+};
+
+/**
+ * Validate component names
+ */
+function checkComponents (options) {
+ for (var key in options.components) {
+ validateComponentName(key);
+ }
+}
+
+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.'
+ );
+ }
+ 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 };
+ }
+ } else if (true) {
+ warn(
+ "Invalid value for option \"inject\": expected an Array or an Object, " +
+ "but got " + (toRawType(inject)) + ".",
+ vm
+ );
+ }
+}
+
+/**
+ * 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 };
+ }
+ }
+ }
+}
+
+function assertObjectType (name, value, vm) {
+ if (!isPlainObject(value)) {
+ warn(
+ "Invalid value for option \"" + name + "\": expected an Object, " +
+ "but got " + (toRawType(value)) + ".",
+ vm
+ );
+ }
+}
+
+/**
+ * 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);
+ }
+ if (child.mixins) {
+ for (var i = 0, l = child.mixins.length; i < l; i++) {
+ parent = mergeOptions(parent, child.mixins[i], vm);
+ }
+ }
+ }
+
+ 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
+}
+
+/**
+ * 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
+ }
+ 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;
+ }
+ }
+ }
+ // 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
+}
+
+/**
+ * Get the default value of a prop.
+ */
+function getPropDefaultValue (vm, prop, key) {
+ // no default, return undefined
+ if (!hasOwn(prop, 'default')) {
+ return undefined
+ }
+ 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];
+ }
+ for (var i = 0; i < type.length && !valid; i++) {
+ var assertedType = assertType(value, type[i]);
+ expectedTypes.push(assertedType.expectedType || '');
+ valid = assertedType.valid;
+ }
+ }
+
+ 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
+ );
+ }
+ }
+}
+
+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;
+ }
+ } else if (expectedType === 'Object') {
+ valid = isPlainObject(value);
+ } else if (expectedType === 'Array') {
+ valid = Array.isArray(value);
+ } else {
+ valid = value instanceof type;
+ }
+ return {
+ 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'; })
+}
+
+/* */
+
+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();
+ }
+}
+
+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
+}
+
+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');
+ }
+ }
+ }
+ logError(err, vm, info);
+}
+
+function logError (err, vm, info) {
+ if (true) {
+ warn(("Error in " + info + ": \"" + (err.toString()) + "\""), vm);
+ }
+ /* istanbul ignore else */
+ if ((inBrowser || inWeex) && typeof console !== 'undefined') {
+ console.error(err);
+ } else {
+ throw err
+ }
+}
+
+/* */
+
+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]();
+ }
+}
+
+// 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);
+ }
+ });
+ if (!pending) {
+ pending = true;
+ timerFunc();
+ }
+ // $flow-disable-line
+ if (!cb && typeof Promise !== 'undefined') {
+ return new Promise(function (resolve) {
+ _resolve = resolve;
+ })
+ }
+}
+
+/* */
+
+/* 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
+ }
+ }
+ });
+ }
+
+ 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); }
+ }
+ return has || !isAllowed
+ }
+ };
+
+ 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); }
+ }
+ return target[key]
+ }
+ };
+
+ 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);
+ } else {
+ vm._renderProxy = vm;
+ }
+ };
+}
+
+/* */
+
+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
+ }
+ if (val.__ob__) {
+ var depId = val.__ob__.dep.id;
+ if (seen.has(depId)) {
+ return
+ }
+ seen.add(depId);
+ }
+ 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); }
+ }
+}
+
+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)
+ };
+ }
+}
+
+/* */
+
+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
+ }
+});
+
+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")
+ }
+ }
+ invoker.fns = fns;
+ return invoker
+}
+
+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);
+ }
+ 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);
+ }
+ }
+}
+
+/* */
+
+/* */
+
+// 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
+}
+
+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 + "\"."
+ );
+ }
+ }
+ checkProp(res, props, key, altKey, true) ||
+ checkProp(res, attrs, key, altKey, false);
+ }
+ }
+ // fixed by xxxxxx
+ return extractPropertiesFromVNodeData(data, Ctor, res, context)
+}
+
+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
+}
+
+/* */
+
+// 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. 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)
+ }
+ }
+ return children
+}
+
+// 2. When the children contains constructs that always generated nested Arrays,
+// e.g. , , 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));
+ }
+ } else {
+ if (isTextNode(c) && isTextNode(last)) {
+ // merge adjacent text nodes
+ res[lastIndex] = createTextVNode(last.text + c.text);
+ } else {
+ // 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);
+ }
+ }
+ }
+ return res
+}
+
+/* */
+
+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);
+ }
+ }
+ }
+ return result
+ }
+}
+
+/* */
+
+
+
+/**
+ * Runtime helper for resolving raw children VNodes into a slot object.
+ */
+function resolveSlots (
+ children,
+ context
+) {
+ if (!children || !children.length) {
+ return {}
+ }
+ 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;
+ }
+ // 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 || []);
+ } else {
+ 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);
+ }
+ }
+ }
+ // ignore slots that contains only whitespace
+ for (var name$1 in slots) {
+ if (slots[name$1].every(isWhitespace)) {
+ delete slots[name$1];
+ }
+ }
+ 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
+ }
+ }
+ }
+ if (!isDef(ret)) {
+ ret = [];
+ }
+ (ret)._isVList = true;
+ return ret
+}
+
+/* */
+
+/**
+ * Runtime helper for rendering
+ */
+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
+ );
+ }
+ props = extend(extend({}, bindObject), props);
+ }
+ // fixed by xxxxxx app-plus scopedSlot
+ nodes = scopedSlotFn(props, this, props._i) || fallback;
+ } else {
+ nodes = this.$slots[name] || fallback;
+ }
+
+ var target = props && props.slot;
+ if (target) {
+ return this.$createElement('template', { slot: target }, nodes)
+ } else {
+ return nodes
+ }
+}
+
+/* */
+
+/**
+ * Runtime helper for resolving filters
+ */
+function resolveFilter (id) {
+ return resolveAsset(this.$options, 'filters', id, true) || identity
+}
+
+/* */
+
+function isKeyNotMatch (expect, actual) {
+ if (Array.isArray(expect)) {
+ return expect.indexOf(actual) === -1
+ } else {
+ return expect !== actual
+ }
+}
+
+/**
+ * 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
+ }
+}
+
+/* */
+
+/**
+ * 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
+ );
+ } else {
+ 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 );
+ }
+ }
+ return data
+}
+
+/* */
+
+/**
+ * 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
+ }
+ // 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
+}
+
+/**
+ * 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);
+ }
+ }
+ } else {
+ 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;
+ }
+ }
+ }
+ 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;
+ }
+ }
+ 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
+ );
+ }
+ }
+ 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)
+ );
+ }
+ return this$1.$slots
+ };
+
+ Object.defineProperty(this, 'scopedSlots', ({
+ enumerable: true,
+ get: function get () {
+ return normalizeScopedSlots(data.scopedSlots, this.slots())
+ }
+ }));
+
+ // 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);
+ }
+
+ 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); };
+ }
+}
+
+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);
+
+ 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
+ }
+}
+
+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];
+ }
+}
+
+/* */
+
+/* */
+
+/* */
+
+/* */
+
+// 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);
+ } else {
+ var child = vnode.componentInstance = createComponentInstanceForVnode(
+ vnode,
+ activeInstance
+ );
+ child.$mount(hydrating ? vnode.elm : undefined, hydrating);
+ }
+ },
+
+ 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);
+ } else {
+ activateChildComponent(componentInstance, true /* direct */);
+ }
+ }
+ },
+
+ destroy: function destroy (vnode) {
+ var componentInstance = vnode.componentInstance;
+ if (!componentInstance._isDestroyed) {
+ if (!vnode.data.keepAlive) {
+ componentInstance.$destroy();
+ } else {
+ deactivateChildComponent(componentInstance, true /* direct */);
+ }
+ }
+ }
+};
+
+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);
+ }
+ 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
+ )
+ }
+ }
+
+ data = data || {};
+
+ // 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;
+ }
+ }
+
+ // install component management hooks onto the placeholder node
+ installComponentHooks(data);
+
+ // 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
+ );
+
+ return vnode
+}
+
+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)
+}
+
+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;
+ }
+ }
+}
+
+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
+}
+
+// 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;
+ }
+}
+
+/* */
+
+var SIMPLE_NORMALIZE = 1;
+var ALWAYS_NORMALIZE = 2;
+
+// 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;
+ }
+ if (isTrue(alwaysNormalize)) {
+ normalizationType = ALWAYS_NORMALIZE;
+ }
+ 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()
+ }
+ // object syntax in v-bind
+ if (isDef(data) && isDef(data.is)) {
+ tag = data.is;
+ }
+ if (!tag) {
+ // in case of component :is set to falsy value
+ return createEmptyVNode()
+ }
+ // 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
+ );
+ }
+ }
+ // 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;
+ }
+ 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
+ );
+ }
+ 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
+ );
+ }
+ } else {
+ // direct component options / constructor
+ vnode = createComponent(tag, data, context, children);
+ }
+ if (Array.isArray(vnode)) {
+ return vnode
+ } else if (isDef(vnode)) {
+ if (isDef(ns)) { applyNS(vnode, ns); }
+ if (isDef(data)) { registerDeepBindings(data); }
+ return vnode
+ } else {
+ return createEmptyVNode()
+ }
+}
+
+function applyNS (vnode, ns, force) {
+ vnode.ns = ns;
+ if (vnode.tag === 'foreignObject') {
+ // use default namespace inside foreignObject
+ ns = undefined;
+ force = true;
+ }
+ 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);
+ }
+ }
+ }
+}
+
+// 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);
+ }
+ if (isObject(data.class)) {
+ traverse(data.class);
+ }
+}
+
+/* */
+
+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); };
+
+ // $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 {}
+}
+
+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
+ );
+ }
+
+ // 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;
+ }
+ } else {
+ vnode = vm._vnode;
+ }
+ } 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
+ );
+ }
+ vnode = createEmptyVNode();
+ }
+ // set parent
+ vnode.parent = _parentVnode;
+ return vnode
+ };
+}
+
+/* */
+
+function ensureCtor (comp, base) {
+ if (
+ comp.__esModule ||
+ (hasSymbol && comp[Symbol.toStringTag] === 'Module')
+ ) {
+ comp = comp.default;
+ }
+ return isObject(comp)
+ ? base.extend(comp)
+ : comp
+}
+
+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
+}
+
+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;
+ }
+ if (timerTimeout !== null) {
+ clearTimeout(timerTimeout);
+ timerTimeout = null;
+ }
+ }
+ };
+
+ 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);
+ }
+ } else if (isPromise(res.component)) {
+ res.component.then(resolve, reject);
+
+ if (isDef(res.error)) {
+ factory.errorComp = ensureCtor(res.error, baseCtor);
+ }
+
+ 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);
+ }
+ }
+
+ if (isDef(res.timeout)) {
+ timerTimeout = setTimeout(function () {
+ timerTimeout = null;
+ if (isUndef(factory.resolved)) {
+ reject(
+ true
+ ? ("timeout (" + (res.timeout) + "ms)")
+ : undefined
+ );
+ }
+ }, res.timeout);
+ }
+ }
+ }
+
+ 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
+ };
+
+ Vue.prototype.$off = function (event, fn) {
+ var vm = this;
+ // all
+ if (!arguments.length) {
+ vm._events = Object.create(null);
+ return vm
+ }
+ // 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);
+ }
+ 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
+ }
+ }
+ return vm
+ };
+
+ 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
+ };
+}
+
+/* */
+
+var activeInstance = null;
+var isUpdatingChildComponent = false;
+
+function setActiveInstance(vm) {
+ var prevActiveInstance = activeInstance;
+ activeInstance = vm;
+ return function () {
+ activeInstance = prevActiveInstance;
+ }
+}
+
+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;
+ }
+ parent.$children.push(vm);
+ }
+
+ vm.$parent = parent;
+ vm.$root = parent ? parent.$root : vm;
+
+ 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 */);
+ } else {
+ // updates
+ vm.$el = vm.__patch__(prevVnode, vnode);
+ }
+ restoreActiveInstance();
+ // update __vue__ reference
+ if (prevEl) {
+ prevEl.__vue__ = null;
+ }
+ 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;
+ }
+ // updated hook is called by the scheduler to ensure that children are
+ // updated in a parent's updated hook.
+ };
+
+ Vue.prototype.$forceUpdate = function () {
+ var vm = this;
+ if (vm._watcher) {
+ vm._watcher.update();
+ }
+ };
+
+ Vue.prototype.$destroy = function () {
+ var vm = this;
+ if (vm._isBeingDestroyed) {
+ return
+ }
+ 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);
+ }
+ // 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;
+ }
+
+ // determine whether component has slot children
+ // we need to do this before overwriting $options._renderChildren.
+
+ // 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)
+ );
+
+ // 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;
+ }
+ vm.$options._renderChildren = renderChildren;
+
+ // 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);
+
+ // resolve slots + force update if has children
+ if (needsForceUpdate) {
+ vm.$slots = resolveSlots(renderChildren, parentVnode.context);
+ vm.$forceUpdate();
+ }
+
+ if (true) {
+ isUpdatingChildComponent = false;
+ }
+}
+
+function isInInactiveTree (vm) {
+ while (vm && (vm = vm.$parent)) {
+ if (vm._inactive) { return true }
+ }
+ return false
+}
+
+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');
+ }
+}
+
+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');
+ }
+}
+
+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();
+}
+
+/* */
+
+var MAX_UPDATE_COUNT = 100;
+
+var queue = [];
+var activatedChildren = [];
+var has = {};
+var circular = {};
+var waiting = false;
+var flushing = false;
+var index = 0;
+
+/**
+ * Reset the scheduler's state.
+ */
+function resetSchedulerState () {
+ index = queue.length = activatedChildren.length = 0;
+ has = {};
+ if (true) {
+ circular = {};
+ }
+ waiting = flushing = false;
+}
+
+// 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;
+
+// Async edge case fix requires storing an event listener's attach timestamp.
+var getNow = Date.now;
+
+// 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
+ }
+ }
+ }
+
+ // keep copies of post queues before resetting state
+ var activatedQueue = activatedChildren.slice();
+ var updatedQueue = queue.slice();
+
+ resetSchedulerState();
+
+ // call component updated and activated hooks
+ callActivatedHooks(activatedQueue);
+ callUpdatedHooks(updatedQueue);
+
+ // devtool hook
+ /* istanbul ignore if */
+ if (devtools && config.devtools) {
+ devtools.emit('flush');
+ }
+}
+
+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');
+ }
+ }
+}
+
+/**
+ * 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);
+}
+
+function callActivatedHooks (queue) {
+ for (var i = 0; i < queue.length; i++) {
+ queue[i]._inactive = true;
+ activateChildComponent(queue[i], true /* true */);
+ }
+}
+
+/**
+ * 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;
+
+ if ( true && !config.async) {
+ flushSchedulerQueue();
+ return
+ }
+ nextTick(flushSchedulerQueue);
+ }
+ }
+}
+
+/* */
+
+
+
+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;
+ }
+ 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;
+ }
+ 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
+ );
+ }
+ }
+ this.value = this.lazy
+ ? undefined
+ : this.get();
+};
+
+/**
+ * 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();
+ }
+ return value
+};
+
+/**
+ * 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);
+ }
+ }
+};
+
+/**
+ * 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);
+ }
+ }
+ 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);
+ }
+};
+
+/**
+ * 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);
+ }
+ }
+ }
+};
+
+/**
+ * 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;
+};
+
+/**
+ * Depend on all deps collected by this watcher.
+ */
+Watcher.prototype.depend = function depend () {
+ var i = this.deps.length;
+ while (i--) {
+ this.deps[i].depend();
+ }
+};
+
+/**
+ * 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;
+ }
+};
+
+/* */
+
+var sharedPropertyDefinition = {
+ enumerable: true,
+ configurable: true,
+ get: noop,
+ set: noop
+};
+
+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 */);
+ }
+ if (opts.computed) { initComputed(vm, opts.computed); }
+ if (opts.watch && opts.watch !== nativeWatch) {
+ initWatch(vm, opts.watch);
+ }
+}
+
+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);
+ }
+ 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'){//百度、快手 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);
+ }
+ };
+
+ for (var key in propsOptions) loop( key );
+ toggleObserving(true);
+}
+
+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
+ );
+ }
+ // 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);
+ }
+ }
+ // observe data
+ observe(data, true /* asRootData */);
+}
+
+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();
+ }
+}
+
+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();
+
+ 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
+ );
+ }
+
+ if (!isSSR) {
+ // create internal watcher for the computed property.
+ watchers[key] = new Watcher(
+ vm,
+ getter || noop,
+ noop,
+ computedWatcherOptions
+ );
+ }
+
+ // 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);
+ }
+ }
+ }
+}
+
+function defineComputed (
+ target,
+ key,
+ userDef
+) {
+ var shouldCache = !isServerRendering();
+ if (typeof userDef === 'function') {
+ sharedPropertyDefinition.get = shouldCache
+ ? createComputedGetter(key)
+ : createGetterInvoker(userDef);
+ sharedPropertyDefinition.set = noop;
+ } else {
+ sharedPropertyDefinition.get = userDef.get
+ ? shouldCache && userDef.cache !== false
+ ? createComputedGetter(key)
+ : createGetterInvoker(userDef.get)
+ : noop;
+ sharedPropertyDefinition.set = userDef.set || noop;
+ }
+ if ( true &&
+ sharedPropertyDefinition.set === noop) {
+ sharedPropertyDefinition.set = function () {
+ warn(
+ ("Computed property \"" + key + "\" was assigned to but it has no setter."),
+ this
+ );
+ };
+ }
+ Object.defineProperty(target, key, sharedPropertyDefinition);
+}
+
+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
+ }
+ }
+}
+
+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 $."
+ );
+ }
+ }
+ vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm);
+ }
+}
+
+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);
+ }
+ }
+}
+
+function createWatcher (
+ vm,
+ expOrFn,
+ handler,
+ options
+) {
+ if (isPlainObject(handler)) {
+ options = handler;
+ handler = handler.handler;
+ }
+ if (typeof handler === 'string') {
+ handler = vm[handler];
+ }
+ return vm.$watch(expOrFn, handler, options)
+}
+
+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;
+
+ 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) + "\""));
+ }
+ }
+ return function unwatchFn () {
+ watcher.teardown();
+ }
+ };
+}
+
+/* */
+
+var uid$3 = 0;
+
+function initMixin (Vue) {
+ Vue.prototype._init = function (options) {
+ var vm = this;
+ // a uid
+ vm._uid = uid$3++;
+
+ 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);
+ }
+
+ // 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
+ );
+ }
+ /* 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');
+
+ /* istanbul ignore if */
+ if ( true && config.performance && mark) {
+ vm._name = formatComponentName(vm, false);
+ mark(endTag);
+ measure(("vue " + (vm._name) + " init"), startTag, endTag);
+ }
+
+ if (vm.$options.el) {
+ vm.$mount(vm.$options.el);
+ }
+ };
+}
+
+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;
+
+ var vnodeComponentOptions = parentVnode.componentOptions;
+ opts.propsData = vnodeComponentOptions.propsData;
+ opts._parentListeners = vnodeComponentOptions.listeners;
+ opts._renderChildren = vnodeComponentOptions.children;
+ opts._componentTag = vnodeComponentOptions.tag;
+
+ if (options.render) {
+ opts.render = options.render;
+ opts.staticRenderFns = options.staticRenderFns;
+ }
+}
+
+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
+}
+
+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];
+ }
+ }
+ return modified
+}
+
+function Vue (options) {
+ if ( true &&
+ !(this instanceof Vue)
+ ) {
+ warn('Vue is a constructor and should be called with the `new` keyword');
+ }
+ this._init(options);
+}
+
+initMixin(Vue);
+stateMixin(Vue);
+eventsMixin(Vue);
+lifecycleMixin(Vue);
+renderMixin(Vue);
+
+/* */
+
+function initUse (Vue) {
+ Vue.use = function (plugin) {
+ var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));
+ if (installedPlugins.indexOf(plugin) > -1) {
+ return this
+ }
+
+ // 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
+ };
+}
+
+/* */
+
+function initMixin$1 (Vue) {
+ Vue.mixin = function (mixin) {
+ this.options = mergeOptions(this.options, mixin);
+ return this
+ };
+}
+
+/* */
+
+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;
+
+ /**
+ * 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]
+ }
+
+ var name = extendOptions.name || Super.options.name;
+ if ( true && name) {
+ validateComponentName(name);
+ }
+
+ 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;
+
+ // 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);
+ }
+
+ // allow further extension/mixin/plugin usage
+ Sub.extend = Super.extend;
+ Sub.mixin = Super.mixin;
+ Sub.use = Super.use;
+
+ // 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;
+ }
+
+ // 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);
+
+ // cache constructor
+ cachedCtors[SuperId] = Sub;
+ return Sub
+ };
+}
+
+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]);
+ }
+}
+
+/* */
+
+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]
+ } else {
+ /* 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
+ }
+ };
+ });
+}
+
+/* */
+
+
+
+function getComponentName (opts) {
+ return opts && (opts.Ctor.options.name || opts.tag)
+}
+
+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
+}
+
+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);
+ }
+ }
+ }
+}
+
+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);
+}
+
+var patternTypes = [String, RegExp, Array];
+
+var KeepAlive = {
+ name: 'keep-alive',
+ abstract: true,
+
+ props: {
+ include: patternTypes,
+ exclude: patternTypes,
+ max: [String, Number]
+ },
+
+ created: function created () {
+ this.cache = Object.create(null);
+ this.keys = [];
+ },
+
+ destroyed: function destroyed () {
+ for (var key in this.cache) {
+ pruneCacheEntry(this.cache, key, this.keys);
+ }
+ },
+
+ 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);
+ }
+ }
+
+ vnode.data.keepAlive = true;
+ }
+ return vnode || (slot && slot[0])
+ }
+};
+
+var builtInComponents = {
+ KeepAlive: KeepAlive
+};
+
+/* */
+
+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);
+
+ // 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
+ };
+
+ Vue.set = set;
+ Vue.delete = del;
+ Vue.nextTick = nextTick;
+
+ // 2.6 explicit observable API
+ Vue.observable = function (obj) {
+ observe(obj);
+ return obj
+ };
+
+ Vue.options = Object.create(null);
+ ASSET_TYPES.forEach(function (type) {
+ Vue.options[type + 's'] = Object.create(null);
+ });
+
+ // 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;
+
+ extend(Vue.options.components, builtInComponents);
+
+ initUse(Vue);
+ initMixin$1(Vue);
+ initExtend(Vue);
+ initAssetRegisters(Vue);
+}
+
+initGlobalAPI(Vue);
+
+Object.defineProperty(Vue.prototype, '$isServer', {
+ get: isServerRendering
+});
+
+Object.defineProperty(Vue.prototype, '$ssrContext', {
+ get: function get () {
+ /* istanbul ignore next */
+ return this.$vnode && this.$vnode.ssrContext
+ }
+});
+
+// expose FunctionalRenderContext for ssr runtime helper installation
+Object.defineProperty(Vue, 'FunctionalRenderContext', {
+ value: FunctionalRenderContext
+});
+
+Vue.version = '2.6.11';
+
+/**
+ * https://raw.githubusercontent.com/Tencent/westore/master/packages/westore/utils/diff.js
+ */
+var ARRAYTYPE = '[object Array]';
+var OBJECTTYPE = '[object Object]';
+// const FUNCTIONTYPE = '[object Function]'
+
+function diff(current, pre) {
+ var result = {};
+ syncKeys(current, pre);
+ _diff(current, pre, '', result);
+ return result
+}
+
+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);
+ });
+ }
+ }
+}
+
+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) {
+ // NOTE 此处将 != 修改为 !==。涉及地方太多恐怕测试不到,如果出现数据对比问题,将其修改回来。
+ 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);
+ }
+ }
+ }
+ };
+
+ 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);
+ }
+}
+
+function setResult(result, k, v) {
+ // if (type(v) != FUNCTIONTYPE) {
+ result[k] = v;
+ // }
+}
+
+function type(obj) {
+ return Object.prototype.toString.call(obj)
+}
+
+/* */
+
+function flushCallbacks$1(vm) {
+ if (vm.__next_tick_callbacks && vm.__next_tick_callbacks.length) {
+ if (Object({"VUE_APP_NAME":"litemall-wx","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
+ var mpInstance = vm.$scope;
+ console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + vm._uid +
+ ']:flushCallbacks[' + vm.__next_tick_callbacks.length + ']');
+ }
+ var copies = vm.__next_tick_callbacks.slice(0);
+ vm.__next_tick_callbacks.length = 0;
+ for (var i = 0; i < copies.length; i++) {
+ copies[i]();
+ }
+ }
+}
+
+function hasRenderWatcher(vm) {
+ return queue.find(function (watcher) { return vm._watcher === watcher; })
+}
+
+function nextTick$1(vm, cb) {
+ //1.nextTick 之前 已 setData 且 setData 还未回调完成
+ //2.nextTick 之前存在 render watcher
+ if (!vm.__next_tick_pending && !hasRenderWatcher(vm)) {
+ if(Object({"VUE_APP_NAME":"litemall-wx","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG){
+ var mpInstance = vm.$scope;
+ console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + vm._uid +
+ ']:nextVueTick');
+ }
+ return nextTick(cb, vm)
+ }else{
+ if(Object({"VUE_APP_NAME":"litemall-wx","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG){
+ var mpInstance$1 = vm.$scope;
+ console.log('[' + (+new Date) + '][' + (mpInstance$1.is || mpInstance$1.route) + '][' + vm._uid +
+ ']:nextMPTick');
+ }
+ }
+ 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;
+ })
+ }
+}
+
+/* */
+
+function cloneWithData(vm) {
+ // 确保当前 vm 所有数据被同步
+ var ret = Object.create(null);
+ var dataKeys = [].concat(
+ Object.keys(vm._data || {}),
+ Object.keys(vm._computedWatchers || {}));
+
+ dataKeys.reduce(function(ret, key) {
+ ret[key] = vm[key];
+ return ret
+ }, ret);
+
+ // 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];
+ });
+ }
+
+ //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;
+ }
+
+ return JSON.parse(JSON.stringify(ret))
+}
+
+var patch = function(oldVnode, vnode) {
+ var this$1 = this;
+
+ 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({"VUE_APP_NAME":"litemall-wx","VUE_APP_PLATFORM":"mp-weixin","NODE_ENV":"development","BASE_URL":"/"}).VUE_APP_DEBUG) {
+ console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + this._uid +
+ ']差量更新',
+ JSON.stringify(diffData));
+ }
+ this.__next_tick_pending = true;
+ mpInstance.setData(diffData, function () {
+ this$1.__next_tick_pending = false;
+ flushCallbacks$1(this$1);
+ });
+ } else {
+ flushCallbacks$1(this);
+ }
+ }
+};
+
+/* */
+
+function createEmptyRender() {
+
+}
+
+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');
+
+ var updateComponent = function () {
+ vm._update(vm._render(), hydrating);
+ };
+
+ // 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
+}
+
+/* */
+
+function renderClass (
+ staticClass,
+ dynamicClass
+) {
+ if (isDef(staticClass) || isDef(dynamicClass)) {
+ return concat(staticClass, stringifyClass(dynamicClass))
+ }
+ /* istanbul ignore next */
+ return ''
+}
+
+function concat (a, b) {
+ return a ? b ? (a + ' ' + b) : a : (b || '')
+}
+
+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 ''
+}
+
+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
+}
+
+function stringifyObject (value) {
+ var res = '';
+ for (var key in value) {
+ if (value[key]) {
+ if (res) { res += ' '; }
+ res += key;
+ }
+ }
+ return res
+}
+
+/* */
+
+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
+});
+
+// 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
+}
+
+/* */
+
+var MP_METHODS = ['createSelectorQuery', 'createIntersectionObserver', 'selectAllComponents', 'selectComponent'];
+
+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('.'))
+}
+
+function internalMixin(Vue) {
+
+ 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);
+ }
+ };
+
+ var oldEmit = Vue.prototype.$emit;
+
+ Vue.prototype.$emit = function(event) {
+ if (this.$scope && event) {
+ this.$scope['triggerEvent'](event, {
+ __args__: toArray(arguments, 1)
+ });
+ }
+ return oldEmit.apply(this, arguments)
+ };
+
+ Vue.prototype.$nextTick = function(fn) {
+ return nextTick$1(this, fn)
+ };
+
+ 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
+ };
+ });
+
+ Vue.prototype.__init_provide = initProvide;
+
+ Vue.prototype.__init_injections = initInjections;
+
+ 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
+ };
+
+ 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;
+ }
+ target[key] = value;
+ };
+
+ Vue.prototype.__set_sync = function(target, key, value) {
+ if (!target) {
+ target = this;
+ }
+ target[key] = value;
+ };
+
+ Vue.prototype.__get_orig = function(item) {
+ if (isPlainObject(item)) {
+ return item['$orig'] || item
+ }
+ return item
+ };
+
+ Vue.prototype.__get_value = function(dataPath, target) {
+ return getTarget(target || this, dataPath)
+ };
+
+
+ Vue.prototype.__get_class = function(dynamicClass, staticClass) {
+ return renderClass(staticClass, dynamicClass)
+ };
+
+ 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(';')
+ };
+
+ 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 []
+ };
+
+}
+
+/* */
+
+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) {
+
+ //fixed vue-class-component
+ var oldExtend = Vue.extend;
+ Vue.extend = function(extendOptions) {
+ extendOptions = extendOptions || {};
+
+ 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];
+ }
+ });
+ }
+
+ return oldExtend.call(this, extendOptions)
+ };
+
+ var strategies = Vue.config.optionMergeStrategies;
+ var mergeHook = strategies.created;
+ LIFECYCLE_HOOKS$1.forEach(function (hook) {
+ strategies[hook] = mergeHook;
+ });
+
+ Vue.prototype.__lifecycle_hooks__ = LIFECYCLE_HOOKS$1;
+}
+
+/* */
+
+// install platform patch function
+Vue.prototype.__patch__ = patch;
+
+// public mount method
+Vue.prototype.$mount = function(
+ el ,
+ hydrating
+) {
+ return mountComponent$1(this, el, hydrating)
+};
+
+lifecycleMixin$1(Vue);
+internalMixin(Vue);
+
+/* */
+
+/* harmony default export */ __webpack_exports__["default"] = (Vue);
+
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../webpack/buildin/global.js */ 2)))
+
+/***/ }),
+
+/***/ 353:
+/*!***********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/parser.js ***!
+ \***********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+/* WEBPACK VAR INJECTION */(function(uni) {/**
+ * @fileoverview html 解析器
+ */
+
+// 配置
+var config = {
+ // 信任的标签(保持标签名不变)
+ trustTags: makeMap('a,abbr,ad,audio,b,blockquote,br,code,col,colgroup,dd,del,dl,dt,div,em,fieldset,h1,h2,h3,h4,h5,h6,hr,i,img,ins,label,legend,li,ol,p,q,ruby,rt,source,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,title,ul,video'),
+
+ // 块级标签(转为 div,其他的非信任标签转为 span)
+ blockTags: makeMap('address,article,aside,body,caption,center,cite,footer,header,html,nav,pre,section'),
+
+ // 要移除的标签
+ ignoreTags: makeMap('area,base,canvas,embed,frame,head,iframe,input,link,map,meta,param,rp,script,source,style,textarea,title,track,wbr'),
+
+ // 自闭合的标签
+ voidTags: makeMap('area,base,br,col,circle,ellipse,embed,frame,hr,img,input,line,link,meta,param,path,polygon,rect,source,track,use,wbr'),
+
+ // html 实体
+ entities: {
+ lt: '<',
+ gt: '>',
+ quot: '"',
+ apos: "'",
+ ensp: "\u2002",
+ emsp: "\u2003",
+ nbsp: '\xA0',
+ semi: ';',
+ ndash: '–',
+ mdash: '—',
+ middot: '·',
+ lsquo: '‘',
+ rsquo: '’',
+ ldquo: '“',
+ rdquo: '”',
+ bull: '•',
+ hellip: '…' },
+
+
+ // 默认的标签样式
+ tagStyle: {
+
+ address: 'font-style:italic',
+ big: 'display:inline;font-size:1.2em',
+ caption: 'display:table-caption;text-align:center',
+ center: 'text-align:center',
+ cite: 'font-style:italic',
+ dd: 'margin-left:40px',
+ mark: 'background-color:yellow',
+ pre: 'font-family:monospace;white-space:pre',
+ s: 'text-decoration:line-through',
+ small: 'display:inline;font-size:0.8em',
+ strike: 'text-decoration:line-through',
+ u: 'text-decoration:underline' },
+
+
+
+ // svg 大小写对照表
+ svgDict: {
+ animatetransform: 'animateTransform',
+ lineargradient: 'linearGradient',
+ viewbox: 'viewBox',
+ attributename: 'attributeName',
+ repeatcount: 'repeatCount',
+ repeatdur: 'repeatDur' } };
+
+
+var tagSelector = {};var _uni$getSystemInfoSyn =
+
+
+
+
+
+uni.getSystemInfoSync(),windowWidth = _uni$getSystemInfoSyn.windowWidth,system = _uni$getSystemInfoSyn.system;
+var blankChar = makeMap(' ,\r,\n,\t,\f');
+var idIndex = 0;
+
+
+
+
+
+
+
+
+
+
+
+
+/**
+ * @description 创建 map
+ * @param {String} str 逗号分隔
+ */
+function makeMap(str) {
+ var map = Object.create(null);
+ var list = str.split(',');
+ for (var i = list.length; i--;) {
+ map[list[i]] = true;
+ }
+ return map;
+}
+
+/**
+ * @description 解码 html 实体
+ * @param {String} str 要解码的字符串
+ * @param {Boolean} amp 要不要解码 &
+ * @returns {String} 解码后的字符串
+ */
+function decodeEntity(str, amp) {
+ var i = str.indexOf('&');
+ while (i !== -1) {
+ var j = str.indexOf(';', i + 3);
+ var code = void 0;
+ if (j === -1) break;
+ if (str[i + 1] === '#') {
+ // { 形式的实体
+ code = parseInt((str[i + 2] === 'x' ? '0' : '') + str.substring(i + 2, j));
+ if (!isNaN(code)) {
+ str = str.substr(0, i) + String.fromCharCode(code) + str.substr(j + 1);
+ }
+ } else {
+ // 形式的实体
+ code = str.substring(i + 1, j);
+ if (config.entities[code] || code === 'amp' && amp) {
+ str = str.substr(0, i) + (config.entities[code] || '&') + str.substr(j + 1);
+ }
+ }
+ i = str.indexOf('&', i + 1);
+ }
+ return str;
+}
+
+/**
+ * @description html 解析器
+ * @param {Object} vm 组件实例
+ */
+function Parser(vm) {
+ this.options = vm || {};
+ this.tagStyle = Object.assign({}, config.tagStyle, this.options.tagStyle);
+ this.imgList = vm.imgList || [];
+ this.plugins = vm.plugins || [];
+ this.attrs = Object.create(null);
+ this.stack = [];
+ this.nodes = [];
+ this.pre = (this.options.containerStyle || '').includes('white-space') && this.options.containerStyle.includes('pre') ? 2 : 0;
+}
+
+/**
+ * @description 执行解析
+ * @param {String} content 要解析的文本
+ */
+Parser.prototype.parse = function (content) {
+ // 插件处理
+ for (var i = this.plugins.length; i--;) {
+ if (this.plugins[i].onUpdate) {
+ content = this.plugins[i].onUpdate(content, config) || content;
+ }
+ }
+
+ new Lexer(this).parse(content);
+ // 出栈未闭合的标签
+ while (this.stack.length) {
+ this.popNode();
+ }
+ return this.nodes;
+};
+
+/**
+ * @description 将标签暴露出来(不被 rich-text 包含)
+ */
+Parser.prototype.expose = function () {
+
+ for (var i = this.stack.length; i--;) {
+ var item = this.stack[i];
+ if (item.c || item.name === 'a' || item.name === 'video' || item.name === 'audio') return;
+ item.c = 1;
+ }
+
+};
+
+/**
+ * @description 处理插件
+ * @param {Object} node 要处理的标签
+ * @returns {Boolean} 是否要移除此标签
+ */
+Parser.prototype.hook = function (node) {
+ for (var i = this.plugins.length; i--;) {
+ if (this.plugins[i].onParse && this.plugins[i].onParse(node, this) === false) {
+ return false;
+ }
+ }
+ return true;
+};
+
+/**
+ * @description 将链接拼接上主域名
+ * @param {String} url 需要拼接的链接
+ * @returns {String} 拼接后的链接
+ */
+Parser.prototype.getUrl = function (url) {
+ var domain = this.options.domain;
+ if (url[0] === '/') {
+ if (url[1] === '/') {
+ // // 开头的补充协议名
+ url = (domain ? domain.split('://')[0] : 'http') + ':' + url;
+ } else if (domain) {
+ // 否则补充整个域名
+ url = domain + url;
+ }
+ } else if (domain && !url.includes('data:') && !url.includes('://')) {
+ url = domain + '/' + url;
+ }
+ return url;
+};
+
+/**
+ * @description 解析样式表
+ * @param {Object} node 标签
+ * @returns {Object}
+ */
+Parser.prototype.parseStyle = function (node) {
+ var attrs = node.attrs;
+ var list = (this.tagStyle[node.name] || '').split(';').concat((attrs.style || '').split(';'));
+ var styleObj = {};
+ var tmp = '';
+
+ if (attrs.id && !this.xml) {
+ // 暴露锚点
+ if (this.options.useAnchor) {
+ this.expose();
+ } else if (node.name !== 'img' && node.name !== 'a' && node.name !== 'video' && node.name !== 'audio') {
+ attrs.id = undefined;
+ }
+ }
+
+ // 转换 width 和 height 属性
+ if (attrs.width) {
+ styleObj.width = parseFloat(attrs.width) + (attrs.width.includes('%') ? '%' : 'px');
+ attrs.width = undefined;
+ }
+ if (attrs.height) {
+ styleObj.height = parseFloat(attrs.height) + (attrs.height.includes('%') ? '%' : 'px');
+ attrs.height = undefined;
+ }
+
+ for (var i = 0, len = list.length; i < len; i++) {
+ var info = list[i].split(':');
+ if (info.length < 2) continue;
+ var key = info.shift().trim().toLowerCase();
+ var value = info.join(':').trim();
+ if (value[0] === '-' && value.lastIndexOf('-') > 0 || value.includes('safe')) {
+ // 兼容性的 css 不压缩
+ tmp += ";".concat(key, ":").concat(value);
+ } else if (!styleObj[key] || value.includes('import') || !styleObj[key].includes('import')) {
+ // 重复的样式进行覆盖
+ if (value.includes('url')) {
+ // 填充链接
+ var j = value.indexOf('(') + 1;
+ if (j) {
+ while (value[j] === '"' || value[j] === "'" || blankChar[value[j]]) {
+ j++;
+ }
+ value = value.substr(0, j) + this.getUrl(value.substr(j));
+ }
+ } else if (value.includes('rpx')) {
+ // 转换 rpx(rich-text 内部不支持 rpx)
+ value = value.replace(/[0-9.]+\s*rpx/g, function ($) {return parseFloat($) * windowWidth / 750 + 'px';});
+ }
+ styleObj[key] = value;
+ }
+ }
+
+ node.attrs.style = tmp;
+ return styleObj;
+};
+
+/**
+ * @description 解析到标签名
+ * @param {String} name 标签名
+ * @private
+ */
+Parser.prototype.onTagName = function (name) {
+ this.tagName = this.xml ? name : name.toLowerCase();
+ if (this.tagName === 'svg') {
+ this.xml = (this.xml || 0) + 1; // svg 标签内大小写敏感
+ }
+};
+
+/**
+ * @description 解析到属性名
+ * @param {String} name 属性名
+ * @private
+ */
+Parser.prototype.onAttrName = function (name) {
+ name = this.xml ? name : name.toLowerCase();
+ if (name.substr(0, 5) === 'data-') {
+ if (name === 'data-src' && !this.attrs.src) {
+ // data-src 自动转为 src
+ this.attrName = 'src';
+ } else if (this.tagName === 'img' || this.tagName === 'a') {
+ // a 和 img 标签保留 data- 的属性,可以在 imgtap 和 linktap 事件中使用
+ this.attrName = name;
+ } else {
+ // 剩余的移除以减小大小
+ this.attrName = undefined;
+ }
+ } else {
+ this.attrName = name;
+ this.attrs[name] = 'T'; // boolean 型属性缺省设置
+ }
+};
+
+/**
+ * @description 解析到属性值
+ * @param {String} val 属性值
+ * @private
+ */
+Parser.prototype.onAttrVal = function (val) {
+ var name = this.attrName || '';
+ if (name === 'style' || name === 'href') {
+ // 部分属性进行实体解码
+ this.attrs[name] = decodeEntity(val, true);
+ } else if (name.includes('src')) {
+ // 拼接主域名
+ this.attrs[name] = this.getUrl(decodeEntity(val, true));
+ } else if (name) {
+ this.attrs[name] = val;
+ }
+};
+
+/**
+ * @description 解析到标签开始
+ * @param {Boolean} selfClose 是否有自闭合标识 />
+ * @private
+ */
+Parser.prototype.onOpenTag = function (selfClose) {
+ // 拼装 node
+ var node = Object.create(null);
+ node.name = this.tagName;
+ node.attrs = this.attrs;
+ // 避免因为自动 diff 使得 type 被设置为 null 导致部分内容不显示
+ if (this.options.nodes.length) {
+ node.type = 'node';
+ }
+ this.attrs = Object.create(null);
+
+ var attrs = node.attrs;
+ var parent = this.stack[this.stack.length - 1];
+ var siblings = parent ? parent.children : this.nodes;
+ var close = this.xml ? selfClose : config.voidTags[node.name];
+
+ // 替换标签名选择器
+ if (tagSelector[node.name]) {
+ attrs.class = tagSelector[node.name] + (attrs.class ? ' ' + attrs.class : '');
+ }
+
+ // 转换 embed 标签
+ if (node.name === 'embed') {
+
+ var src = attrs.src || '';
+ // 按照后缀名和 type 将 embed 转为 video 或 audio
+ if (src.includes('.mp4') || src.includes('.3gp') || src.includes('.m3u8') || (attrs.type || '').includes('video')) {
+ node.name = 'video';
+ } else if (src.includes('.mp3') || src.includes('.wav') || src.includes('.aac') || src.includes('.m4a') || (attrs.type || '').includes('audio')) {
+ node.name = 'audio';
+ }
+ if (attrs.autostart) {
+ attrs.autoplay = 'T';
+ }
+ attrs.controls = 'T';
+
+
+
+
+ }
+
+
+ // 处理音视频
+ if (node.name === 'video' || node.name === 'audio') {
+ // 设置 id 以便获取 context
+ if (node.name === 'video' && !attrs.id) {
+ attrs.id = 'v' + idIndex++;
+ }
+ // 没有设置 controls 也没有设置 autoplay 的自动设置 controls
+ if (!attrs.controls && !attrs.autoplay) {
+ attrs.controls = 'T';
+ }
+ // 用数组存储所有可用的 source
+ node.src = [];
+ if (attrs.src) {
+ node.src.push(attrs.src);
+ attrs.src = undefined;
+ }
+ this.expose();
+ }
+
+
+ // 处理自闭合标签
+ if (close) {
+ if (!this.hook(node) || config.ignoreTags[node.name]) {
+ // 通过 base 标签设置主域名
+ if (node.name === 'base' && !this.options.domain) {
+ this.options.domain = attrs.href;
+ } else if (node.name === 'source' && parent && (parent.name === 'video' || parent.name === 'audio') && attrs.src) {
+ // 设置 source 标签(仅父节点为 video 或 audio 时有效)
+ parent.src.push(attrs.src);
+ }
+ return;
+ }
+
+ // 解析 style
+ var styleObj = this.parseStyle(node);
+
+ // 处理图片
+ if (node.name === 'img') {
+ if (attrs.src) {
+ // 标记 webp
+ if (attrs.src.includes('webp')) {
+ node.webp = 'T';
+ }
+ // data url 图片如果没有设置 original-src 默认为不可预览的小图片
+ if (attrs.src.includes('data:') && !attrs['original-src']) {
+ attrs.ignore = 'T';
+ }
+ if (!attrs.ignore || node.webp || attrs.src.includes('cloud://')) {
+ for (var i = this.stack.length; i--;) {
+ var item = this.stack[i];
+ if (item.name === 'a') {
+ node.a = item.attrs;
+ break;
+ }
+
+ var style = item.attrs.style || '';
+ if (style.includes('flex:') && !style.includes('flex:0') && !style.includes('flex: 0') && (!styleObj.width || !styleObj.width.includes('%'))) {
+ styleObj.width = '100% !important';
+ styleObj.height = '';
+ for (var j = i + 1; j < this.stack.length; j++) {
+ this.stack[j].attrs.style = (this.stack[j].attrs.style || '').replace('inline-', '');
+ }
+ } else if (style.includes('flex') && styleObj.width === '100%') {
+ for (var _j = i + 1; _j < this.stack.length; _j++) {
+ var _style = this.stack[_j].attrs.style || '';
+ if (!_style.includes(';width') && !_style.includes(' width') && _style.indexOf('width') !== 0) {
+ styleObj.width = '';
+ break;
+ }
+ }
+ } else if (style.includes('inline-block')) {
+ if (styleObj.width && styleObj.width[styleObj.width.length - 1] === '%') {
+ item.attrs.style += ';max-width:' + styleObj.width;
+ styleObj.width = '';
+ } else {
+ item.attrs.style += ';max-width:100%';
+ }
+ }
+
+ item.c = 1;
+ }
+ attrs.i = this.imgList.length.toString();
+ var _src = attrs['original-src'] || attrs.src;
+
+ if (this.imgList.includes(_src)) {
+ // 如果有重复的链接则对域名进行随机大小写变换避免预览时错位
+ var _i = _src.indexOf('://');
+ if (_i !== -1) {
+ _i += 3;
+ var newSrc = _src.substr(0, _i);
+ for (; _i < _src.length; _i++) {
+ if (_src[_i] === '/') break;
+ newSrc += Math.random() > 0.5 ? _src[_i].toUpperCase() : _src[_i];
+ }
+ newSrc += _src.substr(_i);
+ _src = newSrc;
+ }
+ }
+
+ this.imgList.push(_src);
+
+
+
+
+
+
+ }
+ }
+ if (styleObj.display === 'inline') {
+ styleObj.display = '';
+ }
+
+ if (attrs.ignore) {
+ styleObj['max-width'] = styleObj['max-width'] || '100%';
+ attrs.style += ';-webkit-touch-callout:none';
+ }
+
+ // 设置的宽度超出屏幕,为避免变形,高度转为自动
+ if (parseInt(styleObj.width) > windowWidth) {
+ styleObj.height = undefined;
+ }
+ // 记录是否设置了宽高
+ if (styleObj.width) {
+ if (styleObj.width.includes('auto')) {
+ styleObj.width = '';
+ } else {
+ node.w = 'T';
+ if (styleObj.height && !styleObj.height.includes('auto')) {
+ node.h = 'T';
+ }
+ }
+ }
+ } else if (node.name === 'svg') {
+ siblings.push(node);
+ this.stack.push(node);
+ this.popNode();
+ return;
+ }
+ for (var key in styleObj) {
+ if (styleObj[key]) {
+ attrs.style += ";".concat(key, ":").concat(styleObj[key].replace(' !important', ''));
+ }
+ }
+ attrs.style = attrs.style.substr(1) || undefined;
+ } else {
+ if ((node.name === 'pre' || (attrs.style || '').includes('white-space') && attrs.style.includes('pre')) && this.pre !== 2) {
+ this.pre = node.pre = 1;
+ }
+ node.children = [];
+ this.stack.push(node);
+ }
+
+ // 加入节点树
+ siblings.push(node);
+};
+
+/**
+ * @description 解析到标签结束
+ * @param {String} name 标签名
+ * @private
+ */
+Parser.prototype.onCloseTag = function (name) {
+ // 依次出栈到匹配为止
+ name = this.xml ? name : name.toLowerCase();
+ var i;
+ for (i = this.stack.length; i--;) {
+ if (this.stack[i].name === name) break;
+ }
+ if (i !== -1) {
+ while (this.stack.length > i) {
+ this.popNode();
+ }
+ } else if (name === 'p' || name === 'br') {
+ var siblings = this.stack.length ? this.stack[this.stack.length - 1].children : this.nodes;
+ siblings.push({
+ name: name,
+ attrs: {
+ class: tagSelector[name],
+ style: this.tagStyle[name] } });
+
+
+ }
+};
+
+/**
+ * @description 处理标签出栈
+ * @private
+ */
+Parser.prototype.popNode = function () {
+ var node = this.stack.pop();
+ var attrs = node.attrs;
+ var children = node.children;
+ var parent = this.stack[this.stack.length - 1];
+ var siblings = parent ? parent.children : this.nodes;
+
+ if (!this.hook(node) || config.ignoreTags[node.name]) {
+ // 获取标题
+ if (node.name === 'title' && children.length && children[0].type === 'text' && this.options.setTitle) {
+ uni.setNavigationBarTitle({
+ title: children[0].text });
+
+ }
+ siblings.pop();
+ return;
+ }
+
+ if (node.pre && this.pre !== 2) {
+ // 是否合并空白符标识
+ this.pre = node.pre = undefined;
+ for (var i = this.stack.length; i--;) {
+ if (this.stack[i].pre) {
+ this.pre = 1;
+ }
+ }
+ }
+
+ var styleObj = {};
+
+ // 转换 svg
+ if (node.name === 'svg') {
+ if (this.xml > 1) {
+ // 多层 svg 嵌套
+ this.xml--;
+ return;
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ var src = '';
+ var style = attrs.style;
+ attrs.style = '';
+ attrs.xmlns = 'http://www.w3.org/2000/svg';
+ (function traversal(node) {
+ if (node.type === 'text') {
+ src += node.text;
+ return;
+ }
+ var name = config.svgDict[node.name] || node.name;
+ src += '<' + name;
+ for (var item in node.attrs) {
+ var val = node.attrs[item];
+ if (val) {
+ src += " ".concat(config.svgDict[item] || item, "=\"").concat(val, "\"");
+ }
+ }
+ if (!node.children) {
+ src += '/>';
+ } else {
+ src += '>';
+ for (var _i2 = 0; _i2 < node.children.length; _i2++) {
+ traversal(node.children[_i2]);
+ }
+ src += '' + name + '>';
+ }
+ })(node);
+ node.name = 'img';
+ node.attrs = {
+ src: 'data:image/svg+xml;utf8,' + src.replace(/#/g, '%23'),
+ style: style,
+ ignore: 'T' };
+
+ node.children = undefined;
+
+ this.xml = false;
+ return;
+ }
+
+
+ // 转换 align 属性
+ if (attrs.align) {
+ if (node.name === 'table') {
+ if (attrs.align === 'center') {
+ styleObj['margin-inline-start'] = styleObj['margin-inline-end'] = 'auto';
+ } else {
+ styleObj.float = attrs.align;
+ }
+ } else {
+ styleObj['text-align'] = attrs.align;
+ }
+ attrs.align = undefined;
+ }
+
+ // 转换 dir 属性
+ if (attrs.dir) {
+ styleObj.direction = attrs.dir;
+ attrs.dir = undefined;
+ }
+
+ // 转换 font 标签的属性
+ if (node.name === 'font') {
+ if (attrs.color) {
+ styleObj.color = attrs.color;
+ attrs.color = undefined;
+ }
+ if (attrs.face) {
+ styleObj['font-family'] = attrs.face;
+ attrs.face = undefined;
+ }
+ if (attrs.size) {
+ var size = parseInt(attrs.size);
+ if (!isNaN(size)) {
+ if (size < 1) {
+ size = 1;
+ } else if (size > 7) {
+ size = 7;
+ }
+ styleObj['font-size'] = ['xx-small', 'x-small', 'small', 'medium', 'large', 'x-large', 'xx-large'][size - 1];
+ }
+ attrs.size = undefined;
+ }
+ }
+
+
+ // 一些编辑器的自带 class
+ if ((attrs.class || '').includes('align-center')) {
+ styleObj['text-align'] = 'center';
+ }
+
+ Object.assign(styleObj, this.parseStyle(node));
+
+ if (node.name !== 'table' && parseInt(styleObj.width) > windowWidth) {
+ styleObj['max-width'] = '100%';
+ styleObj['box-sizing'] = 'border-box';
+ }
+
+
+ if (config.blockTags[node.name]) {
+ node.name = 'div';
+ } else if (!config.trustTags[node.name] && !this.xml) {
+ // 未知标签转为 span,避免无法显示
+ node.name = 'span';
+ }
+
+ if (node.name === 'a' || node.name === 'ad')
+
+
+
+ {
+ this.expose();
+ } else
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ if ((node.name === 'ul' || node.name === 'ol') && node.c) {
+ // 列表处理
+ var types = {
+ a: 'lower-alpha',
+ A: 'upper-alpha',
+ i: 'lower-roman',
+ I: 'upper-roman' };
+
+ if (types[attrs.type]) {
+ attrs.style += ';list-style-type:' + types[attrs.type];
+ attrs.type = undefined;
+ }
+ for (var _i3 = children.length; _i3--;) {
+ if (children[_i3].name === 'li') {
+ children[_i3].c = 1;
+ }
+ }
+ } else if (node.name === 'table') {
+ // 表格处理
+ // cellpadding、cellspacing、border 这几个常用表格属性需要通过转换实现
+ var padding = parseFloat(attrs.cellpadding);
+ var spacing = parseFloat(attrs.cellspacing);
+ var border = parseFloat(attrs.border);
+ if (node.c) {
+ // padding 和 spacing 默认 2
+ if (isNaN(padding)) {
+ padding = 2;
+ }
+ if (isNaN(spacing)) {
+ spacing = 2;
+ }
+ }
+ if (border) {
+ attrs.style += ';border:' + border + 'px solid gray';
+ }
+ if (node.flag && node.c) {
+ // 有 colspan 或 rowspan 且含有链接的表格通过 grid 布局实现
+ styleObj.display = 'grid';
+ if (spacing) {
+ styleObj['grid-gap'] = spacing + 'px';
+ styleObj.padding = spacing + 'px';
+ } else if (border) {
+ // 无间隔的情况下避免边框重叠
+ attrs.style += ';border-left:0;border-top:0';
+ }
+
+ var width = []; // 表格的列宽
+ var trList = []; // tr 列表
+ var cells = []; // 保存新的单元格
+ var map = {}; // 被合并单元格占用的格子
+
+ (function traversal(nodes) {
+ for (var _i4 = 0; _i4 < nodes.length; _i4++) {
+ if (nodes[_i4].name === 'tr') {
+ trList.push(nodes[_i4]);
+ } else {
+ traversal(nodes[_i4].children || []);
+ }
+ }
+ })(children);
+
+ for (var row = 1; row <= trList.length; row++) {
+ var col = 1;
+ for (var j = 0; j < trList[row - 1].children.length; j++, col++) {
+ var td = trList[row - 1].children[j];
+ if (td.name === 'td' || td.name === 'th') {
+ // 这个格子被上面的单元格占用,则列号++
+ while (map[row + '.' + col]) {
+ col++;
+ }
+ var _style2 = td.attrs.style || '';
+ var start = _style2.indexOf('width') ? _style2.indexOf(';width') : 0;
+ // 提取出 td 的宽度
+ if (start !== -1) {
+ var end = _style2.indexOf(';', start + 6);
+ if (end === -1) {
+ end = _style2.length;
+ }
+ if (!td.attrs.colspan) {
+ width[col] = _style2.substring(start ? start + 7 : 6, end);
+ }
+ _style2 = _style2.substr(0, start) + _style2.substr(end);
+ }
+ _style2 += (border ? ";border:".concat(border, "px solid gray") + (spacing ? '' : ';border-right:0;border-bottom:0') : '') + (padding ? ";padding:".concat(padding, "px") : '');
+ // 处理列合并
+ if (td.attrs.colspan) {
+ _style2 += ";grid-column-start:".concat(col, ";grid-column-end:").concat(col + parseInt(td.attrs.colspan));
+ if (!td.attrs.rowspan) {
+ _style2 += ";grid-row-start:".concat(row, ";grid-row-end:").concat(row + 1);
+ }
+ col += parseInt(td.attrs.colspan) - 1;
+ }
+ // 处理行合并
+ if (td.attrs.rowspan) {
+ _style2 += ";grid-row-start:".concat(row, ";grid-row-end:").concat(row + parseInt(td.attrs.rowspan));
+ if (!td.attrs.colspan) {
+ _style2 += ";grid-column-start:".concat(col, ";grid-column-end:").concat(col + 1);
+ }
+ // 记录下方单元格被占用
+ for (var rowspan = 1; rowspan < td.attrs.rowspan; rowspan++) {
+ for (var colspan = 0; colspan < (td.attrs.colspan || 1); colspan++) {
+ map[row + rowspan + '.' + (col - colspan)] = 1;
+ }
+ }
+ }
+ if (_style2) {
+ td.attrs.style = _style2;
+ }
+ cells.push(td);
+ }
+ }
+ if (row === 1) {
+ var temp = '';
+ for (var _i5 = 1; _i5 < col; _i5++) {
+ temp += (width[_i5] ? width[_i5] : 'auto') + ' ';
+ }
+ styleObj['grid-template-columns'] = temp;
+ }
+ }
+ node.children = cells;
+ } else {
+ // 没有使用合并单元格的表格通过 table 布局实现
+ if (node.c) {
+ styleObj.display = 'table';
+ }
+ if (!isNaN(spacing)) {
+ styleObj['border-spacing'] = spacing + 'px';
+ }
+ if (border || padding) {
+ // 遍历
+ (function traversal(nodes) {
+ for (var _i6 = 0; _i6 < nodes.length; _i6++) {
+ var _td = nodes[_i6];
+ if (_td.name === 'th' || _td.name === 'td') {
+ if (border) {
+ _td.attrs.style = "border:".concat(border, "px solid gray;").concat(_td.attrs.style || '');
+ }
+ if (padding) {
+ _td.attrs.style = "padding:".concat(padding, "px;").concat(_td.attrs.style || '');
+ }
+ } else if (_td.children) {
+ traversal(_td.children);
+ }
+ }
+ })(children);
+ }
+ }
+ // 给表格添加一个单独的横向滚动层
+ if (this.options.scrollTable && !(attrs.style || '').includes('inline')) {
+ var table = Object.assign({}, node);
+ node.name = 'div';
+ node.attrs = {
+ style: 'overflow:auto' };
+
+ node.children = [table];
+ attrs = table.attrs;
+ }
+ } else if ((node.name === 'td' || node.name === 'th') && (attrs.colspan || attrs.rowspan)) {
+ for (var _i7 = this.stack.length; _i7--;) {
+ if (this.stack[_i7].name === 'table') {
+ this.stack[_i7].flag = 1; // 指示含有合并单元格
+ break;
+ }
+ }
+ } else if (node.name === 'ruby') {
+ // 转换 ruby
+ node.name = 'span';
+ for (var _i8 = 0; _i8 < children.length - 1; _i8++) {
+ if (children[_i8].type === 'text' && children[_i8 + 1].name === 'rt') {
+ children[_i8] = {
+ name: 'div',
+ attrs: {
+ style: 'display:inline-block;text-align:center' },
+
+ children: [{
+ name: 'div',
+ attrs: {
+ style: 'font-size:50%;' + (children[_i8 + 1].attrs.style || '') },
+
+ children: children[_i8 + 1].children },
+ children[_i8]] };
+
+ children.splice(_i8 + 1, 1);
+ }
+ }
+ } else if (node.c) {
+ node.c = 2;
+ for (var _i9 = node.children.length; _i9--;) {
+ if (!node.children[_i9].c || node.children[_i9].name === 'table') {
+ node.c = 1;
+ }
+ }
+ }
+
+ if ((styleObj.display || '').includes('flex') && !node.c) {
+ for (var _i10 = children.length; _i10--;) {
+ var item = children[_i10];
+ if (item.f) {
+ item.attrs.style = (item.attrs.style || '') + item.f;
+ item.f = undefined;
+ }
+ }
+ }
+ // flex 布局时部分样式需要提取到 rich-text 外层
+ var flex = parent && (parent.attrs.style || '').includes('flex')
+
+ // 检查基础库版本 virtualHost 是否可用
+ && !(node.c && wx.getNFCAdapter); // eslint-disable-line
+
+
+
+
+ if (flex) {
+ node.f = ';max-width:100%';
+ }
+
+
+ for (var key in styleObj) {
+ if (styleObj[key]) {
+ var val = ";".concat(key, ":").concat(styleObj[key].replace(' !important', ''));
+
+ if (flex && (key.includes('flex') && key !== 'flex-direction' || key === 'align-self' || styleObj[key][0] === '-' || key === 'width' && val.includes('%'))) {
+ node.f += val;
+ if (key === 'width') {
+ attrs.style += ';width:100%';
+ }
+ } else {
+ attrs.style += val;
+ }
+ }
+ }
+ attrs.style = attrs.style.substr(1) || undefined;
+};
+
+/**
+ * @description 解析到文本
+ * @param {String} text 文本内容
+ */
+Parser.prototype.onText = function (text) {
+ if (!this.pre) {
+ // 合并空白符
+ var trim = '';
+ var flag;
+ for (var i = 0, len = text.length; i < len; i++) {
+ if (!blankChar[text[i]]) {
+ trim += text[i];
+ } else {
+ if (trim[trim.length - 1] !== ' ') {
+ trim += ' ';
+ }
+ if (text[i] === '\n' && !flag) {
+ flag = true;
+ }
+ }
+ }
+ // 去除含有换行符的空串
+ if (trim === ' ' && flag) return;
+ text = trim;
+ }
+ var node = Object.create(null);
+ node.type = 'text';
+ node.text = decodeEntity(text);
+ if (this.hook(node)) {
+
+ if (this.options.selectable === 'force' && system.includes('iOS')) {
+ this.expose();
+ node.us = 'T';
+ }
+
+ var siblings = this.stack.length ? this.stack[this.stack.length - 1].children : this.nodes;
+ siblings.push(node);
+ }
+};
+
+/**
+ * @description html 词法分析器
+ * @param {Object} handler 高层处理器
+ */
+function Lexer(handler) {
+ this.handler = handler;
+}
+
+/**
+ * @description 执行解析
+ * @param {String} content 要解析的文本
+ */
+Lexer.prototype.parse = function (content) {
+ this.content = content || '';
+ this.i = 0; // 标记解析位置
+ this.start = 0; // 标记一个单词的开始位置
+ this.state = this.text; // 当前状态
+ for (var len = this.content.length; this.i !== -1 && this.i < len;) {
+ this.state();
+ }
+};
+
+/**
+ * @description 检查标签是否闭合
+ * @param {String} method 如果闭合要进行的操作
+ * @returns {Boolean} 是否闭合
+ * @private
+ */
+Lexer.prototype.checkClose = function (method) {
+ var selfClose = this.content[this.i] === '/';
+ if (this.content[this.i] === '>' || selfClose && this.content[this.i + 1] === '>') {
+ if (method) {
+ this.handler[method](this.content.substring(this.start, this.i));
+ }
+ this.i += selfClose ? 2 : 1;
+ this.start = this.i;
+ this.handler.onOpenTag(selfClose);
+ if (this.handler.tagName === 'script') {
+ this.i = this.content.indexOf('', this.i);
+ if (this.i !== -1) {
+ this.i += 2;
+ this.start = this.i;
+ }
+ this.state = this.endTag;
+ } else {
+ this.state = this.text;
+ }
+ return true;
+ }
+ return false;
+};
+
+/**
+ * @description 文本状态
+ * @private
+ */
+Lexer.prototype.text = function () {
+ this.i = this.content.indexOf('<', this.i); // 查找最近的标签
+ if (this.i === -1) {
+ // 没有标签了
+ if (this.start < this.content.length) {
+ this.handler.onText(this.content.substring(this.start, this.content.length));
+ }
+ return;
+ }
+ var c = this.content[this.i + 1];
+ if (c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z') {
+ // 标签开头
+ if (this.start !== this.i) {
+ this.handler.onText(this.content.substring(this.start, this.i));
+ }
+ this.start = ++this.i;
+ this.state = this.tagName;
+ } else if (c === '/' || c === '!' || c === '?') {
+ if (this.start !== this.i) {
+ this.handler.onText(this.content.substring(this.start, this.i));
+ }
+ var next = this.content[this.i + 2];
+ if (c === '/' && (next >= 'a' && next <= 'z' || next >= 'A' && next <= 'Z')) {
+ // 标签结尾
+ this.i += 2;
+ this.start = this.i;
+ this.state = this.endTag;
+ return;
+ }
+ // 处理注释
+ var end = '-->';
+ if (c !== '!' || this.content[this.i + 2] !== '-' || this.content[this.i + 3] !== '-') {
+ end = '>';
+ }
+ this.i = this.content.indexOf(end, this.i);
+ if (this.i !== -1) {
+ this.i += end.length;
+ this.start = this.i;
+ }
+ } else {
+ this.i++;
+ }
+};
+
+/**
+ * @description 标签名状态
+ * @private
+ */
+Lexer.prototype.tagName = function () {
+ if (blankChar[this.content[this.i]]) {
+ // 解析到标签名
+ this.handler.onTagName(this.content.substring(this.start, this.i));
+ while (blankChar[this.content[++this.i]]) {;}
+ if (this.i < this.content.length && !this.checkClose()) {
+ this.start = this.i;
+ this.state = this.attrName;
+ }
+ } else if (!this.checkClose('onTagName')) {
+ this.i++;
+ }
+};
+
+/**
+ * @description 属性名状态
+ * @private
+ */
+Lexer.prototype.attrName = function () {
+ var c = this.content[this.i];
+ if (blankChar[c] || c === '=') {
+ // 解析到属性名
+ this.handler.onAttrName(this.content.substring(this.start, this.i));
+ var needVal = c === '=';
+ var len = this.content.length;
+ while (++this.i < len) {
+ c = this.content[this.i];
+ if (!blankChar[c]) {
+ if (this.checkClose()) return;
+ if (needVal) {
+ // 等号后遇到第一个非空字符
+ this.start = this.i;
+ this.state = this.attrVal;
+ return;
+ }
+ if (this.content[this.i] === '=') {
+ needVal = true;
+ } else {
+ this.start = this.i;
+ this.state = this.attrName;
+ return;
+ }
+ }
+ }
+ } else if (!this.checkClose('onAttrName')) {
+ this.i++;
+ }
+};
+
+/**
+ * @description 属性值状态
+ * @private
+ */
+Lexer.prototype.attrVal = function () {
+ var c = this.content[this.i];
+ var len = this.content.length;
+ if (c === '"' || c === "'") {
+ // 有冒号的属性
+ this.start = ++this.i;
+ this.i = this.content.indexOf(c, this.i);
+ if (this.i === -1) return;
+ this.handler.onAttrVal(this.content.substring(this.start, this.i));
+ } else {
+ // 没有冒号的属性
+ for (; this.i < len; this.i++) {
+ if (blankChar[this.content[this.i]]) {
+ this.handler.onAttrVal(this.content.substring(this.start, this.i));
+ break;
+ } else if (this.checkClose('onAttrVal')) return;
+ }
+ }
+ while (blankChar[this.content[++this.i]]) {;}
+ if (this.i < len && !this.checkClose()) {
+ this.start = this.i;
+ this.state = this.attrName;
+ }
+};
+
+/**
+ * @description 结束标签状态
+ * @returns {String} 结束的标签名
+ * @private
+ */
+Lexer.prototype.endTag = function () {
+ var c = this.content[this.i];
+ if (blankChar[c] || c === '>' || c === '/') {
+ this.handler.onCloseTag(this.content.substring(this.start, this.i));
+ if (c !== '>') {
+ this.i = this.content.indexOf('>', this.i);
+ if (this.i === -1) return;
+ }
+ this.start = ++this.i;
+ this.state = this.text;
+ } else {
+ this.i++;
+ }
+};
+
+module.exports = Parser;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 4:
+/*!*************************************************************!*\
+ !*** ./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 });
+ }
+ // 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;
+}
+function compile(tokens, values) {
+ var compiled = [];
+ var index = 0;
+ var mode = isArray(values) ?
+ 'list' :
+ isObject(values) ?
+ 'named' :
+ 'unknown';
+ if (mode === 'unknown') {
+ return compiled;
+ }
+ 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!"));
+ }
+ }
+ break;
+ case 'unknown':
+ if (true) {
+ console.warn("Detect 'unknown' type of token!");
+ }
+ break;}
+
+ index++;
+ }
+ return compiled;
+}
+
+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;});
+}
+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.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;
+ }
+}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;
+ }
+ 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];
+ }
+ });
+ }
+ } else
+ {
+ this.messages[locale] = message;
+ }
+ } }, { 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);
+ });
+ }
+}
+function getDefaultLocale() {
+ if (typeof uni !== 'undefined' && uni.getLocale) {
+ return uni.getLocale();
+ }
+ // 小程序平台,uni 和 uni-i18n 互相引用,导致访问不到 uni,故在 global 上挂了 getLocale
+ if (typeof global !== 'undefined' && global.getLocale) {
+ return global.getLocale();
+ }
+ return LOCALE_EN;
+}
+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];
+
+ }
+ 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 });
+
+ 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);
+ }
+ }
+ return i18n.t(key, values);
+ };
+ }
+ 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);
+ } };
+
+}
+
+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;
+ }
+ } else
+ {
+ return hasI18nJson(value, delimiters);
+ }
+ });
+}
+function parseI18nJson(jsonObj, values, delimiters) {
+ if (!formater) {
+ formater = new BaseFormatter();
+ }
+ 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;
+}
+function compileI18nJsonStr(jsonStr, _ref5) {var locale = _ref5.locale,locales = _ref5.locales,delimiters = _ref5.delimiters;
+ if (!isI18nStr(jsonStr, delimiters)) {
+ return jsonStr;
+ }
+ if (!formater) {
+ formater = new BaseFormatter();
+ }
+ var localeValues = [];
+ Object.keys(locales).forEach(function (name) {
+ if (name !== locale) {
+ localeValues.push({
+ locale: name,
+ values: locales[name] });
+
+ }
+ });
+ localeValues.unshift({ locale: locale, values: locales[locale] });
+ try {
+ return JSON.stringify(compileJsonObj(JSON.parse(jsonStr), localeValues, delimiters), null, 2);
+ }
+ 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);
+ });
+ }
+ }
+ } 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;
+ }
+ }
+ } else
+ if (isObject(jsonObj)) {
+ for (var key in jsonObj) {
+ if (walk(jsonObj, key)) {
+ return true;
+ }
+ }
+ }
+ return false;
+}
+
+function resolveLocale(locales) {
+ return function (locale) {
+ if (!locale) {
+ return locale;
+ }
+ 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();
+ }
+ 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)))
+
+/***/ }),
+
+/***/ 5:
+/*!*********************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages.json ***!
+ \*********************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports) {
+
+
+
+/***/ }),
+
+/***/ 72:
+/*!*************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/utils/check.js ***!
+ \*************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports) {
+
+function isValidPhone(str) {
+ var myreg = /^[1][3,4,5,7,8][0-9]{9}$/;
+
+ if (!myreg.test(str)) {
+ return false;
+ } else {
+ return true;
+ }
+}
+
+module.exports = {
+ isValidPhone: isValidPhone };
+
+/***/ }),
+
+/***/ 73:
+/*!************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/utils/area.js ***!
+ \************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports) {
+
+var areaList = {
+ province_list: {
+ 110000: '北京市',
+ 120000: '天津市',
+ 130000: '河北省',
+ 140000: '山西省',
+ 150000: '内蒙古自治区',
+ 210000: '辽宁省',
+ 220000: '吉林省',
+ 230000: '黑龙江省',
+ 310000: '上海市',
+ 320000: '江苏省',
+ 330000: '浙江省',
+ 340000: '安徽省',
+ 350000: '福建省',
+ 360000: '江西省',
+ 370000: '山东省',
+ 410000: '河南省',
+ 420000: '湖北省',
+ 430000: '湖南省',
+ 440000: '广东省',
+ 450000: '广西壮族自治区',
+ 460000: '海南省',
+ 500000: '重庆市',
+ 510000: '四川省',
+ 520000: '贵州省',
+ 530000: '云南省',
+ 540000: '西藏自治区',
+ 610000: '陕西省',
+ 620000: '甘肃省',
+ 630000: '青海省',
+ 640000: '宁夏回族自治区',
+ 650000: '新疆维吾尔自治区' },
+
+ city_list: {
+ 110100: '市辖区',
+ 120100: '市辖区',
+ 130100: '石家庄市',
+ 130200: '唐山市',
+ 130300: '秦皇岛市',
+ 130400: '邯郸市',
+ 130500: '邢台市',
+ 130600: '保定市',
+ 130700: '张家口市',
+ 130800: '承德市',
+ 130900: '沧州市',
+ 131000: '廊坊市',
+ 131100: '衡水市',
+ 139000: '省直辖县级行政区划',
+ 140100: '太原市',
+ 140200: '大同市',
+ 140300: '阳泉市',
+ 140400: '长治市',
+ 140500: '晋城市',
+ 140600: '朔州市',
+ 140700: '晋中市',
+ 140800: '运城市',
+ 140900: '忻州市',
+ 141000: '临汾市',
+ 141100: '吕梁市',
+ 150100: '呼和浩特市',
+ 150200: '包头市',
+ 150300: '乌海市',
+ 150400: '赤峰市',
+ 150500: '通辽市',
+ 150600: '鄂尔多斯市',
+ 150700: '呼伦贝尔市',
+ 150800: '巴彦淖尔市',
+ 150900: '乌兰察布市',
+ 152200: '兴安盟',
+ 152500: '锡林郭勒盟',
+ 152900: '阿拉善盟',
+ 210100: '沈阳市',
+ 210200: '大连市',
+ 210300: '鞍山市',
+ 210400: '抚顺市',
+ 210500: '本溪市',
+ 210600: '丹东市',
+ 210700: '锦州市',
+ 210800: '营口市',
+ 210900: '阜新市',
+ 211000: '辽阳市',
+ 211100: '盘锦市',
+ 211200: '铁岭市',
+ 211300: '朝阳市',
+ 211400: '葫芦岛市',
+ 220100: '长春市',
+ 220200: '吉林市',
+ 220300: '四平市',
+ 220400: '辽源市',
+ 220500: '通化市',
+ 220600: '白山市',
+ 220700: '松原市',
+ 220800: '白城市',
+ 222400: '延边朝鲜族自治州',
+ 230100: '哈尔滨市',
+ 230200: '齐齐哈尔市',
+ 230300: '鸡西市',
+ 230400: '鹤岗市',
+ 230500: '双鸭山市',
+ 230600: '大庆市',
+ 230700: '伊春市',
+ 230800: '佳木斯市',
+ 230900: '七台河市',
+ 231000: '牡丹江市',
+ 231100: '黑河市',
+ 231200: '绥化市',
+ 232700: '大兴安岭地区',
+ 310100: '市辖区',
+ 320100: '南京市',
+ 320200: '无锡市',
+ 320300: '徐州市',
+ 320400: '常州市',
+ 320500: '苏州市',
+ 320600: '南通市',
+ 320700: '连云港市',
+ 320800: '淮安市',
+ 320900: '盐城市',
+ 321000: '扬州市',
+ 321100: '镇江市',
+ 321200: '泰州市',
+ 321300: '宿迁市',
+ 330100: '杭州市',
+ 330200: '宁波市',
+ 330300: '温州市',
+ 330400: '嘉兴市',
+ 330500: '湖州市',
+ 330600: '绍兴市',
+ 330700: '金华市',
+ 330800: '衢州市',
+ 330900: '舟山市',
+ 331000: '台州市',
+ 331100: '丽水市',
+ 340100: '合肥市',
+ 340200: '芜湖市',
+ 340300: '蚌埠市',
+ 340400: '淮南市',
+ 340500: '马鞍山市',
+ 340600: '淮北市',
+ 340700: '铜陵市',
+ 340800: '安庆市',
+ 341000: '黄山市',
+ 341100: '滁州市',
+ 341200: '阜阳市',
+ 341300: '宿州市',
+ 341500: '六安市',
+ 341600: '亳州市',
+ 341700: '池州市',
+ 341800: '宣城市',
+ 350100: '福州市',
+ 350200: '厦门市',
+ 350300: '莆田市',
+ 350400: '三明市',
+ 350500: '泉州市',
+ 350600: '漳州市',
+ 350700: '南平市',
+ 350800: '龙岩市',
+ 350900: '宁德市',
+ 360100: '南昌市',
+ 360200: '景德镇市',
+ 360300: '萍乡市',
+ 360400: '九江市',
+ 360500: '新余市',
+ 360600: '鹰潭市',
+ 360700: '赣州市',
+ 360800: '吉安市',
+ 360900: '宜春市',
+ 361000: '抚州市',
+ 361100: '上饶市',
+ 370100: '济南市',
+ 370200: '青岛市',
+ 370300: '淄博市',
+ 370400: '枣庄市',
+ 370500: '东营市',
+ 370600: '烟台市',
+ 370700: '潍坊市',
+ 370800: '济宁市',
+ 370900: '泰安市',
+ 371000: '威海市',
+ 371100: '日照市',
+ 371200: '莱芜市',
+ 371300: '临沂市',
+ 371400: '德州市',
+ 371500: '聊城市',
+ 371600: '滨州市',
+ 371700: '菏泽市',
+ 410100: '郑州市',
+ 410200: '开封市',
+ 410300: '洛阳市',
+ 410400: '平顶山市',
+ 410500: '安阳市',
+ 410600: '鹤壁市',
+ 410700: '新乡市',
+ 410800: '焦作市',
+ 410900: '濮阳市',
+ 411000: '许昌市',
+ 411100: '漯河市',
+ 411200: '三门峡市',
+ 411300: '南阳市',
+ 411400: '商丘市',
+ 411500: '信阳市',
+ 411600: '周口市',
+ 411700: '驻马店市',
+ 419000: '省直辖县级行政区划',
+ 420100: '武汉市',
+ 420200: '黄石市',
+ 420300: '十堰市',
+ 420500: '宜昌市',
+ 420600: '襄阳市',
+ 420700: '鄂州市',
+ 420800: '荆门市',
+ 420900: '孝感市',
+ 421000: '荆州市',
+ 421100: '黄冈市',
+ 421200: '咸宁市',
+ 421300: '随州市',
+ 422800: '恩施土家族苗族自治州',
+ 429000: '省直辖县级行政区划',
+ 430100: '长沙市',
+ 430200: '株洲市',
+ 430300: '湘潭市',
+ 430400: '衡阳市',
+ 430500: '邵阳市',
+ 430600: '岳阳市',
+ 430700: '常德市',
+ 430800: '张家界市',
+ 430900: '益阳市',
+ 431000: '郴州市',
+ 431100: '永州市',
+ 431200: '怀化市',
+ 431300: '娄底市',
+ 433100: '湘西土家族苗族自治州',
+ 440100: '广州市',
+ 440200: '韶关市',
+ 440300: '深圳市',
+ 440400: '珠海市',
+ 440500: '汕头市',
+ 440600: '佛山市',
+ 440700: '江门市',
+ 440800: '湛江市',
+ 440900: '茂名市',
+ 441200: '肇庆市',
+ 441300: '惠州市',
+ 441400: '梅州市',
+ 441500: '汕尾市',
+ 441600: '河源市',
+ 441700: '阳江市',
+ 441800: '清远市',
+ 441900: '东莞市',
+ 442000: '中山市',
+ 445100: '潮州市',
+ 445200: '揭阳市',
+ 445300: '云浮市',
+ 450100: '南宁市',
+ 450200: '柳州市',
+ 450300: '桂林市',
+ 450400: '梧州市',
+ 450500: '北海市',
+ 450600: '防城港市',
+ 450700: '钦州市',
+ 450800: '贵港市',
+ 450900: '玉林市',
+ 451000: '百色市',
+ 451100: '贺州市',
+ 451200: '河池市',
+ 451300: '来宾市',
+ 451400: '崇左市',
+ 460100: '海口市',
+ 460200: '三亚市',
+ 460300: '三沙市',
+ 460400: '儋州市',
+ 469000: '省直辖县级行政区划',
+ 500100: '市辖区',
+ 500200: '县',
+ 510100: '成都市',
+ 510300: '自贡市',
+ 510400: '攀枝花市',
+ 510500: '泸州市',
+ 510600: '德阳市',
+ 510700: '绵阳市',
+ 510800: '广元市',
+ 510900: '遂宁市',
+ 511000: '内江市',
+ 511100: '乐山市',
+ 511300: '南充市',
+ 511400: '眉山市',
+ 511500: '宜宾市',
+ 511600: '广安市',
+ 511700: '达州市',
+ 511800: '雅安市',
+ 511900: '巴中市',
+ 512000: '资阳市',
+ 513200: '阿坝藏族羌族自治州',
+ 513300: '甘孜藏族自治州',
+ 513400: '凉山彝族自治州',
+ 520100: '贵阳市',
+ 520200: '六盘水市',
+ 520300: '遵义市',
+ 520400: '安顺市',
+ 520500: '毕节市',
+ 520600: '铜仁市',
+ 522300: '黔西南布依族苗族自治州',
+ 522600: '黔东南苗族侗族自治州',
+ 522700: '黔南布依族苗族自治州',
+ 530100: '昆明市',
+ 530300: '曲靖市',
+ 530400: '玉溪市',
+ 530500: '保山市',
+ 530600: '昭通市',
+ 530700: '丽江市',
+ 530800: '普洱市',
+ 530900: '临沧市',
+ 532300: '楚雄彝族自治州',
+ 532500: '红河哈尼族彝族自治州',
+ 532600: '文山壮族苗族自治州',
+ 532800: '西双版纳傣族自治州',
+ 532900: '大理白族自治州',
+ 533100: '德宏傣族景颇族自治州',
+ 533300: '怒江傈僳族自治州',
+ 533400: '迪庆藏族自治州',
+ 540100: '拉萨市',
+ 540200: '日喀则市',
+ 540300: '昌都市',
+ 540400: '林芝市',
+ 540500: '山南市',
+ 542400: '那曲地区',
+ 542500: '阿里地区',
+ 610100: '西安市',
+ 610200: '铜川市',
+ 610300: '宝鸡市',
+ 610400: '咸阳市',
+ 610500: '渭南市',
+ 610600: '延安市',
+ 610700: '汉中市',
+ 610800: '榆林市',
+ 610900: '安康市',
+ 611000: '商洛市',
+ 620100: '兰州市',
+ 620200: '嘉峪关市',
+ 620300: '金昌市',
+ 620400: '白银市',
+ 620500: '天水市',
+ 620600: '武威市',
+ 620700: '张掖市',
+ 620800: '平凉市',
+ 620900: '酒泉市',
+ 621000: '庆阳市',
+ 621100: '定西市',
+ 621200: '陇南市',
+ 622900: '临夏回族自治州',
+ 623000: '甘南藏族自治州',
+ 630100: '西宁市',
+ 630200: '海东市',
+ 632200: '海北藏族自治州',
+ 632300: '黄南藏族自治州',
+ 632500: '海南藏族自治州',
+ 632600: '果洛藏族自治州',
+ 632700: '玉树藏族自治州',
+ 632800: '海西蒙古族藏族自治州',
+ 640100: '银川市',
+ 640200: '石嘴山市',
+ 640300: '吴忠市',
+ 640400: '固原市',
+ 640500: '中卫市',
+ 650100: '乌鲁木齐市',
+ 650200: '克拉玛依市',
+ 650400: '吐鲁番市',
+ 650500: '哈密市',
+ 652300: '昌吉回族自治州',
+ 652700: '博尔塔拉蒙古自治州',
+ 652800: '巴音郭楞蒙古自治州',
+ 652900: '阿克苏地区',
+ 653000: '克孜勒苏柯尔克孜自治州',
+ 653100: '喀什地区',
+ 653200: '和田地区',
+ 654000: '伊犁哈萨克自治州',
+ 654200: '塔城地区',
+ 654300: '阿勒泰地区',
+ 659000: '自治区直辖县级行政区划' },
+
+ county_list: {
+ 110101: '东城区',
+ 110102: '西城区',
+ 110105: '朝阳区',
+ 110106: '丰台区',
+ 110107: '石景山区',
+ 110108: '海淀区',
+ 110109: '门头沟区',
+ 110111: '房山区',
+ 110112: '通州区',
+ 110113: '顺义区',
+ 110114: '昌平区',
+ 110115: '大兴区',
+ 110116: '怀柔区',
+ 110117: '平谷区',
+ 110118: '密云区',
+ 110119: '延庆区',
+ 120101: '和平区',
+ 120102: '河东区',
+ 120103: '河西区',
+ 120104: '南开区',
+ 120105: '河北区',
+ 120106: '红桥区',
+ 120110: '东丽区',
+ 120111: '西青区',
+ 120112: '津南区',
+ 120113: '北辰区',
+ 120114: '武清区',
+ 120115: '宝坻区',
+ 120116: '滨海新区',
+ 120117: '宁河区',
+ 120118: '静海区',
+ 120119: '蓟州区',
+ 130102: '长安区',
+ 130104: '桥西区',
+ 130105: '新华区',
+ 130107: '井陉矿区',
+ 130108: '裕华区',
+ 130109: '藁城区',
+ 130110: '鹿泉区',
+ 130111: '栾城区',
+ 130121: '井陉县',
+ 130123: '正定县',
+ 130125: '行唐县',
+ 130126: '灵寿县',
+ 130127: '高邑县',
+ 130128: '深泽县',
+ 130129: '赞皇县',
+ 130130: '无极县',
+ 130131: '平山县',
+ 130132: '元氏县',
+ 130133: '赵县',
+ 130183: '晋州市',
+ 130184: '新乐市',
+ 130202: '路南区',
+ 130203: '路北区',
+ 130204: '古冶区',
+ 130205: '开平区',
+ 130207: '丰南区',
+ 130208: '丰润区',
+ 130209: '曹妃甸区',
+ 130223: '滦县',
+ 130224: '滦南县',
+ 130225: '乐亭县',
+ 130227: '迁西县',
+ 130229: '玉田县',
+ 130281: '遵化市',
+ 130283: '迁安市',
+ 130302: '海港区',
+ 130303: '山海关区',
+ 130304: '北戴河区',
+ 130306: '抚宁区',
+ 130321: '青龙满族自治县',
+ 130322: '昌黎县',
+ 130324: '卢龙县',
+ 130402: '邯山区',
+ 130403: '丛台区',
+ 130404: '复兴区',
+ 130406: '峰峰矿区',
+ 130421: '邯郸县',
+ 130423: '临漳县',
+ 130424: '成安县',
+ 130425: '大名县',
+ 130426: '涉县',
+ 130427: '磁县',
+ 130428: '肥乡县',
+ 130429: '永年县',
+ 130430: '邱县',
+ 130431: '鸡泽县',
+ 130432: '广平县',
+ 130433: '馆陶县',
+ 130434: '魏县',
+ 130435: '曲周县',
+ 130481: '武安市',
+ 130502: '桥东区',
+ 130503: '桥西区',
+ 130521: '邢台县',
+ 130522: '临城县',
+ 130523: '内丘县',
+ 130524: '柏乡县',
+ 130525: '隆尧县',
+ 130526: '任县',
+ 130527: '南和县',
+ 130528: '宁晋县',
+ 130529: '巨鹿县',
+ 130530: '新河县',
+ 130531: '广宗县',
+ 130532: '平乡县',
+ 130533: '威县',
+ 130534: '清河县',
+ 130535: '临西县',
+ 130581: '南宫市',
+ 130582: '沙河市',
+ 130602: '竞秀区',
+ 130606: '莲池区',
+ 130607: '满城区',
+ 130608: '清苑区',
+ 130609: '徐水区',
+ 130623: '涞水县',
+ 130624: '阜平县',
+ 130626: '定兴县',
+ 130627: '唐县',
+ 130628: '高阳县',
+ 130629: '容城县',
+ 130630: '涞源县',
+ 130631: '望都县',
+ 130632: '安新县',
+ 130633: '易县',
+ 130634: '曲阳县',
+ 130635: '蠡县',
+ 130636: '顺平县',
+ 130637: '博野县',
+ 130638: '雄县',
+ 130681: '涿州市',
+ 130683: '安国市',
+ 130684: '高碑店市',
+ 130702: '桥东区',
+ 130703: '桥西区',
+ 130705: '宣化区',
+ 130706: '下花园区',
+ 130708: '万全区',
+ 130709: '崇礼区',
+ 130722: '张北县',
+ 130723: '康保县',
+ 130724: '沽源县',
+ 130725: '尚义县',
+ 130726: '蔚县',
+ 130727: '阳原县',
+ 130728: '怀安县',
+ 130730: '怀来县',
+ 130731: '涿鹿县',
+ 130732: '赤城县',
+ 130802: '双桥区',
+ 130803: '双滦区',
+ 130804: '鹰手营子矿区',
+ 130821: '承德县',
+ 130822: '兴隆县',
+ 130823: '平泉县',
+ 130824: '滦平县',
+ 130825: '隆化县',
+ 130826: '丰宁满族自治县',
+ 130827: '宽城满族自治县',
+ 130828: '围场满族蒙古族自治县',
+ 130902: '新华区',
+ 130903: '运河区',
+ 130921: '沧县',
+ 130922: '青县',
+ 130923: '东光县',
+ 130924: '海兴县',
+ 130925: '盐山县',
+ 130926: '肃宁县',
+ 130927: '南皮县',
+ 130928: '吴桥县',
+ 130929: '献县',
+ 130930: '孟村回族自治县',
+ 130981: '泊头市',
+ 130982: '任丘市',
+ 130983: '黄骅市',
+ 130984: '河间市',
+ 131002: '安次区',
+ 131003: '广阳区',
+ 131022: '固安县',
+ 131023: '永清县',
+ 131024: '香河县',
+ 131025: '大城县',
+ 131026: '文安县',
+ 131028: '大厂回族自治县',
+ 131081: '霸州市',
+ 131082: '三河市',
+ 131102: '桃城区',
+ 131103: '冀州区',
+ 131121: '枣强县',
+ 131122: '武邑县',
+ 131123: '武强县',
+ 131124: '饶阳县',
+ 131125: '安平县',
+ 131126: '故城县',
+ 131127: '景县',
+ 131128: '阜城县',
+ 131182: '深州市',
+ 139001: '定州市',
+ 139002: '辛集市',
+ 140105: '小店区',
+ 140106: '迎泽区',
+ 140107: '杏花岭区',
+ 140108: '尖草坪区',
+ 140109: '万柏林区',
+ 140110: '晋源区',
+ 140121: '清徐县',
+ 140122: '阳曲县',
+ 140123: '娄烦县',
+ 140181: '古交市',
+ 140202: '城区',
+ 140203: '矿区',
+ 140211: '南郊区',
+ 140212: '新荣区',
+ 140221: '阳高县',
+ 140222: '天镇县',
+ 140223: '广灵县',
+ 140224: '灵丘县',
+ 140225: '浑源县',
+ 140226: '左云县',
+ 140227: '大同县',
+ 140302: '城区',
+ 140303: '矿区',
+ 140311: '郊区',
+ 140321: '平定县',
+ 140322: '盂县',
+ 140402: '城区',
+ 140411: '郊区',
+ 140421: '长治县',
+ 140423: '襄垣县',
+ 140424: '屯留县',
+ 140425: '平顺县',
+ 140426: '黎城县',
+ 140427: '壶关县',
+ 140428: '长子县',
+ 140429: '武乡县',
+ 140430: '沁县',
+ 140431: '沁源县',
+ 140481: '潞城市',
+ 140502: '城区',
+ 140521: '沁水县',
+ 140522: '阳城县',
+ 140524: '陵川县',
+ 140525: '泽州县',
+ 140581: '高平市',
+ 140602: '朔城区',
+ 140603: '平鲁区',
+ 140621: '山阴县',
+ 140622: '应县',
+ 140623: '右玉县',
+ 140624: '怀仁县',
+ 140702: '榆次区',
+ 140721: '榆社县',
+ 140722: '左权县',
+ 140723: '和顺县',
+ 140724: '昔阳县',
+ 140725: '寿阳县',
+ 140726: '太谷县',
+ 140727: '祁县',
+ 140728: '平遥县',
+ 140729: '灵石县',
+ 140781: '介休市',
+ 140802: '盐湖区',
+ 140821: '临猗县',
+ 140822: '万荣县',
+ 140823: '闻喜县',
+ 140824: '稷山县',
+ 140825: '新绛县',
+ 140826: '绛县',
+ 140827: '垣曲县',
+ 140828: '夏县',
+ 140829: '平陆县',
+ 140830: '芮城县',
+ 140881: '永济市',
+ 140882: '河津市',
+ 140902: '忻府区',
+ 140921: '定襄县',
+ 140922: '五台县',
+ 140923: '代县',
+ 140924: '繁峙县',
+ 140925: '宁武县',
+ 140926: '静乐县',
+ 140927: '神池县',
+ 140928: '五寨县',
+ 140929: '岢岚县',
+ 140930: '河曲县',
+ 140931: '保德县',
+ 140932: '偏关县',
+ 140981: '原平市',
+ 141002: '尧都区',
+ 141021: '曲沃县',
+ 141022: '翼城县',
+ 141023: '襄汾县',
+ 141024: '洪洞县',
+ 141025: '古县',
+ 141026: '安泽县',
+ 141027: '浮山县',
+ 141028: '吉县',
+ 141029: '乡宁县',
+ 141030: '大宁县',
+ 141031: '隰县',
+ 141032: '永和县',
+ 141033: '蒲县',
+ 141034: '汾西县',
+ 141081: '侯马市',
+ 141082: '霍州市',
+ 141102: '离石区',
+ 141121: '文水县',
+ 141122: '交城县',
+ 141123: '兴县',
+ 141124: '临县',
+ 141125: '柳林县',
+ 141126: '石楼县',
+ 141127: '岚县',
+ 141128: '方山县',
+ 141129: '中阳县',
+ 141130: '交口县',
+ 141181: '孝义市',
+ 141182: '汾阳市',
+ 150102: '新城区',
+ 150103: '回民区',
+ 150104: '玉泉区',
+ 150105: '赛罕区',
+ 150121: '土默特左旗',
+ 150122: '托克托县',
+ 150123: '和林格尔县',
+ 150124: '清水河县',
+ 150125: '武川县',
+ 150202: '东河区',
+ 150203: '昆都仑区',
+ 150204: '青山区',
+ 150205: '石拐区',
+ 150206: '白云鄂博矿区',
+ 150207: '九原区',
+ 150221: '土默特右旗',
+ 150222: '固阳县',
+ 150223: '达尔罕茂明安联合旗',
+ 150302: '海勃湾区',
+ 150303: '海南区',
+ 150304: '乌达区',
+ 150402: '红山区',
+ 150403: '元宝山区',
+ 150404: '松山区',
+ 150421: '阿鲁科尔沁旗',
+ 150422: '巴林左旗',
+ 150423: '巴林右旗',
+ 150424: '林西县',
+ 150425: '克什克腾旗',
+ 150426: '翁牛特旗',
+ 150428: '喀喇沁旗',
+ 150429: '宁城县',
+ 150430: '敖汉旗',
+ 150502: '科尔沁区',
+ 150521: '科尔沁左翼中旗',
+ 150522: '科尔沁左翼后旗',
+ 150523: '开鲁县',
+ 150524: '库伦旗',
+ 150525: '奈曼旗',
+ 150526: '扎鲁特旗',
+ 150581: '霍林郭勒市',
+ 150602: '东胜区',
+ 150603: '康巴什区',
+ 150621: '达拉特旗',
+ 150622: '准格尔旗',
+ 150623: '鄂托克前旗',
+ 150624: '鄂托克旗',
+ 150625: '杭锦旗',
+ 150626: '乌审旗',
+ 150627: '伊金霍洛旗',
+ 150702: '海拉尔区',
+ 150703: '扎赉诺尔区',
+ 150721: '阿荣旗',
+ 150722: '莫力达瓦达斡尔族自治旗',
+ 150723: '鄂伦春自治旗',
+ 150724: '鄂温克族自治旗',
+ 150725: '陈巴尔虎旗',
+ 150726: '新巴尔虎左旗',
+ 150727: '新巴尔虎右旗',
+ 150781: '满洲里市',
+ 150782: '牙克石市',
+ 150783: '扎兰屯市',
+ 150784: '额尔古纳市',
+ 150785: '根河市',
+ 150802: '临河区',
+ 150821: '五原县',
+ 150822: '磴口县',
+ 150823: '乌拉特前旗',
+ 150824: '乌拉特中旗',
+ 150825: '乌拉特后旗',
+ 150826: '杭锦后旗',
+ 150902: '集宁区',
+ 150921: '卓资县',
+ 150922: '化德县',
+ 150923: '商都县',
+ 150924: '兴和县',
+ 150925: '凉城县',
+ 150926: '察哈尔右翼前旗',
+ 150927: '察哈尔右翼中旗',
+ 150928: '察哈尔右翼后旗',
+ 150929: '四子王旗',
+ 150981: '丰镇市',
+ 152201: '乌兰浩特市',
+ 152202: '阿尔山市',
+ 152221: '科尔沁右翼前旗',
+ 152222: '科尔沁右翼中旗',
+ 152223: '扎赉特旗',
+ 152224: '突泉县',
+ 152501: '二连浩特市',
+ 152502: '锡林浩特市',
+ 152522: '阿巴嘎旗',
+ 152523: '苏尼特左旗',
+ 152524: '苏尼特右旗',
+ 152525: '东乌珠穆沁旗',
+ 152526: '西乌珠穆沁旗',
+ 152527: '太仆寺旗',
+ 152528: '镶黄旗',
+ 152529: '正镶白旗',
+ 152530: '正蓝旗',
+ 152531: '多伦县',
+ 152921: '阿拉善左旗',
+ 152922: '阿拉善右旗',
+ 152923: '额济纳旗',
+ 210102: '和平区',
+ 210103: '沈河区',
+ 210104: '大东区',
+ 210105: '皇姑区',
+ 210106: '铁西区',
+ 210111: '苏家屯区',
+ 210112: '浑南区',
+ 210113: '沈北新区',
+ 210114: '于洪区',
+ 210115: '辽中区',
+ 210123: '康平县',
+ 210124: '法库县',
+ 210181: '新民市',
+ 210202: '中山区',
+ 210203: '西岗区',
+ 210204: '沙河口区',
+ 210211: '甘井子区',
+ 210212: '旅顺口区',
+ 210213: '金州区',
+ 210214: '普兰店区',
+ 210224: '长海县',
+ 210281: '瓦房店市',
+ 210283: '庄河市',
+ 210302: '铁东区',
+ 210303: '铁西区',
+ 210304: '立山区',
+ 210311: '千山区',
+ 210321: '台安县',
+ 210323: '岫岩满族自治县',
+ 210381: '海城市',
+ 210402: '新抚区',
+ 210403: '东洲区',
+ 210404: '望花区',
+ 210411: '顺城区',
+ 210421: '抚顺县',
+ 210422: '新宾满族自治县',
+ 210423: '清原满族自治县',
+ 210502: '平山区',
+ 210503: '溪湖区',
+ 210504: '明山区',
+ 210505: '南芬区',
+ 210521: '本溪满族自治县',
+ 210522: '桓仁满族自治县',
+ 210602: '元宝区',
+ 210603: '振兴区',
+ 210604: '振安区',
+ 210624: '宽甸满族自治县',
+ 210681: '东港市',
+ 210682: '凤城市',
+ 210702: '古塔区',
+ 210703: '凌河区',
+ 210711: '太和区',
+ 210726: '黑山县',
+ 210727: '义县',
+ 210781: '凌海市',
+ 210782: '北镇市',
+ 210802: '站前区',
+ 210803: '西市区',
+ 210804: '鲅鱼圈区',
+ 210811: '老边区',
+ 210881: '盖州市',
+ 210882: '大石桥市',
+ 210902: '海州区',
+ 210903: '新邱区',
+ 210904: '太平区',
+ 210905: '清河门区',
+ 210911: '细河区',
+ 210921: '阜新蒙古族自治县',
+ 210922: '彰武县',
+ 211002: '白塔区',
+ 211003: '文圣区',
+ 211004: '宏伟区',
+ 211005: '弓长岭区',
+ 211011: '太子河区',
+ 211021: '辽阳县',
+ 211081: '灯塔市',
+ 211102: '双台子区',
+ 211103: '兴隆台区',
+ 211104: '大洼区',
+ 211122: '盘山县',
+ 211202: '银州区',
+ 211204: '清河区',
+ 211221: '铁岭县',
+ 211223: '西丰县',
+ 211224: '昌图县',
+ 211281: '调兵山市',
+ 211282: '开原市',
+ 211302: '双塔区',
+ 211303: '龙城区',
+ 211321: '朝阳县',
+ 211322: '建平县',
+ 211324: '喀喇沁左翼蒙古族自治县',
+ 211381: '北票市',
+ 211382: '凌源市',
+ 211402: '连山区',
+ 211403: '龙港区',
+ 211404: '南票区',
+ 211421: '绥中县',
+ 211422: '建昌县',
+ 211481: '兴城市',
+ 220102: '南关区',
+ 220103: '宽城区',
+ 220104: '朝阳区',
+ 220105: '二道区',
+ 220106: '绿园区',
+ 220112: '双阳区',
+ 220113: '九台区',
+ 220122: '农安县',
+ 220182: '榆树市',
+ 220183: '德惠市',
+ 220202: '昌邑区',
+ 220203: '龙潭区',
+ 220204: '船营区',
+ 220211: '丰满区',
+ 220221: '永吉县',
+ 220281: '蛟河市',
+ 220282: '桦甸市',
+ 220283: '舒兰市',
+ 220284: '磐石市',
+ 220302: '铁西区',
+ 220303: '铁东区',
+ 220322: '梨树县',
+ 220323: '伊通满族自治县',
+ 220381: '公主岭市',
+ 220382: '双辽市',
+ 220402: '龙山区',
+ 220403: '西安区',
+ 220421: '东丰县',
+ 220422: '东辽县',
+ 220502: '东昌区',
+ 220503: '二道江区',
+ 220521: '通化县',
+ 220523: '辉南县',
+ 220524: '柳河县',
+ 220581: '梅河口市',
+ 220582: '集安市',
+ 220602: '浑江区',
+ 220605: '江源区',
+ 220621: '抚松县',
+ 220622: '靖宇县',
+ 220623: '长白朝鲜族自治县',
+ 220681: '临江市',
+ 220702: '宁江区',
+ 220721: '前郭尔罗斯蒙古族自治县',
+ 220722: '长岭县',
+ 220723: '乾安县',
+ 220781: '扶余市',
+ 220802: '洮北区',
+ 220821: '镇赉县',
+ 220822: '通榆县',
+ 220881: '洮南市',
+ 220882: '大安市',
+ 222401: '延吉市',
+ 222402: '图们市',
+ 222403: '敦化市',
+ 222404: '珲春市',
+ 222405: '龙井市',
+ 222406: '和龙市',
+ 222424: '汪清县',
+ 222426: '安图县',
+ 230102: '道里区',
+ 230103: '南岗区',
+ 230104: '道外区',
+ 230108: '平房区',
+ 230109: '松北区',
+ 230110: '香坊区',
+ 230111: '呼兰区',
+ 230112: '阿城区',
+ 230113: '双城区',
+ 230123: '依兰县',
+ 230124: '方正县',
+ 230125: '宾县',
+ 230126: '巴彦县',
+ 230127: '木兰县',
+ 230128: '通河县',
+ 230129: '延寿县',
+ 230183: '尚志市',
+ 230184: '五常市',
+ 230202: '龙沙区',
+ 230203: '建华区',
+ 230204: '铁锋区',
+ 230205: '昂昂溪区',
+ 230206: '富拉尔基区',
+ 230207: '碾子山区',
+ 230208: '梅里斯达斡尔族区',
+ 230221: '龙江县',
+ 230223: '依安县',
+ 230224: '泰来县',
+ 230225: '甘南县',
+ 230227: '富裕县',
+ 230229: '克山县',
+ 230230: '克东县',
+ 230231: '拜泉县',
+ 230281: '讷河市',
+ 230302: '鸡冠区',
+ 230303: '恒山区',
+ 230304: '滴道区',
+ 230305: '梨树区',
+ 230306: '城子河区',
+ 230307: '麻山区',
+ 230321: '鸡东县',
+ 230381: '虎林市',
+ 230382: '密山市',
+ 230402: '向阳区',
+ 230403: '工农区',
+ 230404: '南山区',
+ 230405: '兴安区',
+ 230406: '东山区',
+ 230407: '兴山区',
+ 230421: '萝北县',
+ 230422: '绥滨县',
+ 230502: '尖山区',
+ 230503: '岭东区',
+ 230505: '四方台区',
+ 230506: '宝山区',
+ 230521: '集贤县',
+ 230522: '友谊县',
+ 230523: '宝清县',
+ 230524: '饶河县',
+ 230602: '萨尔图区',
+ 230603: '龙凤区',
+ 230604: '让胡路区',
+ 230605: '红岗区',
+ 230606: '大同区',
+ 230621: '肇州县',
+ 230622: '肇源县',
+ 230623: '林甸县',
+ 230624: '杜尔伯特蒙古族自治县',
+ 230702: '伊春区',
+ 230703: '南岔区',
+ 230704: '友好区',
+ 230705: '西林区',
+ 230706: '翠峦区',
+ 230707: '新青区',
+ 230708: '美溪区',
+ 230709: '金山屯区',
+ 230710: '五营区',
+ 230711: '乌马河区',
+ 230712: '汤旺河区',
+ 230713: '带岭区',
+ 230714: '乌伊岭区',
+ 230715: '红星区',
+ 230716: '上甘岭区',
+ 230722: '嘉荫县',
+ 230781: '铁力市',
+ 230803: '向阳区',
+ 230804: '前进区',
+ 230805: '东风区',
+ 230811: '郊区',
+ 230822: '桦南县',
+ 230826: '桦川县',
+ 230828: '汤原县',
+ 230881: '同江市',
+ 230882: '富锦市',
+ 230883: '抚远市',
+ 230902: '新兴区',
+ 230903: '桃山区',
+ 230904: '茄子河区',
+ 230921: '勃利县',
+ 231002: '东安区',
+ 231003: '阳明区',
+ 231004: '爱民区',
+ 231005: '西安区',
+ 231025: '林口县',
+ 231081: '绥芬河市',
+ 231083: '海林市',
+ 231084: '宁安市',
+ 231085: '穆棱市',
+ 231086: '东宁市',
+ 231102: '爱辉区',
+ 231121: '嫩江县',
+ 231123: '逊克县',
+ 231124: '孙吴县',
+ 231181: '北安市',
+ 231182: '五大连池市',
+ 231202: '北林区',
+ 231221: '望奎县',
+ 231222: '兰西县',
+ 231223: '青冈县',
+ 231224: '庆安县',
+ 231225: '明水县',
+ 231226: '绥棱县',
+ 231281: '安达市',
+ 231282: '肇东市',
+ 231283: '海伦市',
+ 232721: '呼玛县',
+ 232722: '塔河县',
+ 232723: '漠河县',
+ 310101: '黄浦区',
+ 310104: '徐汇区',
+ 310105: '长宁区',
+ 310106: '静安区',
+ 310107: '普陀区',
+ 310109: '虹口区',
+ 310110: '杨浦区',
+ 310112: '闵行区',
+ 310113: '宝山区',
+ 310114: '嘉定区',
+ 310115: '浦东新区',
+ 310116: '金山区',
+ 310117: '松江区',
+ 310118: '青浦区',
+ 310120: '奉贤区',
+ 310151: '崇明区',
+ 320102: '玄武区',
+ 320104: '秦淮区',
+ 320105: '建邺区',
+ 320106: '鼓楼区',
+ 320111: '浦口区',
+ 320113: '栖霞区',
+ 320114: '雨花台区',
+ 320115: '江宁区',
+ 320116: '六合区',
+ 320117: '溧水区',
+ 320118: '高淳区',
+ 320205: '锡山区',
+ 320206: '惠山区',
+ 320211: '滨湖区',
+ 320213: '梁溪区',
+ 320214: '新吴区',
+ 320281: '江阴市',
+ 320282: '宜兴市',
+ 320302: '鼓楼区',
+ 320303: '云龙区',
+ 320305: '贾汪区',
+ 320311: '泉山区',
+ 320312: '铜山区',
+ 320321: '丰县',
+ 320322: '沛县',
+ 320324: '睢宁县',
+ 320381: '新沂市',
+ 320382: '邳州市',
+ 320402: '天宁区',
+ 320404: '钟楼区',
+ 320411: '新北区',
+ 320412: '武进区',
+ 320413: '金坛区',
+ 320481: '溧阳市',
+ 320505: '虎丘区',
+ 320506: '吴中区',
+ 320507: '相城区',
+ 320508: '姑苏区',
+ 320509: '吴江区',
+ 320581: '常熟市',
+ 320582: '张家港市',
+ 320583: '昆山市',
+ 320585: '太仓市',
+ 320602: '崇川区',
+ 320611: '港闸区',
+ 320612: '通州区',
+ 320621: '海安县',
+ 320623: '如东县',
+ 320681: '启东市',
+ 320682: '如皋市',
+ 320684: '海门市',
+ 320703: '连云区',
+ 320706: '海州区',
+ 320707: '赣榆区',
+ 320722: '东海县',
+ 320723: '灌云县',
+ 320724: '灌南县',
+ 320803: '淮安区',
+ 320804: '淮阴区',
+ 320812: '清江浦区',
+ 320813: '洪泽区',
+ 320826: '涟水县',
+ 320830: '盱眙县',
+ 320831: '金湖县',
+ 320902: '亭湖区',
+ 320903: '盐都区',
+ 320904: '大丰区',
+ 320921: '响水县',
+ 320922: '滨海县',
+ 320923: '阜宁县',
+ 320924: '射阳县',
+ 320925: '建湖县',
+ 320981: '东台市',
+ 321002: '广陵区',
+ 321003: '邗江区',
+ 321012: '江都区',
+ 321023: '宝应县',
+ 321081: '仪征市',
+ 321084: '高邮市',
+ 321102: '京口区',
+ 321111: '润州区',
+ 321112: '丹徒区',
+ 321181: '丹阳市',
+ 321182: '扬中市',
+ 321183: '句容市',
+ 321202: '海陵区',
+ 321203: '高港区',
+ 321204: '姜堰区',
+ 321281: '兴化市',
+ 321282: '靖江市',
+ 321283: '泰兴市',
+ 321302: '宿城区',
+ 321311: '宿豫区',
+ 321322: '沭阳县',
+ 321323: '泗阳县',
+ 321324: '泗洪县',
+ 330102: '上城区',
+ 330103: '下城区',
+ 330104: '江干区',
+ 330105: '拱墅区',
+ 330106: '西湖区',
+ 330108: '滨江区',
+ 330109: '萧山区',
+ 330110: '余杭区',
+ 330111: '富阳区',
+ 330122: '桐庐县',
+ 330127: '淳安县',
+ 330182: '建德市',
+ 330185: '临安市',
+ 330203: '海曙区',
+ 330204: '江东区',
+ 330205: '江北区',
+ 330206: '北仑区',
+ 330211: '镇海区',
+ 330212: '鄞州区',
+ 330225: '象山县',
+ 330226: '宁海县',
+ 330281: '余姚市',
+ 330282: '慈溪市',
+ 330283: '奉化市',
+ 330302: '鹿城区',
+ 330303: '龙湾区',
+ 330304: '瓯海区',
+ 330305: '洞头区',
+ 330324: '永嘉县',
+ 330326: '平阳县',
+ 330327: '苍南县',
+ 330328: '文成县',
+ 330329: '泰顺县',
+ 330381: '瑞安市',
+ 330382: '乐清市',
+ 330402: '南湖区',
+ 330411: '秀洲区',
+ 330421: '嘉善县',
+ 330424: '海盐县',
+ 330481: '海宁市',
+ 330482: '平湖市',
+ 330483: '桐乡市',
+ 330502: '吴兴区',
+ 330503: '南浔区',
+ 330521: '德清县',
+ 330522: '长兴县',
+ 330523: '安吉县',
+ 330602: '越城区',
+ 330603: '柯桥区',
+ 330604: '上虞区',
+ 330624: '新昌县',
+ 330681: '诸暨市',
+ 330683: '嵊州市',
+ 330702: '婺城区',
+ 330703: '金东区',
+ 330723: '武义县',
+ 330726: '浦江县',
+ 330727: '磐安县',
+ 330781: '兰溪市',
+ 330782: '义乌市',
+ 330783: '东阳市',
+ 330784: '永康市',
+ 330802: '柯城区',
+ 330803: '衢江区',
+ 330822: '常山县',
+ 330824: '开化县',
+ 330825: '龙游县',
+ 330881: '江山市',
+ 330902: '定海区',
+ 330903: '普陀区',
+ 330921: '岱山县',
+ 330922: '嵊泗县',
+ 331002: '椒江区',
+ 331003: '黄岩区',
+ 331004: '路桥区',
+ 331021: '玉环县',
+ 331022: '三门县',
+ 331023: '天台县',
+ 331024: '仙居县',
+ 331081: '温岭市',
+ 331082: '临海市',
+ 331102: '莲都区',
+ 331121: '青田县',
+ 331122: '缙云县',
+ 331123: '遂昌县',
+ 331124: '松阳县',
+ 331125: '云和县',
+ 331126: '庆元县',
+ 331127: '景宁畲族自治县',
+ 331181: '龙泉市',
+ 340102: '瑶海区',
+ 340103: '庐阳区',
+ 340104: '蜀山区',
+ 340111: '包河区',
+ 340121: '长丰县',
+ 340122: '肥东县',
+ 340123: '肥西县',
+ 340124: '庐江县',
+ 340181: '巢湖市',
+ 340202: '镜湖区',
+ 340203: '弋江区',
+ 340207: '鸠江区',
+ 340208: '三山区',
+ 340221: '芜湖县',
+ 340222: '繁昌县',
+ 340223: '南陵县',
+ 340225: '无为县',
+ 340302: '龙子湖区',
+ 340303: '蚌山区',
+ 340304: '禹会区',
+ 340311: '淮上区',
+ 340321: '怀远县',
+ 340322: '五河县',
+ 340323: '固镇县',
+ 340402: '大通区',
+ 340403: '田家庵区',
+ 340404: '谢家集区',
+ 340405: '八公山区',
+ 340406: '潘集区',
+ 340421: '凤台县',
+ 340422: '寿县',
+ 340503: '花山区',
+ 340504: '雨山区',
+ 340506: '博望区',
+ 340521: '当涂县',
+ 340522: '含山县',
+ 340523: '和县',
+ 340602: '杜集区',
+ 340603: '相山区',
+ 340604: '烈山区',
+ 340621: '濉溪县',
+ 340705: '铜官区',
+ 340706: '义安区',
+ 340711: '郊区',
+ 340722: '枞阳县',
+ 340802: '迎江区',
+ 340803: '大观区',
+ 340811: '宜秀区',
+ 340822: '怀宁县',
+ 340824: '潜山县',
+ 340825: '太湖县',
+ 340826: '宿松县',
+ 340827: '望江县',
+ 340828: '岳西县',
+ 340881: '桐城市',
+ 341002: '屯溪区',
+ 341003: '黄山区',
+ 341004: '徽州区',
+ 341021: '歙县',
+ 341022: '休宁县',
+ 341023: '黟县',
+ 341024: '祁门县',
+ 341102: '琅琊区',
+ 341103: '南谯区',
+ 341122: '来安县',
+ 341124: '全椒县',
+ 341125: '定远县',
+ 341126: '凤阳县',
+ 341181: '天长市',
+ 341182: '明光市',
+ 341202: '颍州区',
+ 341203: '颍东区',
+ 341204: '颍泉区',
+ 341221: '临泉县',
+ 341222: '太和县',
+ 341225: '阜南县',
+ 341226: '颍上县',
+ 341282: '界首市',
+ 341302: '埇桥区',
+ 341321: '砀山县',
+ 341322: '萧县',
+ 341323: '灵璧县',
+ 341324: '泗县',
+ 341502: '金安区',
+ 341503: '裕安区',
+ 341504: '叶集区',
+ 341522: '霍邱县',
+ 341523: '舒城县',
+ 341524: '金寨县',
+ 341525: '霍山县',
+ 341602: '谯城区',
+ 341621: '涡阳县',
+ 341622: '蒙城县',
+ 341623: '利辛县',
+ 341702: '贵池区',
+ 341721: '东至县',
+ 341722: '石台县',
+ 341723: '青阳县',
+ 341802: '宣州区',
+ 341821: '郎溪县',
+ 341822: '广德县',
+ 341823: '泾县',
+ 341824: '绩溪县',
+ 341825: '旌德县',
+ 341881: '宁国市',
+ 350102: '鼓楼区',
+ 350103: '台江区',
+ 350104: '仓山区',
+ 350105: '马尾区',
+ 350111: '晋安区',
+ 350121: '闽侯县',
+ 350122: '连江县',
+ 350123: '罗源县',
+ 350124: '闽清县',
+ 350125: '永泰县',
+ 350128: '平潭县',
+ 350181: '福清市',
+ 350182: '长乐市',
+ 350203: '思明区',
+ 350205: '海沧区',
+ 350206: '湖里区',
+ 350211: '集美区',
+ 350212: '同安区',
+ 350213: '翔安区',
+ 350302: '城厢区',
+ 350303: '涵江区',
+ 350304: '荔城区',
+ 350305: '秀屿区',
+ 350322: '仙游县',
+ 350402: '梅列区',
+ 350403: '三元区',
+ 350421: '明溪县',
+ 350423: '清流县',
+ 350424: '宁化县',
+ 350425: '大田县',
+ 350426: '尤溪县',
+ 350427: '沙县',
+ 350428: '将乐县',
+ 350429: '泰宁县',
+ 350430: '建宁县',
+ 350481: '永安市',
+ 350502: '鲤城区',
+ 350503: '丰泽区',
+ 350504: '洛江区',
+ 350505: '泉港区',
+ 350521: '惠安县',
+ 350524: '安溪县',
+ 350525: '永春县',
+ 350526: '德化县',
+ 350527: '金门县',
+ 350581: '石狮市',
+ 350582: '晋江市',
+ 350583: '南安市',
+ 350602: '芗城区',
+ 350603: '龙文区',
+ 350622: '云霄县',
+ 350623: '漳浦县',
+ 350624: '诏安县',
+ 350625: '长泰县',
+ 350626: '东山县',
+ 350627: '南靖县',
+ 350628: '平和县',
+ 350629: '华安县',
+ 350681: '龙海市',
+ 350702: '延平区',
+ 350703: '建阳区',
+ 350721: '顺昌县',
+ 350722: '浦城县',
+ 350723: '光泽县',
+ 350724: '松溪县',
+ 350725: '政和县',
+ 350781: '邵武市',
+ 350782: '武夷山市',
+ 350783: '建瓯市',
+ 350802: '新罗区',
+ 350803: '永定区',
+ 350821: '长汀县',
+ 350823: '上杭县',
+ 350824: '武平县',
+ 350825: '连城县',
+ 350881: '漳平市',
+ 350902: '蕉城区',
+ 350921: '霞浦县',
+ 350922: '古田县',
+ 350923: '屏南县',
+ 350924: '寿宁县',
+ 350925: '周宁县',
+ 350926: '柘荣县',
+ 350981: '福安市',
+ 350982: '福鼎市',
+ 360102: '东湖区',
+ 360103: '西湖区',
+ 360104: '青云谱区',
+ 360105: '湾里区',
+ 360111: '青山湖区',
+ 360112: '新建区',
+ 360121: '南昌县',
+ 360123: '安义县',
+ 360124: '进贤县',
+ 360202: '昌江区',
+ 360203: '珠山区',
+ 360222: '浮梁县',
+ 360281: '乐平市',
+ 360302: '安源区',
+ 360313: '湘东区',
+ 360321: '莲花县',
+ 360322: '上栗县',
+ 360323: '芦溪县',
+ 360402: '濂溪区',
+ 360403: '浔阳区',
+ 360421: '九江县',
+ 360423: '武宁县',
+ 360424: '修水县',
+ 360425: '永修县',
+ 360426: '德安县',
+ 360428: '都昌县',
+ 360429: '湖口县',
+ 360430: '彭泽县',
+ 360481: '瑞昌市',
+ 360482: '共青城市',
+ 360483: '庐山市',
+ 360502: '渝水区',
+ 360521: '分宜县',
+ 360602: '月湖区',
+ 360622: '余江县',
+ 360681: '贵溪市',
+ 360702: '章贡区',
+ 360703: '南康区',
+ 360721: '赣县',
+ 360722: '信丰县',
+ 360723: '大余县',
+ 360724: '上犹县',
+ 360725: '崇义县',
+ 360726: '安远县',
+ 360727: '龙南县',
+ 360728: '定南县',
+ 360729: '全南县',
+ 360730: '宁都县',
+ 360731: '于都县',
+ 360732: '兴国县',
+ 360733: '会昌县',
+ 360734: '寻乌县',
+ 360735: '石城县',
+ 360781: '瑞金市',
+ 360802: '吉州区',
+ 360803: '青原区',
+ 360821: '吉安县',
+ 360822: '吉水县',
+ 360823: '峡江县',
+ 360824: '新干县',
+ 360825: '永丰县',
+ 360826: '泰和县',
+ 360827: '遂川县',
+ 360828: '万安县',
+ 360829: '安福县',
+ 360830: '永新县',
+ 360881: '井冈山市',
+ 360902: '袁州区',
+ 360921: '奉新县',
+ 360922: '万载县',
+ 360923: '上高县',
+ 360924: '宜丰县',
+ 360925: '靖安县',
+ 360926: '铜鼓县',
+ 360981: '丰城市',
+ 360982: '樟树市',
+ 360983: '高安市',
+ 361002: '临川区',
+ 361021: '南城县',
+ 361022: '黎川县',
+ 361023: '南丰县',
+ 361024: '崇仁县',
+ 361025: '乐安县',
+ 361026: '宜黄县',
+ 361027: '金溪县',
+ 361028: '资溪县',
+ 361029: '东乡县',
+ 361030: '广昌县',
+ 361102: '信州区',
+ 361103: '广丰区',
+ 361121: '上饶县',
+ 361123: '玉山县',
+ 361124: '铅山县',
+ 361125: '横峰县',
+ 361126: '弋阳县',
+ 361127: '余干县',
+ 361128: '鄱阳县',
+ 361129: '万年县',
+ 361130: '婺源县',
+ 361181: '德兴市',
+ 370102: '历下区',
+ 370103: '市中区',
+ 370104: '槐荫区',
+ 370105: '天桥区',
+ 370112: '历城区',
+ 370113: '长清区',
+ 370124: '平阴县',
+ 370125: '济阳县',
+ 370126: '商河县',
+ 370181: '章丘市',
+ 370202: '市南区',
+ 370203: '市北区',
+ 370211: '黄岛区',
+ 370212: '崂山区',
+ 370213: '李沧区',
+ 370214: '城阳区',
+ 370281: '胶州市',
+ 370282: '即墨市',
+ 370283: '平度市',
+ 370285: '莱西市',
+ 370302: '淄川区',
+ 370303: '张店区',
+ 370304: '博山区',
+ 370305: '临淄区',
+ 370306: '周村区',
+ 370321: '桓台县',
+ 370322: '高青县',
+ 370323: '沂源县',
+ 370402: '市中区',
+ 370403: '薛城区',
+ 370404: '峄城区',
+ 370405: '台儿庄区',
+ 370406: '山亭区',
+ 370481: '滕州市',
+ 370502: '东营区',
+ 370503: '河口区',
+ 370505: '垦利区',
+ 370522: '利津县',
+ 370523: '广饶县',
+ 370602: '芝罘区',
+ 370611: '福山区',
+ 370612: '牟平区',
+ 370613: '莱山区',
+ 370634: '长岛县',
+ 370681: '龙口市',
+ 370682: '莱阳市',
+ 370683: '莱州市',
+ 370684: '蓬莱市',
+ 370685: '招远市',
+ 370686: '栖霞市',
+ 370687: '海阳市',
+ 370702: '潍城区',
+ 370703: '寒亭区',
+ 370704: '坊子区',
+ 370705: '奎文区',
+ 370724: '临朐县',
+ 370725: '昌乐县',
+ 370781: '青州市',
+ 370782: '诸城市',
+ 370783: '寿光市',
+ 370784: '安丘市',
+ 370785: '高密市',
+ 370786: '昌邑市',
+ 370811: '任城区',
+ 370812: '兖州区',
+ 370826: '微山县',
+ 370827: '鱼台县',
+ 370828: '金乡县',
+ 370829: '嘉祥县',
+ 370830: '汶上县',
+ 370831: '泗水县',
+ 370832: '梁山县',
+ 370881: '曲阜市',
+ 370883: '邹城市',
+ 370902: '泰山区',
+ 370911: '岱岳区',
+ 370921: '宁阳县',
+ 370923: '东平县',
+ 370982: '新泰市',
+ 370983: '肥城市',
+ 371002: '环翠区',
+ 371003: '文登区',
+ 371082: '荣成市',
+ 371083: '乳山市',
+ 371102: '东港区',
+ 371103: '岚山区',
+ 371121: '五莲县',
+ 371122: '莒县',
+ 371202: '莱城区',
+ 371203: '钢城区',
+ 371302: '兰山区',
+ 371311: '罗庄区',
+ 371312: '河东区',
+ 371321: '沂南县',
+ 371322: '郯城县',
+ 371323: '沂水县',
+ 371324: '兰陵县',
+ 371325: '费县',
+ 371326: '平邑县',
+ 371327: '莒南县',
+ 371328: '蒙阴县',
+ 371329: '临沭县',
+ 371402: '德城区',
+ 371403: '陵城区',
+ 371422: '宁津县',
+ 371423: '庆云县',
+ 371424: '临邑县',
+ 371425: '齐河县',
+ 371426: '平原县',
+ 371427: '夏津县',
+ 371428: '武城县',
+ 371481: '乐陵市',
+ 371482: '禹城市',
+ 371502: '东昌府区',
+ 371521: '阳谷县',
+ 371522: '莘县',
+ 371523: '茌平县',
+ 371524: '东阿县',
+ 371525: '冠县',
+ 371526: '高唐县',
+ 371581: '临清市',
+ 371602: '滨城区',
+ 371603: '沾化区',
+ 371621: '惠民县',
+ 371622: '阳信县',
+ 371623: '无棣县',
+ 371625: '博兴县',
+ 371626: '邹平县',
+ 371702: '牡丹区',
+ 371703: '定陶区',
+ 371721: '曹县',
+ 371722: '单县',
+ 371723: '成武县',
+ 371724: '巨野县',
+ 371725: '郓城县',
+ 371726: '鄄城县',
+ 371728: '东明县',
+ 410102: '中原区',
+ 410103: '二七区',
+ 410104: '管城回族区',
+ 410105: '金水区',
+ 410106: '上街区',
+ 410108: '惠济区',
+ 410122: '中牟县',
+ 410181: '巩义市',
+ 410182: '荥阳市',
+ 410183: '新密市',
+ 410184: '新郑市',
+ 410185: '登封市',
+ 410202: '龙亭区',
+ 410203: '顺河回族区',
+ 410204: '鼓楼区',
+ 410205: '禹王台区',
+ 410211: '金明区',
+ 410212: '祥符区',
+ 410221: '杞县',
+ 410222: '通许县',
+ 410223: '尉氏县',
+ 410225: '兰考县',
+ 410302: '老城区',
+ 410303: '西工区',
+ 410304: '瀍河回族区',
+ 410305: '涧西区',
+ 410306: '吉利区',
+ 410311: '洛龙区',
+ 410322: '孟津县',
+ 410323: '新安县',
+ 410324: '栾川县',
+ 410325: '嵩县',
+ 410326: '汝阳县',
+ 410327: '宜阳县',
+ 410328: '洛宁县',
+ 410329: '伊川县',
+ 410381: '偃师市',
+ 410402: '新华区',
+ 410403: '卫东区',
+ 410404: '石龙区',
+ 410411: '湛河区',
+ 410421: '宝丰县',
+ 410422: '叶县',
+ 410423: '鲁山县',
+ 410425: '郏县',
+ 410481: '舞钢市',
+ 410482: '汝州市',
+ 410502: '文峰区',
+ 410503: '北关区',
+ 410505: '殷都区',
+ 410506: '龙安区',
+ 410522: '安阳县',
+ 410523: '汤阴县',
+ 410526: '滑县',
+ 410527: '内黄县',
+ 410581: '林州市',
+ 410602: '鹤山区',
+ 410603: '山城区',
+ 410611: '淇滨区',
+ 410621: '浚县',
+ 410622: '淇县',
+ 410702: '红旗区',
+ 410703: '卫滨区',
+ 410704: '凤泉区',
+ 410711: '牧野区',
+ 410721: '新乡县',
+ 410724: '获嘉县',
+ 410725: '原阳县',
+ 410726: '延津县',
+ 410727: '封丘县',
+ 410728: '长垣县',
+ 410781: '卫辉市',
+ 410782: '辉县市',
+ 410802: '解放区',
+ 410803: '中站区',
+ 410804: '马村区',
+ 410811: '山阳区',
+ 410821: '修武县',
+ 410822: '博爱县',
+ 410823: '武陟县',
+ 410825: '温县',
+ 410882: '沁阳市',
+ 410883: '孟州市',
+ 410902: '华龙区',
+ 410922: '清丰县',
+ 410923: '南乐县',
+ 410926: '范县',
+ 410927: '台前县',
+ 410928: '濮阳县',
+ 411002: '魏都区',
+ 411023: '许昌县',
+ 411024: '鄢陵县',
+ 411025: '襄城县',
+ 411081: '禹州市',
+ 411082: '长葛市',
+ 411102: '源汇区',
+ 411103: '郾城区',
+ 411104: '召陵区',
+ 411121: '舞阳县',
+ 411122: '临颍县',
+ 411202: '湖滨区',
+ 411203: '陕州区',
+ 411221: '渑池县',
+ 411224: '卢氏县',
+ 411281: '义马市',
+ 411282: '灵宝市',
+ 411302: '宛城区',
+ 411303: '卧龙区',
+ 411321: '南召县',
+ 411322: '方城县',
+ 411323: '西峡县',
+ 411324: '镇平县',
+ 411325: '内乡县',
+ 411326: '淅川县',
+ 411327: '社旗县',
+ 411328: '唐河县',
+ 411329: '新野县',
+ 411330: '桐柏县',
+ 411381: '邓州市',
+ 411402: '梁园区',
+ 411403: '睢阳区',
+ 411421: '民权县',
+ 411422: '睢县',
+ 411423: '宁陵县',
+ 411424: '柘城县',
+ 411425: '虞城县',
+ 411426: '夏邑县',
+ 411481: '永城市',
+ 411502: '浉河区',
+ 411503: '平桥区',
+ 411521: '罗山县',
+ 411522: '光山县',
+ 411523: '新县',
+ 411524: '商城县',
+ 411525: '固始县',
+ 411526: '潢川县',
+ 411527: '淮滨县',
+ 411528: '息县',
+ 411602: '川汇区',
+ 411621: '扶沟县',
+ 411622: '西华县',
+ 411623: '商水县',
+ 411624: '沈丘县',
+ 411625: '郸城县',
+ 411626: '淮阳县',
+ 411627: '太康县',
+ 411628: '鹿邑县',
+ 411681: '项城市',
+ 411702: '驿城区',
+ 411721: '西平县',
+ 411722: '上蔡县',
+ 411723: '平舆县',
+ 411724: '正阳县',
+ 411725: '确山县',
+ 411726: '泌阳县',
+ 411727: '汝南县',
+ 411728: '遂平县',
+ 411729: '新蔡县',
+ 419001: '济源市',
+ 420102: '江岸区',
+ 420103: '江汉区',
+ 420104: '硚口区',
+ 420105: '汉阳区',
+ 420106: '武昌区',
+ 420107: '青山区',
+ 420111: '洪山区',
+ 420112: '东西湖区',
+ 420113: '汉南区',
+ 420114: '蔡甸区',
+ 420115: '江夏区',
+ 420116: '黄陂区',
+ 420117: '新洲区',
+ 420202: '黄石港区',
+ 420203: '西塞山区',
+ 420204: '下陆区',
+ 420205: '铁山区',
+ 420222: '阳新县',
+ 420281: '大冶市',
+ 420302: '茅箭区',
+ 420303: '张湾区',
+ 420304: '郧阳区',
+ 420322: '郧西县',
+ 420323: '竹山县',
+ 420324: '竹溪县',
+ 420325: '房县',
+ 420381: '丹江口市',
+ 420502: '西陵区',
+ 420503: '伍家岗区',
+ 420504: '点军区',
+ 420505: '猇亭区',
+ 420506: '夷陵区',
+ 420525: '远安县',
+ 420526: '兴山县',
+ 420527: '秭归县',
+ 420528: '长阳土家族自治县',
+ 420529: '五峰土家族自治县',
+ 420581: '宜都市',
+ 420582: '当阳市',
+ 420583: '枝江市',
+ 420602: '襄城区',
+ 420606: '樊城区',
+ 420607: '襄州区',
+ 420624: '南漳县',
+ 420625: '谷城县',
+ 420626: '保康县',
+ 420682: '老河口市',
+ 420683: '枣阳市',
+ 420684: '宜城市',
+ 420702: '梁子湖区',
+ 420703: '华容区',
+ 420704: '鄂城区',
+ 420802: '东宝区',
+ 420804: '掇刀区',
+ 420821: '京山县',
+ 420822: '沙洋县',
+ 420881: '钟祥市',
+ 420902: '孝南区',
+ 420921: '孝昌县',
+ 420922: '大悟县',
+ 420923: '云梦县',
+ 420981: '应城市',
+ 420982: '安陆市',
+ 420984: '汉川市',
+ 421002: '沙市区',
+ 421003: '荆州区',
+ 421022: '公安县',
+ 421023: '监利县',
+ 421024: '江陵县',
+ 421081: '石首市',
+ 421083: '洪湖市',
+ 421087: '松滋市',
+ 421102: '黄州区',
+ 421121: '团风县',
+ 421122: '红安县',
+ 421123: '罗田县',
+ 421124: '英山县',
+ 421125: '浠水县',
+ 421126: '蕲春县',
+ 421127: '黄梅县',
+ 421181: '麻城市',
+ 421182: '武穴市',
+ 421202: '咸安区',
+ 421221: '嘉鱼县',
+ 421222: '通城县',
+ 421223: '崇阳县',
+ 421224: '通山县',
+ 421281: '赤壁市',
+ 421303: '曾都区',
+ 421321: '随县',
+ 421381: '广水市',
+ 422801: '恩施市',
+ 422802: '利川市',
+ 422822: '建始县',
+ 422823: '巴东县',
+ 422825: '宣恩县',
+ 422826: '咸丰县',
+ 422827: '来凤县',
+ 422828: '鹤峰县',
+ 429004: '仙桃市',
+ 429005: '潜江市',
+ 429006: '天门市',
+ 429021: '神农架林区',
+ 430102: '芙蓉区',
+ 430103: '天心区',
+ 430104: '岳麓区',
+ 430105: '开福区',
+ 430111: '雨花区',
+ 430112: '望城区',
+ 430121: '长沙县',
+ 430124: '宁乡县',
+ 430181: '浏阳市',
+ 430202: '荷塘区',
+ 430203: '芦淞区',
+ 430204: '石峰区',
+ 430211: '天元区',
+ 430221: '株洲县',
+ 430223: '攸县',
+ 430224: '茶陵县',
+ 430225: '炎陵县',
+ 430281: '醴陵市',
+ 430302: '雨湖区',
+ 430304: '岳塘区',
+ 430321: '湘潭县',
+ 430381: '湘乡市',
+ 430382: '韶山市',
+ 430405: '珠晖区',
+ 430406: '雁峰区',
+ 430407: '石鼓区',
+ 430408: '蒸湘区',
+ 430412: '南岳区',
+ 430421: '衡阳县',
+ 430422: '衡南县',
+ 430423: '衡山县',
+ 430424: '衡东县',
+ 430426: '祁东县',
+ 430481: '耒阳市',
+ 430482: '常宁市',
+ 430502: '双清区',
+ 430503: '大祥区',
+ 430511: '北塔区',
+ 430521: '邵东县',
+ 430522: '新邵县',
+ 430523: '邵阳县',
+ 430524: '隆回县',
+ 430525: '洞口县',
+ 430527: '绥宁县',
+ 430528: '新宁县',
+ 430529: '城步苗族自治县',
+ 430581: '武冈市',
+ 430602: '岳阳楼区',
+ 430603: '云溪区',
+ 430611: '君山区',
+ 430621: '岳阳县',
+ 430623: '华容县',
+ 430624: '湘阴县',
+ 430626: '平江县',
+ 430681: '汨罗市',
+ 430682: '临湘市',
+ 430702: '武陵区',
+ 430703: '鼎城区',
+ 430721: '安乡县',
+ 430722: '汉寿县',
+ 430723: '澧县',
+ 430724: '临澧县',
+ 430725: '桃源县',
+ 430726: '石门县',
+ 430781: '津市市',
+ 430802: '永定区',
+ 430811: '武陵源区',
+ 430821: '慈利县',
+ 430822: '桑植县',
+ 430902: '资阳区',
+ 430903: '赫山区',
+ 430921: '南县',
+ 430922: '桃江县',
+ 430923: '安化县',
+ 430981: '沅江市',
+ 431002: '北湖区',
+ 431003: '苏仙区',
+ 431021: '桂阳县',
+ 431022: '宜章县',
+ 431023: '永兴县',
+ 431024: '嘉禾县',
+ 431025: '临武县',
+ 431026: '汝城县',
+ 431027: '桂东县',
+ 431028: '安仁县',
+ 431081: '资兴市',
+ 431102: '零陵区',
+ 431103: '冷水滩区',
+ 431121: '祁阳县',
+ 431122: '东安县',
+ 431123: '双牌县',
+ 431124: '道县',
+ 431125: '江永县',
+ 431126: '宁远县',
+ 431127: '蓝山县',
+ 431128: '新田县',
+ 431129: '江华瑶族自治县',
+ 431202: '鹤城区',
+ 431221: '中方县',
+ 431222: '沅陵县',
+ 431223: '辰溪县',
+ 431224: '溆浦县',
+ 431225: '会同县',
+ 431226: '麻阳苗族自治县',
+ 431227: '新晃侗族自治县',
+ 431228: '芷江侗族自治县',
+ 431229: '靖州苗族侗族自治县',
+ 431230: '通道侗族自治县',
+ 431281: '洪江市',
+ 431302: '娄星区',
+ 431321: '双峰县',
+ 431322: '新化县',
+ 431381: '冷水江市',
+ 431382: '涟源市',
+ 433101: '吉首市',
+ 433122: '泸溪县',
+ 433123: '凤凰县',
+ 433124: '花垣县',
+ 433125: '保靖县',
+ 433126: '古丈县',
+ 433127: '永顺县',
+ 433130: '龙山县',
+ 440103: '荔湾区',
+ 440104: '越秀区',
+ 440105: '海珠区',
+ 440106: '天河区',
+ 440111: '白云区',
+ 440112: '黄埔区',
+ 440113: '番禺区',
+ 440114: '花都区',
+ 440115: '南沙区',
+ 440117: '从化区',
+ 440118: '增城区',
+ 440203: '武江区',
+ 440204: '浈江区',
+ 440205: '曲江区',
+ 440222: '始兴县',
+ 440224: '仁化县',
+ 440229: '翁源县',
+ 440232: '乳源瑶族自治县',
+ 440233: '新丰县',
+ 440281: '乐昌市',
+ 440282: '南雄市',
+ 440303: '罗湖区',
+ 440304: '福田区',
+ 440305: '南山区',
+ 440306: '宝安区',
+ 440307: '龙岗区',
+ 440308: '盐田区',
+ 440402: '香洲区',
+ 440403: '斗门区',
+ 440404: '金湾区',
+ 440507: '龙湖区',
+ 440511: '金平区',
+ 440512: '濠江区',
+ 440513: '潮阳区',
+ 440514: '潮南区',
+ 440515: '澄海区',
+ 440523: '南澳县',
+ 440604: '禅城区',
+ 440605: '南海区',
+ 440606: '顺德区',
+ 440607: '三水区',
+ 440608: '高明区',
+ 440703: '蓬江区',
+ 440704: '江海区',
+ 440705: '新会区',
+ 440781: '台山市',
+ 440783: '开平市',
+ 440784: '鹤山市',
+ 440785: '恩平市',
+ 440802: '赤坎区',
+ 440803: '霞山区',
+ 440804: '坡头区',
+ 440811: '麻章区',
+ 440823: '遂溪县',
+ 440825: '徐闻县',
+ 440881: '廉江市',
+ 440882: '雷州市',
+ 440883: '吴川市',
+ 440902: '茂南区',
+ 440904: '电白区',
+ 440981: '高州市',
+ 440982: '化州市',
+ 440983: '信宜市',
+ 441202: '端州区',
+ 441203: '鼎湖区',
+ 441204: '高要区',
+ 441223: '广宁县',
+ 441224: '怀集县',
+ 441225: '封开县',
+ 441226: '德庆县',
+ 441284: '四会市',
+ 441302: '惠城区',
+ 441303: '惠阳区',
+ 441322: '博罗县',
+ 441323: '惠东县',
+ 441324: '龙门县',
+ 441402: '梅江区',
+ 441403: '梅县区',
+ 441422: '大埔县',
+ 441423: '丰顺县',
+ 441424: '五华县',
+ 441426: '平远县',
+ 441427: '蕉岭县',
+ 441481: '兴宁市',
+ 441502: '城区',
+ 441521: '海丰县',
+ 441523: '陆河县',
+ 441581: '陆丰市',
+ 441602: '源城区',
+ 441621: '紫金县',
+ 441622: '龙川县',
+ 441623: '连平县',
+ 441624: '和平县',
+ 441625: '东源县',
+ 441702: '江城区',
+ 441704: '阳东区',
+ 441721: '阳西县',
+ 441781: '阳春市',
+ 441802: '清城区',
+ 441803: '清新区',
+ 441821: '佛冈县',
+ 441823: '阳山县',
+ 441825: '连山壮族瑶族自治县',
+ 441826: '连南瑶族自治县',
+ 441881: '英德市',
+ 441882: '连州市',
+ 441900: '东莞市',
+ 442000: '中山市',
+ 445102: '湘桥区',
+ 445103: '潮安区',
+ 445122: '饶平县',
+ 445202: '榕城区',
+ 445203: '揭东区',
+ 445222: '揭西县',
+ 445224: '惠来县',
+ 445281: '普宁市',
+ 445302: '云城区',
+ 445303: '云安区',
+ 445321: '新兴县',
+ 445322: '郁南县',
+ 445381: '罗定市',
+ 450102: '兴宁区',
+ 450103: '青秀区',
+ 450105: '江南区',
+ 450107: '西乡塘区',
+ 450108: '良庆区',
+ 450109: '邕宁区',
+ 450110: '武鸣区',
+ 450123: '隆安县',
+ 450124: '马山县',
+ 450125: '上林县',
+ 450126: '宾阳县',
+ 450127: '横县',
+ 450202: '城中区',
+ 450203: '鱼峰区',
+ 450204: '柳南区',
+ 450205: '柳北区',
+ 450206: '柳江区',
+ 450222: '柳城县',
+ 450223: '鹿寨县',
+ 450224: '融安县',
+ 450225: '融水苗族自治县',
+ 450226: '三江侗族自治县',
+ 450302: '秀峰区',
+ 450303: '叠彩区',
+ 450304: '象山区',
+ 450305: '七星区',
+ 450311: '雁山区',
+ 450312: '临桂区',
+ 450321: '阳朔县',
+ 450323: '灵川县',
+ 450324: '全州县',
+ 450325: '兴安县',
+ 450326: '永福县',
+ 450327: '灌阳县',
+ 450328: '龙胜各族自治县',
+ 450329: '资源县',
+ 450330: '平乐县',
+ 450331: '荔浦县',
+ 450332: '恭城瑶族自治县',
+ 450403: '万秀区',
+ 450405: '长洲区',
+ 450406: '龙圩区',
+ 450421: '苍梧县',
+ 450422: '藤县',
+ 450423: '蒙山县',
+ 450481: '岑溪市',
+ 450502: '海城区',
+ 450503: '银海区',
+ 450512: '铁山港区',
+ 450521: '合浦县',
+ 450602: '港口区',
+ 450603: '防城区',
+ 450621: '上思县',
+ 450681: '东兴市',
+ 450702: '钦南区',
+ 450703: '钦北区',
+ 450721: '灵山县',
+ 450722: '浦北县',
+ 450802: '港北区',
+ 450803: '港南区',
+ 450804: '覃塘区',
+ 450821: '平南县',
+ 450881: '桂平市',
+ 450902: '玉州区',
+ 450903: '福绵区',
+ 450921: '容县',
+ 450922: '陆川县',
+ 450923: '博白县',
+ 450924: '兴业县',
+ 450981: '北流市',
+ 451002: '右江区',
+ 451021: '田阳县',
+ 451022: '田东县',
+ 451023: '平果县',
+ 451024: '德保县',
+ 451026: '那坡县',
+ 451027: '凌云县',
+ 451028: '乐业县',
+ 451029: '田林县',
+ 451030: '西林县',
+ 451031: '隆林各族自治县',
+ 451081: '靖西市',
+ 451102: '八步区',
+ 451103: '平桂区',
+ 451121: '昭平县',
+ 451122: '钟山县',
+ 451123: '富川瑶族自治县',
+ 451202: '金城江区',
+ 451221: '南丹县',
+ 451222: '天峨县',
+ 451223: '凤山县',
+ 451224: '东兰县',
+ 451225: '罗城仫佬族自治县',
+ 451226: '环江毛南族自治县',
+ 451227: '巴马瑶族自治县',
+ 451228: '都安瑶族自治县',
+ 451229: '大化瑶族自治县',
+ 451281: '宜州市',
+ 451302: '兴宾区',
+ 451321: '忻城县',
+ 451322: '象州县',
+ 451323: '武宣县',
+ 451324: '金秀瑶族自治县',
+ 451381: '合山市',
+ 451402: '江州区',
+ 451421: '扶绥县',
+ 451422: '宁明县',
+ 451423: '龙州县',
+ 451424: '大新县',
+ 451425: '天等县',
+ 451481: '凭祥市',
+ 460105: '秀英区',
+ 460106: '龙华区',
+ 460107: '琼山区',
+ 460108: '美兰区',
+ 460201: '市辖区',
+ 460202: '海棠区',
+ 460203: '吉阳区',
+ 460204: '天涯区',
+ 460205: '崖州区',
+ 460321: '西沙群岛',
+ 460322: '南沙群岛',
+ 460323: '中沙群岛的岛礁及其海域',
+ 460400: '儋州市',
+ 469001: '五指山市',
+ 469002: '琼海市',
+ 469005: '文昌市',
+ 469006: '万宁市',
+ 469007: '东方市',
+ 469021: '定安县',
+ 469022: '屯昌县',
+ 469023: '澄迈县',
+ 469024: '临高县',
+ 469025: '白沙黎族自治县',
+ 469026: '昌江黎族自治县',
+ 469027: '乐东黎族自治县',
+ 469028: '陵水黎族自治县',
+ 469029: '保亭黎族苗族自治县',
+ 469030: '琼中黎族苗族自治县',
+ 500101: '万州区',
+ 500102: '涪陵区',
+ 500103: '渝中区',
+ 500104: '大渡口区',
+ 500105: '江北区',
+ 500106: '沙坪坝区',
+ 500107: '九龙坡区',
+ 500108: '南岸区',
+ 500109: '北碚区',
+ 500110: '綦江区',
+ 500111: '大足区',
+ 500112: '渝北区',
+ 500113: '巴南区',
+ 500114: '黔江区',
+ 500115: '长寿区',
+ 500116: '江津区',
+ 500117: '合川区',
+ 500118: '永川区',
+ 500119: '南川区',
+ 500120: '璧山区',
+ 500151: '铜梁区',
+ 500152: '潼南区',
+ 500153: '荣昌区',
+ 500154: '开州区',
+ 500228: '梁平县',
+ 500229: '城口县',
+ 500230: '丰都县',
+ 500231: '垫江县',
+ 500232: '武隆县',
+ 500233: '忠县',
+ 500235: '云阳县',
+ 500236: '奉节县',
+ 500237: '巫山县',
+ 500238: '巫溪县',
+ 500240: '石柱土家族自治县',
+ 500241: '秀山土家族苗族自治县',
+ 500242: '酉阳土家族苗族自治县',
+ 500243: '彭水苗族土家族自治县',
+ 510104: '锦江区',
+ 510105: '青羊区',
+ 510106: '金牛区',
+ 510107: '武侯区',
+ 510108: '成华区',
+ 510112: '龙泉驿区',
+ 510113: '青白江区',
+ 510114: '新都区',
+ 510115: '温江区',
+ 510116: '双流区',
+ 510121: '金堂县',
+ 510124: '郫县',
+ 510129: '大邑县',
+ 510131: '蒲江县',
+ 510132: '新津县',
+ 510181: '都江堰市',
+ 510182: '彭州市',
+ 510183: '邛崃市',
+ 510184: '崇州市',
+ 510185: '简阳市',
+ 510302: '自流井区',
+ 510303: '贡井区',
+ 510304: '大安区',
+ 510311: '沿滩区',
+ 510321: '荣县',
+ 510322: '富顺县',
+ 510402: '东区',
+ 510403: '西区',
+ 510411: '仁和区',
+ 510421: '米易县',
+ 510422: '盐边县',
+ 510502: '江阳区',
+ 510503: '纳溪区',
+ 510504: '龙马潭区',
+ 510521: '泸县',
+ 510522: '合江县',
+ 510524: '叙永县',
+ 510525: '古蔺县',
+ 510603: '旌阳区',
+ 510623: '中江县',
+ 510626: '罗江县',
+ 510681: '广汉市',
+ 510682: '什邡市',
+ 510683: '绵竹市',
+ 510703: '涪城区',
+ 510704: '游仙区',
+ 510705: '安州区',
+ 510722: '三台县',
+ 510723: '盐亭县',
+ 510725: '梓潼县',
+ 510726: '北川羌族自治县',
+ 510727: '平武县',
+ 510781: '江油市',
+ 510802: '利州区',
+ 510811: '昭化区',
+ 510812: '朝天区',
+ 510821: '旺苍县',
+ 510822: '青川县',
+ 510823: '剑阁县',
+ 510824: '苍溪县',
+ 510903: '船山区',
+ 510904: '安居区',
+ 510921: '蓬溪县',
+ 510922: '射洪县',
+ 510923: '大英县',
+ 511002: '市中区',
+ 511011: '东兴区',
+ 511024: '威远县',
+ 511025: '资中县',
+ 511028: '隆昌县',
+ 511102: '市中区',
+ 511111: '沙湾区',
+ 511112: '五通桥区',
+ 511113: '金口河区',
+ 511123: '犍为县',
+ 511124: '井研县',
+ 511126: '夹江县',
+ 511129: '沐川县',
+ 511132: '峨边彝族自治县',
+ 511133: '马边彝族自治县',
+ 511181: '峨眉山市',
+ 511302: '顺庆区',
+ 511303: '高坪区',
+ 511304: '嘉陵区',
+ 511321: '南部县',
+ 511322: '营山县',
+ 511323: '蓬安县',
+ 511324: '仪陇县',
+ 511325: '西充县',
+ 511381: '阆中市',
+ 511402: '东坡区',
+ 511403: '彭山区',
+ 511421: '仁寿县',
+ 511423: '洪雅县',
+ 511424: '丹棱县',
+ 511425: '青神县',
+ 511502: '翠屏区',
+ 511503: '南溪区',
+ 511521: '宜宾县',
+ 511523: '江安县',
+ 511524: '长宁县',
+ 511525: '高县',
+ 511526: '珙县',
+ 511527: '筠连县',
+ 511528: '兴文县',
+ 511529: '屏山县',
+ 511602: '广安区',
+ 511603: '前锋区',
+ 511621: '岳池县',
+ 511622: '武胜县',
+ 511623: '邻水县',
+ 511681: '华蓥市',
+ 511702: '通川区',
+ 511703: '达川区',
+ 511722: '宣汉县',
+ 511723: '开江县',
+ 511724: '大竹县',
+ 511725: '渠县',
+ 511781: '万源市',
+ 511802: '雨城区',
+ 511803: '名山区',
+ 511822: '荥经县',
+ 511823: '汉源县',
+ 511824: '石棉县',
+ 511825: '天全县',
+ 511826: '芦山县',
+ 511827: '宝兴县',
+ 511902: '巴州区',
+ 511903: '恩阳区',
+ 511921: '通江县',
+ 511922: '南江县',
+ 511923: '平昌县',
+ 512002: '雁江区',
+ 512021: '安岳县',
+ 512022: '乐至县',
+ 513201: '马尔康市',
+ 513221: '汶川县',
+ 513222: '理县',
+ 513223: '茂县',
+ 513224: '松潘县',
+ 513225: '九寨沟县',
+ 513226: '金川县',
+ 513227: '小金县',
+ 513228: '黑水县',
+ 513230: '壤塘县',
+ 513231: '阿坝县',
+ 513232: '若尔盖县',
+ 513233: '红原县',
+ 513301: '康定市',
+ 513322: '泸定县',
+ 513323: '丹巴县',
+ 513324: '九龙县',
+ 513325: '雅江县',
+ 513326: '道孚县',
+ 513327: '炉霍县',
+ 513328: '甘孜县',
+ 513329: '新龙县',
+ 513330: '德格县',
+ 513331: '白玉县',
+ 513332: '石渠县',
+ 513333: '色达县',
+ 513334: '理塘县',
+ 513335: '巴塘县',
+ 513336: '乡城县',
+ 513337: '稻城县',
+ 513338: '得荣县',
+ 513401: '西昌市',
+ 513422: '木里藏族自治县',
+ 513423: '盐源县',
+ 513424: '德昌县',
+ 513425: '会理县',
+ 513426: '会东县',
+ 513427: '宁南县',
+ 513428: '普格县',
+ 513429: '布拖县',
+ 513430: '金阳县',
+ 513431: '昭觉县',
+ 513432: '喜德县',
+ 513433: '冕宁县',
+ 513434: '越西县',
+ 513435: '甘洛县',
+ 513436: '美姑县',
+ 513437: '雷波县',
+ 520102: '南明区',
+ 520103: '云岩区',
+ 520111: '花溪区',
+ 520112: '乌当区',
+ 520113: '白云区',
+ 520115: '观山湖区',
+ 520121: '开阳县',
+ 520122: '息烽县',
+ 520123: '修文县',
+ 520181: '清镇市',
+ 520201: '钟山区',
+ 520203: '六枝特区',
+ 520221: '水城县',
+ 520222: '盘县',
+ 520302: '红花岗区',
+ 520303: '汇川区',
+ 520304: '播州区',
+ 520322: '桐梓县',
+ 520323: '绥阳县',
+ 520324: '正安县',
+ 520325: '道真仡佬族苗族自治县',
+ 520326: '务川仡佬族苗族自治县',
+ 520327: '凤冈县',
+ 520328: '湄潭县',
+ 520329: '余庆县',
+ 520330: '习水县',
+ 520381: '赤水市',
+ 520382: '仁怀市',
+ 520402: '西秀区',
+ 520403: '平坝区',
+ 520422: '普定县',
+ 520423: '镇宁布依族苗族自治县',
+ 520424: '关岭布依族苗族自治县',
+ 520425: '紫云苗族布依族自治县',
+ 520502: '七星关区',
+ 520521: '大方县',
+ 520522: '黔西县',
+ 520523: '金沙县',
+ 520524: '织金县',
+ 520525: '纳雍县',
+ 520526: '威宁彝族回族苗族自治县',
+ 520527: '赫章县',
+ 520602: '碧江区',
+ 520603: '万山区',
+ 520621: '江口县',
+ 520622: '玉屏侗族自治县',
+ 520623: '石阡县',
+ 520624: '思南县',
+ 520625: '印江土家族苗族自治县',
+ 520626: '德江县',
+ 520627: '沿河土家族自治县',
+ 520628: '松桃苗族自治县',
+ 522301: '兴义市',
+ 522322: '兴仁县',
+ 522323: '普安县',
+ 522324: '晴隆县',
+ 522325: '贞丰县',
+ 522326: '望谟县',
+ 522327: '册亨县',
+ 522328: '安龙县',
+ 522601: '凯里市',
+ 522622: '黄平县',
+ 522623: '施秉县',
+ 522624: '三穗县',
+ 522625: '镇远县',
+ 522626: '岑巩县',
+ 522627: '天柱县',
+ 522628: '锦屏县',
+ 522629: '剑河县',
+ 522630: '台江县',
+ 522631: '黎平县',
+ 522632: '榕江县',
+ 522633: '从江县',
+ 522634: '雷山县',
+ 522635: '麻江县',
+ 522636: '丹寨县',
+ 522701: '都匀市',
+ 522702: '福泉市',
+ 522722: '荔波县',
+ 522723: '贵定县',
+ 522725: '瓮安县',
+ 522726: '独山县',
+ 522727: '平塘县',
+ 522728: '罗甸县',
+ 522729: '长顺县',
+ 522730: '龙里县',
+ 522731: '惠水县',
+ 522732: '三都水族自治县',
+ 530102: '五华区',
+ 530103: '盘龙区',
+ 530111: '官渡区',
+ 530112: '西山区',
+ 530113: '东川区',
+ 530114: '呈贡区',
+ 530122: '晋宁县',
+ 530124: '富民县',
+ 530125: '宜良县',
+ 530126: '石林彝族自治县',
+ 530127: '嵩明县',
+ 530128: '禄劝彝族苗族自治县',
+ 530129: '寻甸回族彝族自治县',
+ 530181: '安宁市',
+ 530302: '麒麟区',
+ 530303: '沾益区',
+ 530321: '马龙县',
+ 530322: '陆良县',
+ 530323: '师宗县',
+ 530324: '罗平县',
+ 530325: '富源县',
+ 530326: '会泽县',
+ 530381: '宣威市',
+ 530402: '红塔区',
+ 530403: '江川区',
+ 530422: '澄江县',
+ 530423: '通海县',
+ 530424: '华宁县',
+ 530425: '易门县',
+ 530426: '峨山彝族自治县',
+ 530427: '新平彝族傣族自治县',
+ 530428: '元江哈尼族彝族傣族自治县',
+ 530502: '隆阳区',
+ 530521: '施甸县',
+ 530523: '龙陵县',
+ 530524: '昌宁县',
+ 530581: '腾冲市',
+ 530602: '昭阳区',
+ 530621: '鲁甸县',
+ 530622: '巧家县',
+ 530623: '盐津县',
+ 530624: '大关县',
+ 530625: '永善县',
+ 530626: '绥江县',
+ 530627: '镇雄县',
+ 530628: '彝良县',
+ 530629: '威信县',
+ 530630: '水富县',
+ 530702: '古城区',
+ 530721: '玉龙纳西族自治县',
+ 530722: '永胜县',
+ 530723: '华坪县',
+ 530724: '宁蒗彝族自治县',
+ 530802: '思茅区',
+ 530821: '宁洱哈尼族彝族自治县',
+ 530822: '墨江哈尼族自治县',
+ 530823: '景东彝族自治县',
+ 530824: '景谷傣族彝族自治县',
+ 530825: '镇沅彝族哈尼族拉祜族自治县',
+ 530826: '江城哈尼族彝族自治县',
+ 530827: '孟连傣族拉祜族佤族自治县',
+ 530828: '澜沧拉祜族自治县',
+ 530829: '西盟佤族自治县',
+ 530902: '临翔区',
+ 530921: '凤庆县',
+ 530922: '云县',
+ 530923: '永德县',
+ 530924: '镇康县',
+ 530925: '双江拉祜族佤族布朗族傣族自治县',
+ 530926: '耿马傣族佤族自治县',
+ 530927: '沧源佤族自治县',
+ 532301: '楚雄市',
+ 532322: '双柏县',
+ 532323: '牟定县',
+ 532324: '南华县',
+ 532325: '姚安县',
+ 532326: '大姚县',
+ 532327: '永仁县',
+ 532328: '元谋县',
+ 532329: '武定县',
+ 532331: '禄丰县',
+ 532501: '个旧市',
+ 532502: '开远市',
+ 532503: '蒙自市',
+ 532504: '弥勒市',
+ 532523: '屏边苗族自治县',
+ 532524: '建水县',
+ 532525: '石屏县',
+ 532527: '泸西县',
+ 532528: '元阳县',
+ 532529: '红河县',
+ 532530: '金平苗族瑶族傣族自治县',
+ 532531: '绿春县',
+ 532532: '河口瑶族自治县',
+ 532601: '文山市',
+ 532622: '砚山县',
+ 532623: '西畴县',
+ 532624: '麻栗坡县',
+ 532625: '马关县',
+ 532626: '丘北县',
+ 532627: '广南县',
+ 532628: '富宁县',
+ 532801: '景洪市',
+ 532822: '勐海县',
+ 532823: '勐腊县',
+ 532901: '大理市',
+ 532922: '漾濞彝族自治县',
+ 532923: '祥云县',
+ 532924: '宾川县',
+ 532925: '弥渡县',
+ 532926: '南涧彝族自治县',
+ 532927: '巍山彝族回族自治县',
+ 532928: '永平县',
+ 532929: '云龙县',
+ 532930: '洱源县',
+ 532931: '剑川县',
+ 532932: '鹤庆县',
+ 533102: '瑞丽市',
+ 533103: '芒市',
+ 533122: '梁河县',
+ 533123: '盈江县',
+ 533124: '陇川县',
+ 533301: '泸水市',
+ 533323: '福贡县',
+ 533324: '贡山独龙族怒族自治县',
+ 533325: '兰坪白族普米族自治县',
+ 533401: '香格里拉市',
+ 533422: '德钦县',
+ 533423: '维西傈僳族自治县',
+ 540102: '城关区',
+ 540103: '堆龙德庆区',
+ 540121: '林周县',
+ 540122: '当雄县',
+ 540123: '尼木县',
+ 540124: '曲水县',
+ 540126: '达孜县',
+ 540127: '墨竹工卡县',
+ 540202: '桑珠孜区',
+ 540221: '南木林县',
+ 540222: '江孜县',
+ 540223: '定日县',
+ 540224: '萨迦县',
+ 540225: '拉孜县',
+ 540226: '昂仁县',
+ 540227: '谢通门县',
+ 540228: '白朗县',
+ 540229: '仁布县',
+ 540230: '康马县',
+ 540231: '定结县',
+ 540232: '仲巴县',
+ 540233: '亚东县',
+ 540234: '吉隆县',
+ 540235: '聂拉木县',
+ 540236: '萨嘎县',
+ 540237: '岗巴县',
+ 540302: '卡若区',
+ 540321: '江达县',
+ 540322: '贡觉县',
+ 540323: '类乌齐县',
+ 540324: '丁青县',
+ 540325: '察雅县',
+ 540326: '八宿县',
+ 540327: '左贡县',
+ 540328: '芒康县',
+ 540329: '洛隆县',
+ 540330: '边坝县',
+ 540402: '巴宜区',
+ 540421: '工布江达县',
+ 540422: '米林县',
+ 540423: '墨脱县',
+ 540424: '波密县',
+ 540425: '察隅县',
+ 540426: '朗县',
+ 540502: '乃东区',
+ 540521: '扎囊县',
+ 540522: '贡嘎县',
+ 540523: '桑日县',
+ 540524: '琼结县',
+ 540525: '曲松县',
+ 540526: '措美县',
+ 540527: '洛扎县',
+ 540528: '加查县',
+ 540529: '隆子县',
+ 540530: '错那县',
+ 540531: '浪卡子县',
+ 542421: '那曲县',
+ 542422: '嘉黎县',
+ 542423: '比如县',
+ 542424: '聂荣县',
+ 542425: '安多县',
+ 542426: '申扎县',
+ 542427: '索县',
+ 542428: '班戈县',
+ 542429: '巴青县',
+ 542430: '尼玛县',
+ 542431: '双湖县',
+ 542521: '普兰县',
+ 542522: '札达县',
+ 542523: '噶尔县',
+ 542524: '日土县',
+ 542525: '革吉县',
+ 542526: '改则县',
+ 542527: '措勤县',
+ 610102: '新城区',
+ 610103: '碑林区',
+ 610104: '莲湖区',
+ 610111: '灞桥区',
+ 610112: '未央区',
+ 610113: '雁塔区',
+ 610114: '阎良区',
+ 610115: '临潼区',
+ 610116: '长安区',
+ 610117: '高陵区',
+ 610122: '蓝田县',
+ 610124: '周至县',
+ 610125: '户县',
+ 610202: '王益区',
+ 610203: '印台区',
+ 610204: '耀州区',
+ 610222: '宜君县',
+ 610302: '渭滨区',
+ 610303: '金台区',
+ 610304: '陈仓区',
+ 610322: '凤翔县',
+ 610323: '岐山县',
+ 610324: '扶风县',
+ 610326: '眉县',
+ 610327: '陇县',
+ 610328: '千阳县',
+ 610329: '麟游县',
+ 610330: '凤县',
+ 610331: '太白县',
+ 610402: '秦都区',
+ 610403: '杨陵区',
+ 610404: '渭城区',
+ 610422: '三原县',
+ 610423: '泾阳县',
+ 610424: '乾县',
+ 610425: '礼泉县',
+ 610426: '永寿县',
+ 610427: '彬县',
+ 610428: '长武县',
+ 610429: '旬邑县',
+ 610430: '淳化县',
+ 610431: '武功县',
+ 610481: '兴平市',
+ 610502: '临渭区',
+ 610503: '华州区',
+ 610522: '潼关县',
+ 610523: '大荔县',
+ 610524: '合阳县',
+ 610525: '澄城县',
+ 610526: '蒲城县',
+ 610527: '白水县',
+ 610528: '富平县',
+ 610581: '韩城市',
+ 610582: '华阴市',
+ 610602: '宝塔区',
+ 610603: '安塞区',
+ 610621: '延长县',
+ 610622: '延川县',
+ 610623: '子长县',
+ 610625: '志丹县',
+ 610626: '吴起县',
+ 610627: '甘泉县',
+ 610628: '富县',
+ 610629: '洛川县',
+ 610630: '宜川县',
+ 610631: '黄龙县',
+ 610632: '黄陵县',
+ 610702: '汉台区',
+ 610721: '南郑县',
+ 610722: '城固县',
+ 610723: '洋县',
+ 610724: '西乡县',
+ 610725: '勉县',
+ 610726: '宁强县',
+ 610727: '略阳县',
+ 610728: '镇巴县',
+ 610729: '留坝县',
+ 610730: '佛坪县',
+ 610802: '榆阳区',
+ 610803: '横山区',
+ 610821: '神木县',
+ 610822: '府谷县',
+ 610824: '靖边县',
+ 610825: '定边县',
+ 610826: '绥德县',
+ 610827: '米脂县',
+ 610828: '佳县',
+ 610829: '吴堡县',
+ 610830: '清涧县',
+ 610831: '子洲县',
+ 610902: '汉滨区',
+ 610921: '汉阴县',
+ 610922: '石泉县',
+ 610923: '宁陕县',
+ 610924: '紫阳县',
+ 610925: '岚皋县',
+ 610926: '平利县',
+ 610927: '镇坪县',
+ 610928: '旬阳县',
+ 610929: '白河县',
+ 611002: '商州区',
+ 611021: '洛南县',
+ 611022: '丹凤县',
+ 611023: '商南县',
+ 611024: '山阳县',
+ 611025: '镇安县',
+ 611026: '柞水县',
+ 620102: '城关区',
+ 620103: '七里河区',
+ 620104: '西固区',
+ 620105: '安宁区',
+ 620111: '红古区',
+ 620121: '永登县',
+ 620122: '皋兰县',
+ 620123: '榆中县',
+ 620201: '嘉峪关市',
+ 620302: '金川区',
+ 620321: '永昌县',
+ 620402: '白银区',
+ 620403: '平川区',
+ 620421: '靖远县',
+ 620422: '会宁县',
+ 620423: '景泰县',
+ 620502: '秦州区',
+ 620503: '麦积区',
+ 620521: '清水县',
+ 620522: '秦安县',
+ 620523: '甘谷县',
+ 620524: '武山县',
+ 620525: '张家川回族自治县',
+ 620602: '凉州区',
+ 620621: '民勤县',
+ 620622: '古浪县',
+ 620623: '天祝藏族自治县',
+ 620702: '甘州区',
+ 620721: '肃南裕固族自治县',
+ 620722: '民乐县',
+ 620723: '临泽县',
+ 620724: '高台县',
+ 620725: '山丹县',
+ 620802: '崆峒区',
+ 620821: '泾川县',
+ 620822: '灵台县',
+ 620823: '崇信县',
+ 620824: '华亭县',
+ 620825: '庄浪县',
+ 620826: '静宁县',
+ 620902: '肃州区',
+ 620921: '金塔县',
+ 620922: '瓜州县',
+ 620923: '肃北蒙古族自治县',
+ 620924: '阿克塞哈萨克族自治县',
+ 620981: '玉门市',
+ 620982: '敦煌市',
+ 621002: '西峰区',
+ 621021: '庆城县',
+ 621022: '环县',
+ 621023: '华池县',
+ 621024: '合水县',
+ 621025: '正宁县',
+ 621026: '宁县',
+ 621027: '镇原县',
+ 621102: '安定区',
+ 621121: '通渭县',
+ 621122: '陇西县',
+ 621123: '渭源县',
+ 621124: '临洮县',
+ 621125: '漳县',
+ 621126: '岷县',
+ 621202: '武都区',
+ 621221: '成县',
+ 621222: '文县',
+ 621223: '宕昌县',
+ 621224: '康县',
+ 621225: '西和县',
+ 621226: '礼县',
+ 621227: '徽县',
+ 621228: '两当县',
+ 622901: '临夏市',
+ 622921: '临夏县',
+ 622922: '康乐县',
+ 622923: '永靖县',
+ 622924: '广河县',
+ 622925: '和政县',
+ 622926: '东乡族自治县',
+ 622927: '积石山保安族东乡族撒拉族自治县',
+ 623001: '合作市',
+ 623021: '临潭县',
+ 623022: '卓尼县',
+ 623023: '舟曲县',
+ 623024: '迭部县',
+ 623025: '玛曲县',
+ 623026: '碌曲县',
+ 623027: '夏河县',
+ 630102: '城东区',
+ 630103: '城中区',
+ 630104: '城西区',
+ 630105: '城北区',
+ 630121: '大通回族土族自治县',
+ 630122: '湟中县',
+ 630123: '湟源县',
+ 630202: '乐都区',
+ 630203: '平安区',
+ 630222: '民和回族土族自治县',
+ 630223: '互助土族自治县',
+ 630224: '化隆回族自治县',
+ 630225: '循化撒拉族自治县',
+ 632221: '门源回族自治县',
+ 632222: '祁连县',
+ 632223: '海晏县',
+ 632224: '刚察县',
+ 632321: '同仁县',
+ 632322: '尖扎县',
+ 632323: '泽库县',
+ 632324: '河南蒙古族自治县',
+ 632521: '共和县',
+ 632522: '同德县',
+ 632523: '贵德县',
+ 632524: '兴海县',
+ 632525: '贵南县',
+ 632621: '玛沁县',
+ 632622: '班玛县',
+ 632623: '甘德县',
+ 632624: '达日县',
+ 632625: '久治县',
+ 632626: '玛多县',
+ 632701: '玉树市',
+ 632722: '杂多县',
+ 632723: '称多县',
+ 632724: '治多县',
+ 632725: '囊谦县',
+ 632726: '曲麻莱县',
+ 632801: '格尔木市',
+ 632802: '德令哈市',
+ 632821: '乌兰县',
+ 632822: '都兰县',
+ 632823: '天峻县',
+ 640104: '兴庆区',
+ 640105: '西夏区',
+ 640106: '金凤区',
+ 640121: '永宁县',
+ 640122: '贺兰县',
+ 640181: '灵武市',
+ 640202: '大武口区',
+ 640205: '惠农区',
+ 640221: '平罗县',
+ 640302: '利通区',
+ 640303: '红寺堡区',
+ 640323: '盐池县',
+ 640324: '同心县',
+ 640381: '青铜峡市',
+ 640402: '原州区',
+ 640422: '西吉县',
+ 640423: '隆德县',
+ 640424: '泾源县',
+ 640425: '彭阳县',
+ 640502: '沙坡头区',
+ 640521: '中宁县',
+ 640522: '海原县',
+ 650102: '天山区',
+ 650103: '沙依巴克区',
+ 650104: '新市区',
+ 650105: '水磨沟区',
+ 650106: '头屯河区',
+ 650107: '达坂城区',
+ 650109: '米东区',
+ 650121: '乌鲁木齐县',
+ 650202: '独山子区',
+ 650203: '克拉玛依区',
+ 650204: '白碱滩区',
+ 650205: '乌尔禾区',
+ 650402: '高昌区',
+ 650421: '鄯善县',
+ 650422: '托克逊县',
+ 650502: '伊州区',
+ 650521: '巴里坤哈萨克自治县',
+ 650522: '伊吾县',
+ 652301: '昌吉市',
+ 652302: '阜康市',
+ 652323: '呼图壁县',
+ 652324: '玛纳斯县',
+ 652325: '奇台县',
+ 652327: '吉木萨尔县',
+ 652328: '木垒哈萨克自治县',
+ 652701: '博乐市',
+ 652702: '阿拉山口市',
+ 652722: '精河县',
+ 652723: '温泉县',
+ 652801: '库尔勒市',
+ 652822: '轮台县',
+ 652823: '尉犁县',
+ 652824: '若羌县',
+ 652825: '且末县',
+ 652826: '焉耆回族自治县',
+ 652827: '和静县',
+ 652828: '和硕县',
+ 652829: '博湖县',
+ 652901: '阿克苏市',
+ 652922: '温宿县',
+ 652923: '库车县',
+ 652924: '沙雅县',
+ 652925: '新和县',
+ 652926: '拜城县',
+ 652927: '乌什县',
+ 652928: '阿瓦提县',
+ 652929: '柯坪县',
+ 653001: '阿图什市',
+ 653022: '阿克陶县',
+ 653023: '阿合奇县',
+ 653024: '乌恰县',
+ 653101: '喀什市',
+ 653121: '疏附县',
+ 653122: '疏勒县',
+ 653123: '英吉沙县',
+ 653124: '泽普县',
+ 653125: '莎车县',
+ 653126: '叶城县',
+ 653127: '麦盖提县',
+ 653128: '岳普湖县',
+ 653129: '伽师县',
+ 653130: '巴楚县',
+ 653131: '塔什库尔干塔吉克自治县',
+ 653201: '和田市',
+ 653221: '和田县',
+ 653222: '墨玉县',
+ 653223: '皮山县',
+ 653224: '洛浦县',
+ 653225: '策勒县',
+ 653226: '于田县',
+ 653227: '民丰县',
+ 654002: '伊宁市',
+ 654003: '奎屯市',
+ 654004: '霍尔果斯市',
+ 654021: '伊宁县',
+ 654022: '察布查尔锡伯自治县',
+ 654023: '霍城县',
+ 654024: '巩留县',
+ 654025: '新源县',
+ 654026: '昭苏县',
+ 654027: '特克斯县',
+ 654028: '尼勒克县',
+ 654201: '塔城市',
+ 654202: '乌苏市',
+ 654221: '额敏县',
+ 654223: '沙湾县',
+ 654224: '托里县',
+ 654225: '裕民县',
+ 654226: '和布克赛尔蒙古自治县',
+ 654301: '阿勒泰市',
+ 654321: '布尔津县',
+ 654322: '富蕴县',
+ 654323: '福海县',
+ 654324: '哈巴河县',
+ 654325: '青河县',
+ 654326: '吉木乃县',
+ 659001: '石河子市',
+ 659002: '阿拉尔市',
+ 659003: '图木舒克市',
+ 659004: '五家渠市',
+ 659006: '铁门关市' } };
+
+
+
+function getConfig(type) {
+ return areaList && areaList["".concat(type, "_list")] || {};
+}
+
+function getList(type, code) {
+ var result = [];
+
+ if (type !== 'province' && !code) {
+ return result;
+ }
+
+ var list = getConfig(type);
+ result = Object.keys(list).map(function (code) {return {
+ code: code,
+ name: list[code] };});
+
+
+ if (code) {
+ // oversea code
+ if (code[0] === '9' && type === 'city') {
+ code = '9';
+ }
+
+ result = result.filter(function (item) {return item.code.indexOf(code) === 0;});
+ }
+
+ return result;
+} // get index by code
+
+function getIndex(type, code) {
+ var compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6;
+ var list = getList(type, code.slice(0, compareNum - 2)); // oversea code
+
+ if (code[0] === '9' && type === 'province') {
+ compareNum = 1;
+ }
+
+ code = code.slice(0, compareNum);
+
+ for (var i = 0; i < list.length; i++) {
+ if (list[i].code.slice(0, compareNum) === code) {
+ return i;
+ }
+ }
+
+ return 0;
+} // 参考 https://github.com/youzan/vant-weapp/blob/dev/packages/area/index.ts
+// 定义数据出口
+
+module.exports = {
+ areaList: areaList,
+ getList: getList,
+ getIndex: getIndex };
+
+/***/ }),
+
+/***/ 9:
+/*!************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/utils/util.js ***!
+ \************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+/* WEBPACK VAR INJECTION */(function(uni) {var api = __webpack_require__(/*! @/config/api.js */ 10);
+
+var app = getApp();
+
+function formatTime(date) {
+ var year = date.getFullYear();
+ var month = date.getMonth() + 1;
+ var day = date.getDate();
+ var hour = date.getHours();
+ var minute = date.getMinutes();
+ var second = date.getSeconds();
+ return [year, month, day].map(formatNumber).join('-') + ' ' + [hour, minute, second].map(formatNumber).join(':');
+}
+
+function formatNumber(n) {
+ n = n.toString();
+ return n[1] ? n : '0' + n;
+}
+/**
+ * 封封微信的的request
+ */
+
+function request(url) {var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};var method = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'GET';
+ return new Promise(function (resolve, reject) {
+ uni.request({
+ url: url,
+ data: data,
+ method: method,
+ header: {
+ 'Content-Type': 'application/json',
+ 'X-Litemall-Token': uni.getStorageSync('token') },
+
+ success: function success(res) {
+ if (res.statusCode == 200) {
+ if (res.data.errno == 501) {
+ // 清除登录相关内容
+ try {
+ uni.removeStorageSync('userInfo');
+ uni.removeStorageSync('token');
+ } catch (e) {
+
+ } // Do something when catch error
+ // 切换到登录页面
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ } else {
+ resolve(res.data);
+ }
+ } else {
+ reject(res.errMsg);
+ }
+ },
+ fail: function fail(err) {
+ reject(err);
+ } });
+
+ });
+}
+
+function redirect(url) {
+ //判断页面是否需要登录
+ if (false) {} else {
+ uni.redirectTo({
+ url: url });
+
+ }
+}
+
+function showErrorToast(msg) {
+ uni.showToast({
+ title: msg,
+ image: '/static/images/icon_error.png' });
+
+}
+
+module.exports = {
+ formatTime: formatTime,
+ request: request,
+ redirect: redirect,
+ showErrorToast: showErrorToast };
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ })
+
+}]);
+//# sourceMappingURL=../../.sourcemap/mp-weixin/common/vendor.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.js
new file mode 100644
index 0000000000000000000000000000000000000000..868d8ca592f281f582346ba6827a91cdf531d70f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.js
@@ -0,0 +1,264 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/about/about"],{
+
+/***/ 276:
+/*!***************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fabout%2Fabout"} ***!
+ \***************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _about = _interopRequireDefault(__webpack_require__(/*! ./pages/about/about.vue */ 277));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_about.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 277:
+/*!********************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue ***!
+ \********************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _about_vue_vue_type_template_id_92c79dbc___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./about.vue?vue&type=template&id=92c79dbc& */ 278);
+/* harmony import */ var _about_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./about.vue?vue&type=script&lang=js& */ 280);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _about_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _about_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _about_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./about.vue?vue&type=style&index=0&lang=css& */ 282);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _about_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _about_vue_vue_type_template_id_92c79dbc___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _about_vue_vue_type_template_id_92c79dbc___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _about_vue_vue_type_template_id_92c79dbc___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/about/about.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 278:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?vue&type=template&id=92c79dbc& ***!
+ \***************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_template_id_92c79dbc___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./about.vue?vue&type=template&id=92c79dbc& */ 279);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_template_id_92c79dbc___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_template_id_92c79dbc___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_template_id_92c79dbc___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_template_id_92c79dbc___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 279:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?vue&type=template&id=92c79dbc& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 280:
+/*!*********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./about.vue?vue&type=script&lang=js& */ 281);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 281:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10); //获取应用实例
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ name: 'litemall',
+ address: 'https://github.com/linlinjava/litemall',
+ latitude: '31.201900',
+ longitude: '121.587839',
+ phone: '021-xxxx-xxxx',
+ qq: '705144434' };
+
+ }
+ /**
+ * 生命周期函数--监听页面加载
+ */,
+ onLoad: function onLoad(options) {
+ this.getAbout();
+ },
+ methods: {
+ getAbout: function getAbout() {
+ var that = this;
+ util.request(api.AboutUrl).then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ name: res.data.name,
+ address: res.data.address,
+ phone: res.data.phone,
+ qq: res.data.qq,
+ latitude: res.data.latitude,
+ longitude: res.data.longitude });
+
+ }
+ });
+ },
+
+ showLocation: function showLocation(e) {
+ var that = this;
+ uni.openLocation({
+ latitude: parseFloat(that.latitude),
+ longitude: parseFloat(that.longitude),
+ name: that.name,
+ address: that.address });
+
+ },
+
+ callPhone: function callPhone(e) {
+ var that = this;
+ uni.makePhoneCall({
+ phoneNumber: that.phone });
+
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 282:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./about.vue?vue&type=style&index=0&lang=css& */ 283);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_about_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 283:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/about/about.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[276,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/about/about.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.json
new file mode 100644
index 0000000000000000000000000000000000000000..8835af0699ccec004cbe685ef938cd2d63ea7037
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.json
@@ -0,0 +1,3 @@
+{
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..6e17a91766eb2b2b5ac8a204d1eda08ba24c4764
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.wxml
@@ -0,0 +1 @@
+项目名称: {{name}} 项目地址: {{address}} 电话号码: {{phone}} QQ交流群: {{qq}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..d22cd65d1eda5b368f0b49695c99d86efdb8f757
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/about/about.wxss
@@ -0,0 +1,32 @@
+/* about.wxss */
+.label {
+ font-size: 26rpx;
+ margin-left: 20rpx;
+ padding: 10rpx 0;
+}
+.about-item {
+ background: white;
+ border-top: solid #f2f2f2 0.5rpx;
+ border-bottom: solid #f2f2f2 0.5rpx;
+ width: 100%;
+ height: 100rpx;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+}
+.item-left {
+ font-size: 38rpx;
+ margin-left: 40rpx;
+ margin-top: auto;
+ margin-bottom: auto;
+}
+.item-right {
+ margin-right: 15rpx;
+ margin-top: auto;
+ margin-bottom: auto;
+}
+.right-icon {
+ width: 40rpx;
+ height: 40rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.js
new file mode 100644
index 0000000000000000000000000000000000000000..dfeeb2008f15aa3a3ccb28f98f5b82329ce6befe
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.js
@@ -0,0 +1,322 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/auth/accountLogin/accountLogin"],{
+
+/***/ 140:
+/*!************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fauth%2FaccountLogin%2FaccountLogin"} ***!
+ \************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _accountLogin = _interopRequireDefault(__webpack_require__(/*! ./pages/auth/accountLogin/accountLogin.vue */ 141));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_accountLogin.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 141:
+/*!***************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue ***!
+ \***************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _accountLogin_vue_vue_type_template_id_f026e77e___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./accountLogin.vue?vue&type=template&id=f026e77e& */ 142);
+/* harmony import */ var _accountLogin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./accountLogin.vue?vue&type=script&lang=js& */ 144);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _accountLogin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _accountLogin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _accountLogin_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./accountLogin.vue?vue&type=style&index=0&lang=css& */ 146);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _accountLogin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _accountLogin_vue_vue_type_template_id_f026e77e___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _accountLogin_vue_vue_type_template_id_f026e77e___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _accountLogin_vue_vue_type_template_id_f026e77e___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/auth/accountLogin/accountLogin.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 142:
+/*!**********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?vue&type=template&id=f026e77e& ***!
+ \**********************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_template_id_f026e77e___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./accountLogin.vue?vue&type=template&id=f026e77e& */ 143);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_template_id_f026e77e___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_template_id_f026e77e___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_template_id_f026e77e___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_template_id_f026e77e___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 143:
+/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?vue&type=template&id=f026e77e& ***!
+ \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 144:
+/*!****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./accountLogin.vue?vue&type=script&lang=js& */ 145);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 145:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?vue&type=script&lang=js& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var user = __webpack_require__(/*! ../../../utils/user.js */ 11);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ username: {
+ length: 0 },
+
+ password: {
+ length: 0 },
+
+ code: '',
+ loginErrorCount: 0 };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ // 页面渲染完成
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ accountLogin: function accountLogin() {
+ var that = this;
+
+ if (this.password.length < 1 || this.username.length < 1) {
+ uni.showModal({
+ title: '错误信息',
+ content: '请输入用户名和密码',
+ showCancel: false });
+
+ return false;
+ }
+
+ uni.request({
+ url: api.AuthLoginByAccount,
+ data: {
+ username: that.username,
+ password: that.password },
+
+ method: 'POST',
+ header: {
+ 'content-type': 'application/json' },
+
+ success: function success(res) {
+ if (res.data.errno == 0) {
+ that.setData({
+ loginErrorCount: 0 });
+
+ app.globalData.hasLogin = true;
+ uni.setStorageSync('userInfo', res.data.data.userInfo);
+ uni.setStorage({
+ key: 'token',
+ data: res.data.data.token,
+ success: function success() {
+ uni.switchTab({
+ url: '/pages/ucenter/index/index' });
+
+ } });
+
+ } else {
+ that.setData({
+ loginErrorCount: that.loginErrorCount + 1 });
+
+ app.globalData.hasLogin = false;
+ util.showErrorToast('账户登录失败');
+ }
+ } });
+
+ },
+
+ bindUsernameInput: function bindUsernameInput(e) {
+ this.setData({
+ username: e.detail.value });
+
+ },
+
+ bindPasswordInput: function bindPasswordInput(e) {
+ this.setData({
+ password: e.detail.value });
+
+ },
+
+ bindCodeInput: function bindCodeInput(e) {
+ this.setData({
+ code: e.detail.value });
+
+ },
+
+ clearInput: function clearInput(e) {
+ switch (e.currentTarget.id) {
+ case 'clear-username':
+ this.setData({
+ username: '' });
+
+ break;
+
+ case 'clear-password':
+ this.setData({
+ password: '' });
+
+ break;
+
+ case 'clear-code':
+ this.setData({
+ code: '' });
+
+ break;}
+
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 146:
+/*!************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?vue&type=style&index=0&lang=css& ***!
+ \************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./accountLogin.vue?vue&type=style&index=0&lang=css& */ 147);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_accountLogin_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 147:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/accountLogin/accountLogin.vue?vue&type=style&index=0&lang=css& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[140,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/auth/accountLogin/accountLogin.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.json
new file mode 100644
index 0000000000000000000000000000000000000000..29c1602b6a9ce471a2a9b7571681a675975b802d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "账号登录",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..9ebede165cef7bfe1a7c67bff5ee61baf118058f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.wxml
@@ -0,0 +1 @@
+注册账号 忘记密码
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..b83c5e2860a4fb63946dcd87a35d6a023f86420f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/accountLogin/accountLogin.wxss
@@ -0,0 +1,94 @@
+.form-box {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 0 40rpx;
+ margin-top: 200rpx;
+ background: #fff;
+}
+.form-item {
+ position: relative;
+ background: #fff;
+ height: 96rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+.form-item .username,
+.form-item .password,
+.form-item .code {
+ position: absolute;
+ top: 26rpx;
+ left: 0;
+ display: block;
+ width: 100%;
+ height: 44rpx;
+ background: #fff;
+ color: #333;
+ font-size: 30rpx;
+}
+.form-item-code {
+ margin-top: 32rpx;
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+}
+.form-item-code .form-item {
+ float: left;
+ width: 350rpx;
+}
+.form-item-code .code-img {
+ float: right;
+ margin-top: 4rpx;
+ height: 88rpx;
+ width: 236rpx;
+}
+.form-item .clear {
+ position: absolute;
+ top: 32rpx;
+ right: 18rpx;
+ z-index: 2;
+ display: block;
+ background: #fff;
+}
+.login-btn {
+ margin: 60rpx 0 40rpx 0;
+ height: 96rpx;
+ line-height: 96rpx;
+ font-size: 30rpx;
+ border-radius: 6rpx;
+ width: 90%;
+ color: #fff;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: flex;
+ bottom: 0;
+ left: 0;
+ padding: 0;
+ margin-left: 5%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+.form-item-text {
+ height: 35rpx;
+ width: 100%;
+}
+.form-item-text .register {
+ display: block;
+ height: 34rpx;
+ float: left;
+ font-size: 28rpx;
+}
+.form-item-text .reset {
+ display: block;
+ height: 34rpx;
+ float: right;
+ font-size: 28rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.js
new file mode 100644
index 0000000000000000000000000000000000000000..0e72957c6d7d36bdce1ae99292c25843118300ef
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.js
@@ -0,0 +1,255 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/auth/login/login"],{
+
+/***/ 132:
+/*!**********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fauth%2Flogin%2Flogin"} ***!
+ \**********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _login = _interopRequireDefault(__webpack_require__(/*! ./pages/auth/login/login.vue */ 133));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_login.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 133:
+/*!*************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue ***!
+ \*************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _login_vue_vue_type_template_id_b50ac456___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./login.vue?vue&type=template&id=b50ac456& */ 134);
+/* harmony import */ var _login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./login.vue?vue&type=script&lang=js& */ 136);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _login_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./login.vue?vue&type=style&index=0&lang=css& */ 138);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _login_vue_vue_type_template_id_b50ac456___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _login_vue_vue_type_template_id_b50ac456___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _login_vue_vue_type_template_id_b50ac456___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/auth/login/login.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 134:
+/*!********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?vue&type=template&id=b50ac456& ***!
+ \********************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_template_id_b50ac456___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./login.vue?vue&type=template&id=b50ac456& */ 135);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_template_id_b50ac456___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_template_id_b50ac456___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_template_id_b50ac456___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_template_id_b50ac456___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 135:
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?vue&type=template&id=b50ac456& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 136:
+/*!**************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?vue&type=script&lang=js& ***!
+ \**************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./login.vue?vue&type=script&lang=js& */ 137);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 137:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var user = __webpack_require__(/*! ../../../utils/user.js */ 11);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ canIUseGetUserProfile: false };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ // 页面渲染完成
+ if (uni.getUserProfile) {
+ this.setData({
+ canIUseGetUserProfile: true });
+
+ }
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ wxLogin: function wxLogin(e) {var _this = this;
+ if (this.canIUseGetUserProfile) {
+ uni.getUserProfile({
+ desc: '用于完善会员资料',
+ // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
+ success: function success(res) {
+ _this.doLogin(res.userInfo);
+ },
+ fail: function fail() {
+ util.showErrorToast('微信登录失败');
+ } });
+
+ } else {
+ if (e.detail.userInfo == undefined) {
+ app.globalData.hasLogin = false;
+ util.showErrorToast('微信登录失败');
+ return;
+ }
+
+ this.doLogin(e.detail.userInfo);
+ }
+ },
+
+ doLogin: function doLogin(userInfo) {
+ user.checkLogin().catch(function () {
+ user.loginByWeixin(userInfo).
+ then(function (res) {
+ app.globalData.hasLogin = true;
+ uni.navigateBack({
+ delta: 1 });
+
+ }).
+ catch(function (err) {
+ app.globalData.hasLogin = false;
+ util.showErrorToast('微信登录失败');
+ });
+ });
+ },
+
+ accountLogin: function accountLogin() {
+ uni.navigateTo({
+ url: '/pages/auth/accountLogin/accountLogin' });
+
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 138:
+/*!**********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?vue&type=style&index=0&lang=css& ***!
+ \**********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./login.vue?vue&type=style&index=0&lang=css& */ 139);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_login_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 139:
+/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/login/login.vue?vue&type=style&index=0&lang=css& ***!
+ \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[132,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/auth/login/login.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.json
new file mode 100644
index 0000000000000000000000000000000000000000..e301e431183d3d73bd0252dc8b8f2960c5aaf8ca
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "登录",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..7f3d7c94847adc03facb760fd8f8511ee0651d9a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.wxml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..58926f071c12635d78675bc860d4bb79733b898d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/login/login.wxss
@@ -0,0 +1,60 @@
+.login-box {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 0 40rpx;
+ margin-top: 200rpx;
+ background: #fff;
+}
+.wx-login-btn {
+ margin: 60rpx 0 40rpx 0;
+ height: 96rpx;
+ line-height: 96rpx;
+ font-size: 30rpx;
+ border-radius: 6rpx;
+ width: 90%;
+ color: #fff;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: flex;
+ bottom: 0;
+ left: 0;
+ padding: 0;
+ margin-left: 5%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+}
+.account-login-btn {
+ width: 90%;
+ margin: 0 auto;
+ color: #fff;
+ font-size: 30rpx;
+ height: 96rpx;
+ line-height: 96rpx;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: flex;
+ bottom: 0;
+ left: 0;
+ border-radius: 0;
+ padding: 0;
+ margin-left: 5%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.js
new file mode 100644
index 0000000000000000000000000000000000000000..ed9dc2e8ac98728469354efb82084c4f2be2a4f0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.js
@@ -0,0 +1,430 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/auth/register/register"],{
+
+/***/ 148:
+/*!****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fauth%2Fregister%2Fregister"} ***!
+ \****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _register = _interopRequireDefault(__webpack_require__(/*! ./pages/auth/register/register.vue */ 149));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_register.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 149:
+/*!*******************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue ***!
+ \*******************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _register_vue_vue_type_template_id_4586e8be___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./register.vue?vue&type=template&id=4586e8be& */ 150);
+/* harmony import */ var _register_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./register.vue?vue&type=script&lang=js& */ 152);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _register_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _register_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _register_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./register.vue?vue&type=style&index=0&lang=css& */ 154);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _register_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _register_vue_vue_type_template_id_4586e8be___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _register_vue_vue_type_template_id_4586e8be___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _register_vue_vue_type_template_id_4586e8be___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/auth/register/register.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 150:
+/*!**************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?vue&type=template&id=4586e8be& ***!
+ \**************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_template_id_4586e8be___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./register.vue?vue&type=template&id=4586e8be& */ 151);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_template_id_4586e8be___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_template_id_4586e8be___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_template_id_4586e8be___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_template_id_4586e8be___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 151:
+/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?vue&type=template&id=4586e8be& ***!
+ \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 152:
+/*!********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?vue&type=script&lang=js& ***!
+ \********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./register.vue?vue&type=script&lang=js& */ 153);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 153:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?vue&type=script&lang=js& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var check = __webpack_require__(/*! ../../../utils/check.js */ 72);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ username: {
+ length: 0 },
+
+ password: {
+ length: 0 },
+
+ confirmPassword: {
+ length: 0 },
+
+ mobile: {
+ length: 0 },
+
+ code: {
+ length: 0 } };
+
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ // 页面渲染完成
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ sendCode: function sendCode() {
+ var that = this;
+
+ if (this.mobile.length == 0) {
+ uni.showModal({
+ title: '错误信息',
+ content: '手机号不能为空',
+ showCancel: false });
+
+ return false;
+ }
+
+ uni.request({
+ url: api.AuthRegisterCaptcha,
+ data: {
+ mobile: that.mobile },
+
+ method: 'POST',
+ header: {
+ 'content-type': 'application/json' },
+
+ success: function success(res) {
+ if (res.data.errno == 0) {
+ uni.showModal({
+ title: '发送成功',
+ content: '验证码已发送',
+ showCancel: false });
+
+ } else {
+ uni.showModal({
+ title: '错误信息',
+ content: res.data.errmsg,
+ showCancel: false });
+
+ }
+ } });
+
+ },
+
+ requestRegister: function requestRegister(wxCode) {
+ var that = this;
+ uni.request({
+ url: api.AuthRegister,
+ data: {
+ username: that.username,
+ password: that.password,
+ mobile: that.mobile,
+ code: that.code,
+ wxCode: wxCode },
+
+ method: 'POST',
+ header: {
+ 'content-type': 'application/json' },
+
+ success: function success(res) {
+ if (res.data.errno == 0) {
+ app.globalData.hasLogin = true;
+ uni.setStorageSync('userInfo', res.data.data.userInfo);
+ uni.setStorage({
+ key: 'token',
+ data: res.data.data.token,
+ success: function success() {
+ uni.switchTab({
+ url: '/pages/ucenter/index/index' });
+
+ } });
+
+ } else {
+ uni.showModal({
+ title: '错误信息',
+ content: res.data.errmsg,
+ showCancel: false });
+
+ }
+ } });
+
+ },
+
+ startRegister: function startRegister() {
+ var that = this;
+
+ if (this.password.length < 6 || this.username.length < 6) {
+ uni.showModal({
+ title: '错误信息',
+ content: '用户名和密码不得少于6位',
+ showCancel: false });
+
+ return false;
+ }
+
+ if (this.password != this.confirmPassword) {
+ uni.showModal({
+ title: '错误信息',
+ content: '确认密码不一致',
+ showCancel: false });
+
+ return false;
+ }
+
+ if (this.mobile.length == 0 || this.code.length == 0) {
+ uni.showModal({
+ title: '错误信息',
+ content: '手机号和验证码不能为空',
+ showCancel: false });
+
+ return false;
+ }
+
+ uni.login({
+ success: function success(res) {
+ if (!res.code) {
+ uni.showModal({
+ title: '错误信息',
+ content: '注册失败',
+ showCancel: false });
+
+ }
+
+ that.requestRegister(res.code);
+ } });
+
+ },
+
+ bindUsernameInput: function bindUsernameInput(e) {
+ this.setData({
+ username: e.detail.value });
+
+ },
+
+ bindPasswordInput: function bindPasswordInput(e) {
+ this.setData({
+ password: e.detail.value });
+
+ },
+
+ bindConfirmPasswordInput: function bindConfirmPasswordInput(e) {
+ this.setData({
+ confirmPassword: e.detail.value });
+
+ },
+
+ bindMobileInput: function bindMobileInput(e) {
+ this.setData({
+ mobile: e.detail.value });
+
+ },
+
+ bindCodeInput: function bindCodeInput(e) {
+ this.setData({
+ code: e.detail.value });
+
+ },
+
+ clearInput: function clearInput(e) {
+ switch (e.currentTarget.id) {
+ case 'clear-username':
+ this.setData({
+ username: '' });
+
+ break;
+
+ case 'clear-password':
+ this.setData({
+ password: '' });
+
+ break;
+
+ case 'clear-confirm-password':
+ this.setData({
+ confirmPassword: '' });
+
+ break;
+
+ case 'clear-mobile':
+ this.setData({
+ mobile: '' });
+
+ break;
+
+ case 'clear-code':
+ this.setData({
+ code: '' });
+
+ break;}
+
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 154:
+/*!****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?vue&type=style&index=0&lang=css& ***!
+ \****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./register.vue?vue&type=style&index=0&lang=css& */ 155);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_register_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 155:
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/register/register.vue?vue&type=style&index=0&lang=css& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[148,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/auth/register/register.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.json
new file mode 100644
index 0000000000000000000000000000000000000000..b0bfb9dd5bfa5cdf09d71fa6279e614cdc290af0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "注册",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..75e7846292c9c9fb592963e4185a4f70f0b4e90b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.wxml
@@ -0,0 +1 @@
+获取验证码
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..699201ea3291470972d2cd23b94f3e91ee16aaaa
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/register/register.wxss
@@ -0,0 +1,64 @@
+.form-box {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 0 40rpx;
+ margin-top: 96rpx;
+ background: #fff;
+}
+.form-item {
+ position: relative;
+ background: #fff;
+ height: 96rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+.form-item .username,
+.form-item .password,
+.form-item .mobile,
+.form-item .code {
+ position: absolute;
+ top: 26rpx;
+ left: 0;
+ display: block;
+ width: 100%;
+ height: 44rpx;
+ background: #fff;
+ color: #333;
+ font-size: 30rpx;
+}
+.form-item-code {
+ margin-top: 32rpx;
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+}
+.form-item-code .form-item {
+ float: left;
+ width: 350rpx;
+}
+.form-item-code .code-btn {
+ float: right;
+ padding: 20rpx 40rpx;
+ border: 1px solid #d9d9d9;
+ border-radius: 10rpx;
+ color: #fff;
+ background: green;
+}
+.form-item .clear {
+ position: absolute;
+ top: 32rpx;
+ right: 18rpx;
+ z-index: 2;
+ display: block;
+ background: #fff;
+}
+.register-btn {
+ margin: 60rpx 0 40rpx 0;
+ height: 96rpx;
+ line-height: 96rpx;
+ color: #fff;
+ font-size: 30rpx;
+ width: 100%;
+ border-radius: 6rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.js
new file mode 100644
index 0000000000000000000000000000000000000000..c1813ee1a524a33a9199a85cd204eb9e7ad87bd7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.js
@@ -0,0 +1,371 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/auth/reset/reset"],{
+
+/***/ 156:
+/*!**********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fauth%2Freset%2Freset"} ***!
+ \**********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _reset = _interopRequireDefault(__webpack_require__(/*! ./pages/auth/reset/reset.vue */ 157));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_reset.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 157:
+/*!*************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue ***!
+ \*************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _reset_vue_vue_type_template_id_59c9ef21___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./reset.vue?vue&type=template&id=59c9ef21& */ 158);
+/* harmony import */ var _reset_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./reset.vue?vue&type=script&lang=js& */ 160);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _reset_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _reset_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _reset_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./reset.vue?vue&type=style&index=0&lang=css& */ 162);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _reset_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _reset_vue_vue_type_template_id_59c9ef21___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _reset_vue_vue_type_template_id_59c9ef21___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _reset_vue_vue_type_template_id_59c9ef21___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/auth/reset/reset.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 158:
+/*!********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?vue&type=template&id=59c9ef21& ***!
+ \********************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_template_id_59c9ef21___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./reset.vue?vue&type=template&id=59c9ef21& */ 159);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_template_id_59c9ef21___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_template_id_59c9ef21___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_template_id_59c9ef21___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_template_id_59c9ef21___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 159:
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?vue&type=template&id=59c9ef21& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 160:
+/*!**************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?vue&type=script&lang=js& ***!
+ \**************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./reset.vue?vue&type=script&lang=js& */ 161);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 161:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var check = __webpack_require__(/*! ../../../utils/check.js */ 72);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ mobile: {
+ length: 0 },
+
+ code: {
+ length: 0 },
+
+ password: {
+ length: 0 },
+
+ confirmPassword: {
+ length: 0 } };
+
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ // 页面渲染完成
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ sendCode: function sendCode() {
+ var that = this;
+ uni.request({
+ url: api.AuthRegisterCaptcha,
+ data: {
+ mobile: that.mobile },
+
+ method: 'POST',
+ header: {
+ 'content-type': 'application/json' },
+
+ success: function success(res) {
+ if (res.data.errno == 0) {
+ uni.showModal({
+ title: '发送成功',
+ content: '验证码已发送',
+ showCancel: false });
+
+ } else {
+ uni.showModal({
+ title: '错误信息',
+ content: res.data.errmsg,
+ showCancel: false });
+
+ }
+ } });
+
+ },
+
+ startReset: function startReset() {
+ var that = this;
+
+ if (this.mobile.length == 0 || this.code.length == 0) {
+ uni.showModal({
+ title: '错误信息',
+ content: '手机号和验证码不能为空',
+ showCancel: false });
+
+ return false;
+ }
+
+ if (this.password.length < 3) {
+ uni.showModal({
+ title: '错误信息',
+ content: '用户名和密码不得少于3位',
+ showCancel: false });
+
+ return false;
+ }
+
+ if (this.password != this.confirmPassword) {
+ uni.showModal({
+ title: '错误信息',
+ content: '确认密码不一致',
+ showCancel: false });
+
+ return false;
+ }
+
+ uni.request({
+ url: api.AuthReset,
+ data: {
+ mobile: that.mobile,
+ code: that.code,
+ password: that.password },
+
+ method: 'POST',
+ header: {
+ 'content-type': 'application/json' },
+
+ success: function success(res) {
+ if (res.data.errno == 0) {
+ uni.navigateBack();
+ } else {
+ uni.showModal({
+ title: '密码重置失败',
+ content: res.data.errmsg,
+ showCancel: false });
+
+ }
+ } });
+
+ },
+
+ bindPasswordInput: function bindPasswordInput(e) {
+ this.setData({
+ password: e.detail.value });
+
+ },
+
+ bindConfirmPasswordInput: function bindConfirmPasswordInput(e) {
+ this.setData({
+ confirmPassword: e.detail.value });
+
+ },
+
+ bindMobileInput: function bindMobileInput(e) {
+ this.setData({
+ mobile: e.detail.value });
+
+ },
+
+ bindCodeInput: function bindCodeInput(e) {
+ this.setData({
+ code: e.detail.value });
+
+ },
+
+ clearInput: function clearInput(e) {
+ switch (e.currentTarget.id) {
+ case 'clear-password':
+ this.setData({
+ password: '' });
+
+ break;
+
+ case 'clear-confirm-password':
+ this.setData({
+ confirmPassword: '' });
+
+ break;
+
+ case 'clear-mobile':
+ this.setData({
+ mobile: '' });
+
+ break;
+
+ case 'clear-code':
+ this.setData({
+ code: '' });
+
+ break;}
+
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 162:
+/*!**********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?vue&type=style&index=0&lang=css& ***!
+ \**********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./reset.vue?vue&type=style&index=0&lang=css& */ 163);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_reset_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 163:
+/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/auth/reset/reset.vue?vue&type=style&index=0&lang=css& ***!
+ \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[156,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/auth/reset/reset.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c70a13b6a3c79b40ed43102178d02641117459c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "密码重置",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..6b3c7b5e0e72cc1db6a8d62c46ebf5da11bd4f8b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.wxml
@@ -0,0 +1 @@
+获取验证码
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..121000999409ded08a91b9ddaae07194564fb1c9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/auth/reset/reset.wxss
@@ -0,0 +1,62 @@
+.form-box {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 0 40rpx;
+ margin-top: 96rpx;
+ background: #fff;
+}
+.form-item {
+ position: relative;
+ background: #fff;
+ height: 96rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+.form-item .mobile,
+.form-item .password,
+.form-item .code {
+ position: absolute;
+ top: 26rpx;
+ left: 0;
+ display: block;
+ width: 100%;
+ height: 44rpx;
+ background: #fff;
+ color: #333;
+ font-size: 30rpx;
+}
+.form-item-code {
+ margin-top: 32rpx;
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+}
+.form-item-code .form-item {
+ float: left;
+ width: 350rpx;
+}
+.form-item-code .code-btn {
+ float: right;
+ padding: 20rpx 40rpx;
+ border: 1px solid #d9d9d9;
+ border-radius: 10rpx;
+}
+.form-item .clear {
+ position: absolute;
+ top: 32rpx;
+ right: 18rpx;
+ z-index: 2;
+ display: block;
+ background: #fff;
+}
+.reset-btn {
+ margin: 60rpx 0 40rpx 0;
+ height: 96rpx;
+ line-height: 96rpx;
+ color: #fff;
+ font-size: 30rpx;
+ width: 100%;
+ background: #b4282d;
+ border-radius: 6rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.js
new file mode 100644
index 0000000000000000000000000000000000000000..c117a4c4b6e1324fc2be4793c2b7363e6d32ccc2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.js
@@ -0,0 +1,247 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/brand/brand"],{
+
+/***/ 220:
+/*!***************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fbrand%2Fbrand"} ***!
+ \***************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _brand = _interopRequireDefault(__webpack_require__(/*! ./pages/brand/brand.vue */ 221));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_brand.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 221:
+/*!********************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue ***!
+ \********************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _brand_vue_vue_type_template_id_802078d4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./brand.vue?vue&type=template&id=802078d4& */ 222);
+/* harmony import */ var _brand_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./brand.vue?vue&type=script&lang=js& */ 224);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _brand_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _brand_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _brand_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./brand.vue?vue&type=style&index=0&lang=css& */ 226);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _brand_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _brand_vue_vue_type_template_id_802078d4___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _brand_vue_vue_type_template_id_802078d4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _brand_vue_vue_type_template_id_802078d4___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/brand/brand.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 222:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?vue&type=template&id=802078d4& ***!
+ \***************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_template_id_802078d4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brand.vue?vue&type=template&id=802078d4& */ 223);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_template_id_802078d4___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_template_id_802078d4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_template_id_802078d4___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_template_id_802078d4___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 223:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?vue&type=template&id=802078d4& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 224:
+/*!*********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brand.vue?vue&type=script&lang=js& */ 225);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 225:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ brandList: [],
+ page: 1,
+ limit: 10,
+ totalPages: 1 };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.getBrandList();
+ },
+ onReachBottom: function onReachBottom() {
+ if (this.totalPages > this.page) {
+ this.setData({
+ page: this.page + 1 });
+
+ } else {
+ return false;
+ }
+
+ this.getBrandList();
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getBrandList: function getBrandList() {
+ uni.showLoading({
+ title: '加载中...' });
+
+ var that = this;
+ util.request(api.BrandList, {
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ brandList: that.brandList.concat(res.data.list),
+ totalPages: res.data.pages });
+
+ }
+
+ uni.hideLoading();
+ });
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 226:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brand.vue?vue&type=style&index=0&lang=css& */ 227);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brand_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 227:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brand/brand.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[220,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/brand/brand.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.json
new file mode 100644
index 0000000000000000000000000000000000000000..f867c10648909d2d9d36c641118ae11e6554d98b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "品牌商直供",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ee7fe45d00e39e5982fd55c3f4feb53ba5def8f3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.wxml
@@ -0,0 +1 @@
+{{item.name}} | {{item.floorPrice+"元起"}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..f38bee148c7e081b20598ad106c9698319273ff7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brand/brand.wxss
@@ -0,0 +1,47 @@
+.brand-list .item {
+ display: block;
+ width: 750rpx;
+ height: 416rpx;
+ position: relative;
+ margin-bottom: 4rpx;
+}
+.brand-list .item .img-bg {
+ position: absolute;
+ left: 0;
+ top: 0;
+ z-index: 0;
+ width: 750rpx;
+ height: 417rpx;
+ overflow: hidden;
+}
+.brand-list .item .img-bg image {
+ width: 750rpx;
+ height: 416rpx;
+}
+.brand-list .item .txt-box {
+ position: absolute;
+ left: 0;
+ top: 0;
+ display: table;
+ z-index: 0;
+ width: 750rpx;
+ height: 417rpx;
+}
+.brand-list .item .line {
+ display: table-cell;
+ vertical-align: middle;
+ text-align: center;
+ height: 63rpx;
+ line-height: 63rpx;
+}
+.brand-list .item .line text {
+ font-size: 35rpx;
+ font-weight: 700;
+ text-shadow: 1rpx 1rpx rgba(0, 0, 0, 0.32);
+ color: #fff;
+}
+.brand-list .item .line .s {
+ padding: 0 10rpx;
+ font-size: 40rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.js
new file mode 100644
index 0000000000000000000000000000000000000000..2a4ef8b6998b76e9f186b3dda280c6f1a847b630
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.js
@@ -0,0 +1,277 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/brandDetail/brandDetail"],{
+
+/***/ 228:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2FbrandDetail%2FbrandDetail"} ***!
+ \***************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _brandDetail = _interopRequireDefault(__webpack_require__(/*! ./pages/brandDetail/brandDetail.vue */ 229));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_brandDetail.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 229:
+/*!********************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue ***!
+ \********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _brandDetail_vue_vue_type_template_id_8bd6f210___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./brandDetail.vue?vue&type=template&id=8bd6f210& */ 230);
+/* harmony import */ var _brandDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./brandDetail.vue?vue&type=script&lang=js& */ 232);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _brandDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _brandDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _brandDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./brandDetail.vue?vue&type=style&index=0&lang=css& */ 234);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _brandDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _brandDetail_vue_vue_type_template_id_8bd6f210___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _brandDetail_vue_vue_type_template_id_8bd6f210___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _brandDetail_vue_vue_type_template_id_8bd6f210___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/brandDetail/brandDetail.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 230:
+/*!***************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?vue&type=template&id=8bd6f210& ***!
+ \***************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_template_id_8bd6f210___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brandDetail.vue?vue&type=template&id=8bd6f210& */ 231);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_template_id_8bd6f210___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_template_id_8bd6f210___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_template_id_8bd6f210___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_template_id_8bd6f210___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 231:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?vue&type=template&id=8bd6f210& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 232:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brandDetail.vue?vue&type=script&lang=js& */ 233);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 233:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ id: 0,
+
+ brand: {
+ picUrl: '',
+ name: '',
+ desc: '' },
+
+
+ goodsList: [],
+ page: 1,
+ limit: 10,
+
+ iitem: {
+ id: '',
+ picUrl: '',
+ name: '',
+ retailPrice: '' },
+
+
+ iindex: 0 };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ var that = this;
+ that.setData({
+ id: parseInt(options.id) });
+
+ this.getBrand();
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getBrand: function getBrand() {
+ var that = this;
+ util.request(api.BrandDetail, {
+ id: that.id }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ brand: res.data });
+
+ that.getGoodsList();
+ }
+ });
+ },
+
+ getGoodsList: function getGoodsList() {
+ var that = this;
+ util.request(api.GoodsList, {
+ brandId: that.id,
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ goodsList: res.data.list });
+
+ }
+ });
+ } } };exports.default = _default;
+
+/***/ }),
+
+/***/ 234:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./brandDetail.vue?vue&type=style&index=0&lang=css& */ 235);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_brandDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 235:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/brandDetail/brandDetail.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[228,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/brandDetail/brandDetail.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.json
new file mode 100644
index 0000000000000000000000000000000000000000..e621ce0ca76177ca5b25066205756afd65aa27c2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "品牌商详情",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..4d88e85e8e9d2eab53d5f59df8e3afa9f5b967a1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.wxml
@@ -0,0 +1 @@
+{{brand.name}} {{''+brand.desc+''}} {{iitem.name}} {{"¥"+iitem.retailPrice}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..021ff76f272f99405c4ebd42f4505a9710459c26
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/brandDetail/brandDetail.wxss
@@ -0,0 +1,99 @@
+page {
+ background: #f4f4f4;
+}
+.brand-info .name {
+ width: 100%;
+ height: 290rpx;
+ position: relative;
+}
+.brand-info .img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 290rpx;
+}
+.brand-info .info-box {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 290rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.brand-info .info {
+ display: block;
+}
+.brand-info .txt {
+ display: block;
+ height: 37.5rpx;
+ font-size: 37.5rpx;
+ color: #fff;
+}
+.brand-info .line {
+ margin: 0 auto;
+ margin-top: 16rpx;
+ display: block;
+ height: 2rpx;
+ width: 145rpx;
+ background: #fff;
+}
+.brand-info .desc {
+ background: #fff;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 41.5rpx 31.25rpx;
+ font-size: 30rpx;
+ color: #666;
+ line-height: 41.5rpx;
+ text-align: center;
+}
+.cate-item .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ border-top: 1rpx solid #f4f4f4;
+ margin-top: 20rpx;
+}
+.cate-item .b .item {
+ float: left;
+ background: #fff;
+ width: 375rpx;
+ padding-bottom: 33.333rpx;
+ border-bottom: 1rpx solid #f4f4f4;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+}
+.cate-item .b .item-b {
+ border-right: 1rpx solid #f4f4f4;
+}
+.cate-item .item .img {
+ margin-top: 10rpx;
+ width: 302rpx;
+ height: 302rpx;
+}
+.cate-item .item .name {
+ display: block;
+ width: 365.625rpx;
+ height: 35rpx;
+ padding: 0 20rpx;
+ overflow: hidden;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ font-size: 30rpx;
+ color: #333;
+}
+.cate-item .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.js
new file mode 100644
index 0000000000000000000000000000000000000000..e3a98d6eddae9fc60169cdc06274ddffaa76a068
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.js
@@ -0,0 +1,552 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/cart/cart"],{
+
+/***/ 252:
+/*!*************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fcart%2Fcart"} ***!
+ \*************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _cart = _interopRequireDefault(__webpack_require__(/*! ./pages/cart/cart.vue */ 253));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_cart.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 253:
+/*!******************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue ***!
+ \******************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _cart_vue_vue_type_template_id_0f00adf4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./cart.vue?vue&type=template&id=0f00adf4& */ 254);
+/* harmony import */ var _cart_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./cart.vue?vue&type=script&lang=js& */ 256);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _cart_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _cart_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _cart_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./cart.vue?vue&type=style&index=0&lang=css& */ 258);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _cart_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _cart_vue_vue_type_template_id_0f00adf4___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _cart_vue_vue_type_template_id_0f00adf4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _cart_vue_vue_type_template_id_0f00adf4___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/cart/cart.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 254:
+/*!*************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?vue&type=template&id=0f00adf4& ***!
+ \*************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_template_id_0f00adf4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./cart.vue?vue&type=template&id=0f00adf4& */ 255);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_template_id_0f00adf4___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_template_id_0f00adf4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_template_id_0f00adf4___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_template_id_0f00adf4___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 255:
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?vue&type=template&id=0f00adf4& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 256:
+/*!*******************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?vue&type=script&lang=js& ***!
+ \*******************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./cart.vue?vue&type=script&lang=js& */ 257);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 257:
+/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?vue&type=script&lang=js& ***!
+ \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var user = __webpack_require__(/*! ../../utils/user.js */ 11);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ cartGoods: [],
+ cartTotal: {
+ goodsCount: 0,
+ goodsAmount: 0,
+ checkedGoodsCount: 0,
+ checkedGoodsAmount: 0 },
+
+ isEditCart: false,
+ checkedAllStatus: true,
+ editCartList: [],
+ hasLogin: false };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onPullDownRefresh: function onPullDownRefresh() {
+ uni.showNavigationBarLoading(); //在标题栏中显示加载
+
+ this.getCartList();
+ uni.hideNavigationBarLoading(); //完成停止加载
+
+ uni.stopPullDownRefresh(); //停止下拉刷新
+ },
+ onShow: function onShow() {
+ // 页面显示
+ if (app.globalData.hasLogin) {
+ this.getCartList();
+ }
+
+ this.setData({
+ hasLogin: app.globalData.hasLogin });
+
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ goLogin: function goLogin() {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ },
+
+ getCartList: function getCartList() {
+ var that = this;
+ util.request(api.CartList).then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ cartGoods: res.data.cartList,
+ cartTotal: res.data.cartTotal });
+
+ that.setData({
+ checkedAllStatus: that.isCheckedAll() });
+
+ }
+ });
+ },
+
+ isCheckedAll: function isCheckedAll() {
+ //判断购物车商品已全选
+ return this.cartGoods.every(function (element, index, array) {
+ if (element.checked == true) {
+ return true;
+ } else {
+ return false;
+ }
+ });
+ },
+
+ doCheckedAll: function doCheckedAll() {
+ var checkedAll = this.isCheckedAll();
+ this.setData({
+ checkedAllStatus: this.isCheckedAll() });
+
+ },
+
+ checkedItem: function checkedItem(event) {
+ var itemIndex = event.target.dataset.itemIndex;
+ var that = this;
+ var productIds = [];
+ productIds.push(that.cartGoods[itemIndex].productId);
+
+ if (!this.isEditCart) {
+ util.request(
+ api.CartChecked,
+ {
+ productIds: productIds,
+ isChecked: that.cartGoods[itemIndex].checked ? 0 : 1 },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ cartGoods: res.data.cartList,
+ cartTotal: res.data.cartTotal });
+
+ }
+
+ that.setData({
+ checkedAllStatus: that.isCheckedAll() });
+
+ });
+ } else {
+ //编辑状态
+ var tmpCartData = this.cartGoods.map(function (element, index, array) {
+ if (index == itemIndex) {
+ element.checked = !element.checked;
+ }
+
+ return element;
+ });
+ that.setData({
+ cartGoods: tmpCartData,
+ checkedAllStatus: that.isCheckedAll(),
+ 'cartTotal.checkedGoodsCount': that.getCheckedGoodsCount() });
+
+ }
+ },
+
+ getCheckedGoodsCount: function getCheckedGoodsCount() {
+ var checkedGoodsCount = 0;
+ this.cartGoods.forEach(function (v) {
+ if (v.checked === true) {
+ checkedGoodsCount += v.number;
+ }
+ });
+ console.log(checkedGoodsCount);
+ return checkedGoodsCount;
+ },
+
+ checkedAll: function checkedAll() {
+ var that = this;
+
+ if (!this.isEditCart) {
+ var productIds = this.cartGoods.map(function (v) {
+ return v.productId;
+ });
+ util.request(
+ api.CartChecked,
+ {
+ productIds: productIds,
+ isChecked: that.isCheckedAll() ? 0 : 1 },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ console.log(res.data);
+ that.setData({
+ cartGoods: res.data.cartList,
+ cartTotal: res.data.cartTotal });
+
+ }
+
+ that.setData({
+ checkedAllStatus: that.isCheckedAll() });
+
+ });
+ } else {
+ //编辑状态
+ var checkedAllStatus = that.isCheckedAll();
+ var tmpCartData = this.cartGoods.map(function (v) {
+ v.checked = !checkedAllStatus;
+ return v;
+ });
+ that.setData({
+ cartGoods: tmpCartData,
+ checkedAllStatus: that.isCheckedAll(),
+ 'cartTotal.checkedGoodsCount': that.getCheckedGoodsCount() });
+
+ }
+ },
+
+ editCart: function editCart() {
+ var that = this;
+
+ if (this.isEditCart) {
+ this.getCartList();
+ this.setData({
+ isEditCart: !this.isEditCart });
+
+ } else {
+ //编辑状态
+ var tmpCartList = this.cartGoods.map(function (v) {
+ v.checked = false;
+ return v;
+ });
+ this.setData({
+ editCartList: this.cartGoods,
+ cartGoods: tmpCartList,
+ isEditCart: !this.isEditCart,
+ checkedAllStatus: that.isCheckedAll(),
+ 'cartTotal.checkedGoodsCount': that.getCheckedGoodsCount() });
+
+ }
+ },
+
+ updateCart: function updateCart(productId, goodsId, number, id) {
+ var that = this;
+ util.request(
+ api.CartUpdate,
+ {
+ productId: productId,
+ goodsId: goodsId,
+ number: number,
+ id: id },
+
+ 'POST').
+ then(function (res) {
+ that.setData({
+ checkedAllStatus: that.isCheckedAll() });
+
+ });
+ },
+
+ cutNumber: function cutNumber(event) {
+ var itemIndex = event.target.dataset.itemIndex;
+ var cartItem = this.cartGoods[itemIndex];
+ var number = cartItem.number - 1 > 1 ? cartItem.number - 1 : 1;
+ cartItem.number = number;
+ this.setData({
+ cartGoods: this.cartGoods });
+
+ this.updateCart(cartItem.productId, cartItem.goodsId, number, cartItem.id);
+ },
+
+ addNumber: function addNumber(event) {
+ var itemIndex = event.target.dataset.itemIndex;
+ var cartItem = this.cartGoods[itemIndex];
+ var number = cartItem.number + 1;
+ cartItem.number = number;
+ this.setData({
+ cartGoods: this.cartGoods });
+
+ this.updateCart(cartItem.productId, cartItem.goodsId, number, cartItem.id);
+ },
+
+ checkoutOrder: function checkoutOrder() {
+ //获取已选择的商品
+ var that = this;
+ var checkedGoods = this.cartGoods.filter(function (element, index, array) {
+ if (element.checked == true) {
+ return true;
+ } else {
+ return false;
+ }
+ });
+
+ if (checkedGoods.length <= 0) {
+ return false;
+ } // storage中设置了cartId,则是购物车购买
+
+ try {
+ uni.setStorageSync('cartId', 0);
+ uni.navigateTo({
+ url: '/pages/checkout/checkout' });
+
+ } catch (e) {}
+ },
+
+ deleteCart: function deleteCart() {
+ //获取已选择的商品
+ var that = this;
+ var productIds = this.cartGoods.filter(function (element, index, array) {
+ if (element.checked == true) {
+ return true;
+ } else {
+ return false;
+ }
+ });
+
+ if (productIds.length <= 0) {
+ return false;
+ }
+
+ productIds = productIds.map(function (element, index, array) {
+ if (element.checked == true) {
+ return element.productId;
+ }
+ });
+ util.request(
+ api.CartDelete,
+ {
+ productIds: productIds },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ console.log(res.data);
+ var cartList = res.data.cartList.map(function (v) {
+ v.checked = false;
+ return v;
+ });
+ that.setData({
+ cartGoods: cartList,
+ cartTotal: res.data.cartTotal });
+
+ }
+
+ that.setData({
+ checkedAllStatus: that.isCheckedAll() });
+
+ });
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 258:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./cart.vue?vue&type=style&index=0&lang=css& */ 259);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_cart_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 259:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/cart/cart.vue?vue&type=style&index=0&lang=css& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[252,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/cart/cart.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.json
new file mode 100644
index 0000000000000000000000000000000000000000..b260f0470300990281f2485200d40207de8ca984
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.json
@@ -0,0 +1,5 @@
+{
+ "enablePullDownRefresh": true,
+ "navigationBarTitleText": "购物车",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..b07ae769e3244c05814cf0e270673a1c1bb1880c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.wxml
@@ -0,0 +1 @@
+还没有登录 30天无忧退货 48小时快速退款 满88元免邮费 空空如也~ 去添加点什么吧 {{item.goodsName}} {{"x"+item.number}} {{(isEditCart?'已选择:':'')+(item.specifications||'')}} {{"¥"+item.price}} - + {{"全选("+cartTotal.checkedGoodsCount+")"}} {{!isEditCart?'¥'+cartTotal.checkedGoodsAmount:''}} {{!isEditCart?'编辑':'完成'}} {{"删除("+cartTotal.checkedGoodsCount+")"}} 下单
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..bb2131dd21cca40bb9ff82226cf136512f93ba12
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/cart/cart.wxss
@@ -0,0 +1,441 @@
+page {
+ height: 100%;
+ min-height: 100%;
+ background: #f4f4f4;
+}
+.container {
+ background: #f4f4f4;
+ width: 100%;
+ height: auto;
+ min-height: 100%;
+ overflow: hidden;
+}
+.service-policy {
+ width: 750rpx;
+ height: 73rpx;
+ background: #f4f4f4;
+ padding: 0 31.25rpx;
+ display: flex;
+ flex-flow: row nowrap;
+ align-items: center;
+ justify-content: space-between;
+}
+.service-policy .item {
+ background-size: 10rpx;
+ padding-left: 15rpx;
+ display: flex;
+ align-items: center;
+ font-size: 25rpx;
+ color: #666;
+}
+.no-login {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+.no-login .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+.no-login .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 59rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 35rpx;
+ color: #999;
+}
+.no-login button {
+ width: 90%;
+ margin: 0 auto;
+ color: #fff;
+ font-size: 30rpx;
+ height: 96rpx;
+ line-height: 96rpx;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: flex;
+ bottom: 0;
+ left: 0;
+ border-radius: 0;
+ padding: 0;
+ margin-left: 5%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+.no-cart {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+.no-cart .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+.no-cart .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+.cart-view {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+}
+.cart-view .list {
+ height: auto;
+ width: 100%;
+ overflow: hidden;
+ margin-bottom: 120rpx;
+}
+.cart-view .group-item {
+ height: auto;
+ width: 100%;
+ background: #fff;
+ margin-bottom: 18rpx;
+}
+.cart-view .item {
+ height: 164rpx;
+ width: 100%;
+ overflow: hidden;
+}
+.cart-view .item .van-checkbox {
+ float: left;
+ margin: 65rpx 18rpx 65rpx 18rpx;
+}
+.cart-view .item .van-checkbox .van-icon {
+ color: #fff;
+}
+.cart-view .item .cart-goods {
+ float: left;
+ height: 164rpx;
+ width: 672rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.cart-view .item .img {
+ float: left;
+ height: 125rpx;
+ width: 125rpx;
+ background: #f4f4f4;
+ margin: 19.5rpx 18rpx 19.5rpx 0;
+}
+.cart-view .item .info {
+ float: left;
+ height: 125rpx;
+ width: 503rpx;
+ margin: 19.5rpx 26rpx 19.5rpx 0;
+}
+.cart-view .item .t {
+ margin: 8rpx 0;
+ height: 28rpx;
+ font-size: 25rpx;
+ color: #333;
+ overflow: hidden;
+}
+.cart-view .item .name {
+ height: 28rpx;
+ max-width: 310rpx;
+ line-height: 28rpx;
+ font-size: 25rpx;
+ color: #333;
+ overflow: hidden;
+}
+.cart-view .item .num {
+ height: 28rpx;
+ line-height: 28rpx;
+ float: right;
+}
+.cart-view .item .attr {
+ margin-bottom: 17rpx;
+ height: 24rpx;
+ line-height: 24rpx;
+ font-size: 22rpx;
+ color: #666;
+ overflow: hidden;
+}
+.cart-view .item .b {
+ height: 28rpx;
+ line-height: 28rpx;
+ font-size: 25rpx;
+ color: #333;
+ overflow: hidden;
+}
+.cart-view .item .price {
+ float: left;
+}
+.cart-view .item.edit .t {
+ display: none;
+}
+.cart-view .item.edit .attr {
+ text-align: right;
+ padding-right: 25rpx;
+ background-size: 12rpx 20rpx;
+ margin-bottom: 24rpx;
+ height: 39rpx;
+ line-height: 39rpx;
+ font-size: 24rpx;
+ color: #999;
+ overflow: hidden;
+}
+.cart-view .item.edit .b {
+ display: flex;
+ height: 52rpx;
+ overflow: hidden;
+}
+.cart-view .item.edit .price {
+ line-height: 52rpx;
+ height: 52rpx;
+ flex: 1;
+}
+.cart-view .item .selnum {
+ display: none;
+}
+.cart-view .item.edit .selnum {
+ width: 235rpx;
+ height: 52rpx;
+ border: 1rpx solid #ccc;
+ display: flex;
+}
+.selnum .cut {
+ width: 70rpx;
+ height: 100%;
+ text-align: center;
+ line-height: 50rpx;
+}
+.selnum .number {
+ flex: 1;
+ height: 100%;
+ text-align: center;
+ line-height: 68.75rpx;
+ border-left: 1px solid #ccc;
+ border-right: 1px solid #ccc;
+ float: left;
+}
+.selnum .add {
+ width: 80rpx;
+ height: 100%;
+ text-align: center;
+ line-height: 50rpx;
+}
+.cart-view .group-item .header {
+ width: 100%;
+ height: 94rpx;
+ line-height: 94rpx;
+ padding: 0 26rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.cart-view .promotion .icon {
+ display: inline-block;
+ height: 24rpx;
+ width: 15rpx;
+}
+.cart-view .promotion {
+ margin-top: 25.5rpx;
+ float: left;
+ height: 43rpx;
+ width: 480rpx;
+ /*margin-right: 84rpx;*/
+ line-height: 43rpx;
+ font-size: 0;
+}
+.cart-view .promotion .tag {
+ border: 1px solid #f48f18;
+ height: 37rpx;
+ line-height: 31rpx;
+ padding: 0 9rpx;
+ margin-right: 10rpx;
+ color: #f48f18;
+ font-size: 24.5rpx;
+}
+.cart-view .promotion .txt {
+ height: 43rpx;
+ line-height: 43rpx;
+ padding-right: 10rpx;
+ color: #333;
+ font-size: 29rpx;
+ overflow: hidden;
+}
+.cart-view .get {
+ margin-top: 18rpx;
+ float: right;
+ height: 58rpx;
+ padding-left: 14rpx;
+ border-left: 1px solid #d9d9d9;
+ line-height: 58rpx;
+ font-size: 29rpx;
+ color: #333;
+}
+.cart-bottom {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ height: 100rpx;
+ width: 100%;
+ background: #fff;
+ display: flex;
+}
+.cart-bottom .van-checkbox {
+ float: left;
+ margin: 33rpx 18rpx 33rpx 26rpx;
+ font-size: 29rpx;
+}
+.cart-bottom .van-checkbox .van-icon {
+ color: #fff;
+}
+.cart-bottom .total {
+ height: 34rpx;
+ flex: 1;
+ margin: 33rpx 10rpx;
+ font-size: 29rpx;
+}
+.cart-bottom .delete {
+ text-align: center;
+ width: 180rpx;
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-left: -5rpx;
+ padding-right: 25rpx;
+ font-size: 25rpx;
+ color: #f4f4f4;
+ /* text-align: center; */
+ border-top-left-radius: 0rpx;
+ border-bottom-left-radius: 0rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #ae8b9c 100%);
+}
+.cart-bottom .checkout {
+ height: 100rpx;
+ width: 210rpx;
+ text-align: center;
+ line-height: 100rpx;
+ font-size: 29rpx;
+ background: #b4282d;
+ color: #fff;
+}
+.action_btn_area {
+ /* border: 1px solid #333; */
+ position: absolute;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ right: 0;
+ top: 0;
+ width: 380rpx;
+ height: 100rpx;
+}
+.action_btn_area .edit {
+ width: 140rpx;
+ /* border: 1px solid #000; */
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-right: 5rpx;
+ text-align: center;
+ /* padding-left: 25rpx; */
+ font-size: 25rpx;
+ color: #f4f4f4;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ /* background-image: linear-gradient(to right, #ff7701 100%); */
+ background-image: linear-gradient(to right, #ab956d 0%, #ab956d 100%);
+}
+.action_btn_area .checkout {
+ width: 140rpx;
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-left: 5rpx;
+ /* padding-right: 25rpx; */
+ font-size: 25rpx;
+ color: #f4f4f4;
+ text-align: center;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+.action_btn_area .delete {
+ width: 140rpx;
+ /* border: 1px solid #000; */
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-right: 5rpx;
+ text-align: center;
+ padding-left: -5rpx;
+ font-size: 25rpx;
+ color: #f4f4f4;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+.action_btn_area .sure {
+ text-align: center;
+ width: 140rpx;
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-right: 10rpx;
+ padding-left: -5rpx;
+ font-size: 25rpx;
+ color: #f4f4f4;
+ /* text-align: center; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #ab956d 0%, #ab956d 100%);
+ /* background-image: linear-gradient(to right, #ff7701 0%, #fe4800 100%); */
+}
+.auth_btn {
+ position: fixed;
+ top: 55vh;
+ left: 10vw;
+ width: 80vw;
+ height: 96rpx;
+ line-height: 96rpx;
+ font-size: 25rpx;
+ color: #f4f4f4;
+ /* text-align: center; */
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #8baaaa 0%, #9a9ba1 100%);
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.js
new file mode 100644
index 0000000000000000000000000000000000000000..aaa63fdcac0614204d46a7559e3ae576841582f0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.js
@@ -0,0 +1,304 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/catalog/catalog"],{
+
+/***/ 26:
+/*!*******************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fcatalog%2Fcatalog"} ***!
+ \*******************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _catalog = _interopRequireDefault(__webpack_require__(/*! ./pages/catalog/catalog.vue */ 27));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_catalog.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 27:
+/*!************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue ***!
+ \************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _catalog_vue_vue_type_template_id_7565998c___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./catalog.vue?vue&type=template&id=7565998c& */ 28);
+/* harmony import */ var _catalog_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./catalog.vue?vue&type=script&lang=js& */ 30);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _catalog_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _catalog_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _catalog_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./catalog.vue?vue&type=style&index=0&lang=css& */ 32);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _catalog_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _catalog_vue_vue_type_template_id_7565998c___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _catalog_vue_vue_type_template_id_7565998c___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _catalog_vue_vue_type_template_id_7565998c___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/catalog/catalog.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 28:
+/*!*******************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?vue&type=template&id=7565998c& ***!
+ \*******************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_template_id_7565998c___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./catalog.vue?vue&type=template&id=7565998c& */ 29);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_template_id_7565998c___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_template_id_7565998c___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_template_id_7565998c___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_template_id_7565998c___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 29:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?vue&type=template&id=7565998c& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 30:
+/*!*************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?vue&type=script&lang=js& ***!
+ \*************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./catalog.vue?vue&type=script&lang=js& */ 31);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 31:
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?vue&type=script&lang=js& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ categoryList: [],
+ currentCategory: {
+ id: '',
+ picUrl: '',
+ frontName: '',
+ name: '' },
+
+ currentSubCategoryList: {},
+ scrollLeft: 0,
+ scrollTop: 0,
+ goodsCount: 0,
+ scrollHeight: 0 };
+
+ },
+ onLoad: function onLoad(options) {
+ this.getCatalog();
+ },
+ onPullDownRefresh: function onPullDownRefresh() {
+ uni.showNavigationBarLoading(); //在标题栏中显示加载
+
+ this.getCatalog();
+ uni.hideNavigationBarLoading(); //完成停止加载
+
+ uni.stopPullDownRefresh(); //停止下拉刷新
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getCatalog: function getCatalog() {
+ //CatalogList
+ var that = this;
+ uni.showLoading({
+ title: '加载中...' });
+
+ util.request(api.CatalogList).then(function (res) {
+ that.setData({
+ categoryList: res.data.categoryList,
+ currentCategory: res.data.currentCategory,
+ currentSubCategoryList: res.data.currentSubCategory });
+
+ uni.hideLoading();
+ });
+ util.request(api.GoodsCount).then(function (res) {
+ that.setData({
+ goodsCount: res.data });
+
+ });
+ },
+
+ getCurrentCategory: function getCurrentCategory(id) {
+ var that = this;
+ util.request(api.CatalogCurrent, {
+ id: id }).
+ then(function (res) {
+ that.setData({
+ currentCategory: res.data.currentCategory,
+ currentSubCategoryList: res.data.currentSubCategory });
+
+ });
+ },
+
+ switchCate: function switchCate(event) {
+ var that = this;
+ var currentTarget = event.currentTarget;
+
+ if (this.currentCategory.id == event.currentTarget.dataset.id) {
+ return false;
+ }
+
+ this.getCurrentCategory(event.currentTarget.dataset.id);
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 32:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./catalog.vue?vue&type=style&index=0&lang=css& */ 33);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_catalog_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 33:
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/catalog/catalog.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[26,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/catalog/catalog.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.json
new file mode 100644
index 0000000000000000000000000000000000000000..e109b8b8ffaff17059a80cb34322e398e0e9ae70
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "分类",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..59bc6577b2b3e443a0f7f2efe4aefe0972949555
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.wxml
@@ -0,0 +1 @@
+{{"商品搜索, 共"+goodsCount+"款好物"}} {{''+item.name+''}} {{currentCategory.frontName}} {{currentCategory.name+"分类"}} {{item.name}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e01e6b963bbbb3d49d3007c905a665c764b18c29
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/catalog/catalog.wxss
@@ -0,0 +1,140 @@
+page {
+ height: 100%;
+}
+.container {
+ background: #f9f9f9;
+ height: 100%;
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+}
+.search {
+ height: 88rpx;
+ width: 100%;
+ padding: 0 30rpx;
+ background: #fff;
+ display: flex;
+ align-items: center;
+}
+.search .input {
+ width: 690rpx;
+ height: 56rpx;
+ background: #ededed;
+ border-radius: 8rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.search .van-icon-search {
+ line-height: 56rpx;
+}
+.search .txt {
+ height: 42rpx;
+ line-height: 42rpx;
+ color: #666;
+ padding-left: 10rpx;
+ font-size: 30rpx;
+}
+.catalog {
+ flex: 1;
+ width: 100%;
+ background: #fff;
+ display: flex;
+ border-top: 1px solid #fafafa;
+}
+.catalog .nav {
+ width: 162rpx;
+ height: 100%;
+}
+.catalog .nav .item {
+ text-align: center;
+ line-height: 90rpx;
+ width: 162rpx;
+ height: 90rpx;
+ color: #333;
+ font-size: 28rpx;
+ border-left: 6rpx solid #fff;
+}
+.catalog .nav .item.active {
+ color: #ab956d;
+ font-size: 36rpx;
+ border-left: 6rpx solid #ab956d;
+}
+.catalog .cate {
+ border-left: 1px solid #fafafa;
+ flex: 1;
+ height: 100%;
+ padding: 0 30rpx 0 30rpx;
+}
+.banner {
+ display: block;
+ height: 222rpx;
+ width: 100%;
+ position: relative;
+}
+.banner .image {
+ position: absolute;
+ top: 30rpx;
+ left: 0;
+ border-radius: 4rpx;
+ height: 192rpx;
+ width: 100%;
+}
+.banner .txt {
+ position: absolute;
+ top: 30rpx;
+ text-align: center;
+ color: #fff;
+ font-size: 28rpx;
+ left: 0;
+ height: 192rpx;
+ line-height: 192rpx;
+ width: 100%;
+}
+.catalog .hd {
+ height: 108rpx;
+ width: 100%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.catalog .hd .txt {
+ font-size: 24rpx;
+ text-align: center;
+ color: #333;
+ padding: 0 10rpx;
+ width: auto;
+}
+.catalog .hd .line {
+ width: 40rpx;
+ height: 1px;
+ background: #d9d9d9;
+}
+.catalog .bd {
+ height: auto;
+ width: 100%;
+ overflow: hidden;
+}
+.catalog .bd .item {
+ display: block;
+ float: left;
+ height: 216rpx;
+ width: 144rpx;
+ margin-right: 34rpx;
+}
+.catalog .bd .item.last {
+ margin-right: 0;
+}
+.catalog .bd .item .icon {
+ height: 144rpx;
+ width: 144rpx;
+}
+.catalog .bd .item .txt {
+ display: block;
+ text-align: center;
+ font-size: 24rpx;
+ color: #333;
+ height: 72rpx;
+ width: 144rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.js
new file mode 100644
index 0000000000000000000000000000000000000000..7ad55179e1f33f202ab0077c2cf0f1564239836e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.js
@@ -0,0 +1,376 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/category/category"],{
+
+/***/ 244:
+/*!*********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fcategory%2Fcategory"} ***!
+ \*********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _category = _interopRequireDefault(__webpack_require__(/*! ./pages/category/category.vue */ 245));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_category.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 245:
+/*!**************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue ***!
+ \**************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _category_vue_vue_type_template_id_682a9774___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./category.vue?vue&type=template&id=682a9774& */ 246);
+/* harmony import */ var _category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./category.vue?vue&type=script&lang=js& */ 248);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _category_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./category.vue?vue&type=style&index=0&lang=css& */ 250);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _category_vue_vue_type_template_id_682a9774___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _category_vue_vue_type_template_id_682a9774___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _category_vue_vue_type_template_id_682a9774___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/category/category.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 246:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?vue&type=template&id=682a9774& ***!
+ \*********************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_template_id_682a9774___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./category.vue?vue&type=template&id=682a9774& */ 247);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_template_id_682a9774___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_template_id_682a9774___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_template_id_682a9774___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_template_id_682a9774___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 247:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?vue&type=template&id=682a9774& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 248:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?vue&type=script&lang=js& ***!
+ \***************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./category.vue?vue&type=script&lang=js& */ 249);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 249:
+/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?vue&type=script&lang=js& ***!
+ \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ navList: [],
+ goodsList: [],
+ id: 0,
+
+ currentCategory: {
+ name: '',
+ desc: '' },
+
+
+ scrollLeft: 0,
+ scrollTop: 0,
+ scrollHeight: 0,
+ page: 1,
+ limit: 10,
+
+ //总页数
+ pages: 1,
+
+ iindex: 0,
+
+ iitem: {
+ id: '',
+ picUrl: '',
+ name: '',
+ retailPrice: '' } };
+
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ var that = this;
+
+ if (options.id) {
+ that.setData({
+ id: parseInt(options.id) });
+
+ }
+
+ uni.getSystemInfo({
+ success: function success(res) {
+ that.setData({
+ scrollHeight: res.windowHeight });
+
+ } });
+
+ this.getCategoryInfo();
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ //触底开始下一页
+ onReachBottom: function onReachBottom() {
+ var that = this;
+ var pagenum = that.page + 1; //获取当前页数并+1
+
+ if (pagenum <= that.pages) {
+ that.setData({
+ page: pagenum //更新当前页数
+ });
+ that.getGoodsList(); //重新调用请求获取下一页数据
+ } else {
+ util.showErrorToast('已经是最后一页了');
+ }
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getCategoryInfo: function getCategoryInfo() {
+ var that = this;
+ util.request(api.GoodsCategory, {
+ id: this.id }).
+ then(function (res) {
+ if (res.errno == 0) {
+ that.setData({
+ navList: res.data.brotherCategory,
+ currentCategory: res.data.currentCategory });
+
+ uni.setNavigationBarTitle({
+ title: res.data.parentCategory.name });
+ // 当id是L1分类id时,这里需要重新设置成L1分类的一个子分类的id
+
+ if (res.data.parentCategory.id == that.id) {
+ that.setData({
+ id: res.data.currentCategory.id });
+
+ } //nav位置
+
+ var currentIndex = 0;
+ var navListCount = that.navList.length;
+
+ for (var i = 0; i < navListCount; i++) {
+ currentIndex += 1;
+
+ if (that.navList[i].id == that.id) {
+ break;
+ }
+ }
+
+ if (currentIndex > navListCount / 2 && navListCount > 5) {
+ that.setData({
+ scrollLeft: currentIndex * 60 });
+
+ }
+
+ that.getGoodsList();
+ } else {
+ //显示错误信息
+ }
+ });
+ },
+
+ getGoodsList: function getGoodsList() {
+ var that = this;
+ util.request(api.GoodsList, {
+ categoryId: that.id,
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ var arr1 = that.goodsList; //从data获取当前datalist数组
+
+ var arr2 = res.data.list; //从此次请求返回的数据中获取新数组
+
+ arr1 = arr1.concat(arr2); //合并数组
+
+ that.setData({
+ goodsList: arr1,
+ pages: res.data.pages //得到总页数
+ });
+ });
+ },
+
+ switchCate: function switchCate(event) {
+ if (this.id == event.currentTarget.dataset.id) {
+ return false;
+ }
+
+ var that = this;
+ var clientX = event.detail.x;
+ var currentTarget = event.currentTarget;
+
+ if (clientX < 60) {
+ that.setData({
+ scrollLeft: currentTarget.offsetLeft - 60 });
+
+ } else {
+ if (clientX > 330) {
+ that.setData({
+ scrollLeft: currentTarget.offsetLeft });
+
+ }
+ }
+
+ this.setData({
+ id: event.currentTarget.dataset.id,
+ page: 1,
+ //从第一页开始查
+ goodsList: [] });
+
+ this.getCategoryInfo();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 250:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./category.vue?vue&type=style&index=0&lang=css& */ 251);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_category_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 251:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/category/category.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[244,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/category/category.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.json
new file mode 100644
index 0000000000000000000000000000000000000000..8835af0699ccec004cbe685ef938cd2d63ea7037
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.json
@@ -0,0 +1,3 @@
+{
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..448ff67ed45b718f6932c5e750eb21c3f8575557
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.wxml
@@ -0,0 +1 @@
+{{item.name}} {{currentCategory.name}} {{currentCategory.desc}} {{iitem.name}} {{"¥"+iitem.retailPrice}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..005ca829fe89172d0cd8535ce4d328f2246ac48b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/category/category.wxss
@@ -0,0 +1,104 @@
+.container {
+ background: #f9f9f9;
+}
+.cate-nav {
+ position: fixed;
+ left: 0;
+ top: 0;
+ z-index: 1000;
+}
+.cate-nav-body {
+ height: 84rpx;
+ white-space: nowrap;
+ background: #fff;
+ border-top: 1px solid rgba(0, 0, 0, 0.15);
+ overflow: hidden;
+}
+.cate-nav .item {
+ display: inline-block;
+ height: 84rpx;
+ min-width: 130rpx;
+ padding: 0 15rpx;
+}
+.cate-nav .item .name {
+ display: block;
+ height: 84rpx;
+ padding: 0 20rpx;
+ line-height: 84rpx;
+ color: #333;
+ font-size: 30rpx;
+ width: auto;
+}
+.cate-nav .item.active .name {
+ color: #ab956d;
+ border-bottom: 2px solid #ab956d;
+}
+.cate-item {
+ margin-top: 94rpx;
+ height: auto;
+ overflow: hidden;
+}
+.cate-item .h {
+ height: 145rpx;
+ width: 750rpx;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+.cate-item .h .name {
+ display: block;
+ height: 35rpx;
+ margin-bottom: 18rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+.cate-item .h .desc {
+ display: block;
+ height: 24rpx;
+ font-size: 24rpx;
+ color: #999;
+}
+.cate-item .b {
+ width: 750rpx;
+ padding: 0 6.25rpx;
+ height: auto;
+ overflow: hidden;
+}
+.cate-item .b .item {
+ float: left;
+ background: #fff;
+ width: 365rpx;
+ margin-bottom: 6.25rpx;
+ padding-bottom: 33.333rpx;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+}
+.cate-item .b .item-b {
+ margin-left: 6.25rpx;
+}
+.cate-item .item .img {
+ width: 302rpx;
+ height: 302rpx;
+}
+.cate-item .item .name {
+ display: block;
+ width: 365.625rpx;
+ height: 35rpx;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ overflow: hidden;
+ padding: 0 20rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+.cate-item .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #ab956d;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.js
new file mode 100644
index 0000000000000000000000000000000000000000..317a43afd7b3b45bd79144a4e237e3aa5fd91c64
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.js
@@ -0,0 +1,507 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/checkout/checkout"],{
+
+/***/ 260:
+/*!*********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fcheckout%2Fcheckout"} ***!
+ \*********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _checkout = _interopRequireDefault(__webpack_require__(/*! ./pages/checkout/checkout.vue */ 261));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_checkout.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 261:
+/*!**************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue ***!
+ \**************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _checkout_vue_vue_type_template_id_a037f574___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./checkout.vue?vue&type=template&id=a037f574& */ 262);
+/* harmony import */ var _checkout_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./checkout.vue?vue&type=script&lang=js& */ 264);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _checkout_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _checkout_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _checkout_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./checkout.vue?vue&type=style&index=0&lang=css& */ 266);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _checkout_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _checkout_vue_vue_type_template_id_a037f574___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _checkout_vue_vue_type_template_id_a037f574___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _checkout_vue_vue_type_template_id_a037f574___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/checkout/checkout.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 262:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?vue&type=template&id=a037f574& ***!
+ \*********************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_template_id_a037f574___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./checkout.vue?vue&type=template&id=a037f574& */ 263);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_template_id_a037f574___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_template_id_a037f574___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_template_id_a037f574___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_template_id_a037f574___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 263:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?vue&type=template&id=a037f574& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 264:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?vue&type=script&lang=js& ***!
+ \***************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./checkout.vue?vue&type=script&lang=js& */ 265);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 265:
+/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?vue&type=script&lang=js& ***!
+ \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ checkedGoodsList: [],
+ checkedAddress: {
+ id: 0,
+ name: '',
+ isDefault: '',
+ tel: '',
+ addressDetail: '' },
+
+ availableCouponLength: 0,
+ // 可用的优惠券数量
+ goodsTotalPrice: 0,
+ //商品总价
+ freightPrice: 0,
+ //快递费
+ couponPrice: 0,
+ //优惠券的价格
+ grouponPrice: 0,
+ //团购优惠价格
+ orderTotalPrice: 0,
+ //订单总价
+ actualPrice: 0,
+ //实际需要支付的总价
+ cartId: 0,
+ addressId: 0,
+ couponId: 0,
+ userCouponId: 0,
+ message: '',
+ grouponLinkId: 0,
+ //参与的团购
+ grouponRulesId: 0 //团购规则ID
+ };
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ uni.showLoading({
+ title: '加载中...' });
+
+
+ try {
+ var cartId = uni.getStorageSync('cartId');
+
+ if (cartId === '') {
+ cartId = 0;
+ }
+
+ var addressId = uni.getStorageSync('addressId');
+
+ if (addressId === '') {
+ addressId = 0;
+ }
+
+ var couponId = uni.getStorageSync('couponId');
+
+ if (couponId === '') {
+ couponId = 0;
+ }
+
+ var userCouponId = uni.getStorageSync('userCouponId');
+
+ if (userCouponId === '') {
+ userCouponId = 0;
+ }
+
+ var grouponRulesId = uni.getStorageSync('grouponRulesId');
+
+ if (grouponRulesId === '') {
+ grouponRulesId = 0;
+ }
+
+ var grouponLinkId = uni.getStorageSync('grouponLinkId');
+
+ if (grouponLinkId === '') {
+ grouponLinkId = 0;
+ }
+
+ this.setData({
+ cartId: cartId,
+ addressId: addressId,
+ couponId: couponId,
+ userCouponId: userCouponId,
+ grouponRulesId: grouponRulesId,
+ grouponLinkId: grouponLinkId });
+
+ } catch (e) {
+ // Do something when catch error
+ console.log(e);
+ }
+
+ this.getCheckoutInfo();
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ //获取checkou信息
+ getCheckoutInfo: function getCheckoutInfo() {
+ var that = this;
+ util.request(api.CartCheckout, {
+ cartId: that.cartId,
+ addressId: that.addressId,
+ couponId: that.couponId,
+ userCouponId: that.userCouponId,
+ grouponRulesId: that.grouponRulesId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ checkedGoodsList: res.data.checkedGoodsList,
+ checkedAddress: res.data.checkedAddress,
+ availableCouponLength: res.data.availableCouponLength,
+ actualPrice: res.data.actualPrice,
+ couponPrice: res.data.couponPrice,
+ grouponPrice: res.data.grouponPrice,
+ freightPrice: res.data.freightPrice,
+ goodsTotalPrice: res.data.goodsTotalPrice,
+ orderTotalPrice: res.data.orderTotalPrice,
+ addressId: res.data.addressId,
+ couponId: res.data.couponId,
+ userCouponId: res.data.userCouponId,
+ grouponRulesId: res.data.grouponRulesId });
+
+ }
+
+ uni.hideLoading();
+ });
+ },
+
+ selectAddress: function selectAddress() {
+ uni.navigateTo({
+ url: '/pages/ucenter/address/address' });
+
+ },
+
+ selectCoupon: function selectCoupon() {
+ uni.navigateTo({
+ url: '/pages/ucenter/couponSelect/couponSelect' });
+
+ },
+
+ bindMessageInput: function bindMessageInput(e) {
+ this.setData({
+ message: e.detail.value });
+
+ },
+
+ submitOrder: function submitOrder() {
+ if (this.addressId <= 0) {
+ util.showErrorToast('请选择收货地址');
+ return false;
+ }
+
+ util.request(
+ api.OrderSubmit,
+ {
+ cartId: this.cartId,
+ addressId: this.addressId,
+ couponId: this.couponId,
+ userCouponId: this.userCouponId,
+ message: this.message,
+ grouponRulesId: this.grouponRulesId,
+ grouponLinkId: this.grouponLinkId },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ // 下单成功,重置couponId
+ try {
+ uni.setStorageSync('couponId', 0);
+ } catch (error) {}
+
+ var orderId = res.data.orderId;
+ var grouponLinkId = res.data.grouponLinkId;
+ util.request(
+ api.OrderPrepay,
+ {
+ orderId: orderId },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ var payParam = res.data;
+ console.log('支付过程开始');
+ uni.requestPayment({
+ timeStamp: payParam.timeStamp,
+ nonceStr: payParam.nonceStr,
+ package: payParam.packageValue,
+ signType: payParam.signType,
+ paySign: payParam.paySign,
+ success: function success(res) {
+ console.log('支付过程成功');
+
+ if (grouponLinkId) {
+ setTimeout(function () {
+ uni.redirectTo({
+ url: '/pages/groupon/grouponDetail/grouponDetail?id=' + grouponLinkId });
+
+ }, 1000);
+ } else {
+ uni.redirectTo({
+ url: '/pages/payResult/payResult?status=1&orderId=' + orderId });
+
+ }
+ },
+ fail: function fail(res) {
+ console.log('支付过程失败');
+ uni.redirectTo({
+ url: '/pages/payResult/payResult?status=0&orderId=' + orderId });
+
+ },
+ complete: function complete(res) {
+ console.log('支付过程结束');
+ } });
+
+ } else {
+ uni.redirectTo({
+ url: '/pages/payResult/payResult?status=0&orderId=' + orderId });
+
+ }
+ });
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 266:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./checkout.vue?vue&type=style&index=0&lang=css& */ 267);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_checkout_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 267:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/checkout/checkout.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[260,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/checkout/checkout.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.json
new file mode 100644
index 0000000000000000000000000000000000000000..2fe0784cd66f58c67de02cd97c89597297f43ccf
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "填写订单",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..aefc9f83cebc3f7cd8384cb5618488c35231291e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.wxml
@@ -0,0 +1 @@
+{{checkedAddress.name}} 默认 {{checkedAddress.tel}} {{checkedAddress.addressDetail}} 还没有收货地址,去添加 没有可用的优惠券 0张 优惠券 {{availableCouponLength+"张"}} 优惠券 {{"-¥"+couponPrice+"元"}} 商品合计 {{"¥"+goodsTotalPrice+"元"}} 运费 {{"¥"+freightPrice+"元"}} 优惠券 {{"-¥"+couponPrice+"元"}} {{item.goodsName}} {{"x"+item.number}} {{item.specifications}} {{"¥"+item.price}} {{"实付:¥"+actualPrice}} 去付款
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e719c1aea417ccf5dcc56da3c8f7d5a6fd031612
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/checkout/checkout.wxss
@@ -0,0 +1,271 @@
+page {
+ height: 100%;
+ background: #f4f4f4;
+}
+.address-box {
+ width: 100%;
+ height: 166.55rpx;
+ background-size: 62.5rpx 10.5rpx;
+ margin-bottom: 20rpx;
+ padding-top: 10.5rpx;
+}
+.address-item {
+ display: flex;
+ height: 155.55rpx;
+ background: #fff;
+ padding: 41.6rpx 0 41.6rpx 31.25rpx;
+}
+.address-item.address-empty {
+ line-height: 75rpx;
+ text-align: center;
+}
+.address-box .l {
+ width: 125rpx;
+ height: 100%;
+}
+.address-box .l .name {
+ margin-left: 6.25rpx;
+ margin-top: -7.25rpx;
+ display: block;
+ width: 125rpx;
+ height: 43rpx;
+ line-height: 43rpx;
+ font-size: 30rpx;
+ color: #333;
+ margin-bottom: 5rpx;
+}
+.address-box .l .default {
+ margin-left: 6.25rpx;
+ display: block;
+ width: 62rpx;
+ height: 33rpx;
+ border-radius: 5rpx;
+ border: 1px solid #b4282d;
+ font-size: 20.5rpx;
+ text-align: center;
+ line-height: 29rpx;
+ color: #b4282d;
+}
+.address-box .m {
+ flex: 1;
+ height: 72.25rpx;
+ color: #999;
+}
+.address-box .mobile {
+ display: block;
+ height: 29rpx;
+ line-height: 29rpx;
+ margin-bottom: 6.25rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+.address-box .address {
+ display: block;
+ height: 37.5rpx;
+ line-height: 37.5rpx;
+ font-size: 25rpx;
+ color: #666;
+}
+.address-box .r {
+ width: 77rpx;
+ height: 77rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.address-box .r image {
+ width: 52.078rpx;
+ height: 52.078rpx;
+}
+.coupon-box {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+}
+.coupon-box .coupon-item {
+ width: 100%;
+ height: 108.3rpx;
+ overflow: hidden;
+ background: #fff;
+ display: flex;
+ padding-left: 31.25rpx;
+}
+.coupon-box .l {
+ flex: 1;
+ height: 43rpx;
+ line-height: 43rpx;
+ padding-top: 35rpx;
+}
+.coupon-box .l .name {
+ float: left;
+ font-size: 30rpx;
+ color: #666;
+}
+.coupon-box .l .txt {
+ float: right;
+ font-size: 30rpx;
+ color: #666;
+}
+.coupon-box .r {
+ margin-top: 15.5rpx;
+ width: 77rpx;
+ height: 77rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.coupon-box .r image {
+ width: 52.078rpx;
+ height: 52.078rpx;
+}
+.message-box {
+ margin-top: 20rpx;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+}
+.message-box .message-item {
+ height: 52.078rpx;
+ overflow: hidden;
+ background: #fff;
+ display: flex;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ padding-top: 26rpx;
+}
+.order-box {
+ margin-top: 20rpx;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+}
+.order-box .order-item {
+ height: 104.3rpx;
+ overflow: hidden;
+ background: #fff;
+ display: flex;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ padding-top: 26rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+.order-box .order-item .l {
+ float: left;
+ height: 52rpx;
+ width: 50%;
+ line-height: 52rpx;
+ overflow: hidden;
+}
+.order-box .order-item .r {
+ float: right;
+ text-align: right;
+ width: 50%;
+ height: 52rpx;
+ line-height: 52rpx;
+ overflow: hidden;
+}
+.order-box .order-item.no-border {
+ border-bottom: none;
+}
+.goods-items {
+ margin-top: 20rpx;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+ padding-left: 31.25rpx;
+ margin-bottom: 120rpx;
+}
+.goods-items .item {
+ height: 192rpx;
+ padding-right: 31.25rpx;
+ display: flex;
+ align-items: center;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+}
+.goods-items .item.no-border {
+ border-bottom: none;
+}
+.goods-items .item:last-child {
+ border-bottom: none;
+}
+.goods-items .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background-color: #f4f4f4;
+ margin-right: 20rpx;
+}
+.goods-items .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+.goods-items .info {
+ flex: 1;
+ height: 145.83rpx;
+ padding-top: 5rpx;
+}
+.goods-items .t {
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10rpx;
+ overflow: hidden;
+ font-size: 30rpx;
+ color: #333;
+}
+.goods-items .t .name {
+ display: block;
+ float: left;
+}
+.goods-items .t .number {
+ display: block;
+ float: right;
+ text-align: right;
+}
+.goods-items .m {
+ height: 29rpx;
+ overflow: hidden;
+ line-height: 29rpx;
+ margin-bottom: 25rpx;
+ font-size: 25rpx;
+ color: #666;
+}
+.goods-items .b {
+ height: 41rpx;
+ overflow: hidden;
+ line-height: 41rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+.order-total {
+ position: fixed;
+ left: 0;
+ bottom: 0;
+ height: 100rpx;
+ width: 100%;
+ display: flex;
+}
+.order-total .l {
+ flex: 1;
+ height: 100rpx;
+ line-height: 100rpx;
+ color: #b4282d;
+ background: #fff;
+ font-size: 33rpx;
+ padding-left: 31.25rpx;
+ border-top: 1rpx solid rgba(0, 0, 0, 0.2);
+ border-bottom: 1rpx solid rgba(0, 0, 0, 0.2);
+}
+.order-total .r {
+ width: 233rpx;
+ height: 100rpx;
+ background: #b4282d;
+ border: 1px solid #b4282d;
+ line-height: 100rpx;
+ text-align: center;
+ color: #fff;
+ font-size: 30rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.js
new file mode 100644
index 0000000000000000000000000000000000000000..2eb9064ce8abaa709a47ed41b38c983a0738e257
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.js
@@ -0,0 +1,348 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/comment/comment"],{
+
+/***/ 172:
+/*!*******************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fcomment%2Fcomment"} ***!
+ \*******************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _comment = _interopRequireDefault(__webpack_require__(/*! ./pages/comment/comment.vue */ 173));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_comment.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 173:
+/*!************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue ***!
+ \************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _comment_vue_vue_type_template_id_62ac83c6___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./comment.vue?vue&type=template&id=62ac83c6& */ 174);
+/* harmony import */ var _comment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./comment.vue?vue&type=script&lang=js& */ 176);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _comment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _comment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _comment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./comment.vue?vue&type=style&index=0&lang=css& */ 178);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _comment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _comment_vue_vue_type_template_id_62ac83c6___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _comment_vue_vue_type_template_id_62ac83c6___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _comment_vue_vue_type_template_id_62ac83c6___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/comment/comment.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 174:
+/*!*******************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?vue&type=template&id=62ac83c6& ***!
+ \*******************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_template_id_62ac83c6___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./comment.vue?vue&type=template&id=62ac83c6& */ 175);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_template_id_62ac83c6___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_template_id_62ac83c6___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_template_id_62ac83c6___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_template_id_62ac83c6___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 175:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?vue&type=template&id=62ac83c6& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 176:
+/*!*************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?vue&type=script&lang=js& ***!
+ \*************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./comment.vue?vue&type=script&lang=js& */ 177);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 177:
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?vue&type=script&lang=js& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var app = getApp();
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ comments: [],
+ allCommentList: [],
+ picCommentList: [],
+ type: 0,
+ valueId: 0,
+ showType: 0,
+ allCount: 0,
+ hasPicCount: 0,
+ allPage: 1,
+ picPage: 1,
+ limit: 20,
+ pitem: '' };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.setData({
+ type: options.type,
+ valueId: options.valueId });
+
+ this.getCommentCount();
+ this.getCommentList();
+ },
+ onPullDownRefresh: function onPullDownRefresh() {
+ this.setData({
+ allCommentList: [],
+ allPage: 1,
+ picCommentList: [],
+ picPage: 1,
+ comments: [] });
+
+ uni.showNavigationBarLoading(); //在标题栏中显示加载
+
+ this.getCommentCount();
+ this.getCommentList();
+ uni.hideNavigationBarLoading(); //完成停止加载
+
+ uni.stopPullDownRefresh(); //停止下拉刷新
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ onReachBottom: function onReachBottom() {
+ if (this.showType == 0) {
+ if (this.allCount / this.limit < this.allPage) {
+ return false;
+ }
+
+ this.setData({
+ allPage: this.allPage + 1 });
+
+ } else {
+ if (this.hasPicCount / this.limit < this.picPage) {
+ return false;
+ }
+
+ this.setData({
+ picPage: this.picPage + 1 });
+
+ }
+
+ this.getCommentList();
+ },
+ methods: {
+ getCommentCount: function getCommentCount() {
+ var that = this;
+ util.request(api.CommentCount, {
+ valueId: that.valueId,
+ type: that.type }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ allCount: res.data.allCount,
+ hasPicCount: res.data.hasPicCount });
+
+ }
+ });
+ },
+
+ getCommentList: function getCommentList() {
+ var that = this;
+ util.request(api.CommentList, {
+ valueId: that.valueId,
+ type: that.type,
+ limit: that.limit,
+ page: that.showType == 0 ? that.allPage : that.picPage,
+ showType: that.showType }).
+ then(function (res) {
+ if (res.errno === 0) {
+ if (that.showType == 0) {
+ that.setData({
+ allCommentList: that.allCommentList.concat(res.data.list),
+ allPage: res.data.page,
+ comments: that.allCommentList.concat(res.data.list) });
+
+ } else {
+ that.setData({
+ picCommentList: that.picCommentList.concat(res.data.list),
+ picPage: res.data.page,
+ comments: that.picCommentList.concat(res.data.list) });
+
+ }
+ }
+ });
+ },
+
+ switchTab: function switchTab() {
+ var that = this;
+
+ if (that.showType == 0) {
+ that.setData({
+ allCommentList: [],
+ allPage: 1,
+ comments: [],
+ showType: 1 });
+
+ } else {
+ that.setData({
+ picCommentList: [],
+ picPage: 1,
+ comments: [],
+ showType: 0 });
+
+ }
+
+ this.getCommentList();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 178:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./comment.vue?vue&type=style&index=0&lang=css& */ 179);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_comment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 179:
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/comment/comment.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[172,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/comment/comment.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.json
new file mode 100644
index 0000000000000000000000000000000000000000..c5d2e7b24cf35820effda2369c6b49a93c625579
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.json
@@ -0,0 +1,5 @@
+{
+ "enablePullDownRefresh": true,
+ "navigationBarTitleText": "评价",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..a1ede3ee49f2a43160997b7f14639a8e97eb6087
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.wxml
@@ -0,0 +1 @@
+{{"全部("+allCount+")"}} {{"有图("+hasPicCount+")"}} {{item.userInfo.nickname}} {{item.addTime}} {{item.content}} 商家回复: {{item.adminContent}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e57e3ffef6c744b81de295849f57f43fed0a18b8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/comment/comment.wxss
@@ -0,0 +1,136 @@
+.comments {
+ width: 100%;
+ height: auto;
+ padding-left: 30rpx;
+ background: #fff;
+ margin: 20rpx 0;
+}
+.comments .h {
+ position: fixed;
+ left: 0;
+ top: 0;
+ z-index: 1000;
+ width: 100%;
+ display: flex;
+ background: #fff;
+ height: 84rpx;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+}
+.comments .h .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 50%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+.comments .h .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #333;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+.comments .h .item.active .txt {
+ color: #ab2b2b;
+ border-bottom: 4rpx solid #ab2b2b;
+}
+.comments .b {
+ margin-top: 85rpx;
+ height: auto;
+ width: 720rpx;
+}
+.comments .b.no-h {
+ margin-top: 0;
+}
+.comments .item {
+ height: auto;
+ width: 720rpx;
+ overflow: hidden;
+ border-bottom: 1px solid #d9d9d9;
+ padding-bottom: 25rpx;
+}
+.comments .info {
+ height: 127rpx;
+ width: 100%;
+ padding: 33rpx 0 27rpx 0;
+}
+.comments .user {
+ float: left;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ font-size: 0;
+}
+.comments .user image {
+ float: left;
+ width: 67rpx;
+ height: 67rpx;
+ margin-right: 17rpx;
+ border-radius: 50%;
+}
+.comments .user text {
+ display: inline-block;
+ width: auto;
+ height: 66rpx;
+ overflow: hidden;
+ font-size: 29rpx;
+ line-height: 66rpx;
+}
+.comments .time {
+ display: block;
+ float: right;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ color: #7f7f7f;
+ font-size: 25rpx;
+ margin-right: 30rpx;
+}
+.comments .comment {
+ width: 720rpx;
+ padding-right: 30rpx;
+ line-height: 45.8rpx;
+ font-size: 29rpx;
+ margin-bottom: 16rpx;
+}
+.comments .imgs {
+ width: 720rpx;
+ height: 150rpx;
+ margin-bottom: 25rpx;
+}
+.comments .imgs .img {
+ height: 150rpx;
+ width: 150rpx;
+ margin-right: 28rpx;
+}
+.comments .spec {
+ width: 720rpx;
+ height: 25rpx;
+ font-size: 24rpx;
+ color: #999;
+}
+.comments .spec .item {
+ color: #7f7f7f;
+ font-size: 25rpx;
+}
+.comments .customer-service {
+ width: 690rpx;
+ height: auto;
+ overflow: hidden;
+ margin-top: 23rpx;
+ background: rgba(0, 0, 0, 0.03);
+ padding: 21rpx;
+}
+.comments .customer-service .u {
+ font-size: 24rpx;
+ color: #333;
+ line-height: 37.5rpx;
+}
+.comments .customer-service .c {
+ font-size: 24rpx;
+ color: #999;
+ line-height: 37.5rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.js
new file mode 100644
index 0000000000000000000000000000000000000000..dd69f13bc890e1dddf3ed4230859be53f5ff81b3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.js
@@ -0,0 +1,428 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/commentPost/commentPost"],{
+
+/***/ 180:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2FcommentPost%2FcommentPost"} ***!
+ \***************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _commentPost = _interopRequireDefault(__webpack_require__(/*! ./pages/commentPost/commentPost.vue */ 181));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_commentPost.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 181:
+/*!********************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue ***!
+ \********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _commentPost_vue_vue_type_template_id_aa485174___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./commentPost.vue?vue&type=template&id=aa485174& */ 182);
+/* harmony import */ var _commentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./commentPost.vue?vue&type=script&lang=js& */ 184);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _commentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _commentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _commentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./commentPost.vue?vue&type=style&index=0&lang=css& */ 186);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _commentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _commentPost_vue_vue_type_template_id_aa485174___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _commentPost_vue_vue_type_template_id_aa485174___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _commentPost_vue_vue_type_template_id_aa485174___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/commentPost/commentPost.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 182:
+/*!***************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?vue&type=template&id=aa485174& ***!
+ \***************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_template_id_aa485174___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./commentPost.vue?vue&type=template&id=aa485174& */ 183);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_template_id_aa485174___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_template_id_aa485174___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_template_id_aa485174___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_template_id_aa485174___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 183:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?vue&type=template&id=aa485174& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 184:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./commentPost.vue?vue&type=script&lang=js& */ 185);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 185:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+// 上传组件 基于https://github.com/Tencent/weui-wxss/tree/master/src/example/uploader
+var app = getApp();
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ orderId: 0,
+ type: 0,
+ valueId: 0,
+ orderGoods: {
+ picUrl: '',
+ goodsName: '',
+ number: '',
+ goodsSpecificationValues: '' },
+
+ content: {
+ length: 0 },
+
+ stars: [0, 1, 2, 3, 4],
+ star: 5,
+ starText: '十分满意',
+ hasPicture: false,
+ picUrls: [],
+ files: [] };
+
+ },
+ onLoad: function onLoad(options) {
+ var that = this;
+ that.setData({
+ orderId: options.orderId,
+ type: options.type,
+ valueId: options.valueId });
+
+ this.getOrderGoods();
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ chooseImage: function chooseImage(e) {
+ if (this.files.length >= 5) {
+ util.showErrorToast('只能上传五张图片');
+ return false;
+ }
+
+ var that = this;
+ uni.chooseImage({
+ count: 1,
+ sizeType: ['original', 'compressed'],
+ sourceType: ['album', 'camera'],
+ success: function success(res) {
+ that.setData({
+ files: that.files.concat(res.tempFilePaths) });
+
+ that.upload(res);
+ } });
+
+ },
+
+ upload: function upload(res) {
+ var that = this;
+ var uploadTask = uni.uploadFile({
+ url: api.StorageUpload,
+ filePath: res.tempFilePaths[0],
+ name: 'file',
+ success: function success(res) {
+ var _res = JSON.parse(res.data);
+
+ if (_res.errno === 0) {
+ var url = _res.data.url;
+ that.picUrls.push(url);
+ that.setData({
+ hasPicture: true,
+ picUrls: that.picUrls });
+
+ }
+ },
+ fail: function fail(e) {
+ uni.showModal({
+ title: '错误',
+ content: '上传失败',
+ showCancel: false });
+
+ } });
+
+ uploadTask.onProgressUpdate(function (res) {
+ console.log('上传进度', res.progress);
+ console.log('已经上传的数据长度', res.totalBytesSent);
+ console.log('预期需要上传的数据总长度', res.totalBytesExpectedToSend);
+ });
+ },
+
+ previewImage: function previewImage(e) {
+ uni.previewImage({
+ current: e.currentTarget.id,
+ // 当前显示图片的http链接
+ urls: this.files // 需要预览的图片http链接列表
+ });
+ },
+
+ selectRater: function selectRater(e) {
+ var star = e.currentTarget.dataset.star + 1;
+ var starText;
+
+ if (star == 1) {
+ starText = '很差';
+ } else {
+ if (star == 2) {
+ starText = '不太满意';
+ } else {
+ if (star == 3) {
+ starText = '满意';
+ } else {
+ if (star == 4) {
+ starText = '比较满意';
+ } else {
+ starText = '十分满意';
+ }
+ }
+ }
+ }
+
+ this.setData({
+ star: star,
+ starText: starText });
+
+ },
+
+ getOrderGoods: function getOrderGoods() {
+ var that = this;
+ util.request(api.OrderGoods, {
+ orderId: that.orderId,
+ goodsId: that.valueId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ orderGoods: res.data });
+
+ }
+ });
+ },
+
+ onClose: function onClose() {
+ uni.navigateBack();
+ },
+
+ onPost: function onPost() {
+ var that = this;
+
+ if (!this.content) {
+ util.showErrorToast('请填写评论');
+ return false;
+ }
+
+ util.request(
+ api.OrderComment,
+ {
+ orderGoodsId: that.orderGoods.id,
+ content: that.content,
+ star: that.star,
+ hasPicture: that.hasPicture,
+ picUrls: that.picUrls },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '评论成功',
+ complete: function complete() {
+ uni.switchTab({
+ url: '/pages/ucenter/index/index' });
+
+ } });
+
+ }
+ });
+ },
+
+ bindInputValue: function bindInputValue(event) {
+ var value = event.detail.value; //判断是否超过140个字符
+
+ if (value && value.length > 140) {
+ return false;
+ }
+
+ this.setData({
+ content: event.detail.value });
+
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 186:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./commentPost.vue?vue&type=style&index=0&lang=css& */ 187);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_commentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 187:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/commentPost/commentPost.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[180,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/commentPost/commentPost.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.json
new file mode 100644
index 0000000000000000000000000000000000000000..aa7a059e964a052c30adf32464bb5e5f84493b45
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "评价",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..6c29f3685af60857b0d8148421827360b17be6b7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.wxml
@@ -0,0 +1 @@
+{{orderGoods.goodsName+" x"+orderGoods.number}} {{orderGoods.goodsSpecificationValues}} 评分 {{starText}} {{140-content.length}} 图片上传 {{picUrls.length+"/"+files.length}} 取消 发表
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..c769c50c2a5d1305c6e68c1f377a37405bd1a900
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/commentPost/commentPost.wxss
@@ -0,0 +1,209 @@
+page,
+.container {
+ height: 100%;
+ background: #f4f4f4;
+}
+.post-comment {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 30rpx;
+ background: #fff;
+}
+.post-comment .goods {
+ display: flex;
+ align-items: center;
+ height: 199rpx;
+ margin-left: 31.25rpx;
+}
+.post-comment .goods .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+.post-comment .goods .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+.post-comment .goods .info {
+ height: 145.83rpx;
+ flex: 1;
+ padding-left: 20rpx;
+}
+.post-comment .goods .name {
+ margin-top: 30rpx;
+ display: block;
+ height: 44rpx;
+ line-height: 44rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.post-comment .goods .number {
+ display: block;
+ height: 37rpx;
+ line-height: 37rpx;
+ color: #666;
+ font-size: 25rpx;
+}
+.post-comment .goods .status {
+ width: 105rpx;
+ color: #b4282d;
+ font-size: 25rpx;
+}
+.post-comment .rater {
+ display: flex;
+ flex-direction: row;
+ height: 55rpx;
+}
+.post-comment .rater .rater-title {
+ font-size: 29rpx;
+ padding-right: 10rpx;
+}
+.post-comment .rater image {
+ padding-left: 5rpx;
+ height: 50rpx;
+ width: 50rpx;
+}
+.post-comment .rater .rater-desc {
+ font-size: 29rpx;
+ padding-left: 10rpx;
+}
+.post-comment .input-box {
+ height: 337.5rpx;
+ width: 690rpx;
+ position: relative;
+ background: #fff;
+}
+.post-comment .input-box .content {
+ position: absolute;
+ top: 0;
+ left: 0;
+ display: block;
+ background: #fff;
+ font-size: 29rpx;
+ border: 5px solid #f4f4f4;
+ height: 300rpx;
+ width: 650rpx;
+ padding: 20rpx;
+}
+.post-comment .input-box .count {
+ position: absolute;
+ bottom: 20rpx;
+ right: 20rpx;
+ display: block;
+ height: 30rpx;
+ width: 50rpx;
+ font-size: 29rpx;
+ color: #999;
+}
+.post-comment .btns {
+ height: 108rpx;
+}
+.post-comment .close {
+ float: left;
+ height: 108rpx;
+ line-height: 108rpx;
+ text-align: left;
+ color: #666;
+ padding: 0 30rpx;
+}
+.post-comment .post {
+ float: right;
+ height: 108rpx;
+ line-height: 108rpx;
+ text-align: right;
+ padding: 0 30rpx;
+}
+.weui-uploader {
+ margin-top: 50rpx;
+}
+.weui-uploader__hd {
+ display: flex;
+ padding-bottom: 10px;
+ align-items: center;
+}
+.weui-uploader__title {
+ flex: 1;
+}
+.weui-uploader__info {
+ color: #b2b2b2;
+}
+.weui-uploader__bd {
+ margin-bottom: -4px;
+ margin-right: -9px;
+ overflow: hidden;
+}
+.weui-uploader__file {
+ float: left;
+ margin-right: 9px;
+ margin-bottom: 9px;
+}
+.weui-uploader__img {
+ display: block;
+ width: 79px;
+ height: 79px;
+}
+.weui-uploader__file_status {
+ position: relative;
+}
+.weui-uploader__file_status:before {
+ content: ' ';
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ background-color: rgba(0, 0, 0, 0.5);
+}
+.weui-uploader__file-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ color: #fff;
+}
+.weui-uploader__input-box {
+ float: left;
+ position: relative;
+ margin-right: 9px;
+ margin-bottom: 9px;
+ width: 77px;
+ height: 77px;
+ border: 1px solid #d9d9d9;
+}
+.weui-uploader__input-box:after,
+.weui-uploader__input-box:before {
+ content: ' ';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ background-color: #d9d9d9;
+}
+.weui-uploader__input-box:before {
+ width: 2px;
+ height: 39.5px;
+}
+.weui-uploader__input-box:after {
+ width: 39.5px;
+ height: 2px;
+}
+.weui-uploader__input-box:active {
+ border-color: #999;
+}
+.weui-uploader__input-box:active:after,
+.weui-uploader__input-box:active:before {
+ background-color: #999;
+}
+.weui-uploader__input {
+ position: absolute;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.js
new file mode 100644
index 0000000000000000000000000000000000000000..ebec6fe75b15d146b125c88e4a045a4105ca41a3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.js
@@ -0,0 +1,331 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/coupon/coupon"],{
+
+/***/ 308:
+/*!*****************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fcoupon%2Fcoupon"} ***!
+ \*****************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _coupon = _interopRequireDefault(__webpack_require__(/*! ./pages/coupon/coupon.vue */ 309));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_coupon.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 309:
+/*!**********************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue ***!
+ \**********************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _coupon_vue_vue_type_template_id_032f11f4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./coupon.vue?vue&type=template&id=032f11f4& */ 310);
+/* harmony import */ var _coupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./coupon.vue?vue&type=script&lang=js& */ 312);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _coupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _coupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _coupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./coupon.vue?vue&type=style&index=0&lang=css& */ 314);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _coupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _coupon_vue_vue_type_template_id_032f11f4___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _coupon_vue_vue_type_template_id_032f11f4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _coupon_vue_vue_type_template_id_032f11f4___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/coupon/coupon.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 310:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?vue&type=template&id=032f11f4& ***!
+ \*****************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_template_id_032f11f4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./coupon.vue?vue&type=template&id=032f11f4& */ 311);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_template_id_032f11f4___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_template_id_032f11f4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_template_id_032f11f4___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_template_id_032f11f4___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 311:
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?vue&type=template&id=032f11f4& ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 312:
+/*!***********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?vue&type=script&lang=js& ***!
+ \***********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./coupon.vue?vue&type=script&lang=js& */ 313);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 313:
+/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?vue&type=script&lang=js& ***!
+ \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ couponList: [],
+ page: 1,
+ limit: 10,
+ count: 0,
+ scrollTop: 0,
+ showPage: false };
+
+ }
+ /**
+ * 生命周期函数--监听页面加载
+ */,
+ onLoad: function onLoad(options) {
+ this.getCouponList();
+ },
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady: function onReady() {},
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow: function onShow() {},
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide: function onHide() {},
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload: function onUnload() {},
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh: function onPullDownRefresh() {},
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom: function onReachBottom() {},
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage: function onShareAppMessage() {},
+ methods: {
+ getCouponList: function getCouponList() {
+ var that = this;
+ that.setData({
+ scrollTop: 0,
+ showPage: false,
+ couponList: [] });
+ // 页面渲染完成
+
+ uni.showToast({
+ title: '加载中...',
+ icon: 'loading',
+ duration: 2000 });
+
+ util.request(api.CouponList, {
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ scrollTop: 0,
+ couponList: res.data.list,
+ showPage: true,
+ count: res.data.total });
+
+ }
+
+ uni.hideToast();
+ });
+ },
+
+ getCoupon: function getCoupon(e) {
+ if (!app.globalData.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ return;
+ }
+
+ var couponId = e.currentTarget.dataset.index;
+ util.request(
+ api.CouponReceive,
+ {
+ couponId: couponId },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '领取成功' });
+
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ },
+
+ nextPage: function nextPage(event) {
+ var that = this;
+
+ if (this.page > that.count / that.limit) {
+ return true;
+ }
+
+ that.setData({
+ page: that.page + 1 });
+
+ this.getCouponList();
+ },
+
+ prevPage: function prevPage(event) {
+ if (this.page <= 1) {
+ return false;
+ }
+
+ var that = this;
+ that.setData({
+ page: that.page - 1 });
+
+ this.getCouponList();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 314:
+/*!*******************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?vue&type=style&index=0&lang=css& ***!
+ \*******************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./coupon.vue?vue&type=style&index=0&lang=css& */ 315);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_coupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 315:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/coupon/coupon.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[308,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/coupon/coupon.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1c8f6396b76f48b590a730ffd8dcc92ca991bea
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "优惠券专区",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..8f0c3e9f4f129edf2458a1bb78d0199029207892
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.wxml
@@ -0,0 +1 @@
+{{item.tag}} {{item.discount+"元"}} {{"满"+item.min+"元使用"}} {{item.name}} {{"有效期:"+item.days+"天"}} {{"有效期:"+item.startTime+" - "+item.endTime}} {{item.desc}} 上一页 下一页
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..22a627b86e615d550c08ac314dca9601e86fa848
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/coupon/coupon.wxss
@@ -0,0 +1,114 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ padding-top: 30rpx;
+}
+.coupon-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+}
+.item {
+ position: relative;
+ height: 290rpx;
+ width: 700rpx;
+ background: linear-gradient(to right, #cfa568, #e3bf79);
+ margin-bottom: 30rpx;
+ margin-left: 30rpx;
+ margin-right: 30rpx;
+ padding-top: 52rpx;
+}
+.tag {
+ height: 32rpx;
+ background: #a48143;
+ padding-left: 16rpx;
+ padding-right: 16rpx;
+ position: absolute;
+ left: 20rpx;
+ color: #fff;
+ top: 20rpx;
+ font-size: 20rpx;
+ text-align: center;
+ line-height: 32rpx;
+}
+.content {
+ margin-top: 24rpx;
+ margin-left: 40rpx;
+ display: flex;
+ margin-right: 40rpx;
+ flex-direction: row;
+}
+.content .left {
+ flex: 1;
+}
+.discount {
+ font-size: 50rpx;
+ color: #b4282d;
+}
+.min {
+ color: #fff;
+}
+.content .right {
+ width: 400rpx;
+}
+.name {
+ font-size: 44rpx;
+ color: #fff;
+ margin-bottom: 14rpx;
+}
+.time {
+ font-size: 24rpx;
+ color: #fff;
+ line-height: 30rpx;
+}
+.condition {
+ position: absolute;
+ width: 100%;
+ bottom: 0;
+ left: 0;
+ height: 78rpx;
+ background: rgba(0, 0, 0, 0.08);
+ padding: 24rpx 40rpx;
+ display: flex;
+ flex-direction: row;
+}
+.condition .txt {
+ display: block;
+ height: 30rpx;
+ flex: 1;
+ overflow: hidden;
+ font-size: 24rpx;
+ line-height: 30rpx;
+ color: #fff;
+}
+.condition .icon {
+ margin-left: 30rpx;
+ width: 24rpx;
+ height: 24rpx;
+}
+.page {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+.page view {
+ height: 108rpx;
+ width: 50%;
+ float: left;
+ font-size: 29rpx;
+ color: #333;
+ text-align: center;
+ line-height: 108rpx;
+}
+.page .prev {
+ border-right: 1px solid #d9d9d9;
+}
+.page .disabled {
+ color: #ccc;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.js
new file mode 100644
index 0000000000000000000000000000000000000000..f21fb9cf04de05d9f8f4e6bfd90f1e249706c0a4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.js
@@ -0,0 +1,1126 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/goods/goods"],{
+
+/***/ 268:
+/*!***************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fgoods%2Fgoods"} ***!
+ \***************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _goods = _interopRequireDefault(__webpack_require__(/*! ./pages/goods/goods.vue */ 269));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_goods.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 269:
+/*!********************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue ***!
+ \********************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _goods_vue_vue_type_template_id_5566b618___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./goods.vue?vue&type=template&id=5566b618& */ 270);
+/* harmony import */ var _goods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./goods.vue?vue&type=script&lang=js& */ 272);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _goods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _goods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _goods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./goods.vue?vue&type=style&index=0&lang=css& */ 274);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _goods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _goods_vue_vue_type_template_id_5566b618___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _goods_vue_vue_type_template_id_5566b618___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _goods_vue_vue_type_template_id_5566b618___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/goods/goods.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 270:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?vue&type=template&id=5566b618& ***!
+ \***************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_template_id_5566b618___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./goods.vue?vue&type=template&id=5566b618& */ 271);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_template_id_5566b618___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_template_id_5566b618___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_template_id_5566b618___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_template_id_5566b618___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 271:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?vue&type=template&id=5566b618& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+try {
+ components = {
+ mpHtml: function() {
+ return Promise.all(/*! import() | uni_modules/mp-html/components/mp-html/mp-html */[__webpack_require__.e("common/vendor"), __webpack_require__.e("uni_modules/mp-html/components/mp-html/mp-html")]).then(__webpack_require__.bind(null, /*! @/uni_modules/mp-html/components/mp-html/mp-html.vue */ 348))
+ }
+ }
+} catch (e) {
+ if (
+ e.message.indexOf("Cannot find module") !== -1 &&
+ e.message.indexOf(".vue") !== -1
+ ) {
+ console.error(e.message)
+ console.error("1. 排查组件名称拼写是否正确")
+ console.error(
+ "2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom"
+ )
+ console.error(
+ "3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件"
+ )
+ } else {
+ throw e
+ }
+}
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 272:
+/*!*********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./goods.vue?vue&type=script&lang=js& */ 273);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 273:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var app = getApp();
+
+var undefined;
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var user = __webpack_require__(/*! ../../utils/user.js */ 11);var _default =
+
+{
+ data: function data() {
+ return {
+ canShare: false,
+ id: 0,
+
+ goods: {
+ gallery: [],
+ name: '',
+ brief: '',
+ counterPrice: '',
+ id: '' },
+
+
+ groupon: [],
+
+ //该商品支持的团购规格
+ grouponLink: {},
+
+ //参与的团购
+ attribute: [],
+
+ issueList: [],
+ comment: [],
+
+ brand: {
+ name: '',
+ id: '' },
+
+
+ specificationList: [],
+ productList: [],
+ relatedGoods: [],
+ cartGoodsCount: 0,
+ userHasCollect: 0,
+ number: 1,
+ tmpPicUrl: '',
+ checkedSpecText: '规格数量选择',
+ tmpSpecText: '请选择规格数量',
+ checkedSpecPrice: 0,
+ openAttr: false,
+ openShare: false,
+ collect: false,
+ shareImage: '',
+ isGroupon: false,
+
+ //标识是否是一个参团购买
+ soldout: false,
+
+ //用户是否获取了保存相册的权限
+ canWrite: false,
+
+ iitem: '',
+ article_goodsDetail: '',
+
+ vitem: {
+ checked: false,
+ id: '',
+ specification: '',
+ value: '',
+ discount: '',
+ discountMember: '' } };
+
+
+ }, // 页面分享
+ onShareAppMessage: function onShareAppMessage() {
+ var that = this;
+ return {
+ title: that.goods.name,
+ desc: '唯爱与美食不可辜负',
+ path: '/pages/index/index?goodId=' + this.id };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ if (options.id) {
+ this.setData({
+ id: parseInt(options.id) });
+
+ this.getGoodsInfo();
+ }
+
+ if (options.grouponId) {
+ this.setData({
+ isGroupon: true });
+
+ this.getGrouponInfo(options.grouponId);
+ }
+
+ var that = this;
+ uni.getSetting({
+ success: function success(res) {
+ console.log(res); //不存在相册授权
+
+ if (!res.authSetting['scope.writePhotosAlbum']) {
+ uni.authorize({
+ scope: 'scope.writePhotosAlbum',
+ success: function success() {
+ that.setData({
+ canWrite: true });
+
+ },
+ fail: function fail(err) {
+ that.setData({
+ canWrite: false });
+
+ } });
+
+ } else {
+ that.setData({
+ canWrite: true });
+
+ }
+ } });
+
+ },
+ onShow: function onShow() {
+ // 页面显示
+ var that = this;
+ util.request(api.CartGoodsCount).then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ cartGoodsCount: res.data });
+
+ }
+ });
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ methods: {
+ shareFriendOrCircle: function shareFriendOrCircle() {
+ //var that = this;
+ if (this.openShare === false) {
+ this.setData({
+ openShare: !this.openShare });
+
+ } else {
+ return false;
+ }
+ },
+
+ handleSetting: function handleSetting(e) {
+ var that = this; // console.log(e)
+
+ if (!e.detail.authSetting['scope.writePhotosAlbum']) {
+ uni.showModal({
+ title: '警告',
+ content: '不授权无法保存',
+ showCancel: false });
+
+ that.setData({
+ canWrite: false });
+
+ } else {
+ uni.showToast({
+ title: '保存成功' });
+
+ that.setData({
+ canWrite: true });
+
+ }
+ },
+
+ // 保存分享图
+ saveShare: function saveShare() {
+ var that = this;
+ uni.downloadFile({
+ url: that.shareImage,
+ success: function success(res) {
+ console.log(res);
+ uni.saveImageToPhotosAlbum({
+ filePath: res.tempFilePath,
+ success: function success(res) {
+ uni.showModal({
+ title: '生成海报成功',
+ content: '海报已成功保存到相册,可以分享到朋友圈了',
+ showCancel: false,
+ confirmText: '好的',
+ confirmColor: '#a78845',
+ success: function success(res) {
+ if (res.confirm) {
+ console.log('用户点击确定');
+ }
+ } });
+
+ },
+ fail: function fail(res) {
+ console.log('fail');
+ } });
+
+ },
+ fail: function fail() {
+ console.log('fail');
+ } });
+
+ },
+
+ //从分享的团购进入
+ getGrouponInfo: function getGrouponInfo(grouponId) {
+ var that = this;
+ util.request(api.GroupOnJoin, {
+ grouponId: grouponId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ grouponLink: res.data.groupon,
+ id: res.data.goods.id });
+ //获取商品详情
+
+ that.getGoodsInfo();
+ }
+ });
+ },
+
+ // 获取商品信息
+ getGoodsInfo: function getGoodsInfo() {
+ var that = this;
+ util.request(api.GoodsDetail, {
+ id: that.id }).
+ then(function (res) {
+ if (res.errno === 0) {
+ var _specificationList = res.data.specificationList;
+ var _tmpPicUrl = res.data.productList[0].url; //console.log("pic: "+_tmpPicUrl);
+ // 如果仅仅存在一种货品,那么商品页面初始化时默认checked
+
+ if (_specificationList.length == 1) {
+ if (_specificationList[0].valueList.length == 1) {
+ _specificationList[0].valueList[0].checked = true; // 如果仅仅存在一种货品,那么商品价格应该和货品价格一致
+ // 这里检测一下
+
+ var _productPrice = res.data.productList[0].price;
+ var _goodsPrice = res.data.info.retailPrice;
+
+ if (_productPrice != _goodsPrice) {
+ console.error('商品数量价格和货品不一致');
+ }
+
+ that.setData({
+ checkedSpecText: _specificationList[0].valueList[0].value,
+ tmpSpecText: '已选择:' + _specificationList[0].valueList[0].value });
+
+ }
+ }
+
+ that.setData({
+ goods: res.data.info,
+ attribute: res.data.attribute,
+ issueList: res.data.issue,
+ comment: res.data.comment,
+ brand: res.data.brand,
+ specificationList: res.data.specificationList,
+ productList: res.data.productList,
+ userHasCollect: res.data.userHasCollect,
+ shareImage: res.data.shareImage,
+ checkedSpecPrice: res.data.info.retailPrice,
+ groupon: res.data.groupon,
+ canShare: res.data.share,
+ //选择规格时,默认展示第一张图片
+ tmpPicUrl: _tmpPicUrl });
+ //如果是通过分享的团购参加团购,则团购项目应该与分享的一致并且不可更改
+
+ if (that.isGroupon) {
+ var groupons = that.groupon;
+
+ for (var i = 0; i < groupons.length; i++) {
+ if (groupons[i].id != that.grouponLink.rulesId) {
+ groupons.splice(i, 1);
+ }
+ }
+
+ groupons[0].checked = true; //重设团购规格
+
+ that.setData({
+ groupon: groupons });
+
+ }
+
+ if (res.data.userHasCollect == 1) {
+ that.setData({
+ collect: true });
+
+ } else {
+ that.setData({
+ collect: false });
+
+ }
+
+ //WxParse.wxParse('goodsDetail', 'html', res.data.info.detail, that)
+ that.article_goodsDetail = that.escape2Html(res.data.info.detail); //获取推荐商品
+
+ that.getGoodsRelated();
+ }
+ });
+ },
+
+ // 获取推荐商品
+ getGoodsRelated: function getGoodsRelated() {
+ var that = this;
+ util.request(api.GoodsRelated, {
+ id: that.id }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ relatedGoods: res.data.list });
+
+ }
+ });
+ },
+
+ // 团购选择
+ clickGroupon: function clickGroupon(event) {
+ var that = this; //参与团购,不可更改选择
+
+ if (that.isGroupon) {
+ return;
+ }
+
+ var specName = event.currentTarget.dataset.name;
+ var specValueId = event.currentTarget.dataset.valueId;
+ var _grouponList = this.groupon;
+
+ for (var i = 0; i < _grouponList.length; i++) {
+ if (_grouponList[i].id == specValueId) {
+ if (_grouponList[i].checked) {
+ _grouponList[i].checked = false;
+ } else {
+ _grouponList[i].checked = true;
+ }
+ } else {
+ _grouponList[i].checked = false;
+ }
+ }
+
+ this.setData({
+ groupon: _grouponList });
+
+ },
+
+ // 规格选择
+ clickSkuValue: function clickSkuValue(event) {
+ var that = this;
+ var specName = event.currentTarget.dataset.name;
+ var specValueId = event.currentTarget.dataset.valueId; //判断是否可以点击
+ //TODO 性能优化,可在wx:for中添加index,可以直接获取点击的属性名和属性值,不用循环
+
+ var _specificationList = this.specificationList;
+
+ for (var i = 0; i < _specificationList.length; i++) {
+ if (_specificationList[i].name === specName) {
+ for (var j = 0; j < _specificationList[i].valueList.length; j++) {
+ if (_specificationList[i].valueList[j].id == specValueId) {
+ //如果已经选中,则反选
+ if (_specificationList[i].valueList[j].checked) {
+ _specificationList[i].valueList[j].checked = false;
+ } else {
+ _specificationList[i].valueList[j].checked = true;
+ }
+ } else {
+ _specificationList[i].valueList[j].checked = false;
+ }
+ }
+ }
+ }
+
+ this.setData({
+ specificationList: _specificationList });
+ //重新计算spec改变后的信息
+
+ this.changeSpecInfo(); //重新计算哪些值不可以点击
+ },
+
+ //获取选中的团购信息
+ getCheckedGrouponValue: function getCheckedGrouponValue() {
+ var checkedValues = {};
+ var _grouponList = this.groupon;
+
+ for (var i = 0; i < _grouponList.length; i++) {
+ if (_grouponList[i].checked) {
+ checkedValues = _grouponList[i];
+ }
+ }
+
+ return checkedValues;
+ },
+
+ //获取选中的规格信息
+ getCheckedSpecValue: function getCheckedSpecValue() {
+ var checkedValues = [];
+ var _specificationList = this.specificationList;
+
+ for (var i = 0; i < _specificationList.length; i++) {
+ var _checkedObj = {
+ name: _specificationList[i].name,
+ valueId: 0,
+ valueText: '' };
+
+
+ for (var j = 0; j < _specificationList[i].valueList.length; j++) {
+ if (_specificationList[i].valueList[j].checked) {
+ _checkedObj.valueId = _specificationList[i].valueList[j].id;
+ _checkedObj.valueText = _specificationList[i].valueList[j].value;
+ }
+ }
+
+ checkedValues.push(_checkedObj);
+ }
+
+ return checkedValues;
+ },
+
+ //判断规格是否选择完整
+ isCheckedAllSpec: function isCheckedAllSpec() {
+ return !this.getCheckedSpecValue().some(function (v) {
+ if (v.valueId == 0) {
+ return true;
+ }
+ });
+ },
+
+ getCheckedSpecKey: function getCheckedSpecKey() {
+ var checkedValue = this.getCheckedSpecValue().map(function (v) {
+ return v.valueText;
+ });
+ return checkedValue;
+ },
+
+ // 规格改变时,重新计算价格及显示信息
+ changeSpecInfo: function changeSpecInfo() {
+ var checkedNameValue = this.getCheckedSpecValue(); //设置选择的信息
+
+ var checkedValue = checkedNameValue.
+ filter(function (v) {
+ if (v.valueId != 0) {
+ return true;
+ } else {
+ return false;
+ }
+ }).
+ map(function (v) {
+ return v.valueText;
+ });
+
+ if (checkedValue.length > 0) {
+ this.setData({
+ tmpSpecText: checkedValue.join(' ') });
+
+ } else {
+ this.setData({
+ tmpSpecText: '请选择规格数量' });
+
+ }
+
+ if (this.isCheckedAllSpec()) {
+ this.setData({
+ checkedSpecText: this.tmpSpecText });
+ // 规格所对应的货品选择以后
+
+ var checkedProductArray = this.getCheckedProductItem(this.getCheckedSpecKey());
+
+ if (!checkedProductArray || checkedProductArray.length <= 0) {
+ this.setData({
+ soldout: true });
+
+ console.error('规格所对应货品不存在');
+ return;
+ }
+
+ var checkedProduct = checkedProductArray[0]; //console.log("checkedProduct: "+checkedProduct.url);
+
+ if (checkedProduct.number > 0) {
+ this.setData({
+ checkedSpecPrice: checkedProduct.price,
+ tmpPicUrl: checkedProduct.url,
+ soldout: false });
+
+ } else {
+ this.setData({
+ checkedSpecPrice: this.goods.retailPrice,
+ soldout: true });
+
+ }
+ } else {
+ this.setData({
+ checkedSpecText: '规格数量选择',
+ checkedSpecPrice: this.goods.retailPrice,
+ soldout: false });
+
+ }
+ },
+
+ // 获取选中的产品(根据规格)
+ getCheckedProductItem: function getCheckedProductItem(key) {
+ return this.productList.filter(function (v) {
+ if (v.specifications.toString() == key.toString()) {
+ return true;
+ } else {
+ return false;
+ }
+ });
+ },
+
+ //添加或是取消收藏
+ addCollectOrNot: function addCollectOrNot() {
+ var that = this;
+ util.request(
+ api.CollectAddOrDelete,
+ {
+ type: 0,
+ valueId: this.id },
+
+ 'POST').
+ then(function (res) {
+ if (that.userHasCollect == 1) {
+ that.setData({
+ collect: false,
+ userHasCollect: 0 });
+
+ } else {
+ that.setData({
+ collect: true,
+ userHasCollect: 1 });
+
+ }
+ });
+ },
+
+ //立即购买(先自动加入购物车)
+ addFast: function addFast() {
+ var that = this;
+
+ if (this.openAttr == false) {
+ //打开规格选择窗口
+ this.setData({
+ openAttr: !this.openAttr });
+
+ } else {
+ //提示选择完整规格
+ if (!this.isCheckedAllSpec()) {
+ util.showErrorToast('请选择完整规格');
+ return false;
+ } //根据选中的规格,判断是否有对应的sku信息
+
+ var checkedProductArray = this.getCheckedProductItem(this.getCheckedSpecKey());
+
+ if (!checkedProductArray || checkedProductArray.length <= 0) {
+ //找不到对应的product信息,提示没有库存
+ util.showErrorToast('没有库存');
+ return false;
+ }
+
+ var checkedProduct = checkedProductArray[0]; //验证库存
+
+ if (checkedProduct.number <= 0) {
+ util.showErrorToast('没有库存');
+ return false;
+ } //验证团购是否有效
+
+ var checkedGroupon = this.getCheckedGrouponValue(); //立即购买
+
+ util.request(
+ api.CartFastAdd,
+ {
+ goodsId: this.goods.id,
+ number: this.number,
+ productId: checkedProduct.id },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno == 0) {
+ // 如果storage中设置了cartId,则是立即购买,否则是购物车购买
+ try {
+ uni.setStorageSync('cartId', res.data);
+ uni.setStorageSync('grouponRulesId', checkedGroupon.id);
+ uni.setStorageSync('grouponLinkId', that.grouponLink.id);
+ uni.navigateTo({
+ url: '/pages/checkout/checkout' });
+
+ } catch (e) {}
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ }
+ },
+
+ //添加到购物车
+ addToCart: function addToCart() {
+ var that = this;
+
+ if (this.openAttr == false) {
+ //打开规格选择窗口
+ this.setData({
+ openAttr: !this.openAttr });
+
+ } else {
+ //提示选择完整规格
+ if (!this.isCheckedAllSpec()) {
+ util.showErrorToast('请选择完整规格');
+ return false;
+ } //根据选中的规格,判断是否有对应的sku信息
+
+ var checkedProductArray = this.getCheckedProductItem(this.getCheckedSpecKey());
+
+ if (!checkedProductArray || checkedProductArray.length <= 0) {
+ //找不到对应的product信息,提示没有库存
+ util.showErrorToast('没有库存');
+ return false;
+ }
+
+ var checkedProduct = checkedProductArray[0]; //验证库存
+
+ if (checkedProduct.number <= 0) {
+ util.showErrorToast('没有库存');
+ return false;
+ } //添加到购物车
+
+ util.request(
+ api.CartAdd,
+ {
+ goodsId: this.goods.id,
+ number: this.number,
+ productId: checkedProduct.id },
+
+ 'POST').
+ then(function (res) {
+ var _res = res;
+
+ if (_res.errno == 0) {
+ uni.showToast({
+ title: '添加成功' });
+
+ that.setData({
+ openAttr: !that.openAttr,
+ cartGoodsCount: _res.data });
+
+
+ if (that.userHasCollect == 1) {
+ that.setData({
+ collect: true });
+
+ } else {
+ that.setData({
+ collect: false });
+
+ }
+ } else {
+ util.showErrorToast(_res.errmsg);
+ }
+ });
+ }
+ },
+
+ cutNumber: function cutNumber() {
+ this.setData({
+ number: this.number - 1 > 1 ? this.number - 1 : 1 });
+
+ },
+
+ addNumber: function addNumber() {
+ this.setData({
+ number: this.number + 1 });
+
+ },
+
+ switchAttrPop: function switchAttrPop() {
+ if (this.openAttr == false) {
+ this.setData({
+ openAttr: !this.openAttr });
+
+ }
+ },
+
+ closeAttr: function closeAttr() {
+ this.setData({
+ openAttr: false });
+
+ },
+
+ closeShare: function closeShare() {
+ this.setData({
+ openShare: false });
+
+ },
+
+ openCartPage: function openCartPage() {
+ uni.switchTab({
+ url: '/pages/cart/cart' });
+
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 274:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./goods.vue?vue&type=style&index=0&lang=css& */ 275);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_goods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 275:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/goods/goods.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[268,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/goods/goods.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.json
new file mode 100644
index 0000000000000000000000000000000000000000..5b40b42a4ae48ba0c34934c7e225e04ddee10f49
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.json
@@ -0,0 +1,6 @@
+{
+ "navigationBarTitleText": "商品详情",
+ "usingComponents": {
+ "mp-html": "/uni_modules/mp-html/components/mp-html/mp-html"
+ }
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..9625982f692fd2bda915ba8d583352ec0cabda0a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.wxml
@@ -0,0 +1 @@
+{{goods.name}} 分享 {{goods.brief}} {{"原价:¥"+goods.counterPrice}} {{"现价:¥"+checkedSpecPrice}} {{brand.name}} {{checkedSpecText}} {{"评价("+(comment.count>999?'999+':comment.count)+")"}} 查看全部 {{item.nickname}} {{item.addTime}} {{''+item.content+''}} 商家回复: {{item.adminContent}} 商品参数 {{item.attribute}} {{item.value}} 常见问题 {{item.question}} {{''+item.answer+''}} 大家都在看 {{item.name}} {{"¥"+item.retailPrice}} {{"价格:¥"+checkedSpecPrice}} {{tmpSpecText}} {{item.name}} {{''+vitem.value+''}} 团购立减 {{'¥'+vitem.discount+" ("+vitem.discountMember+'人)'}} 数量 - + {{cartGoodsCount}} 加入购物车 {{isGroupon?'参加团购':'立即购买'}} 商品已售空
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..11cb257227aa9d20ede0bfa75da5bfcde11384d8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/goods/goods.wxss
@@ -0,0 +1,825 @@
+.container {
+ margin-bottom: 100rpx;
+}
+.goodsimgs {
+ width: 750rpx;
+ height: 750rpx;
+}
+.goodsimgs image {
+ width: 750rpx;
+ height: 750rpx;
+}
+.commodity_screen {
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ top: 0;
+ left: 0;
+ background: #000;
+ opacity: 0.2;
+ overflow: hidden;
+ z-index: 1000;
+ color: #fff;
+}
+.commodity_attr_box {
+ width: 100%;
+ overflow: hidden;
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ z-index: 2000;
+ background: #fff;
+ padding-top: 20rpx;
+}
+.goods-info {
+ width: 750rpx;
+ height: 306rpx;
+ overflow: hidden;
+ background: #fff;
+}
+.goods-info .c {
+ display: block;
+ width: 718.75rpx;
+ height: 100%;
+ margin-left: 31.25rpx;
+ padding: 38rpx 31.25rpx 38rpx 0;
+ border-bottom: 1px solid #f4f4f4;
+}
+.goods-info .c text {
+ display: block;
+ width: 687.5rpx;
+ text-align: left;
+}
+.goods_name {
+ height: 86rpx;
+ line-height: 86rpx;
+ border-bottom: 1px solid #fafafa;
+}
+.goods_name_left {
+ float: left;
+ height: 86rpx;
+ font-weight: 550;
+ line-height: 86rpx;
+ margin-left: 35rpx;
+ font-size: 38rpx;
+ letter-spacing: 1rpx;
+}
+.goods_name_right {
+ float: right;
+ font-weight: 550;
+ margin-top: 28rpx;
+ width: 140rpx;
+ height: 80rpx;
+ line-height: 82rpx;
+ padding: 0;
+ margin: 0;
+ margin-right: 0rpx;
+ text-align: center;
+ font-size: 25rpx;
+ color: #f4f4f4;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 0rpx;
+ border-bottom-right-radius: 0rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #f3d10e 0%, #f48f18 100%);
+}
+.goods-info .desc {
+ height: 43rpx;
+ margin-bottom: 41rpx;
+ font-size: 24rpx;
+ line-height: 36rpx;
+ color: #999;
+}
+.goods-info .price {
+ height: 70rpx;
+ align-content: center;
+}
+.goods-info .counterPrice {
+ float: left;
+ padding-left: 0rpx;
+ text-decoration: line-through;
+ font-size: 30rpx;
+ color: #999;
+}
+.goods-info .retailPrice {
+ padding-left: 5%;
+ font-size: 30rpx;
+ color: #a78845;
+}
+.goods-info .brand {
+ margin-top: 23rpx;
+ min-height: 40rpx;
+ text-align: left;
+}
+.goods-info .brand text {
+ display: inline-block;
+ width: auto;
+ padding: 2px 30rpx 2px 10.5rpx;
+ line-height: 35.5rpx;
+ border: 1px solid #f48f18;
+ font-size: 25rpx;
+ color: #f48f18;
+ border-radius: 4rpx;
+ background-size: 10.75rpx 18.75rpx;
+}
+.section-nav {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+.section-nav .t {
+ float: left;
+ width: 600rpx;
+ height: 108rpx;
+ line-height: 108rpx;
+ font-size: 29rpx;
+ color: #333;
+ margin-left: 31.25rpx;
+}
+.section-nav .i {
+ float: right;
+ width: 52rpx;
+ height: 52rpx;
+ margin-right: 16rpx;
+ margin-top: 28rpx;
+}
+.section-act .t {
+ float: left;
+ display: flex;
+ align-items: center;
+ width: 600rpx;
+ height: 108rpx;
+ overflow: hidden;
+ line-height: 108rpx;
+ font-size: 29rpx;
+ color: #999;
+ margin-left: 31.25rpx;
+}
+.section-act .label {
+ color: #999;
+}
+.section-act .tag {
+ display: flex;
+ align-items: center;
+ padding: 0 10rpx;
+ border-radius: 3px;
+ height: 37rpx;
+ width: auto;
+ color: #f48f18;
+ overflow: hidden;
+ border: 1px solid #f48f18;
+ font-size: 25rpx;
+ margin: 0 10rpx;
+}
+.section-act .text {
+ display: flex;
+ align-items: center;
+ height: 37rpx;
+ width: auto;
+ overflow: hidden;
+ color: #f48f18;
+ font-size: 29rpx;
+}
+.comments {
+ width: 100%;
+ height: auto;
+ padding-left: 30rpx;
+ background: #fff;
+ margin: 20rpx 0;
+}
+.comments .h {
+ height: 102.5rpx;
+ line-height: 100.5rpx;
+ width: 718.75rpx;
+ padding-right: 16rpx;
+}
+.comments .h .t {
+ display: block;
+ float: left;
+ width: 50%;
+ font-size: 30rpx;
+ color: #333;
+}
+.comments .h .i {
+ display: block;
+ float: right;
+ width: 164rpx;
+ height: 100.5rpx;
+ line-height: 100.5rpx;
+ background-size: 52rpx;
+}
+.comments .b {
+ height: auto;
+ width: 720rpx;
+}
+.comments .item {
+ height: auto;
+ width: 720rpx;
+ overflow: hidden;
+ border-top: 1px solid #d9d9d9;
+}
+.comments .info {
+ height: 127rpx;
+ width: 100%;
+ padding: 33rpx 0 27rpx 0;
+}
+.comments .user {
+ float: left;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ font-size: 0;
+}
+.comments .user image {
+ float: left;
+ width: 67rpx;
+ height: 67rpx;
+ margin-right: 17rpx;
+ border-radius: 50%;
+}
+.comments .user text {
+ display: inline-block;
+ width: auto;
+ height: 66rpx;
+ overflow: hidden;
+ font-size: 29rpx;
+ line-height: 66rpx;
+}
+.comments .time {
+ display: block;
+ float: right;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ color: #7f7f7f;
+ font-size: 25rpx;
+ margin-right: 30rpx;
+}
+.comments .content {
+ width: 720rpx;
+ padding-right: 30rpx;
+ line-height: 45.8rpx;
+ font-size: 29rpx;
+ margin-bottom: 24rpx;
+}
+.comments .imgs {
+ width: 720rpx;
+ height: auto;
+ margin-bottom: 25rpx;
+}
+.comments .imgs .img {
+ height: 150rpx;
+ width: 150rpx;
+ margin-right: 28rpx;
+}
+.comments .spec {
+ width: 720rpx;
+ padding-right: 30rpx;
+ line-height: 30rpx;
+ font-size: 24rpx;
+ color: #999;
+ margin-bottom: 30rpx;
+}
+.comments .customer-service {
+ width: 690rpx;
+ height: auto;
+ overflow: hidden;
+ margin-top: 23rpx;
+ margin-bottom: 23rpx;
+ background: rgba(0, 0, 0, 0.03);
+ padding: 21rpx;
+}
+.comments .customer-service .u {
+ font-size: 24rpx;
+ color: #333;
+ line-height: 37.5rpx;
+}
+.comments .customer-service .c {
+ font-size: 24rpx;
+ color: #999;
+ line-height: 37.5rpx;
+}
+.goods-attr {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 0 31.25rpx 25rpx 31.25rpx;
+ background: #fff;
+}
+.goods-attr .t {
+ width: 687.5rpx;
+ height: 104rpx;
+ line-height: 104rpx;
+ font-size: 38.5rpx;
+}
+.goods-attr .item {
+ width: 687.5rpx;
+ height: 68rpx;
+ padding: 11rpx 20rpx;
+ margin-bottom: 11rpx;
+ background: #f7f7f7;
+ font-size: 38.5rpx;
+}
+.goods-attr .left {
+ float: left;
+ font-size: 25rpx;
+ width: 134rpx;
+ height: 45rpx;
+ line-height: 45rpx;
+ overflow: hidden;
+ color: #999;
+}
+.goods-attr .right {
+ float: left;
+ font-size: 36.5rpx;
+ margin-left: 20rpx;
+ width: 480rpx;
+ height: 45rpx;
+ line-height: 45rpx;
+ overflow: hidden;
+ color: #333;
+}
+.detail {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+.detail image {
+ width: 750rpx;
+ display: block;
+}
+.common-problem {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+.common-problem .h {
+ position: relative;
+ height: 145.5rpx;
+ width: 750rpx;
+ padding: 56.25rpx 0;
+ background: #fff;
+ text-align: center;
+}
+.common-problem .h .line {
+ display: inline-block;
+ position: absolute;
+ top: 72rpx;
+ left: 0;
+ z-index: 2;
+ height: 1px;
+ margin-left: 225rpx;
+ width: 300rpx;
+ background: #ccc;
+}
+.common-problem .h .title {
+ display: inline-block;
+ position: absolute;
+ top: 56.125rpx;
+ left: 0;
+ z-index: 3;
+ height: 33rpx;
+ margin-left: 285rpx;
+ width: 180rpx;
+ background: #fff;
+}
+.common-problem .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 0rpx 30rpx;
+ background: #fff;
+}
+.common-problem .item {
+ height: auto;
+ overflow: hidden;
+ padding-bottom: 25rpx;
+}
+.common-problem .question-box .spot {
+ float: left;
+ display: block;
+ height: 8rpx;
+ width: 8rpx;
+ background: #b4282d;
+ border-radius: 50%;
+ margin-top: 11rpx;
+}
+.common-problem .question-box .question {
+ float: left;
+ line-height: 30rpx;
+ padding-left: 8rpx;
+ display: block;
+ font-size: 26rpx;
+ padding-bottom: 15rpx;
+ color: #303030;
+}
+.common-problem .answer {
+ line-height: 36rpx;
+ padding-left: 16rpx;
+ font-size: 26rpx;
+ color: #787878;
+}
+.related-goods {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding-bottom: 80rpx;
+}
+.related-goods .h {
+ position: relative;
+ height: 145.5rpx;
+ width: 750rpx;
+ padding: 56.25rpx 0;
+ background: #fff;
+ text-align: center;
+ border-bottom: 1px solid #f4f4f4;
+}
+.related-goods .h .line {
+ display: inline-block;
+ position: absolute;
+ top: 72rpx;
+ left: 0;
+ z-index: 2;
+ height: 1px;
+ margin-left: 225rpx;
+ width: 300rpx;
+ background: #ccc;
+}
+.related-goods .h .title {
+ display: inline-block;
+ position: absolute;
+ top: 56.125rpx;
+ left: 0;
+ z-index: 3;
+ height: 33rpx;
+ margin-left: 285rpx;
+ width: 180rpx;
+ background: #fff;
+}
+.related-goods .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+.related-goods .b .item {
+ float: left;
+ background: #fff;
+ width: 375rpx;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+ padding: 15rpx 31.25rpx;
+ border-right: 1px solid #f4f4f4;
+ border-bottom: 1px solid #f4f4f4;
+}
+.related-goods .item .img {
+ width: 311.45rpx;
+ height: 311.45rpx;
+}
+.related-goods .item .name {
+ display: block;
+ width: 311.45rpx;
+ height: 35rpx;
+ margin: 11.5rpx 0 15rpx 0;
+ text-align: center;
+ overflow: hidden;
+ font-size: 30rpx;
+ color: #333;
+}
+.related-goods .item .price {
+ display: block;
+ width: 311.45rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+.bottom-btn {
+ position: fixed;
+ left: 0;
+ bottom: 0;
+ z-index: 10;
+ width: 750rpx;
+ height: 100rpx;
+ display: flex;
+ background: #fff;
+}
+.bottom-btn .l {
+ float: left;
+ height: 100rpx;
+ width: 162rpx;
+ border: 1px solid #f4f4f4;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.bottom-btn .l.l-collect {
+ border-right: none;
+ border-left: none;
+ text-align: center;
+ width: 90rpx;
+}
+.bottom-btn .l.l-collect .icon {
+ position: absolute;
+ top: 28rpx;
+ left: 20rpx;
+ font-size: 44rpx;
+}
+.bottom-btn .l.l-kefu {
+ position: relative;
+ height: 54rpx;
+ width: 63rpx;
+}
+.bottom-btn .l.l-cart .box {
+ position: relative;
+ height: 60rpx;
+ width: 60rpx;
+}
+.bottom-btn .l.l-cart .cart-count {
+ height: 28rpx;
+ width: 28rpx;
+ z-index: 10;
+ position: absolute;
+ top: 0;
+ right: 0;
+ background: #b4282d;
+ text-align: center;
+ font-size: 18rpx;
+ color: #fff;
+ line-height: 28rpx;
+ border-radius: 50%;
+}
+.bottom-btn .l.l-cart .icon {
+ position: absolute;
+ top: 10rpx;
+ left: 0;
+ font-size: 44rpx;
+}
+.bottom-btn .c {
+ float: left;
+ background: #b4282d;
+ height: 100rpx;
+ line-height: 96rpx;
+ flex: 1;
+ text-align: center;
+ color: #fff;
+}
+.bottom-btn .r {
+ border: 1px solid #f48f18;
+ background: #f48f18;
+ float: left;
+ height: 100rpx;
+ line-height: 96rpx;
+ flex: 1;
+ text-align: center;
+ color: #fff;
+}
+.bottom-btn .n {
+ float: left;
+ background: #d5d8d8e7;
+ height: 100rpx;
+ line-height: 96rpx;
+ flex: 1;
+ text-align: center;
+ color: rgb(37, 36, 36);
+}
+.attr-pop-box {
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ background: rgba(0, 0, 0, 0.5);
+ z-index: 8;
+ bottom: 0;
+ /* display: none; */
+}
+.attr-pop {
+ width: 100%;
+ height: auto;
+ max-height: 780rpx;
+ padding: 31.25rpx;
+ background: #fff;
+ position: fixed;
+ z-index: 9;
+ bottom: 100rpx;
+}
+.attr-pop .close {
+ position: absolute;
+ width: 48rpx;
+ height: 48rpx;
+ right: 31.25rpx;
+ overflow: hidden;
+ top: 31.25rpx;
+}
+.attr-pop .close .icon {
+ width: 48rpx;
+ height: 48rpx;
+}
+.attr-pop .img-info {
+ width: 687.5rpx;
+ height: 177rpx;
+ overflow: hidden;
+ margin-bottom: 41.5rpx;
+}
+.attr-pop .img {
+ float: left;
+ height: 177rpx;
+ width: 177rpx;
+ background: #f4f4f4;
+ margin-right: 31.25rpx;
+}
+.attr-pop .info {
+ float: left;
+ height: 177rpx;
+ display: flex;
+ align-items: center;
+}
+.attr-pop .p {
+ font-size: 33rpx;
+ color: #333;
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10rpx;
+}
+.attr-pop .a {
+ font-size: 29rpx;
+ color: #333;
+ height: 40rpx;
+ line-height: 40rpx;
+}
+.spec-con {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+}
+.spec-con .name {
+ margin-bottom: 6rpx;
+ font-size: 29rpx;
+ color: #333;
+}
+.spec-con .values {
+ height: auto;
+ margin-bottom: 10rpx;
+ font-size: 0;
+}
+.spec-con .value {
+ display: inline-block;
+ height: 62rpx;
+ padding: 0 35rpx;
+ line-height: 56rpx;
+ text-align: center;
+ margin-right: 25rpx;
+ margin-bottom: 16.5rpx;
+ border: 1px solid #333;
+ font-size: 25rpx;
+ color: #333;
+}
+.spec-con .value.disable {
+ border: 1px solid #ccc;
+ color: #ccc;
+}
+.spec-con .value.selected {
+ border: 1px solid #b4282d;
+ color: #b4282d;
+}
+.number-item .selnum {
+ width: 322rpx;
+ height: 71rpx;
+ border: 1px solid #ccc;
+ display: flex;
+}
+.number-item .cut {
+ width: 93.75rpx;
+ height: 100%;
+ text-align: center;
+ line-height: 65rpx;
+}
+.number-item .number {
+ flex: 1;
+ height: 100%;
+ text-align: center;
+ line-height: 68.75rpx;
+ border-left: 1px solid #ccc;
+ border-right: 1px solid #ccc;
+ float: left;
+}
+.number-item .add {
+ width: 93.75rpx;
+ height: 100%;
+ text-align: center;
+ line-height: 65rpx;
+}
+.contact {
+ height: 100rpx;
+ width: 100rpx;
+ border-radius: 100%;
+ position: fixed;
+ bottom: 96rpx;
+ right: 10rpx;
+ font-size: 20rpx;
+ box-sizing: border-box;
+ background: url(data:image/png;base64,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) no-repeat center 21rpx;
+ background-size: 55rpx auto;
+}
+.share-pop-box {
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ background: rgba(0, 0, 0, 0.5);
+ z-index: 8;
+ bottom: 0;
+ /* display: none; */
+}
+.share-pop {
+ width: 100%;
+ height: auto;
+ max-height: 780rpx;
+ padding: 31.25rpx;
+ background: #fff;
+ position: fixed;
+ z-index: 9;
+ bottom: 100rpx;
+}
+.share-pop .close {
+ position: absolute;
+ width: 48rpx;
+ height: 48rpx;
+ right: 31.25rpx;
+ top: 31.25rpx;
+}
+.share-pop .close .icon {
+ width: 48rpx;
+ height: 48rpx;
+}
+.share-pop .share-info {
+ width: 100%;
+ height: 225rpx;
+ overflow: hidden;
+ margin-bottom: 41.5rpx;
+}
+.sharebtn {
+ top: 75rpx;
+ background: none !important;
+ font-size: 32rpx;
+ color: #fff !important;
+ border-radius: 0%;
+ width: 175rpx;
+ height: 150rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-wrap: wrap;
+ float: left;
+ background: #fff;
+ border-bottom: 0px solid #fafafa;
+ margin-left: 15%;
+}
+.sharebtn::after {
+ border: none;
+ border-radius: 0%;
+}
+.savesharebtn {
+ top: 75rpx;
+ background: none !important;
+ font-size: 32rpx;
+ color: #fff !important;
+ border-radius: 0%;
+ width: 175rpx;
+ height: 150rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-wrap: wrap;
+ float: right;
+ background: #fff;
+ border-bottom: 0px solid #fafafa;
+ margin-right: 15%;
+}
+.savesharebtn::after {
+ border: none;
+ border-radius: 0%;
+}
+.sharebtn_image {
+ /* border: 1px solid #757575; */
+ width: 128rpx;
+ height: 128rpx;
+ margin-top: 0rpx;
+}
+.sharebtn_text {
+ /* border: 1px solid #757575; */
+ width: 150rpx;
+ margin-bottom: 2rpx;
+ height: 20rpx;
+ line-height: 20rpx;
+ font-size: 20rpx;
+ color: #555;
+}
+.separate {
+ background: #e0e3da;
+ width: 100%;
+ height: 6rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.js
new file mode 100644
index 0000000000000000000000000000000000000000..d1965b770c49afa926c1f8b8500517d1198aea75
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.js
@@ -0,0 +1,346 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/groupon/grouponDetail/grouponDetail"],{
+
+/***/ 292:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fgroupon%2FgrouponDetail%2FgrouponDetail"} ***!
+ \*****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _grouponDetail = _interopRequireDefault(__webpack_require__(/*! ./pages/groupon/grouponDetail/grouponDetail.vue */ 293));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_grouponDetail.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 293:
+/*!********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue ***!
+ \********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _grouponDetail_vue_vue_type_template_id_f4b3fd96___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./grouponDetail.vue?vue&type=template&id=f4b3fd96& */ 294);
+/* harmony import */ var _grouponDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./grouponDetail.vue?vue&type=script&lang=js& */ 296);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _grouponDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _grouponDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _grouponDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./grouponDetail.vue?vue&type=style&index=0&lang=css& */ 298);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _grouponDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _grouponDetail_vue_vue_type_template_id_f4b3fd96___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _grouponDetail_vue_vue_type_template_id_f4b3fd96___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _grouponDetail_vue_vue_type_template_id_f4b3fd96___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/groupon/grouponDetail/grouponDetail.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 294:
+/*!***************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?vue&type=template&id=f4b3fd96& ***!
+ \***************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_template_id_f4b3fd96___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponDetail.vue?vue&type=template&id=f4b3fd96& */ 295);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_template_id_f4b3fd96___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_template_id_f4b3fd96___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_template_id_f4b3fd96___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_template_id_f4b3fd96___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 295:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?vue&type=template&id=f4b3fd96& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 296:
+/*!*********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponDetail.vue?vue&type=script&lang=js& */ 297);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 297:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ id: 0,
+ groupon: {
+ status: 0 },
+
+ joiners: [],
+ orderInfo: {
+ goodsPrice: '',
+ freightPrice: '',
+ actualPrice: '' },
+
+ orderGoods: [],
+ rules: {
+ discountMember: 0 },
+
+ active: 0,
+ steps: [],
+ activeIcon: '',
+ activeColor: '' };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.setData({
+ id: options.id });
+
+ this.getOrderDetail();
+ },
+ // 页面分享
+ onShareAppMessage: function onShareAppMessage() {
+ var that = this;
+ return {
+ title: '邀请团购',
+ desc: '唯爱与美食不可辜负',
+ path: '/pages/index/index?grouponId=' + this.id };
+
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getOrderDetail: function getOrderDetail() {
+ var that = this;
+ util.request(api.GroupOnDetail, {
+ grouponId: that.id }).
+ then(function (res) {
+ if (res.errno === 0) {
+ var _steps = [
+ {
+ text: '已开团' },
+
+ {
+ text: '开团中' },
+
+ {
+ text: '开团成功' }];
+
+
+ var _active = res.data.groupon.status;
+ var _activeIcon = 'success';
+ var _activeColor = '#07c160';
+
+ if (res.data.groupon.status === 3) {
+ _steps = [
+ {
+ text: '已开团' },
+
+ {
+ text: '开团中' },
+
+ {
+ text: '开团失败' }];
+
+
+ _active = 2;
+ _activeIcon = 'fail';
+ _activeColor = '#EE0A24';
+ }
+
+ that.setData({
+ joiners: res.data.joiners,
+ groupon: res.data.groupon,
+ orderInfo: res.data.orderInfo,
+ orderGoods: res.data.orderGoods,
+ rules: res.data.rules,
+ active: _active,
+ steps: _steps,
+ activeIcon: _activeIcon,
+ activeColor: _activeColor });
+
+ }
+ });
+ } } };exports.default = _default;
+
+/***/ }),
+
+/***/ 298:
+/*!*****************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponDetail.vue?vue&type=style&index=0&lang=css& */ 299);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 299:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponDetail/grouponDetail.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[292,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/groupon/grouponDetail/grouponDetail.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.json
new file mode 100644
index 0000000000000000000000000000000000000000..4b14012f08047f5687a2a23cd969ee63842a807d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "团购详情",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..9a3f0ef3213165627ad04e5c8a545f4a87738ab3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.wxml
@@ -0,0 +1 @@
+开团还缺{{rules.discountMember-joiners.length}} 人 {{"参与团购 ( "+joiners.length+"人)"}} 查看全部 {{item.nickname}} 商品信息 {{item.goodsName}} {{"x"+item.number}} {{item.goodsSpecificationValues}} {{"¥"+item.retailPrice}} 商品合计: {{"¥"+orderInfo.goodsPrice}} 商品运费: {{"¥"+orderInfo.freightPrice}} 商品实付: {{"¥"+orderInfo.actualPrice}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..a009ba3b5ef162414757a5db321931943d5bbe04
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponDetail/grouponDetail.wxss
@@ -0,0 +1,262 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+.progress {
+ padding-top: 25rpx;
+ background: #fff;
+ height: auto;
+ overflow: hidden;
+}
+.item-a {
+ padding: 0 21.25rpx;
+}
+.item-c {
+ margin-left: 31.25rpx;
+ height: 103rpx;
+ line-height: 103rpx;
+}
+.item-c .l {
+ float: left;
+}
+.item-c .r {
+ height: 103rpx;
+ float: right;
+ display: flex;
+ align-items: center;
+ padding-right: 16rpx;
+}
+.item-c .btn {
+ float: right;
+ line-height: 66rpx;
+ font-size: 30rpx;
+ border-radius: 5rpx;
+ text-align: center;
+ margin: 0 15rpx;
+ padding: 0 20rpx;
+ height: 66rpx;
+}
+.item-c .btn.active {
+ background: #a78845;
+ color: #fff;
+}
+.order-goods {
+ margin-top: 20rpx;
+ background: #fff;
+}
+.order-goods .h {
+ height: 93.75rpx;
+ line-height: 93.75rpx;
+ margin-left: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ padding-right: 31.25rpx;
+}
+.order-goods .h .label {
+ float: left;
+ font-size: 30rpx;
+ color: #333;
+}
+.order-goods .h .status {
+ float: right;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+.order-goods .item {
+ display: flex;
+ align-items: center;
+ height: 192rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.order-goods .item:last-child {
+ border-bottom: none;
+}
+.order-goods .item .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+.order-goods .item .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+.order-goods .item .info {
+ flex: 1;
+ height: 145.83rpx;
+ margin-left: 20rpx;
+}
+.order-goods .item .t {
+ margin-top: 8rpx;
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10.5rpx;
+}
+.order-goods .item .t .name {
+ display: block;
+ float: left;
+ height: 33rpx;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order-goods .item .t .number {
+ display: block;
+ float: right;
+ height: 33rpx;
+ text-align: right;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order-goods .item .attr {
+ height: 29rpx;
+ line-height: 29rpx;
+ color: #666;
+ margin-bottom: 25rpx;
+ font-size: 25rpx;
+}
+.order-goods .item .price {
+ display: block;
+ float: left;
+ height: 30rpx;
+ line-height: 30rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order-goods .item .btn {
+ height: 50rpx;
+ line-height: 50rpx;
+ border-radius: 5rpx;
+ text-align: center;
+ display: block;
+ float: right;
+ margin: 0 15rpx;
+ padding: 0 20rpx;
+}
+.order-goods .item .btn.active {
+ background: #b4282d;
+ color: #fff;
+}
+.order-bottom {
+ margin-top: 20rpx;
+ padding-left: 31.25rpx;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+}
+.order-bottom .address {
+ height: 128rpx;
+ padding-top: 25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.order-bottom .address .t {
+ height: 35rpx;
+ line-height: 35rpx;
+ margin-bottom: 7.5rpx;
+}
+.order-bottom .address .name {
+ display: inline-block;
+ height: 35rpx;
+ width: 140rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+.order-bottom .address .mobile {
+ display: inline-block;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+.order-bottom .address .b {
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+.order-bottom .total {
+ height: 106rpx;
+ padding-top: 20rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.order-bottom .total .t {
+ height: 30rpx;
+ line-height: 30rpx;
+ margin-bottom: 7.5rpx;
+}
+.order-bottom .total .t .label {
+ width: 150rpx;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+.order-bottom .total .t .txt {
+ float: right;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+ padding-right: 31.25rpx;
+}
+.order-bottom .pay-fee {
+ height: 81rpx;
+ line-height: 81rpx;
+}
+.order-bottom .pay-fee .label {
+ width: 140rpx;
+}
+.order-bottom .pay-fee .txt {
+ float: right;
+ padding-right: 31.25rpx;
+}
+.menu-list-pro {
+ margin-top: 20rpx;
+ overflow-x: scroll;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ height: 260rpx;
+ width: 100%;
+ overflow: hidden;
+ border-bottom: 1rpx #cfc9ca;
+ background-color: #fff;
+}
+.menu-list-pro .h {
+ height: 93.75rpx;
+ line-height: 93.75rpx;
+ margin-left: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ padding-right: 31.25rpx;
+}
+.menu-list-pro .h .label {
+ float: left;
+ font-size: 30rpx;
+ color: #333;
+}
+.menu-list-pro .h .status {
+ float: right;
+ font-size: 30rpx;
+ color: #a78845;
+}
+.menu-list-pro .menu-list-item {
+ display: block;
+ float: left;
+ height: 110rpx;
+ width: 80rpx;
+ margin-top: 30rpx;
+ margin-bottom: 30rpx;
+ margin-left: 40rpx;
+}
+.menu-list-pro .icon {
+ height: 80rpx;
+ width: 80rpx;
+ border-radius: 12rpx;
+ box-shadow: 0px 4rpx 4rpx 0px #cfc9ca;
+}
+.menu-list-pro .txt {
+ display: block;
+ float: left;
+ width: 80rpx;
+ margin-top: 5rpx;
+ font-size: 22rpx;
+ color: #a78845;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.js
new file mode 100644
index 0000000000000000000000000000000000000000..3deee93ce1c94cb9590c360bcd58ab83e27a9b98
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.js
@@ -0,0 +1,307 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/groupon/grouponList/grouponList"],{
+
+/***/ 300:
+/*!*************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fgroupon%2FgrouponList%2FgrouponList"} ***!
+ \*************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _grouponList = _interopRequireDefault(__webpack_require__(/*! ./pages/groupon/grouponList/grouponList.vue */ 301));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_grouponList.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 301:
+/*!****************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue ***!
+ \****************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _grouponList_vue_vue_type_template_id_ac0de162___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./grouponList.vue?vue&type=template&id=ac0de162& */ 302);
+/* harmony import */ var _grouponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./grouponList.vue?vue&type=script&lang=js& */ 304);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _grouponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _grouponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _grouponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./grouponList.vue?vue&type=style&index=0&lang=css& */ 306);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _grouponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _grouponList_vue_vue_type_template_id_ac0de162___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _grouponList_vue_vue_type_template_id_ac0de162___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _grouponList_vue_vue_type_template_id_ac0de162___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/groupon/grouponList/grouponList.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 302:
+/*!***********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?vue&type=template&id=ac0de162& ***!
+ \***********************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_template_id_ac0de162___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponList.vue?vue&type=template&id=ac0de162& */ 303);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_template_id_ac0de162___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_template_id_ac0de162___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_template_id_ac0de162___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_template_id_ac0de162___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 303:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?vue&type=template&id=ac0de162& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 304:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?vue&type=script&lang=js& ***!
+ \*****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponList.vue?vue&type=script&lang=js& */ 305);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 305:
+/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?vue&type=script&lang=js& ***!
+ \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+// pages/groupon/grouponList/grouponList.js
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ grouponList: [],
+ page: 1,
+ limit: 10,
+ count: 0,
+ scrollTop: 0,
+ showPage: false };
+
+ }
+ /**
+ * 生命周期函数--监听页面加载
+ */,
+ onLoad: function onLoad(options) {
+ this.getGrouponList();
+ },
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady: function onReady() {},
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow: function onShow() {},
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide: function onHide() {},
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload: function onUnload() {},
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh: function onPullDownRefresh() {},
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom: function onReachBottom() {},
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage: function onShareAppMessage() {},
+ methods: {
+ getGrouponList: function getGrouponList() {
+ var that = this;
+ that.setData({
+ scrollTop: 0,
+ showPage: false,
+ grouponList: [] });
+ // 页面渲染完成
+
+ uni.showToast({
+ title: '加载中...',
+ icon: 'loading',
+ duration: 2000 });
+
+ util.request(api.GroupOnList, {
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ scrollTop: 0,
+ grouponList: res.data.list,
+ showPage: true,
+ count: res.data.total });
+
+ }
+
+ uni.hideToast();
+ });
+ },
+
+ nextPage: function nextPage(event) {
+ var that = this;
+
+ if (this.page > that.count / that.limit) {
+ return true;
+ }
+
+ that.setData({
+ page: that.page + 1 });
+
+ this.getGrouponList();
+ },
+
+ prevPage: function prevPage(event) {
+ if (this.page <= 1) {
+ return false;
+ }
+
+ var that = this;
+ that.setData({
+ page: that.page - 1 });
+
+ this.getGrouponList();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 306:
+/*!*************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./grouponList.vue?vue&type=style&index=0&lang=css& */ 307);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_grouponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 307:
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/grouponList/grouponList.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[300,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/groupon/grouponList/grouponList.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.json
new file mode 100644
index 0000000000000000000000000000000000000000..91b2bcdbc6717b33b842287f5093004ec014a855
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "团购专区",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..a7a013b3d26ade91f1aec37e22934415db45924c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.wxml
@@ -0,0 +1 @@
+{{item.name}} {{item.grouponMember+"人成团"}} {{"有效期至 "+item.expireTime}} {{item.brief}} {{"现价:¥"+item.retailPrice}} {{"团购价:¥"+item.grouponPrice}} 上一页 下一页
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..23014481249c1060baa69370c90e9a6581dd4c0c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/grouponList/grouponList.wxss
@@ -0,0 +1,95 @@
+page,
+.container {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+ background: #f4f4f4;
+}
+.groupon-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+ background: #f4f4f4;
+}
+.groupon-list .item {
+ height: 244rpx;
+ width: 100%;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+.groupon-list .img {
+ margin-top: 12rpx;
+ margin-right: 12rpx;
+ float: left;
+ width: 220rpx;
+ height: 220rpx;
+}
+.groupon-list .right {
+ float: left;
+ height: 244rpx;
+ width: 476rpx;
+ display: flex;
+ flex-flow: row nowrap;
+}
+.groupon-list .text {
+ display: flex;
+ flex-wrap: nowrap;
+ flex-direction: column;
+ justify-content: center;
+ overflow: hidden;
+ height: 244rpx;
+ width: 476rpx;
+}
+.groupon-list .name {
+ float: left;
+ display: block;
+ color: #333;
+ line-height: 50rpx;
+ font-size: 30rpx;
+}
+.groupon-list .desc {
+ width: 476rpx;
+ display: block;
+ color: #999;
+ line-height: 50rpx;
+ font-size: 25rpx;
+}
+.groupon-list .price {
+ width: 476rpx;
+ display: flex;
+ color: #ab956d;
+ line-height: 50rpx;
+ font-size: 33rpx;
+}
+.groupon-list .counterPrice {
+ text-decoration: line-through;
+ font-size: 28rpx;
+ color: #999;
+}
+.groupon-list .retailPrice {
+ margin-left: 30rpx;
+ font-size: 28rpx;
+ color: #a78845;
+}
+.page {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+.page view {
+ height: 108rpx;
+ width: 50%;
+ float: left;
+ font-size: 29rpx;
+ color: #333;
+ text-align: center;
+ line-height: 108rpx;
+}
+.page .prev {
+ border-right: 1px solid #d9d9d9;
+}
+.page .disabled {
+ color: #ccc;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.js
new file mode 100644
index 0000000000000000000000000000000000000000..286481ed87516588c02766d1d4a95af4a9e4ee3a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.js
@@ -0,0 +1,292 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/groupon/myGroupon/myGroupon"],{
+
+/***/ 284:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fgroupon%2FmyGroupon%2FmyGroupon"} ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _myGroupon = _interopRequireDefault(__webpack_require__(/*! ./pages/groupon/myGroupon/myGroupon.vue */ 285));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_myGroupon.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 285:
+/*!************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue ***!
+ \************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _myGroupon_vue_vue_type_template_id_548f79fb___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./myGroupon.vue?vue&type=template&id=548f79fb& */ 286);
+/* harmony import */ var _myGroupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./myGroupon.vue?vue&type=script&lang=js& */ 288);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _myGroupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _myGroupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _myGroupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./myGroupon.vue?vue&type=style&index=0&lang=css& */ 290);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _myGroupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _myGroupon_vue_vue_type_template_id_548f79fb___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _myGroupon_vue_vue_type_template_id_548f79fb___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _myGroupon_vue_vue_type_template_id_548f79fb___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/groupon/myGroupon/myGroupon.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 286:
+/*!*******************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?vue&type=template&id=548f79fb& ***!
+ \*******************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_template_id_548f79fb___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./myGroupon.vue?vue&type=template&id=548f79fb& */ 287);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_template_id_548f79fb___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_template_id_548f79fb___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_template_id_548f79fb___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_template_id_548f79fb___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 287:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?vue&type=template&id=548f79fb& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 288:
+/*!*************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?vue&type=script&lang=js& ***!
+ \*************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./myGroupon.vue?vue&type=script&lang=js& */ 289);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 289:
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?vue&type=script&lang=js& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ orderList: [],
+ showType: 0,
+
+ gitem: {
+ id: '',
+ picUrl: '',
+ goodsName: '',
+ number: '' } };
+
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ },
+ onPullDownRefresh: function onPullDownRefresh() {
+ uni.showNavigationBarLoading(); //在标题栏中显示加载
+
+ this.getOrderList();
+ uni.hideNavigationBarLoading(); //完成停止加载
+
+ uni.stopPullDownRefresh(); //停止下拉刷新
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ this.getOrderList();
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getOrderList: function getOrderList() {
+ var that = this;
+ util.request(api.GroupOnMy, {
+ showType: that.showType }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ orderList: res.data.list });
+
+ }
+ });
+ },
+
+ switchTab: function switchTab(event) {
+ var showType = event.currentTarget.dataset.index;
+ this.setData({
+ showType: showType });
+
+ this.getOrderList();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 290:
+/*!*********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./myGroupon.vue?vue&type=style&index=0&lang=css& */ 291);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_myGroupon_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 291:
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/groupon/myGroupon/myGroupon.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[284,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/groupon/myGroupon/myGroupon.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.json
new file mode 100644
index 0000000000000000000000000000000000000000..34b8bfc7a9c0b1d98865d694bf704b835a0d8ca5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "我的团购",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..2da02ac9216d5cb89a2fd804dc7a506b442173f8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.wxml
@@ -0,0 +1 @@
+发起的团购 参加的团购 尚未参加任何团购 开团中 开团成功 开团失败 {{item.creator+"发起"}} {{"订单编号:"+item.orderSn}} {{item.orderStatusText}} {{"团购立减:¥"+item.rules.discount}} {{"参与时间:"+item.groupon.addTime}} {{"团购要求:"+item.rules.discountMember+"人"}} {{"当前参团:"+item.joinerCount+"人"}} {{gitem.goodsName}} {{"共"+gitem.number+"件商品"}} {{"实付:¥"+item.actualPrice}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..8188eb86d1bd52752b1756ddcf8e604dddc50b8f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/groupon/myGroupon/myGroupon.wxss
@@ -0,0 +1,184 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+.orders-switch {
+ width: 100%;
+ background: #fff;
+ height: 84rpx;
+ border-bottom: 1px solid #a78845;
+}
+.orders-switch .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 50%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+.orders-switch .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #333;
+ font-size: 30rpx;
+ width: 100%;
+}
+.orders-switch .item.active .txt {
+ color: #a78845;
+ border-bottom: 4rpx solid #a78845;
+}
+.no-order {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+.no-order .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+.no-order .c image {
+ margin: 0 auto;
+ display: block;
+ text-align: center;
+ width: 258rpx;
+ height: 258rpx;
+}
+.no-order .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+.orders {
+ height: auto;
+ width: 100%;
+ overflow: hidden;
+}
+.order {
+ margin-top: 20rpx;
+ background: #fff;
+}
+.order .h {
+ height: 83.3rpx;
+ line-height: 83.3rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.order .h .l {
+ float: left;
+ color: #a78845;
+ font-size: 26rpx;
+}
+.order .h .r {
+ float: right;
+ color: #a78845;
+ font-size: 26rpx;
+}
+.order .i {
+ height: 56rpx;
+ line-height: 56rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.order .i .l {
+ float: left;
+ color: #a78845;
+ font-size: 26rpx;
+}
+.order .i .r {
+ float: right;
+ color: #a78845;
+ font-size: 26rpx;
+}
+.order .j {
+ height: 56rpx;
+ line-height: 56rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+}
+.order .j .l {
+ float: left;
+ font-size: 26rpx;
+ color: #a78845;
+}
+.order .j .r {
+ float: right;
+ color: #a78845;
+ font-size: 26rpx;
+}
+.order .goods {
+ display: flex;
+ align-items: center;
+ height: 199rpx;
+ margin-left: 31.25rpx;
+}
+.order .goods .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+.order .goods .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+.order .goods .info {
+ height: 145.83rpx;
+ flex: 1;
+ padding-left: 20rpx;
+}
+.order .goods .name {
+ margin-top: 30rpx;
+ display: block;
+ height: 44rpx;
+ line-height: 44rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order .goods .number {
+ display: block;
+ height: 37rpx;
+ line-height: 37rpx;
+ color: #666;
+ font-size: 25rpx;
+}
+.order .goods .status {
+ width: 105rpx;
+ color: #a78845;
+ font-size: 25rpx;
+}
+.order .b {
+ height: 103rpx;
+ line-height: 103rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-top: 1px solid #f4f4f4;
+ font-size: 30rpx;
+ color: #333;
+}
+.order .b .l {
+ float: left;
+}
+.order .b .r {
+ float: right;
+}
+.order .b .btn {
+ margin-top: 19rpx;
+ height: 64.5rpx;
+ line-height: 64.5rpx;
+ text-align: center;
+ padding: 0 20rpx;
+ border-radius: 5rpx;
+ font-size: 28rpx;
+ color: #fff;
+ background: #a78845;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.js
new file mode 100644
index 0000000000000000000000000000000000000000..8cc89b8d84170fce59258c0667b875865ba74a2e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.js
@@ -0,0 +1,283 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/help/help"],{
+
+/***/ 316:
+/*!*************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fhelp%2Fhelp"} ***!
+ \*************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _help = _interopRequireDefault(__webpack_require__(/*! ./pages/help/help.vue */ 317));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_help.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 317:
+/*!******************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue ***!
+ \******************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _help_vue_vue_type_template_id_41dcc5a6___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./help.vue?vue&type=template&id=41dcc5a6& */ 318);
+/* harmony import */ var _help_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./help.vue?vue&type=script&lang=js& */ 320);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _help_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _help_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _help_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./help.vue?vue&type=style&index=0&lang=css& */ 322);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _help_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _help_vue_vue_type_template_id_41dcc5a6___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _help_vue_vue_type_template_id_41dcc5a6___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _help_vue_vue_type_template_id_41dcc5a6___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/help/help.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 318:
+/*!*************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?vue&type=template&id=41dcc5a6& ***!
+ \*************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_template_id_41dcc5a6___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./help.vue?vue&type=template&id=41dcc5a6& */ 319);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_template_id_41dcc5a6___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_template_id_41dcc5a6___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_template_id_41dcc5a6___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_template_id_41dcc5a6___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 319:
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?vue&type=template&id=41dcc5a6& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 320:
+/*!*******************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?vue&type=script&lang=js& ***!
+ \*******************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./help.vue?vue&type=script&lang=js& */ 321);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 321:
+/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?vue&type=script&lang=js& ***!
+ \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ issueList: [],
+ page: 1,
+ limit: 10,
+ count: 0,
+ showPage: false };
+
+ }
+ /**
+ * 生命周期函数--监听页面加载
+ */,
+ onLoad: function onLoad(options) {
+ this.getIssue();
+ },
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady: function onReady() {},
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow: function onShow() {},
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide: function onHide() {},
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload: function onUnload() {},
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh: function onPullDownRefresh() {},
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom: function onReachBottom() {},
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage: function onShareAppMessage() {},
+ methods: {
+ nextPage: function nextPage(event) {
+ var that = this;
+
+ if (this.page > that.count / that.limit) {
+ return true;
+ }
+
+ that.setData({
+ page: that.page + 1 });
+
+ this.getIssue();
+ },
+
+ getIssue: function getIssue() {
+ var that = this;
+ that.setData({
+ showPage: false,
+ issueList: [] });
+
+ util.request(api.IssueList, {
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ issueList: res.data.list,
+ showPage: true,
+ count: res.data.total });
+
+ }
+ });
+ },
+
+ prevPage: function prevPage(event) {
+ if (this.page <= 1) {
+ return false;
+ }
+
+ var that = this;
+ that.setData({
+ page: that.page - 1 });
+
+ this.getIssue();
+ } } };exports.default = _default;
+
+/***/ }),
+
+/***/ 322:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./help.vue?vue&type=style&index=0&lang=css& */ 323);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_help_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 323:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/help/help.vue?vue&type=style&index=0&lang=css& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[316,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/help/help.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.json
new file mode 100644
index 0000000000000000000000000000000000000000..ec732869466b600e41eab3876494da492042f39a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "帮助中心",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..341a682dc2fbb757ea5c0378945f9b6011745fbf
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.wxml
@@ -0,0 +1 @@
+{{item.question}} {{''+item.answer+''}} 上一页 下一页
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..ac26cca5817f8ccde53374ad261c7f28ca5f4191
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/help/help.wxss
@@ -0,0 +1,60 @@
+.common-problem {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 0rpx 30rpx;
+ background: #fff;
+}
+.item {
+ height: auto;
+ overflow: hidden;
+ padding-bottom: 25rpx;
+}
+.question-box .spot {
+ float: left;
+ display: block;
+ height: 10rpx;
+ width: 10rpx;
+ background: #b4282d;
+ border-radius: 50%;
+ margin-top: 11rpx;
+}
+.question-box .question {
+ float: left;
+ line-height: 30rpx;
+ padding-left: 8rpx;
+ display: block;
+ font-size: 26rpx;
+ padding-bottom: 15rpx;
+ color: #303030;
+ width: 680rpx;
+}
+.answer {
+ line-height: 36rpx;
+ padding-left: 16rpx;
+ font-size: 26rpx;
+ color: #787878;
+ display: block;
+}
+.page {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+.page view {
+ height: 108rpx;
+ width: 50%;
+ float: left;
+ font-size: 29rpx;
+ color: #333;
+ text-align: center;
+ line-height: 108rpx;
+}
+.page .prev {
+ border-right: 1px solid #d9d9d9;
+}
+.page .disabled {
+ color: #ccc;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.js
new file mode 100644
index 0000000000000000000000000000000000000000..a108a24c377f7a49ebe9c7166c4f2ec23401ece6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.js
@@ -0,0 +1,346 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/hotGoods/hotGoods"],{
+
+/***/ 42:
+/*!*********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2FhotGoods%2FhotGoods"} ***!
+ \*********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _hotGoods = _interopRequireDefault(__webpack_require__(/*! ./pages/hotGoods/hotGoods.vue */ 43));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_hotGoods.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 43:
+/*!**************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue ***!
+ \**************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _hotGoods_vue_vue_type_template_id_0e8b20a6___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./hotGoods.vue?vue&type=template&id=0e8b20a6& */ 44);
+/* harmony import */ var _hotGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./hotGoods.vue?vue&type=script&lang=js& */ 46);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _hotGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _hotGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _hotGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./hotGoods.vue?vue&type=style&index=0&lang=css& */ 48);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _hotGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _hotGoods_vue_vue_type_template_id_0e8b20a6___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _hotGoods_vue_vue_type_template_id_0e8b20a6___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _hotGoods_vue_vue_type_template_id_0e8b20a6___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/hotGoods/hotGoods.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 44:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?vue&type=template&id=0e8b20a6& ***!
+ \*********************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_template_id_0e8b20a6___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./hotGoods.vue?vue&type=template&id=0e8b20a6& */ 45);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_template_id_0e8b20a6___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_template_id_0e8b20a6___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_template_id_0e8b20a6___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_template_id_0e8b20a6___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 45:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?vue&type=template&id=0e8b20a6& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 46:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?vue&type=script&lang=js& ***!
+ \***************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./hotGoods.vue?vue&type=script&lang=js& */ 47);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 47:
+/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?vue&type=script&lang=js& ***!
+ \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ bannerInfo: {
+ imgUrl: '/static/images/hot.png',
+ name: '大家都在买的' },
+
+
+ categoryFilter: false,
+ filterCategory: [],
+ goodsList: [],
+ categoryId: 0,
+ currentSortType: 'default',
+ currentSort: 'add_time',
+ currentSortOrder: 'desc',
+ page: 1,
+ limit: 10,
+
+ iitem: {
+ id: '',
+ picUrl: '',
+ name: '',
+ retailPrice: '' },
+
+
+ iindex: 0 };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.getGoodsList();
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getCategoryList: function getCategoryList() {
+ var that = this;
+ util.request(api.GoodsFilter, {
+ isHot: 1 }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ filterCategory: res.data.filterCategoryList });
+
+ }
+ });
+ },
+
+ getGoodsList: function getGoodsList() {
+ var that = this;
+ util.request(api.GoodsList, {
+ isHot: true,
+ page: that.page,
+ limit: that.limit,
+ order: that.currentSortOrder,
+ sort: that.currentSort,
+ categoryId: that.categoryId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ goodsList: res.data.list,
+ filterCategory: res.data.filterCategoryList });
+
+ }
+ });
+ },
+
+ openSortFilter: function openSortFilter(event) {
+ var currentId = event.currentTarget.id;
+
+ switch (currentId) {
+ case 'categoryFilter':
+ this.setData({
+ categoryFilter: !this.categoryFilter,
+ currentSortType: 'category',
+ currentSort: 'add_time',
+ currentSortOrder: 'desc' });
+
+ break;
+
+ case 'priceSort':
+ var tmpSortOrder = 'asc';
+
+ if (this.currentSortOrder == 'asc') {
+ tmpSortOrder = 'desc';
+ }
+
+ this.setData({
+ currentSortType: 'price',
+ currentSort: 'retail_price',
+ currentSortOrder: tmpSortOrder,
+ categoryFilter: false });
+
+ this.getGoodsList();
+ break;
+
+ default:
+ //综合排序
+ this.setData({
+ currentSortType: 'default',
+ currentSort: 'add_time',
+ currentSortOrder: 'desc',
+ categoryFilter: false,
+ categoryId: 0 });
+
+ this.getGoodsList();}
+
+ },
+
+ selectCategory: function selectCategory(event) {
+ var currentIndex = event.target.dataset.categoryIndex;
+ this.setData({
+ categoryFilter: false,
+ categoryId: this.filterCategory[currentIndex].id });
+
+ this.getGoodsList();
+ } } };exports.default = _default;
+
+/***/ }),
+
+/***/ 48:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./hotGoods.vue?vue&type=style&index=0&lang=css& */ 49);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_hotGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 49:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/hotGoods/hotGoods.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[42,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/hotGoods/hotGoods.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.json
new file mode 100644
index 0000000000000000000000000000000000000000..fa14ba5123f4abf1daeb4e1772bf7cf9ac09b790
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "人气推荐",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..b5af536a7e97aaff1045d480c3112ede6a1edaf2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.wxml
@@ -0,0 +1 @@
+{{bannerInfo.name}} 综合 价格 分类 {{''+item.name+''}} {{iitem.name}} {{"¥"+iitem.retailPrice}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..76b79df67c0f952359ef0d74207b076e516e62aa
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/hotGoods/hotGoods.wxss
@@ -0,0 +1,144 @@
+page {
+ background: #f4f4f4;
+}
+.brand-info .name {
+ width: 100%;
+ height: 278rpx;
+ position: relative;
+}
+.brand-info .img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 278rpx;
+}
+.brand-info .info-box {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 278rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.brand-info .info {
+ display: block;
+}
+.brand-info .txt {
+ display: block;
+ height: 40rpx;
+ font-size: 37.5rpx;
+ color: #fff;
+}
+.brand-info .line {
+ margin: 0 auto;
+ margin-top: 16rpx;
+ display: block;
+ height: 2rpx;
+ width: 145rpx;
+ background: #fff;
+}
+.sort {
+ position: relative;
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+}
+.sort-box {
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+ overflow: hidden;
+ padding: 0 30rpx;
+ display: flex;
+ align-items: center;
+ border-bottom: 1px solid #d9d9d9;
+}
+.sort-box .item {
+ height: 78rpx;
+ line-height: 78rpx;
+ text-align: center;
+ flex: 1;
+ color: #333;
+ font-size: 30rpx;
+}
+.sort-box .item .txt {
+ color: #333;
+}
+.sort-box .item.active .txt {
+ color: #b4282d;
+}
+.sort-box .item .van-icon {
+ margin-left: 6rpx;
+}
+.sort-box-category {
+ background: #fff;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 40rpx 40rpx 0 0;
+ border-bottom: 1px solid #d9d9d9;
+}
+.sort-box-category .item {
+ height: 54rpx;
+ line-height: 54rpx;
+ text-align: center;
+ float: left;
+ padding: 0 16rpx;
+ margin: 0 0 40rpx 40rpx;
+ border: 1px solid #666;
+ color: #333;
+ font-size: 24rpx;
+}
+.sort-box-category .item.active {
+ color: #b4282d;
+ border: 1px solid #b4282d;
+}
+.cate-item .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ border-top: 1rpx solid #f4f4f4;
+ margin-top: 20rpx;
+}
+.cate-item .b .item {
+ float: left;
+ background: #fff;
+ width: 375rpx;
+ padding-bottom: 33.333rpx;
+ border-bottom: 1rpx solid #f4f4f4;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+}
+.cate-item .b .item-b {
+ border-right: 1rpx solid #f4f4f4;
+}
+.cate-item .item .img {
+ margin-top: 10rpx;
+ width: 302rpx;
+ height: 302rpx;
+}
+.cate-item .item .name {
+ display: block;
+ width: 365.625rpx;
+ height: 35rpx;
+ padding: 0 20rpx;
+ overflow: hidden;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ font-size: 30rpx;
+ color: #333;
+}
+.cate-item .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..416d5514362a31a7ad3f0980131628b0b4e4811a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.js
@@ -0,0 +1,526 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/index/index"],{
+
+/***/ 18:
+/*!***************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Findex%2Findex"} ***!
+ \***************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _index = _interopRequireDefault(__webpack_require__(/*! ./pages/index/index.vue */ 19));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_index.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 19:
+/*!********************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue ***!
+ \********************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _index_vue_vue_type_template_id_57280228___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./index.vue?vue&type=template&id=57280228& */ 20);
+/* harmony import */ var _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./index.vue?vue&type=script&lang=js& */ 22);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./index.vue?vue&type=style&index=0&lang=css& */ 24);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _index_vue_vue_type_template_id_57280228___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _index_vue_vue_type_template_id_57280228___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _index_vue_vue_type_template_id_57280228___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/index/index.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 20:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?vue&type=template&id=57280228& ***!
+ \***************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_template_id_57280228___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=57280228& */ 21);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_template_id_57280228___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_template_id_57280228___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_template_id_57280228___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_template_id_57280228___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 21:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?vue&type=template&id=57280228& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 22:
+/*!*********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js& */ 23);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 23:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var user = __webpack_require__(/*! ../../utils/user.js */ 11); //获取应用实例
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ newGoods: [],
+ hotGoods: [],
+ topics: [],
+ brands: [],
+ groupons: [],
+ floorGoods: [],
+ banner: [],
+ channel: [],
+ coupon: [],
+ goodsCount: 0,
+
+ iitem: {
+ id: '',
+ picUrl: '',
+ name: '',
+ retailPrice: '' },
+
+
+ iindex: 0 };
+
+ },
+ onShareAppMessage: function onShareAppMessage() {
+ return {
+ title: 'litemall小程序商场',
+ desc: '开源微信小程序商城',
+ path: '/pages/index/index' };
+
+ },
+ onPullDownRefresh: function onPullDownRefresh() {
+ uni.showNavigationBarLoading(); //在标题栏中显示加载
+
+ this.getIndexData();
+ uni.hideNavigationBarLoading(); //完成停止加载
+
+ uni.stopPullDownRefresh(); //停止下拉刷新
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ if (options.scene) {
+ //这个scene的值存在则证明首页的开启来源于朋友圈分享的图,同时可以通过获取到的goodId的值跳转导航到对应的详情页
+ var scene = decodeURIComponent(options.scene);
+ console.log('scene:' + scene);
+ var info_arr = [];
+ info_arr = scene.split(',');
+ var _type = info_arr[0];
+ var id = info_arr[1];
+
+ if (_type == 'goods') {
+ uni.navigateTo({
+ url: '../goods/goods?id=' + id });
+
+ } else {
+ if (_type == 'groupon') {
+ uni.navigateTo({
+ url: '../goods/goods?grouponId=' + id });
+
+ } else {
+ uni.navigateTo({
+ url: '../index/index' });
+
+ }
+ }
+ } // 页面初始化 options为页面跳转所带来的参数
+
+ if (options.grouponId) {
+ //这个pageId的值存在则证明首页的开启来源于用户点击来首页,同时可以通过获取到的pageId的值跳转导航到对应的详情页
+ uni.navigateTo({
+ url: '../goods/goods?grouponId=' + options.grouponId });
+
+ } // 页面初始化 options为页面跳转所带来的参数
+
+ if (options.goodId) {
+ //这个goodId的值存在则证明首页的开启来源于分享,同时可以通过获取到的goodId的值跳转导航到对应的详情页
+ uni.navigateTo({
+ url: '../goods/goods?id=' + options.goodId });
+
+ } // 页面初始化 options为页面跳转所带来的参数
+
+ if (options.orderId) {
+ //这个orderId的值存在则证明首页的开启来源于订单模版通知,同时可以通过获取到的pageId的值跳转导航到对应的详情页
+ uni.navigateTo({
+ url: '../ucenter/orderDetail/orderDetail?id=' + options.orderId });
+
+ }
+
+ this.getIndexData();
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getIndexData: function getIndexData() {
+ var that = this;
+ util.request(api.IndexUrl).then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ newGoods: res.data.newGoodsList,
+ hotGoods: res.data.hotGoodsList,
+ topics: res.data.topicList,
+ brands: res.data.brandList,
+ floorGoods: res.data.floorGoodsList,
+ banner: res.data.banner,
+ groupons: res.data.grouponList,
+ channel: res.data.channel,
+ coupon: res.data.couponList });
+
+ }
+ });
+ util.request(api.GoodsCount).then(function (res) {
+ that.setData({
+ goodsCount: res.data });
+
+ });
+ },
+
+ getCoupon: function getCoupon(e) {
+ var couponId = e.currentTarget.dataset.index;
+ util.request(
+ api.CouponReceive,
+ {
+ couponId: couponId },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '领取成功' });
+
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 24:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css& */ 25);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 25:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/index/index.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[18,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/index/index.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..c8bb3a45226be388e992d32dac189ec993bb4c11
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "首页",
+ "enablePullDownRefresh": true,
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..4115a731ee0df944079569d63211119106d4ed89
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.wxml
@@ -0,0 +1 @@
+{{"商品搜索, 共"+goodsCount+"款好物"}} {{item.name}} 优惠券 {{item.tag}} {{item.discount+"元"}} {{"满"+item.min+"元使用"}} {{item.name}} {{item.desc}} {{"有效期:"+item.days+"天"}} {{"有效期:"+item.startTime+" - "+item.endTime}} 团购专区 {{item.name}} {{item.grouponMember+"人成团"}} {{"有效期至 "+item.expireTime}} {{item.brief}} {{"现价:¥"+item.retailPrice}} {{"团购价:¥"+item.grouponPrice}} 品牌制造商直供 {{item.name}} {{item.floorPrice}} 元起 周一周四 · 新品首发 {{item.name}} {{"¥"+item.retailPrice}} 人气推荐 {{item.name}} {{item.brief}} {{"¥"+item.retailPrice}} 专题精选 {{item.title}} {{"¥"+item.price+"元起"}} {{item.subtitle}} {{item.name}} {{iitem.name}} {{"¥"+iitem.retailPrice}} {{'更多'+item.name+'好物 >'}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..6acb2d6c27071fe636d826167fb08c5d3ccac7cc
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/index/index.wxss
@@ -0,0 +1,464 @@
+.banner {
+ width: 750rpx;
+ height: 417rpx;
+}
+.banner image {
+ width: 100%;
+ height: 417rpx;
+}
+.m-menu {
+ background: #fff;
+ display: flex;
+ align-items: center;
+ flex-wrap: wrap;
+ padding-bottom: 0rpx;
+ padding-top: 25rpx;
+}
+.m-menu .item {
+ width: 150rpx;
+ height: 126rpx;
+}
+.m-menu image {
+ display: block;
+ width: 58rpx;
+ height: 58rpx;
+ margin: 0 auto;
+ margin-bottom: 12rpx;
+}
+.m-menu text {
+ display: block;
+ font-size: 24rpx;
+ text-align: center;
+ margin: 0 auto;
+ line-height: 1;
+ color: #333;
+}
+.a-section {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+ color: #333;
+ margin-top: 20rpx;
+}
+.a-section .h {
+ display: flex;
+ flex-flow: row nowrap;
+ align-items: center;
+ justify-content: center;
+ height: 130rpx;
+}
+.a-section .h .txt {
+ padding-right: 30rpx;
+ background-size: 16.656rpx 27rpx;
+ display: inline-block;
+ height: 36rpx;
+ font-size: 33rpx;
+ line-height: 36rpx;
+}
+.a-brand .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ position: relative;
+}
+.a-brand .wrap {
+ position: relative;
+}
+.a-brand .img {
+ position: absolute;
+ left: 0;
+ top: 0;
+}
+.a-brand .mt {
+ position: absolute;
+ z-index: 2;
+ padding: 27rpx 31rpx;
+ left: 0;
+ top: 0;
+}
+.a-brand .mt .brand {
+ display: block;
+ font-size: 33rpx;
+ height: 43rpx;
+ color: #fff;
+}
+.a-brand .mt .price,
+.a-brand .mt .unit {
+ font-size: 25rpx;
+ color: #fff;
+}
+.a-brand .item-1 {
+ float: left;
+ width: 375rpx;
+ height: 252rpx;
+ overflow: hidden;
+ border-top: 1rpx solid #fff;
+ margin-left: 1rpx;
+}
+.a-brand .item-1:nth-child(2n + 1) {
+ margin-left: 0;
+ width: 374rpx;
+}
+.a-brand .item-1 .img {
+ width: 375rpx;
+ height: 253rpx;
+}
+.a-coupon {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+.a-coupon .b .item {
+ position: relative;
+ height: 200rpx;
+ width: 700rpx;
+ background: linear-gradient(to right, #cfa568, #e3bf79);
+ margin-bottom: 10rpx;
+ margin-left: 30rpx;
+ margin-right: 30rpx;
+ padding-top: 30rpx;
+}
+.a-coupon .b .tag {
+ height: 32rpx;
+ background: #a48143;
+ padding-left: 16rpx;
+ padding-right: 16rpx;
+ position: absolute;
+ left: 20rpx;
+ color: #fff;
+ top: 20rpx;
+ font-size: 20rpx;
+ text-align: center;
+ line-height: 32rpx;
+}
+.a-coupon .b .content {
+ margin-top: 24rpx;
+ margin-left: 40rpx;
+ display: flex;
+ margin-right: 40rpx;
+ flex-direction: row;
+}
+.a-coupon .b .content .left {
+ flex: 1;
+}
+.a-coupon .b .discount {
+ font-size: 50rpx;
+ color: #b4282d;
+}
+.a-coupon .b .min {
+ color: #fff;
+}
+.a-coupon .b .content .right {
+ width: 400rpx;
+}
+.a-coupon .b .name {
+ font-size: 44rpx;
+ color: #fff;
+ margin-bottom: 14rpx;
+}
+.a-coupon .b .desc {
+ font-size: 24rpx;
+ color: #fff;
+}
+.a-coupon .b .time {
+ font-size: 24rpx;
+ color: #fff;
+ line-height: 30rpx;
+}
+.a-groupon {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+.a-groupon .b .item {
+ border-top: 1px solid #d9d9d9;
+ margin: 0 20rpx;
+ height: 244rpx;
+ width: 710rpx;
+}
+.a-groupon .b .img {
+ margin-top: 12rpx;
+ margin-right: 12rpx;
+ float: left;
+ width: 220rpx;
+ height: 220rpx;
+}
+.a-groupon .b .right {
+ float: left;
+ height: 244rpx;
+ width: 476rpx;
+ display: flex;
+ flex-flow: row nowrap;
+}
+.a-groupon .b .text {
+ display: flex;
+ flex-wrap: nowrap;
+ flex-direction: column;
+ justify-content: center;
+ overflow: hidden;
+ height: 244rpx;
+ width: 476rpx;
+}
+.a-groupon .b .name {
+ float: left;
+ display: block;
+ color: #333;
+ line-height: 50rpx;
+ font-size: 30rpx;
+}
+.a-groupon .b .desc {
+ width: 476rpx;
+ display: block;
+ color: #999;
+ line-height: 50rpx;
+ font-size: 25rpx;
+}
+.a-groupon .b .price {
+ width: 476rpx;
+ display: flex;
+ color: #ab956d;
+ line-height: 50rpx;
+ font-size: 33rpx;
+}
+.a-groupon .b .counterPrice {
+ text-decoration: line-through;
+ font-size: 28rpx;
+ color: #999;
+}
+.a-groupon .b .retailPrice {
+ margin-left: 30rpx;
+ font-size: 28rpx;
+ color: #a78845;
+}
+.a-new .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 0 31rpx 45rpx 31rpx;
+}
+.a-new .b .item {
+ float: left;
+ width: 302rpx;
+ margin-top: 10rpx;
+ margin-left: 21rpx;
+ margin-right: 21rpx;
+}
+.a-new .b .item-b {
+ margin-left: 42rpx;
+}
+.a-new .b .img {
+ width: 302rpx;
+ height: 302rpx;
+}
+.a-new .b .name {
+ text-align: center;
+ display: block;
+ width: 302rpx;
+ height: 35rpx;
+ margin-bottom: 14rpx;
+ overflow: hidden;
+ font-size: 30rpx;
+ color: #333;
+}
+.a-new .b .price {
+ display: block;
+ text-align: center;
+ line-height: 30rpx;
+ font-size: 30rpx;
+ color: #ab956d;
+}
+.a-popular {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+.a-popular .b .item {
+ border-top: 1px solid #d9d9d9;
+ margin: 0 20rpx;
+ height: 264rpx;
+ width: 710rpx;
+}
+.a-popular .b .img {
+ margin-top: 12rpx;
+ margin-right: 12rpx;
+ float: left;
+ width: 240rpx;
+ height: 240rpx;
+}
+.a-popular .b .right {
+ float: left;
+ height: 264rpx;
+ width: 456rpx;
+ display: flex;
+ flex-flow: row nowrap;
+}
+.a-popular .b .text {
+ display: flex;
+ flex-wrap: nowrap;
+ flex-direction: column;
+ justify-content: center;
+ overflow: hidden;
+ height: 264rpx;
+ width: 456rpx;
+}
+.a-popular .b .name {
+ width: 456rpx;
+ display: block;
+ color: #333;
+ line-height: 50rpx;
+ font-size: 30rpx;
+}
+.a-popular .b .desc {
+ width: 456rpx;
+ display: block;
+ color: #999;
+ line-height: 50rpx;
+ font-size: 25rpx;
+}
+.a-popular .b .price {
+ width: 456rpx;
+ display: block;
+ color: #ab956d;
+ line-height: 50rpx;
+ font-size: 33rpx;
+}
+.a-topic .b {
+ height: 533rpx;
+ width: 750rpx;
+ padding: 0 0 48rpx 0;
+}
+.a-topic .b .list {
+ height: 533rpx;
+ width: 750rpx;
+ white-space: nowrap;
+}
+.a-topic .b .item {
+ display: inline-block;
+ height: 533rpx;
+ width: 680.5rpx;
+ margin-left: 30rpx;
+ overflow: hidden;
+}
+.a-topic .b .item:last-child {
+ margin-right: 30rpx;
+}
+.a-topic .b .img {
+ height: 387.5rpx;
+ width: 680.5rpx;
+ margin-bottom: 30rpx;
+}
+.a-topic .b .np {
+ height: 35rpx;
+ margin-bottom: 13.5rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.a-topic .b .np .price {
+ margin-left: 20.8rpx;
+ color: #ab956d;
+}
+.a-topic .b .desc {
+ display: block;
+ height: 30rpx;
+ color: #999;
+ font-size: 24rpx;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+.good-grid {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+}
+.good-grid .h {
+ display: flex;
+ flex-flow: row nowrap;
+ align-items: center;
+ justify-content: center;
+ height: 130rpx;
+ font-size: 33rpx;
+ color: #333;
+}
+.good-grid .b {
+ width: 750rpx;
+ padding: 0 6.25rpx;
+ height: auto;
+ overflow: hidden;
+}
+.good-grid .b .item {
+ float: left;
+ background: #fff;
+ width: 365rpx;
+ margin-bottom: 6.25rpx;
+ height: 452rpx;
+ overflow: hidden;
+ text-align: center;
+}
+.good-grid .b .item .a {
+ height: 452rpx;
+ width: 100%;
+}
+.good-grid .b .item-b {
+ margin-left: 6.25rpx;
+}
+.good-grid .item .img {
+ margin-top: 20rpx;
+ width: 302rpx;
+ height: 302rpx;
+}
+.good-grid .item .name {
+ display: block;
+ width: 365.625rpx;
+ padding: 0 20rpx;
+ overflow: hidden;
+ height: 35rpx;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ font-size: 30rpx;
+ color: #333;
+}
+.good-grid .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #ab956d;
+}
+.good-grid .t {
+ height: 100rpx;
+ background: #fff;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.search {
+ height: 88rpx;
+ width: 100%;
+ padding: 0 30rpx;
+ background: #fff;
+ display: flex;
+ align-items: center;
+}
+.search .van-icon-search {
+ line-height: 59rpx;
+}
+.search .input {
+ width: 690rpx;
+ height: 56rpx;
+ background: #ededed;
+ border-radius: 8rpx;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.search .txt {
+ height: 42rpx;
+ line-height: 42rpx;
+ color: #666;
+ padding-left: 10rpx;
+ font-size: 30rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.js
new file mode 100644
index 0000000000000000000000000000000000000000..7033a6643ed8a2b45aa7333751eed6116ea9af10
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.js
@@ -0,0 +1,333 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/newGoods/newGoods"],{
+
+/***/ 34:
+/*!*********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2FnewGoods%2FnewGoods"} ***!
+ \*********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _newGoods = _interopRequireDefault(__webpack_require__(/*! ./pages/newGoods/newGoods.vue */ 35));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_newGoods.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 35:
+/*!**************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue ***!
+ \**************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _newGoods_vue_vue_type_template_id_1e364174___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./newGoods.vue?vue&type=template&id=1e364174& */ 36);
+/* harmony import */ var _newGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./newGoods.vue?vue&type=script&lang=js& */ 38);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _newGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _newGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _newGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./newGoods.vue?vue&type=style&index=0&lang=css& */ 40);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _newGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _newGoods_vue_vue_type_template_id_1e364174___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _newGoods_vue_vue_type_template_id_1e364174___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _newGoods_vue_vue_type_template_id_1e364174___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/newGoods/newGoods.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 36:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?vue&type=template&id=1e364174& ***!
+ \*********************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_template_id_1e364174___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./newGoods.vue?vue&type=template&id=1e364174& */ 37);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_template_id_1e364174___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_template_id_1e364174___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_template_id_1e364174___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_template_id_1e364174___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 37:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?vue&type=template&id=1e364174& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 38:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?vue&type=script&lang=js& ***!
+ \***************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./newGoods.vue?vue&type=script&lang=js& */ 39);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 39:
+/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?vue&type=script&lang=js& ***!
+ \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ bannerInfo: {
+ imgUrl: '/static/images/new.png',
+ name: '大家都在买的' },
+
+
+ categoryFilter: false,
+ filterCategory: [],
+ goodsList: [],
+ categoryId: 0,
+ currentSortType: 'default',
+ currentSort: 'add_time',
+ currentSortOrder: 'desc',
+ page: 1,
+ limit: 10,
+
+ iitem: {
+ id: '',
+ picUrl: '',
+ name: '',
+ retailPrice: '' },
+
+
+ iindex: 0 };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.getGoodsList();
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getGoodsList: function getGoodsList() {
+ var that = this;
+ util.request(api.GoodsList, {
+ isNew: true,
+ page: that.page,
+ limit: that.limit,
+ order: that.currentSortOrder,
+ sort: that.currentSort,
+ categoryId: that.categoryId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ goodsList: res.data.list,
+ filterCategory: res.data.filterCategoryList });
+
+ }
+ });
+ },
+
+ openSortFilter: function openSortFilter(event) {
+ var currentId = event.currentTarget.id;
+
+ switch (currentId) {
+ case 'categoryFilter':
+ this.setData({
+ categoryFilter: !this.categoryFilter,
+ currentSortType: 'category',
+ currentSort: 'add_time',
+ currentSortOrder: 'desc' });
+
+ break;
+
+ case 'priceSort':
+ var tmpSortOrder = 'asc';
+
+ if (this.currentSortOrder == 'asc') {
+ tmpSortOrder = 'desc';
+ }
+
+ this.setData({
+ currentSortType: 'price',
+ currentSort: 'retail_price',
+ currentSortOrder: tmpSortOrder,
+ categoryFilter: false });
+
+ this.getGoodsList();
+ break;
+
+ default:
+ //综合排序
+ this.setData({
+ currentSortType: 'default',
+ currentSort: 'add_time',
+ currentSortOrder: 'desc',
+ categoryFilter: false,
+ categoryId: 0 });
+
+ this.getGoodsList();}
+
+ },
+
+ selectCategory: function selectCategory(event) {
+ var currentIndex = event.target.dataset.categoryIndex;
+ this.setData({
+ categoryFilter: false,
+ categoryId: this.filterCategory[currentIndex].id });
+
+ this.getGoodsList();
+ } } };exports.default = _default;
+
+/***/ }),
+
+/***/ 40:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./newGoods.vue?vue&type=style&index=0&lang=css& */ 41);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_newGoods_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 41:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/newGoods/newGoods.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[34,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/newGoods/newGoods.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.json
new file mode 100644
index 0000000000000000000000000000000000000000..5e7976889ee1d50f1fecf8fff1d18304f631f9d4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "新品首发",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..a3811f3938f953d6d62f049567ee00e6eba3d2f7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.wxml
@@ -0,0 +1 @@
+{{bannerInfo.name}} 综合 价格 分类 {{''+item.name+''}} {{iitem.name}} {{"¥"+iitem.retailPrice}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..db557e757484695ca9a92b3c71f6ff00456a4087
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/newGoods/newGoods.wxss
@@ -0,0 +1,143 @@
+page {
+ background: #f4f4f4;
+}
+.brand-info .name {
+ width: 100%;
+ height: 278rpx;
+ position: relative;
+}
+.brand-info .img {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 278rpx;
+}
+.brand-info .info-box {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 278rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.brand-info .info {
+ display: block;
+}
+.brand-info .txt {
+ display: block;
+ height: 40rpx;
+ font-size: 37.5rpx;
+ color: #fff;
+}
+.brand-info .line {
+ margin: 0 auto;
+ margin-top: 16rpx;
+ display: block;
+ height: 2rpx;
+ width: 145rpx;
+ background: #fff;
+}
+.sort {
+ position: relative;
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+}
+.sort-box {
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+ overflow: hidden;
+ padding: 0 30rpx;
+ display: flex;
+ border-bottom: 1px solid #d9d9d9;
+}
+.sort-box .item {
+ height: 78rpx;
+ line-height: 78rpx;
+ text-align: center;
+ flex: 1;
+ color: #333;
+ font-size: 30rpx;
+}
+.sort-box .item .txt {
+ color: #333;
+}
+.sort-box .item.active .txt {
+ color: #b4282d;
+}
+.sort-box .item .van-icon {
+ margin-left: 6rpx;
+}
+.sort-box-category {
+ background: #fff;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 40rpx 40rpx 0 0;
+ border-bottom: 1px solid #d9d9d9;
+}
+.sort-box-category .item {
+ height: 54rpx;
+ line-height: 54rpx;
+ text-align: center;
+ float: left;
+ padding: 0 16rpx;
+ margin: 0 0 40rpx 40rpx;
+ border: 1px solid #666;
+ color: #333;
+ font-size: 24rpx;
+}
+.sort-box-category .item.active {
+ color: #b4282d;
+ border: 1px solid #b4282d;
+}
+.cate-item .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ border-top: 1rpx solid #f4f4f4;
+ margin-top: 20rpx;
+}
+.cate-item .b .item {
+ float: left;
+ background: #fff;
+ width: 375rpx;
+ padding-bottom: 33.333rpx;
+ border-bottom: 1rpx solid #f4f4f4;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+}
+.cate-item .b .item-b {
+ border-right: 1rpx solid #f4f4f4;
+}
+.cate-item .item .img {
+ margin-top: 10rpx;
+ width: 302rpx;
+ height: 302rpx;
+}
+.cate-item .item .name {
+ display: block;
+ width: 365.625rpx;
+ height: 35rpx;
+ padding: 0 20rpx;
+ overflow: hidden;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ font-size: 30rpx;
+ color: #333;
+}
+.cate-item .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.js
new file mode 100644
index 0000000000000000000000000000000000000000..364f15fe2d7ed76a3dc69c074fc435587c71aef3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.js
@@ -0,0 +1,262 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/payResult/payResult"],{
+
+/***/ 164:
+/*!***********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2FpayResult%2FpayResult"} ***!
+ \***********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _payResult = _interopRequireDefault(__webpack_require__(/*! ./pages/payResult/payResult.vue */ 165));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_payResult.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 165:
+/*!****************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue ***!
+ \****************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _payResult_vue_vue_type_template_id_66a3985c___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./payResult.vue?vue&type=template&id=66a3985c& */ 166);
+/* harmony import */ var _payResult_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./payResult.vue?vue&type=script&lang=js& */ 168);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _payResult_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _payResult_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _payResult_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./payResult.vue?vue&type=style&index=0&lang=css& */ 170);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _payResult_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _payResult_vue_vue_type_template_id_66a3985c___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _payResult_vue_vue_type_template_id_66a3985c___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _payResult_vue_vue_type_template_id_66a3985c___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/payResult/payResult.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 166:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?vue&type=template&id=66a3985c& ***!
+ \***********************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_template_id_66a3985c___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./payResult.vue?vue&type=template&id=66a3985c& */ 167);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_template_id_66a3985c___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_template_id_66a3985c___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_template_id_66a3985c___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_template_id_66a3985c___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 167:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?vue&type=template&id=66a3985c& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 168:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?vue&type=script&lang=js& ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./payResult.vue?vue&type=script&lang=js& */ 169);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 169:
+/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?vue&type=script&lang=js& ***!
+ \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ status: false,
+ orderId: 0 };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.setData({
+ orderId: options.orderId,
+ status: options.status === '1' ? true : false });
+
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ payOrder: function payOrder() {
+ var that = this;
+ util.request(
+ api.OrderPrepay,
+ {
+ orderId: that.orderId },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ var payParam = res.data;
+ console.log('支付过程开始');
+ uni.requestPayment({
+ timeStamp: payParam.timeStamp,
+ nonceStr: payParam.nonceStr,
+ package: payParam.packageValue,
+ signType: payParam.signType,
+ paySign: payParam.paySign,
+ success: function success(res) {
+ console.log('支付过程成功');
+ that.setData({
+ status: true });
+
+ },
+ fail: function fail(res) {
+ console.log('支付过程失败');
+ util.showErrorToast('支付失败');
+ },
+ complete: function complete(res) {
+ console.log('支付过程结束');
+ } });
+
+ }
+ });
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 170:
+/*!*************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./payResult.vue?vue&type=style&index=0&lang=css& */ 171);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_payResult_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 171:
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/payResult/payResult.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[164,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/payResult/payResult.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.json
new file mode 100644
index 0000000000000000000000000000000000000000..bb43bcf90f97ab0a47194b6e0f9beedb77e14f92
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.json
@@ -0,0 +1,5 @@
+{
+ "navigationBarTitleText": "付款结果",
+ "navigationBarBackgroundColor": "#fafafa",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..db3eafdd0281b53ba18f179f2bbf732528c4d7ec
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.wxml
@@ -0,0 +1 @@
+付款成功 查看订单 继续逛 付款失败 请在半小时 内完成付款 否则订单将会被系统取消 查看订单 重新付款
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..4a66f68a3b3f1a787c6b876d4f776dc589d80fc5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/payResult/payResult.wxss
@@ -0,0 +1,51 @@
+page {
+ min-height: 100%;
+ width: 100%;
+ background: #fff;
+}
+.container {
+ height: 100%;
+ background: #fff;
+}
+.pay-result {
+ background: #fff;
+}
+.pay-result .msg {
+ text-align: center;
+ margin: 100rpx auto;
+ color: #2bab25;
+ font-size: 36rpx;
+}
+.pay-result .btns {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.pay-result .btn {
+ text-align: center;
+ height: 80rpx;
+ margin: 0 20rpx;
+ width: 200rpx;
+ line-height: 78rpx;
+ border: 1px solid #868686;
+ color: #000;
+ border-radius: 5rpx;
+}
+.pay-result .error .msg {
+ color: #b4282d;
+ margin-bottom: 60rpx;
+}
+.pay-result .error .tips {
+ color: #7f7f7f;
+ margin-bottom: 70rpx;
+}
+.pay-result .error .tips .p {
+ font-size: 24rpx;
+ line-height: 42rpx;
+ text-align: center;
+}
+.pay-result .error .tips .p {
+ line-height: 42rpx;
+ text-align: center;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.js
new file mode 100644
index 0000000000000000000000000000000000000000..08b131f399106dcee35dd1ec93d90b7a1b7a14b0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.js
@@ -0,0 +1,503 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/search/search"],{
+
+/***/ 236:
+/*!*****************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fsearch%2Fsearch"} ***!
+ \*****************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _search = _interopRequireDefault(__webpack_require__(/*! ./pages/search/search.vue */ 237));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_search.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 237:
+/*!**********************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue ***!
+ \**********************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _search_vue_vue_type_template_id_4cedc0c6___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./search.vue?vue&type=template&id=4cedc0c6& */ 238);
+/* harmony import */ var _search_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./search.vue?vue&type=script&lang=js& */ 240);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _search_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _search_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _search_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./search.vue?vue&type=style&index=0&lang=css& */ 242);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _search_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _search_vue_vue_type_template_id_4cedc0c6___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _search_vue_vue_type_template_id_4cedc0c6___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _search_vue_vue_type_template_id_4cedc0c6___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/search/search.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 238:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?vue&type=template&id=4cedc0c6& ***!
+ \*****************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_template_id_4cedc0c6___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./search.vue?vue&type=template&id=4cedc0c6& */ 239);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_template_id_4cedc0c6___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_template_id_4cedc0c6___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_template_id_4cedc0c6___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_template_id_4cedc0c6___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 239:
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?vue&type=template&id=4cedc0c6& ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 240:
+/*!***********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?vue&type=script&lang=js& ***!
+ \***********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./search.vue?vue&type=script&lang=js& */ 241);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 241:
+/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?vue&type=script&lang=js& ***!
+ \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ keywrod: '',
+ searchStatus: false,
+ goodsList: [],
+ helpKeyword: [],
+ historyKeyword: [],
+ categoryFilter: false,
+ currentSort: 'name',
+ currentSortType: 'default',
+ currentSortOrder: 'desc',
+ filterCategory: [],
+
+ defaultKeyword: {
+ keyword: '' },
+
+
+ hotKeyword: [],
+ page: 1,
+ limit: 20,
+ categoryId: 0,
+ keyword: '',
+ iindex: 0,
+
+ iitem: {
+ id: '',
+ picUrl: '',
+ name: '',
+ retailPrice: '' } };
+
+
+ },
+ onLoad: function onLoad() {
+ this.getSearchKeyword();
+ },
+ methods: {
+ //事件处理函数
+ closeSearch: function closeSearch() {
+ uni.navigateBack();
+ },
+
+ clearKeyword: function clearKeyword() {
+ this.setData({
+ keyword: '',
+ searchStatus: false });
+
+ },
+
+ getSearchKeyword: function getSearchKeyword() {
+ var that = this;
+ util.request(api.SearchIndex).then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ historyKeyword: res.data.historyKeywordList,
+ defaultKeyword: res.data.defaultKeyword,
+ hotKeyword: res.data.hotKeywordList });
+
+ }
+ });
+ },
+
+ inputChange: function inputChange(e) {
+ this.setData({
+ keyword: e.detail.value,
+ searchStatus: false });
+
+
+ if (e.detail.value) {
+ this.getHelpKeyword();
+ }
+ },
+
+ getHelpKeyword: function getHelpKeyword() {
+ var that = this;
+ util.request(api.SearchHelper, {
+ keyword: that.keyword }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ helpKeyword: res.data });
+
+ }
+ });
+ },
+
+ inputFocus: function inputFocus() {
+ this.setData({
+ searchStatus: false,
+ goodsList: [] });
+
+
+ if (this.keyword) {
+ this.getHelpKeyword();
+ }
+ },
+
+ clearHistory: function clearHistory() {
+ this.setData({
+ historyKeyword: [] });
+
+ util.request(api.SearchClearHistory, {}, 'POST').then(function (res) {
+ console.log('清除成功');
+ });
+ },
+
+ getGoodsList: function getGoodsList() {
+ var that = this;
+ util.request(api.GoodsList, {
+ keyword: that.keyword,
+ page: that.page,
+ limit: that.limit,
+ sort: that.currentSort,
+ order: that.currentSortOrder,
+ categoryId: that.categoryId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ searchStatus: true,
+ categoryFilter: false,
+ goodsList: res.data.list,
+ filterCategory: res.data.filterCategoryList });
+
+ } //重新获取关键词
+
+ that.getSearchKeyword();
+ });
+ },
+
+ onKeywordTap: function onKeywordTap(event) {
+ this.getSearchResult(event.target.dataset.keyword);
+ },
+
+ getSearchResult: function getSearchResult(keyword) {
+ if (keyword === '') {
+ keyword = this.defaultKeyword.keyword;
+ }
+
+ this.setData({
+ keyword: keyword,
+ page: 1,
+ categoryId: 0,
+ goodsList: [] });
+
+ this.getGoodsList();
+ },
+
+ openSortFilter: function openSortFilter(event) {
+ var currentId = event.currentTarget.id;
+
+ switch (currentId) {
+ case 'categoryFilter':
+ this.setData({
+ categoryFilter: !this.categoryFilter,
+ currentSortType: 'category',
+ currentSort: 'add_time',
+ currentSortOrder: 'desc' });
+
+ break;
+
+ case 'priceSort':
+ var tmpSortOrder = 'asc';
+
+ if (this.currentSortOrder == 'asc') {
+ tmpSortOrder = 'desc';
+ }
+
+ this.setData({
+ currentSortType: 'price',
+ currentSort: 'retail_price',
+ currentSortOrder: tmpSortOrder,
+ categoryFilter: false });
+
+ this.getGoodsList();
+ break;
+
+ default:
+ //综合排序
+ this.setData({
+ currentSortType: 'default',
+ currentSort: 'name',
+ currentSortOrder: 'desc',
+ categoryFilter: false,
+ categoryId: 0 });
+
+ this.getGoodsList();}
+
+ },
+
+ selectCategory: function selectCategory(event) {
+ var currentIndex = event.target.dataset.categoryIndex;
+ var filterCategory = this.filterCategory;
+ var currentCategory = null;
+
+ for (var key in filterCategory) {
+ if (key == currentIndex) {
+ filterCategory[key].selected = true;
+ currentCategory = filterCategory[key];
+ } else {
+ filterCategory[key].selected = false;
+ }
+ }
+
+ this.setData({
+ filterCategory: filterCategory,
+ categoryFilter: false,
+ categoryId: currentCategory.id,
+ page: 1,
+ goodsList: [] });
+
+ this.getGoodsList();
+ },
+
+ onKeywordConfirm: function onKeywordConfirm(event) {
+ this.getSearchResult(event.detail.value);
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 242:
+/*!*******************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?vue&type=style&index=0&lang=css& ***!
+ \*******************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./search.vue?vue&type=style&index=0&lang=css& */ 243);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_search_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 243:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/search/search.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[236,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/search/search.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.json
new file mode 100644
index 0000000000000000000000000000000000000000..0b984d245a1af2124af8da0589b6c0249461dee0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "搜索",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..a21ab3f7fc744321025a6a210b2934d3ad6a1878
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.wxml
@@ -0,0 +1 @@
+取消 历史记录 {{''+item.keyword+''}} 热门搜索 {{''+item.keyword+''}} {{item}} 综合 价格 分类 {{''+item.name+''}} {{iitem.name}} {{"¥"+iitem.retailPrice}} 您寻找的商品还未上架
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..c73027043bde656cab1c3598b367daa3d570bd03
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/search/search.wxss
@@ -0,0 +1,279 @@
+page {
+ min-height: 100%;
+ background-color: #f4f4f4;
+}
+.container {
+ min-height: 100%;
+ background-color: #f4f4f4;
+}
+.search-header {
+ position: fixed;
+ top: 0;
+ width: 750rpx;
+ height: 91rpx;
+ display: flex;
+ background: #fff;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+ padding: 0 31.25rpx;
+ font-size: 29rpx;
+ color: #333;
+}
+.search-header .van-icon-search {
+ line-height: 59rpx;
+}
+.search-header .input-box {
+ position: relative;
+ margin-top: 16rpx;
+ float: left;
+ width: 0;
+ flex: 1;
+ height: 59rpx;
+ line-height: 59rpx;
+ padding: 0 20rpx;
+ background: #f4f4f4;
+}
+.search-header .icon {
+ position: absolute;
+ top: 14rpx;
+ left: 20rpx;
+ width: 31rpx;
+ height: 31rpx;
+}
+.search-header .del {
+ position: absolute;
+ top: 3rpx;
+ right: 10rpx;
+ width: 53rpx;
+ height: 53rpx;
+ z-index: 10;
+}
+.search-header .keywrod {
+ position: absolute;
+ top: 0;
+ left: 40rpx;
+ width: 506rpx;
+ height: 59rpx;
+ padding-left: 30rpx;
+}
+.search-header .right {
+ margin-top: 24rpx;
+ margin-left: 31rpx;
+ margin-right: 6rpx;
+ width: 58rpx;
+ height: 43rpx;
+ line-height: 43rpx;
+ float: right;
+}
+.no-search {
+ height: auto;
+ overflow: hidden;
+ margin-top: 91rpx;
+}
+.search-keywords {
+ background: #fff;
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ margin-bottom: 20rpx;
+}
+.search-keywords .h {
+ padding: 0 31.25rpx;
+ height: 93rpx;
+ line-height: 93rpx;
+ width: 100%;
+ color: #999;
+ font-size: 29rpx;
+}
+.search-keywords .title {
+ display: block;
+ width: 120rpx;
+ float: left;
+}
+.search-keywords .icon {
+ margin-top: 19rpx;
+ float: right;
+ display: block;
+ margin-left: 511rpx;
+ height: 55rpx;
+ width: 55rpx;
+}
+.search-keywords .b {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding-left: 31.25rpx;
+}
+.search-keywords .item {
+ display: inline-block;
+ width: auto;
+ height: 48rpx;
+ line-height: 48rpx;
+ padding: 0 15rpx;
+ border: 1px solid #999;
+ margin: 0 31.25rpx 31.25rpx 0;
+ font-size: 24rpx;
+ color: #333;
+}
+.search-keywords .item.active {
+ color: #b4282d;
+ border: 1px solid #b4282d;
+}
+.shelper-list {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+ padding: 0 31.25rpx;
+}
+.shelper-list .item {
+ height: 93rpx;
+ width: 687.5rpx;
+ line-height: 93rpx;
+ font-size: 24rpx;
+ color: #333;
+ border-bottom: 1px solid #f4f4f4;
+}
+.sort {
+ position: fixed;
+ top: 91rpx;
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+}
+.sort-box {
+ background: #fff;
+ width: 100%;
+ height: 78rpx;
+ overflow: hidden;
+ padding: 0 30rpx;
+ display: flex;
+ border-bottom: 1px solid #d9d9d9;
+}
+.sort-box .item {
+ height: 78rpx;
+ line-height: 78rpx;
+ text-align: center;
+ flex: 1;
+ color: #333;
+ font-size: 30rpx;
+}
+.sort-box .item .txt {
+ color: #333;
+}
+.sort-box .item.active .txt {
+ color: #b4282d;
+}
+.sort-box .item .van-icon {
+ margin-left: 6rpx;
+}
+.sort-box-category {
+ background: #fff;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ padding: 40rpx 40rpx 0 0;
+ border-bottom: 1px solid #d9d9d9;
+}
+.sort-box-category .item {
+ height: 54rpx;
+ line-height: 54rpx;
+ text-align: center;
+ float: left;
+ padding: 0 16rpx;
+ margin: 0 0 40rpx 40rpx;
+ border: 1px solid #666;
+ color: #333;
+ font-size: 24rpx;
+}
+.sort-box-category .item.active {
+ color: #b4282d;
+ border: 1px solid #b4282d;
+}
+.cate-item {
+ margin-top: 175rpx;
+ height: auto;
+ overflow: hidden;
+}
+.cate-item .h {
+ height: 145rpx;
+ width: 750rpx;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+.cate-item .h .name {
+ display: block;
+ height: 35rpx;
+ margin-bottom: 18rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+.cate-item .h .desc {
+ display: block;
+ height: 24rpx;
+ font-size: 24rpx;
+ color: #999;
+}
+.cate-item .b {
+ width: 750rpx;
+ padding: 0 6.25rpx;
+ height: auto;
+ overflow: hidden;
+}
+.cate-item .list-filter {
+ height: 80rpx;
+ width: 100%;
+ background: #fff;
+ margin-bottom: 6.25rpx;
+}
+.cate-item .b .item {
+ float: left;
+ background: #fff;
+ width: 365rpx;
+ margin-bottom: 6.25rpx;
+ padding-bottom: 33.333rpx;
+ height: auto;
+ overflow: hidden;
+ text-align: center;
+}
+.cate-item .b .item-b {
+ margin-left: 6.25rpx;
+}
+.cate-item .item .img {
+ width: 302rpx;
+ height: 302rpx;
+}
+.cate-item .item .name {
+ display: block;
+ width: 365.625rpx;
+ height: 35rpx;
+ margin: 11.5rpx 0 22rpx 0;
+ text-align: center;
+ overflow: hidden;
+ padding: 0 20rpx;
+ font-size: 30rpx;
+ color: #333;
+}
+.cate-item .item .price {
+ display: block;
+ width: 365.625rpx;
+ height: 30rpx;
+ text-align: center;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+.search-result-empty {
+ width: 100%;
+ height: 100%;
+ padding-top: 600rpx;
+}
+.search-result-empty .text {
+ display: block;
+ width: 100%;
+ height: 40rpx;
+ font-size: 28rpx;
+ text-align: center;
+ color: #999;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.js
new file mode 100644
index 0000000000000000000000000000000000000000..c89f5284d9e2317d89ef404544733b668a38c9c9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.js
@@ -0,0 +1,276 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/topic/topic"],{
+
+/***/ 188:
+/*!***************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Ftopic%2Ftopic"} ***!
+ \***************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _topic = _interopRequireDefault(__webpack_require__(/*! ./pages/topic/topic.vue */ 189));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_topic.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 189:
+/*!********************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue ***!
+ \********************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _topic_vue_vue_type_template_id_1fb07e34___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./topic.vue?vue&type=template&id=1fb07e34& */ 190);
+/* harmony import */ var _topic_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./topic.vue?vue&type=script&lang=js& */ 192);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _topic_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _topic_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _topic_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./topic.vue?vue&type=style&index=0&lang=css& */ 194);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _topic_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _topic_vue_vue_type_template_id_1fb07e34___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _topic_vue_vue_type_template_id_1fb07e34___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _topic_vue_vue_type_template_id_1fb07e34___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/topic/topic.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 190:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?vue&type=template&id=1fb07e34& ***!
+ \***************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_template_id_1fb07e34___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topic.vue?vue&type=template&id=1fb07e34& */ 191);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_template_id_1fb07e34___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_template_id_1fb07e34___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_template_id_1fb07e34___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_template_id_1fb07e34___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 191:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?vue&type=template&id=1fb07e34& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 192:
+/*!*********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topic.vue?vue&type=script&lang=js& */ 193);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 193:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ topicList: [],
+ page: 1,
+ limit: 10,
+ count: 0,
+ scrollTop: 0,
+ showPage: false,
+ size: 0 };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.getTopic();
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ nextPage: function nextPage(event) {
+ var that = this;
+
+ if (this.page > that.count / that.limit) {
+ return true;
+ }
+
+ that.setData({
+ page: that.page + 1 });
+
+ this.getTopic();
+ },
+
+ getTopic: function getTopic() {
+ var that = this;
+ that.setData({
+ scrollTop: 0,
+ showPage: false,
+ topicList: [] });
+ // 页面渲染完成
+
+ uni.showToast({
+ title: '加载中...',
+ icon: 'loading',
+ duration: 2000 });
+
+ util.request(api.TopicList, {
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ scrollTop: 0,
+ topicList: res.data.list,
+ showPage: true,
+ count: res.data.total });
+
+ }
+
+ uni.hideToast();
+ });
+ },
+
+ prevPage: function prevPage(event) {
+ if (this.page <= 1) {
+ return false;
+ }
+
+ var that = this;
+ that.setData({
+ page: that.page - 1 });
+
+ this.getTopic();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 194:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topic.vue?vue&type=style&index=0&lang=css& */ 195);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topic_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 195:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topic/topic.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[188,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/topic/topic.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.json
new file mode 100644
index 0000000000000000000000000000000000000000..4ed757aaa170034ad0b7cd96f5dcd1e8774b4c03
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "专题",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..22bb1e24d08d390260f032a8e195eb34ec5824d8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.wxml
@@ -0,0 +1 @@
+{{item.title}} {{item.subtitle}} {{item.price+"元起"}} 上一页 下一页
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..8048abeb114777c3f102f9aaaa5e05db3602b80c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topic/topic.wxss
@@ -0,0 +1,85 @@
+page,
+.container {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+ background: #f4f4f4;
+}
+.topic-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+ background: #f4f4f4;
+}
+.topic-list .item {
+ width: 100%;
+ height: 625rpx;
+ overflow: hidden;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+.topic-list .img {
+ width: 100%;
+ height: 415rpx;
+}
+.topic-list .info {
+ width: 100%;
+ height: 210rpx;
+ overflow: hidden;
+}
+.topic-list .title {
+ display: block;
+ text-align: center;
+ width: 100%;
+ height: 33rpx;
+ line-height: 35rpx;
+ color: #333;
+ overflow: hidden;
+ font-size: 35rpx;
+ margin-top: 30rpx;
+}
+.topic-list .desc {
+ display: block;
+ text-align: center;
+ position: relative;
+ width: auto;
+ height: 24rpx;
+ line-height: 24rpx;
+ overflow: hidden;
+ color: #999;
+ font-size: 24rpx;
+ margin-top: 16rpx;
+ margin-bottom: 30rpx;
+}
+.topic-list .price {
+ display: block;
+ text-align: center;
+ width: 100%;
+ height: 27rpx;
+ line-height: 27rpx;
+ overflow: hidden;
+ color: #b4282d;
+ font-size: 27rpx;
+}
+.page {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+.page view {
+ height: 108rpx;
+ width: 50%;
+ float: left;
+ font-size: 29rpx;
+ color: #333;
+ text-align: center;
+ line-height: 108rpx;
+}
+.page .prev {
+ border-right: 1px solid #d9d9d9;
+}
+.page .disabled {
+ color: #ccc;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.js
new file mode 100644
index 0000000000000000000000000000000000000000..037d12c09e9c1eb1cc3aeefe05e2df25c806d367
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.js
@@ -0,0 +1,336 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/topicComment/topicComment"],{
+
+/***/ 196:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2FtopicComment%2FtopicComment"} ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _topicComment = _interopRequireDefault(__webpack_require__(/*! ./pages/topicComment/topicComment.vue */ 197));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_topicComment.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 197:
+/*!**********************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue ***!
+ \**********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _topicComment_vue_vue_type_template_id_2dcf4606___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./topicComment.vue?vue&type=template&id=2dcf4606& */ 198);
+/* harmony import */ var _topicComment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./topicComment.vue?vue&type=script&lang=js& */ 200);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _topicComment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _topicComment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _topicComment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./topicComment.vue?vue&type=style&index=0&lang=css& */ 202);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _topicComment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _topicComment_vue_vue_type_template_id_2dcf4606___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _topicComment_vue_vue_type_template_id_2dcf4606___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _topicComment_vue_vue_type_template_id_2dcf4606___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/topicComment/topicComment.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 198:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?vue&type=template&id=2dcf4606& ***!
+ \*****************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_template_id_2dcf4606___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicComment.vue?vue&type=template&id=2dcf4606& */ 199);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_template_id_2dcf4606___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_template_id_2dcf4606___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_template_id_2dcf4606___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_template_id_2dcf4606___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 199:
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?vue&type=template&id=2dcf4606& ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 200:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?vue&type=script&lang=js& ***!
+ \***********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicComment.vue?vue&type=script&lang=js& */ 201);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 201:
+/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?vue&type=script&lang=js& ***!
+ \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var app = getApp();
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ comments: [],
+ allCommentList: [],
+ picCommentList: [],
+ type: 0,
+ valueId: 0,
+ showType: 0,
+ allCount: 0,
+ hasPicCount: 0,
+ allPage: 1,
+ picPage: 1,
+ limit: 20,
+ pitem: '' };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.setData({
+ type: options.type,
+ valueId: options.valueId });
+
+ this.getCommentCount();
+ this.getCommentList();
+ },
+ onPullDownRefresh: function onPullDownRefresh() {
+ uni.showNavigationBarLoading(); //在标题栏中显示加载
+
+ this.getCommentCount();
+ this.getCommentList();
+ uni.hideNavigationBarLoading(); //完成停止加载
+
+ uni.stopPullDownRefresh(); //停止下拉刷新
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ onReachBottom: function onReachBottom() {
+ if (this.showType == 0) {
+ if (this.allCount / this.limit < this.allPage) {
+ return false;
+ }
+
+ this.setData({
+ allPage: this.allPage + 1 });
+
+ } else {
+ if (this.hasPicCount / this.limit < this.picPage) {
+ return false;
+ }
+
+ this.setData({
+ picPage: this.picPage + 1 });
+
+ }
+
+ this.getCommentList();
+ },
+ methods: {
+ getCommentCount: function getCommentCount() {
+ var that = this;
+ util.request(api.CommentCount, {
+ valueId: that.valueId,
+ type: that.type }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ allCount: res.data.allCount,
+ hasPicCount: res.data.hasPicCount });
+
+ }
+ });
+ },
+
+ getCommentList: function getCommentList() {
+ var that = this;
+ util.request(api.CommentList, {
+ valueId: that.valueId,
+ type: that.type,
+ limit: that.limit,
+ page: that.showType == 0 ? that.allPage : that.picPage,
+ showType: that.showType }).
+ then(function (res) {
+ if (res.errno === 0) {
+ if (that.showType == 0) {
+ that.setData({
+ allCommentList: that.allCommentList.concat(res.data.list),
+ allPage: res.data.page,
+ comments: that.allCommentList.concat(res.data.list) });
+
+ } else {
+ that.setData({
+ picCommentList: that.picCommentList.concat(res.data.list),
+ picPage: res.data.page,
+ comments: that.picCommentList.concat(res.data.list) });
+
+ }
+ }
+ });
+ },
+
+ switchTab: function switchTab() {
+ var that = this;
+
+ if (that.showType == 0) {
+ that.setData({
+ allCommentList: [],
+ allPage: 1,
+ comments: [],
+ showType: 1 });
+
+ } else {
+ that.setData({
+ picCommentList: [],
+ picPage: 1,
+ comments: [],
+ showType: 0 });
+
+ }
+
+ this.getCommentList();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 202:
+/*!*******************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?vue&type=style&index=0&lang=css& ***!
+ \*******************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicComment.vue?vue&type=style&index=0&lang=css& */ 203);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicComment_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 203:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicComment/topicComment.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[196,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/topicComment/topicComment.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.json
new file mode 100644
index 0000000000000000000000000000000000000000..02e9a2c667522d62b35b386a015277d9fc796281
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.json
@@ -0,0 +1,5 @@
+{
+ "enablePullDownRefresh": true,
+ "navigationBarTitleText": "评论",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..4c0be27414e0e4ef9b0a9ae0bb00682dc363d41e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.wxml
@@ -0,0 +1 @@
+{{"全部("+allCount+")"}} {{"有图("+hasPicCount+")"}} {{item.userInfo.nickName}} {{item.addTime}} {{item.content}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..0a8bb01798c7f7d5d6d1d06a8a001648d167a1df
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicComment/topicComment.wxss
@@ -0,0 +1,126 @@
+.comments {
+ width: 100%;
+ height: auto;
+ padding-left: 30rpx;
+ background: #fff;
+ margin: 20rpx 0;
+}
+.comments .h {
+ position: fixed;
+ left: 0;
+ top: 0;
+ z-index: 1000;
+ width: 100%;
+ display: flex;
+ background: #fff;
+ height: 84rpx;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+}
+.comments .h .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 50%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+.comments .h .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #333;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+.comments .h .item.active .txt {
+ color: #ab2b2b;
+ border-bottom: 4rpx solid #ab2b2b;
+}
+.comments .b {
+ margin-top: 85rpx;
+ height: auto;
+ width: 720rpx;
+}
+.comments .b.no-h {
+ margin-top: 0;
+}
+.comments .item {
+ height: auto;
+ width: 720rpx;
+ overflow: hidden;
+ border-bottom: 1px solid #d9d9d9;
+ padding-bottom: 25rpx;
+}
+.comments .info {
+ height: 127rpx;
+ width: 100%;
+ padding: 33rpx 0 27rpx 0;
+}
+.comments .user {
+ float: left;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ font-size: 0;
+}
+.comments .user image {
+ float: left;
+ width: 67rpx;
+ height: 67rpx;
+ margin-right: 17rpx;
+ border-radius: 50%;
+}
+.comments .user text {
+ display: inline-block;
+ width: auto;
+ height: 66rpx;
+ overflow: hidden;
+ font-size: 29rpx;
+ line-height: 66rpx;
+}
+.comments .time {
+ display: block;
+ float: right;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ color: #7f7f7f;
+ font-size: 25rpx;
+ margin-right: 30rpx;
+}
+.comments .comment {
+ width: 720rpx;
+ padding-right: 30rpx;
+ line-height: 45.8rpx;
+ font-size: 29rpx;
+ margin-bottom: 16rpx;
+}
+.comments .imgs {
+ width: 720rpx;
+ height: 150rpx;
+ margin-bottom: 25rpx;
+}
+.comments .imgs .img {
+ height: 150rpx;
+ width: 150rpx;
+ margin-right: 28rpx;
+}
+.comments .customer-service {
+ width: 690rpx;
+ height: auto;
+ overflow: hidden;
+ margin-top: 23rpx;
+ background: rgba(0, 0, 0, 0.03);
+ padding: 21rpx;
+}
+.comments .customer-service .u {
+ font-size: 24rpx;
+ color: #333;
+ line-height: 37.5rpx;
+}
+.comments .customer-service .c {
+ font-size: 24rpx;
+ color: #999;
+ line-height: 37.5rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.js
new file mode 100644
index 0000000000000000000000000000000000000000..3c2dc89f98263765279150e66194151c42a38f7d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.js
@@ -0,0 +1,420 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/topicCommentPost/topicCommentPost"],{
+
+/***/ 212:
+/*!*************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2FtopicCommentPost%2FtopicCommentPost"} ***!
+ \*************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _topicCommentPost = _interopRequireDefault(__webpack_require__(/*! ./pages/topicCommentPost/topicCommentPost.vue */ 213));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_topicCommentPost.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 213:
+/*!******************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue ***!
+ \******************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _topicCommentPost_vue_vue_type_template_id_97fed0f4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./topicCommentPost.vue?vue&type=template&id=97fed0f4& */ 214);
+/* harmony import */ var _topicCommentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./topicCommentPost.vue?vue&type=script&lang=js& */ 216);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _topicCommentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _topicCommentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _topicCommentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./topicCommentPost.vue?vue&type=style&index=0&lang=css& */ 218);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _topicCommentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _topicCommentPost_vue_vue_type_template_id_97fed0f4___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _topicCommentPost_vue_vue_type_template_id_97fed0f4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _topicCommentPost_vue_vue_type_template_id_97fed0f4___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/topicCommentPost/topicCommentPost.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 214:
+/*!*************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?vue&type=template&id=97fed0f4& ***!
+ \*************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_template_id_97fed0f4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicCommentPost.vue?vue&type=template&id=97fed0f4& */ 215);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_template_id_97fed0f4___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_template_id_97fed0f4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_template_id_97fed0f4___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_template_id_97fed0f4___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 215:
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?vue&type=template&id=97fed0f4& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 216:
+/*!*******************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?vue&type=script&lang=js& ***!
+ \*******************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicCommentPost.vue?vue&type=script&lang=js& */ 217);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 217:
+/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?vue&type=script&lang=js& ***!
+ \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+// 上传组件 基于https://github.com/Tencent/weui-wxss/tree/master/src/example/uploader
+var app = getApp();
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ valueId: 0,
+ topic: {
+ picUrl: '',
+ title: '',
+ subtitle: '' },
+
+ content: {
+ length: 0 },
+
+ stars: [0, 1, 2, 3, 4],
+ star: 5,
+ starText: '十分满意',
+ hasPicture: false,
+ picUrls: [],
+ files: [] };
+
+ },
+ onLoad: function onLoad(options) {
+ if (parseInt(options.type) !== 1) {
+ return;
+ }
+
+ var that = this;
+ that.setData({
+ valueId: options.valueId });
+
+ this.getTopic();
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ chooseImage: function chooseImage(e) {
+ if (this.files.length >= 5) {
+ util.showErrorToast('只能上传五张图片');
+ return false;
+ }
+
+ var that = this;
+ uni.chooseImage({
+ count: 1,
+ sizeType: ['original', 'compressed'],
+ sourceType: ['album', 'camera'],
+ success: function success(res) {
+ that.setData({
+ files: that.files.concat(res.tempFilePaths) });
+
+ that.upload(res);
+ } });
+
+ },
+
+ upload: function upload(res) {
+ var that = this;
+ var uploadTask = uni.uploadFile({
+ url: api.StorageUpload,
+ filePath: res.tempFilePaths[0],
+ name: 'file',
+ success: function success(res) {
+ var _res = JSON.parse(res.data);
+
+ if (_res.errno === 0) {
+ var url = _res.data.url;
+ that.picUrls.push(url);
+ that.setData({
+ hasPicture: true,
+ picUrls: that.picUrls });
+
+ }
+ },
+ fail: function fail(e) {
+ uni.showModal({
+ title: '错误',
+ content: '上传失败',
+ showCancel: false });
+
+ } });
+
+ uploadTask.onProgressUpdate(function (res) {
+ console.log('上传进度', res.progress);
+ console.log('已经上传的数据长度', res.totalBytesSent);
+ console.log('预期需要上传的数据总长度', res.totalBytesExpectedToSend);
+ });
+ },
+
+ previewImage: function previewImage(e) {
+ uni.previewImage({
+ current: e.currentTarget.id,
+ // 当前显示图片的http链接
+ urls: this.files // 需要预览的图片http链接列表
+ });
+ },
+
+ selectRater: function selectRater(e) {
+ var star = e.currentTarget.dataset.star + 1;
+ var starText;
+
+ if (star == 1) {
+ starText = '很差';
+ } else {
+ if (star == 2) {
+ starText = '不太满意';
+ } else {
+ if (star == 3) {
+ starText = '满意';
+ } else {
+ if (star == 4) {
+ starText = '比较满意';
+ } else {
+ starText = '十分满意';
+ }
+ }
+ }
+ }
+
+ this.setData({
+ star: star,
+ starText: starText });
+
+ },
+
+ getTopic: function getTopic() {
+ var that = this;
+ util.request(api.TopicDetail, {
+ id: that.valueId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ topic: res.data.topic });
+
+ }
+ });
+ },
+
+ onClose: function onClose() {
+ uni.navigateBack();
+ },
+
+ onPost: function onPost() {
+ var that = this;
+
+ if (!this.content) {
+ util.showErrorToast('请填写评论');
+ return false;
+ }
+
+ util.request(
+ api.CommentPost,
+ {
+ type: 1,
+ valueId: that.valueId,
+ content: that.content,
+ star: that.star,
+ hasPicture: that.hasPicture,
+ picUrls: that.picUrls },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '评论成功',
+ complete: function complete() {
+ uni.navigateBack();
+ } });
+
+ }
+ });
+ },
+
+ bindInputValue: function bindInputValue(event) {
+ var value = event.detail.value; //判断是否超过140个字符
+
+ if (value && value.length > 140) {
+ return false;
+ }
+
+ this.setData({
+ content: event.detail.value });
+
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 218:
+/*!***************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicCommentPost.vue?vue&type=style&index=0&lang=css& */ 219);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicCommentPost_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 219:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicCommentPost/topicCommentPost.vue?vue&type=style&index=0&lang=css& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[212,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/topicCommentPost/topicCommentPost.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.json
new file mode 100644
index 0000000000000000000000000000000000000000..f087497f6b46139c27456cb3b2d7509b493a7e14
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "评论",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..246fc963de4160bde4003eb2550b147e74b280ee
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.wxml
@@ -0,0 +1 @@
+{{topic.title}} {{topic.subtitle}} 评分 {{starText}} {{140-content.length}} 图片上传 {{picUrls.length+"/"+files.length}} 取消 发表
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..c769c50c2a5d1305c6e68c1f377a37405bd1a900
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicCommentPost/topicCommentPost.wxss
@@ -0,0 +1,209 @@
+page,
+.container {
+ height: 100%;
+ background: #f4f4f4;
+}
+.post-comment {
+ width: 750rpx;
+ height: auto;
+ overflow: hidden;
+ padding: 30rpx;
+ background: #fff;
+}
+.post-comment .goods {
+ display: flex;
+ align-items: center;
+ height: 199rpx;
+ margin-left: 31.25rpx;
+}
+.post-comment .goods .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+.post-comment .goods .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+.post-comment .goods .info {
+ height: 145.83rpx;
+ flex: 1;
+ padding-left: 20rpx;
+}
+.post-comment .goods .name {
+ margin-top: 30rpx;
+ display: block;
+ height: 44rpx;
+ line-height: 44rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.post-comment .goods .number {
+ display: block;
+ height: 37rpx;
+ line-height: 37rpx;
+ color: #666;
+ font-size: 25rpx;
+}
+.post-comment .goods .status {
+ width: 105rpx;
+ color: #b4282d;
+ font-size: 25rpx;
+}
+.post-comment .rater {
+ display: flex;
+ flex-direction: row;
+ height: 55rpx;
+}
+.post-comment .rater .rater-title {
+ font-size: 29rpx;
+ padding-right: 10rpx;
+}
+.post-comment .rater image {
+ padding-left: 5rpx;
+ height: 50rpx;
+ width: 50rpx;
+}
+.post-comment .rater .rater-desc {
+ font-size: 29rpx;
+ padding-left: 10rpx;
+}
+.post-comment .input-box {
+ height: 337.5rpx;
+ width: 690rpx;
+ position: relative;
+ background: #fff;
+}
+.post-comment .input-box .content {
+ position: absolute;
+ top: 0;
+ left: 0;
+ display: block;
+ background: #fff;
+ font-size: 29rpx;
+ border: 5px solid #f4f4f4;
+ height: 300rpx;
+ width: 650rpx;
+ padding: 20rpx;
+}
+.post-comment .input-box .count {
+ position: absolute;
+ bottom: 20rpx;
+ right: 20rpx;
+ display: block;
+ height: 30rpx;
+ width: 50rpx;
+ font-size: 29rpx;
+ color: #999;
+}
+.post-comment .btns {
+ height: 108rpx;
+}
+.post-comment .close {
+ float: left;
+ height: 108rpx;
+ line-height: 108rpx;
+ text-align: left;
+ color: #666;
+ padding: 0 30rpx;
+}
+.post-comment .post {
+ float: right;
+ height: 108rpx;
+ line-height: 108rpx;
+ text-align: right;
+ padding: 0 30rpx;
+}
+.weui-uploader {
+ margin-top: 50rpx;
+}
+.weui-uploader__hd {
+ display: flex;
+ padding-bottom: 10px;
+ align-items: center;
+}
+.weui-uploader__title {
+ flex: 1;
+}
+.weui-uploader__info {
+ color: #b2b2b2;
+}
+.weui-uploader__bd {
+ margin-bottom: -4px;
+ margin-right: -9px;
+ overflow: hidden;
+}
+.weui-uploader__file {
+ float: left;
+ margin-right: 9px;
+ margin-bottom: 9px;
+}
+.weui-uploader__img {
+ display: block;
+ width: 79px;
+ height: 79px;
+}
+.weui-uploader__file_status {
+ position: relative;
+}
+.weui-uploader__file_status:before {
+ content: ' ';
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ background-color: rgba(0, 0, 0, 0.5);
+}
+.weui-uploader__file-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ color: #fff;
+}
+.weui-uploader__input-box {
+ float: left;
+ position: relative;
+ margin-right: 9px;
+ margin-bottom: 9px;
+ width: 77px;
+ height: 77px;
+ border: 1px solid #d9d9d9;
+}
+.weui-uploader__input-box:after,
+.weui-uploader__input-box:before {
+ content: ' ';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ background-color: #d9d9d9;
+}
+.weui-uploader__input-box:before {
+ width: 2px;
+ height: 39.5px;
+}
+.weui-uploader__input-box:after {
+ width: 39.5px;
+ height: 2px;
+}
+.weui-uploader__input-box:active {
+ border-color: #999;
+}
+.weui-uploader__input-box:active:after,
+.weui-uploader__input-box:active:before {
+ background-color: #999;
+}
+.weui-uploader__input {
+ position: absolute;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.js
new file mode 100644
index 0000000000000000000000000000000000000000..e61277a30f15a62b9780062fce186a5069beb30c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.js
@@ -0,0 +1,388 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/topicDetail/topicDetail"],{
+
+/***/ 204:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2FtopicDetail%2FtopicDetail"} ***!
+ \***************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _topicDetail = _interopRequireDefault(__webpack_require__(/*! ./pages/topicDetail/topicDetail.vue */ 205));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_topicDetail.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 205:
+/*!********************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue ***!
+ \********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _topicDetail_vue_vue_type_template_id_2efb6a48___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./topicDetail.vue?vue&type=template&id=2efb6a48& */ 206);
+/* harmony import */ var _topicDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./topicDetail.vue?vue&type=script&lang=js& */ 208);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _topicDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _topicDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _topicDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./topicDetail.vue?vue&type=style&index=0&lang=css& */ 210);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _topicDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _topicDetail_vue_vue_type_template_id_2efb6a48___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _topicDetail_vue_vue_type_template_id_2efb6a48___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _topicDetail_vue_vue_type_template_id_2efb6a48___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/topicDetail/topicDetail.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 206:
+/*!***************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?vue&type=template&id=2efb6a48& ***!
+ \***************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_template_id_2efb6a48___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicDetail.vue?vue&type=template&id=2efb6a48& */ 207);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_template_id_2efb6a48___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_template_id_2efb6a48___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_template_id_2efb6a48___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_template_id_2efb6a48___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 207:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?vue&type=template&id=2efb6a48& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+try {
+ components = {
+ mpHtml: function() {
+ return Promise.all(/*! import() | uni_modules/mp-html/components/mp-html/mp-html */[__webpack_require__.e("common/vendor"), __webpack_require__.e("uni_modules/mp-html/components/mp-html/mp-html")]).then(__webpack_require__.bind(null, /*! @/uni_modules/mp-html/components/mp-html/mp-html.vue */ 348))
+ }
+ }
+} catch (e) {
+ if (
+ e.message.indexOf("Cannot find module") !== -1 &&
+ e.message.indexOf(".vue") !== -1
+ ) {
+ console.error(e.message)
+ console.error("1. 排查组件名称拼写是否正确")
+ console.error(
+ "2. 排查组件是否符合 easycom 规范,文档:https://uniapp.dcloud.net.cn/collocation/pages?id=easycom"
+ )
+ console.error(
+ "3. 若组件不符合 easycom 规范,需手动引入,并在 components 中注册该组件"
+ )
+ } else {
+ throw e
+ }
+}
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 208:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicDetail.vue?vue&type=script&lang=js& */ 209);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 209:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var app = getApp();
+
+var undefined;
+
+var util = __webpack_require__(/*! ../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ id: 0,
+
+ topic: {
+ id: '' },
+
+
+ topicList: [],
+ commentCount: 0,
+ commentList: [],
+ topicGoods: [],
+ collect: false,
+ userHasCollect: 0,
+ article_topicDetail: 0 };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ var that = this;
+ that.setData({
+ id: options.id });
+
+ util.request(api.TopicDetail, {
+ id: that.id }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ topic: res.data.topic,
+ topicGoods: res.data.goods,
+ userHasCollect: res.data.userHasCollect,
+ collect: res.data.userHasCollect == 1 });
+
+ //WxParse.wxParse('topicDetail', 'html', res.data.topic.content, that)
+ that.article_topicDetail = that.escape2Html(res.data.topic.content);
+ }
+ });
+ util.request(api.TopicRelated, {
+ id: that.id }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ topicList: res.data.list });
+
+ }
+ });
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ // 页面显示
+ this.getCommentList();
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getCommentList: function getCommentList() {
+ var that = this;
+ util.request(api.CommentList, {
+ valueId: that.id,
+ type: 1,
+ showType: 0,
+ page: 1,
+ limit: 5 }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ commentList: res.data.list,
+ commentCount: res.data.total });
+
+ }
+ });
+ },
+
+ //添加或是取消收藏
+ addCollectOrNot: function addCollectOrNot() {
+ var that = this;
+ util.request(
+ api.CollectAddOrDelete,
+ {
+ type: 1,
+ valueId: this.id },
+
+ 'POST').
+ then(function (res) {
+ if (that.userHasCollect == 1) {
+ that.setData({
+ collect: false,
+ userHasCollect: 0 });
+
+ } else {
+ that.setData({
+ collect: true,
+ userHasCollect: 1 });
+
+ }
+ });
+ },
+
+ postComment: function postComment() {
+ if (!app.globalData.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/topicCommentPost/topicCommentPost?valueId=' + this.id + '&type=1' });
+
+ }
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 210:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./topicDetail.vue?vue&type=style&index=0&lang=css& */ 211);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_topicDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 211:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/topicDetail/topicDetail.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[204,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/topicDetail/topicDetail.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.json
new file mode 100644
index 0000000000000000000000000000000000000000..5a670cdfc68cf198451f7d622ba4b34946b381bd
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.json
@@ -0,0 +1,6 @@
+{
+ "navigationBarTitleText": "专题详情",
+ "usingComponents": {
+ "mp-html": "/uni_modules/mp-html/components/mp-html/mp-html"
+ }
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..8cb249a1c07ccd666b2425f641efc06a3cdbda09
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.wxml
@@ -0,0 +1 @@
+专题商品 {{item.name}} {{item.brief}} {{"¥"+item.retailPrice}} 精选留言 {{item.userInfo.nickName}} {{item.addTime}} {{''+item.content+''}} 查看更多 等你来留言 专题推荐 {{item.title}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..0630f7a9dbe5ef240eca706c296daa2d10454d94
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/topicDetail/topicDetail.wxss
@@ -0,0 +1,235 @@
+.content {
+ width: 100%;
+ height: auto;
+ font-size: 0;
+}
+.content image {
+ display: inline-block;
+ width: 100%;
+}
+.comments {
+ width: 100%;
+ height: auto;
+ padding-left: 30rpx;
+ background: #fff;
+ margin-top: 20rpx;
+}
+.comments .h {
+ height: 93rpx;
+ line-height: 93rpx;
+ width: 720rpx;
+ padding-right: 30rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+.comments .h .t {
+ display: block;
+ float: left;
+ width: 50%;
+ font-size: 29rpx;
+ color: #333;
+}
+.comments .h .i {
+ display: block;
+ float: right;
+ width: 33rpx;
+ height: 33rpx;
+}
+.comments .b {
+ height: auto;
+ width: 720rpx;
+}
+.comments .item {
+ height: auto;
+ width: 720rpx;
+ overflow: hidden;
+ border-bottom: 1px solid #d9d9d9;
+}
+.comments .info {
+ height: 127rpx;
+ width: 100%;
+ padding: 33rpx 0 27rpx 0;
+}
+.comments .user {
+ float: left;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ font-size: 0;
+}
+.comments .user .avatar {
+ display: block;
+ float: left;
+ width: 67rpx;
+ height: 67rpx;
+ margin-right: 17rpx;
+ border-radius: 50%;
+}
+.comments .user .nickname {
+ display: block;
+ width: auto;
+ float: left;
+ height: 66rpx;
+ overflow: hidden;
+ font-size: 29rpx;
+ line-height: 66rpx;
+}
+.comments .time {
+ display: block;
+ float: right;
+ width: auto;
+ height: 67rpx;
+ line-height: 67rpx;
+ color: #7f7f7f;
+ font-size: 25rpx;
+ margin-right: 30rpx;
+}
+.comments .comment {
+ width: 720rpx;
+ padding-right: 30rpx;
+ line-height: 45.8rpx;
+ margin-bottom: 30rpx;
+ font-size: 29rpx;
+ color: #333;
+}
+.comments .load {
+ width: 720rpx;
+ height: 108rpx;
+ line-height: 108rpx;
+ text-align: center;
+ font-size: 38.5rpx;
+}
+.no-comments {
+ height: 297rpx;
+}
+.no-comments .txt {
+ height: 43rpx;
+ line-height: 43rpx;
+ display: block;
+ width: 100%;
+ text-align: center;
+ font-size: 29rpx;
+ color: #7f7f7f;
+ padding-top: 150rpx;
+}
+.sv-goods {
+ width: 100%;
+ height: auto;
+ padding-left: 30rpx;
+ background: #fff;
+ margin-top: 20rpx;
+}
+.topic-goods .h {
+ height: 93rpx;
+ line-height: 93rpx;
+ width: 720rpx;
+ padding-right: 30rpx;
+ border-bottom: 1px solid #d9d9d9;
+}
+.topic-goods .h .i {
+ display: block;
+ float: right;
+ width: 33rpx;
+ height: 33rpx;
+}
+.topic-goods .h .t {
+ display: block;
+ float: left;
+ width: 50%;
+ font-size: 29rpx;
+ color: #333;
+}
+.topic-goods .b .item {
+ border-top: 1px solid #d9d9d9;
+ margin: 0 20rpx;
+ height: 244rpx;
+ width: 710rpx;
+}
+.topic-goods .b .img {
+ margin-top: 12rpx;
+ margin-right: 12rpx;
+ float: left;
+ width: 220rpx;
+ height: 220rpx;
+}
+.topic-goods .b .right {
+ float: left;
+ height: 244rpx;
+ width: 476rpx;
+ display: flex;
+ flex-flow: row nowrap;
+}
+.topic-goods .b .text {
+ display: flex;
+ flex-wrap: nowrap;
+ flex-direction: column;
+ justify-content: center;
+ overflow: hidden;
+ height: 244rpx;
+ width: 476rpx;
+}
+.topic-goods .b .name {
+ float: left;
+ width: 330rpx;
+ display: block;
+ color: #333;
+ line-height: 50rpx;
+ font-size: 30rpx;
+}
+.topic-goods .b .desc {
+ width: 476rpx;
+ display: block;
+ color: #999;
+ line-height: 50rpx;
+ font-size: 25rpx;
+}
+.topic-goods .b .price {
+ width: 476rpx;
+ display: flex;
+ color: #b4282d;
+ line-height: 50rpx;
+ font-size: 33rpx;
+}
+.rec-box {
+ width: 690rpx;
+ height: auto;
+ margin: 0 30rpx;
+}
+.rec-box .h {
+ position: relative;
+ width: 690rpx;
+ height: 96rpx;
+ /*border-bottom: 1px solid #d0d0d0;*/
+ margin-bottom: 32rpx;
+}
+.rec-box .h .txt {
+ display: inline-block;
+ position: absolute;
+ background: #f4f4f4;
+ top: 59rpx;
+ left: 200rpx;
+ width: 290rpx;
+ height: 45rpx;
+ line-height: 45rpx;
+ font-size: 30rpx;
+ color: #999;
+ text-align: center;
+}
+.rec-box .b .item {
+ width: 690rpx;
+ height: 397rpx;
+ padding: 24rpx 24rpx 30rpx 24rpx;
+ background: #fff;
+ margin-bottom: 30rpx;
+}
+.rec-box .b .item .img {
+ height: 278rpx;
+ width: 642rpx;
+}
+.rec-box .b .item .title {
+ display: block;
+ margin-top: 30rpx;
+ height: 30rpx;
+ width: 642rpx;
+ font-size: 28rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.js
new file mode 100644
index 0000000000000000000000000000000000000000..62093227cacce4d0e7b5ce044d80f45adbc93b3a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.js
@@ -0,0 +1,292 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/address/address"],{
+
+/***/ 58:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2Faddress%2Faddress"} ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _address = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/address/address.vue */ 59));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_address.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 59:
+/*!********************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue ***!
+ \********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _address_vue_vue_type_template_id_2fd98d2a___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./address.vue?vue&type=template&id=2fd98d2a& */ 60);
+/* harmony import */ var _address_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./address.vue?vue&type=script&lang=js& */ 62);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _address_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _address_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _address_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./address.vue?vue&type=style&index=0&lang=css& */ 64);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _address_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _address_vue_vue_type_template_id_2fd98d2a___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _address_vue_vue_type_template_id_2fd98d2a___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _address_vue_vue_type_template_id_2fd98d2a___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/address/address.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 60:
+/*!***************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?vue&type=template&id=2fd98d2a& ***!
+ \***************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_template_id_2fd98d2a___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./address.vue?vue&type=template&id=2fd98d2a& */ 61);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_template_id_2fd98d2a___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_template_id_2fd98d2a___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_template_id_2fd98d2a___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_template_id_2fd98d2a___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 61:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?vue&type=template&id=2fd98d2a& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 62:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./address.vue?vue&type=script&lang=js& */ 63);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 63:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ addressList: [],
+ total: 0 };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ this.getAddressList();
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getAddressList: function getAddressList() {
+ var that = this;
+ util.request(api.AddressList).then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ addressList: res.data.list,
+ total: res.data.total });
+
+ }
+ });
+ },
+
+ addressAddOrUpdate: function addressAddOrUpdate(event) {
+ console.log(event); //返回之前,先取出上一页对象,并设置addressId
+
+ var pages = getCurrentPages();
+ var prevPage = pages[pages.length - 2];
+
+ if (prevPage.route == 'pages/checkout/checkout') {
+ try {
+ uni.setStorageSync('addressId', event.currentTarget.dataset.addressId);
+ } catch (e) {}
+
+ var addressId = event.currentTarget.dataset.addressId;
+
+ if (addressId && addressId != 0) {
+ uni.navigateBack();
+ } else {
+ uni.navigateTo({
+ url: '/pages/ucenter/addressAdd/addressAdd?id=' + addressId });
+
+ }
+ } else {
+ uni.navigateTo({
+ url: '/pages/ucenter/addressAdd/addressAdd?id=' + event.currentTarget.dataset.addressId });
+
+ }
+ },
+
+ deleteAddress: function deleteAddress(event) {
+ console.log(event.target);
+ var that = this;
+ uni.showModal({
+ title: '',
+ content: '确定要删除地址?',
+ success: function success(res) {
+ if (res.confirm) {
+ var addressId = event.target.dataset.addressId;
+ util.request(
+ api.AddressDelete,
+ {
+ id: addressId },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ that.getAddressList();
+ uni.removeStorage({
+ key: 'addressId',
+ success: function success(res) {} });
+
+ }
+ });
+ console.log('用户点击确定');
+ }
+ } });
+
+ return false;
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 64:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./address.vue?vue&type=style&index=0&lang=css& */ 65);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_address_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 65:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/address/address.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[58,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/address/address.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.json
new file mode 100644
index 0000000000000000000000000000000000000000..43bd3f466c89899cdf5231d11386c00201dc5b51
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "地址管理",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f4e43679a68589a5f7df5562bad4a46b0c5dadbd
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.wxml
@@ -0,0 +1 @@
+{{item.name}} 默认 {{item.tel}} {{item.addressDetail}} 收货地址还没有~~~ 新建
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..db4877d662abcf3b586c28b589dc6b68cbe33b1b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/address/address.wxss
@@ -0,0 +1,119 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+.container {
+ height: 100%;
+ width: 100%;
+}
+.address-list {
+ padding-left: 31.25rpx;
+ background: #fff;
+ background-size: auto 10.5rpx;
+ margin-bottom: 90rpx;
+}
+.address-list .item {
+ height: 156.55rpx;
+ align-items: center;
+ display: flex;
+ border-bottom: 1rpx solid #dcd9d9;
+}
+.address-list .l {
+ width: 125rpx;
+ height: 80rpx;
+ overflow: hidden;
+}
+.address-list .name {
+ width: 125rpx;
+ height: 43rpx;
+ font-size: 29rpx;
+ color: #333;
+ margin-bottom: 5.2rpx;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
+}
+.address-list .default {
+ width: 62.5rpx;
+ height: 33rpx;
+ line-height: 28rpx;
+ text-align: center;
+ font-size: 20rpx;
+ color: #b4282d;
+ border: 1rpx solid #b4282d;
+ visibility: visible;
+}
+.address-list .c {
+ flex: 1;
+ height: auto;
+ overflow: hidden;
+}
+.address-list .mobile {
+ height: 29rpx;
+ font-size: 29rpx;
+ line-height: 29rpx;
+ overflow: hidden;
+ color: #333;
+ margin-bottom: 6.25rpx;
+}
+.address-list .address {
+ height: 37rpx;
+ font-size: 25rpx;
+ line-height: 37rpx;
+ overflow: hidden;
+ color: #666;
+}
+.address-list .r {
+ width: 52rpx;
+ height: auto;
+ overflow: hidden;
+ margin-right: 16.5rpx;
+}
+.address-list .del {
+ display: block;
+ width: 52rpx;
+ height: 52rpx;
+}
+.add-address {
+ border: none;
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 90%;
+ height: 90rpx;
+ line-height: 98rpx;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ border-radius: 0;
+ padding: 0;
+ margin: 0;
+ margin-left: 5%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ font-size: 25rpx;
+ color: #f4f4f4;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+.empty-view {
+ height: 100%;
+ width: 100%;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+}
+.empty-view .text {
+ width: auto;
+ font-size: 28rpx;
+ line-height: 35rpx;
+ color: #999;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.js
new file mode 100644
index 0000000000000000000000000000000000000000..6bf56f4b5c5ba848fe0a3e5265c7333b9bb297f2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.js
@@ -0,0 +1,605 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/addressAdd/addressAdd"],{
+
+/***/ 66:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2FaddressAdd%2FaddressAdd"} ***!
+ \***********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _addressAdd = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/addressAdd/addressAdd.vue */ 67));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_addressAdd.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 67:
+/*!**************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue ***!
+ \**************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _addressAdd_vue_vue_type_template_id_0f9ac161___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./addressAdd.vue?vue&type=template&id=0f9ac161& */ 68);
+/* harmony import */ var _addressAdd_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./addressAdd.vue?vue&type=script&lang=js& */ 70);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _addressAdd_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _addressAdd_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _addressAdd_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./addressAdd.vue?vue&type=style&index=0&lang=css& */ 74);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _addressAdd_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _addressAdd_vue_vue_type_template_id_0f9ac161___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _addressAdd_vue_vue_type_template_id_0f9ac161___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _addressAdd_vue_vue_type_template_id_0f9ac161___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/addressAdd/addressAdd.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 68:
+/*!*********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?vue&type=template&id=0f9ac161& ***!
+ \*********************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_template_id_0f9ac161___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./addressAdd.vue?vue&type=template&id=0f9ac161& */ 69);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_template_id_0f9ac161___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_template_id_0f9ac161___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_template_id_0f9ac161___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_template_id_0f9ac161___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 69:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?vue&type=template&id=0f9ac161& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 70:
+/*!***************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?vue&type=script&lang=js& ***!
+ \***************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./addressAdd.vue?vue&type=script&lang=js& */ 71);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 71:
+/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?vue&type=script&lang=js& ***!
+ \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var check = __webpack_require__(/*! ../../../utils/check.js */ 72);
+
+var area = __webpack_require__(/*! ../../../utils/area.js */ 73);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ address: {
+ id: 0,
+ areaCode: 0,
+ address: '',
+ name: '',
+ tel: '',
+ isDefault: 0,
+ province: '',
+ city: '',
+ county: '',
+ addressDetail: '' },
+
+ addressId: 0,
+ openSelectRegion: false,
+ selectRegionList: [
+ {
+ code: 0,
+ name: '省份' },
+
+ {
+ code: 0,
+ name: '城市' },
+
+ {
+ code: 0,
+ name: '区县' }],
+
+
+ regionType: 1,
+ regionList: [],
+ selectRegionDone: false };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ console.log(options);
+
+ if (options.id && options.id != 0) {
+ this.setData({
+ addressId: options.id });
+
+ this.getAddressDetail();
+ }
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ bindinputMobile: function bindinputMobile(event) {
+ var address = this.address;
+ address.tel = event.detail.value;
+ this.setData({
+ address: address });
+
+ },
+
+ bindinputName: function bindinputName(event) {
+ var address = this.address;
+ address.name = event.detail.value;
+ this.setData({
+ address: address });
+
+ },
+
+ bindinputAddress: function bindinputAddress(event) {
+ var address = this.address;
+ address.addressDetail = event.detail.value;
+ this.setData({
+ address: address });
+
+ },
+
+ bindIsDefault: function bindIsDefault() {
+ var address = this.address;
+ address.isDefault = !address.isDefault;
+ this.setData({
+ address: address });
+
+ },
+
+ getAddressDetail: function getAddressDetail() {
+ var that = this;
+ util.request(api.AddressDetail, {
+ id: that.addressId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ if (res.data) {
+ that.setData({
+ address: res.data });
+
+ }
+ }
+ });
+ },
+
+ setRegionDoneStatus: function setRegionDoneStatus() {
+ var that = this;
+ var doneStatus = that.selectRegionList.every(function (item) {
+ return item.code != 0;
+ });
+ that.setData({
+ selectRegionDone: doneStatus });
+
+ },
+
+ chooseRegion: function chooseRegion() {
+ var that = this;
+ this.setData({
+ openSelectRegion: !this.openSelectRegion });
+ //设置区域选择数据
+
+ var address = this.address;
+
+ if (address.areaCode > 0) {
+ var selectRegionList = this.selectRegionList;
+ selectRegionList[0].code = address.areaCode.slice(0, 2) + '0000';
+ selectRegionList[0].name = address.province;
+ selectRegionList[1].code = address.areaCode.slice(0, 4) + '00';
+ selectRegionList[1].name = address.city;
+ selectRegionList[2].code = address.areaCode;
+ selectRegionList[2].name = address.county;
+ var regionList = area.getList('county', address.areaCode.slice(0, 4));
+ regionList = regionList.map(function (item) {
+ //标记已选择的
+ if (address.areaCode === item.code) {
+ item.selected = true;
+ } else {
+ item.selected = false;
+ }
+
+ return item;
+ });
+ this.setData({
+ selectRegionList: selectRegionList,
+ regionType: 3,
+ regionList: regionList });
+
+ } else {
+ var _selectRegionList = [
+ {
+ code: 0,
+ name: '省份' },
+
+ {
+ code: 0,
+ name: '城市' },
+
+ {
+ code: 0,
+ name: '区县' }];
+
+
+ this.setData({
+ selectRegionList: _selectRegionList,
+ regionType: 1,
+ regionList: area.getList('province') });
+
+ }
+
+ this.setRegionDoneStatus();
+ },
+
+ selectRegionType: function selectRegionType(event) {
+ var that = this;
+ var regionTypeIndex = event.target.dataset.regionTypeIndex;
+ var selectRegionList = that.selectRegionList; //判断是否可点击
+
+ if (regionTypeIndex + 1 == this.regionType || regionTypeIndex - 1 >= 0 && selectRegionList[regionTypeIndex - 1].code <= 0) {
+ return false;
+ }
+
+ var selectRegionItem = selectRegionList[regionTypeIndex];
+ var code = selectRegionItem.code;
+ var regionList;
+
+ if (regionTypeIndex === 0) {
+ // 点击省级,取省级
+ regionList = area.getList('province');
+ } else {
+ if (regionTypeIndex === 1) {
+ // 点击市级,取市级
+ regionList = area.getList('city', code.slice(0, 2));
+ } else {
+ // 点击县级,取县级
+ regionList = area.getList('county', code.slice(0, 4));
+ }
+ }
+
+ regionList = regionList.map(function (item) {
+ //标记已选择的
+ if (that.selectRegionList[regionTypeIndex].code == item.code) {
+ item.selected = true;
+ } else {
+ item.selected = false;
+ }
+
+ return item;
+ });
+ this.setData({
+ regionList: regionList,
+ regionType: regionTypeIndex + 1 });
+
+ this.setRegionDoneStatus();
+ },
+
+ selectRegion: function selectRegion(event) {
+ var that = this;
+ var regionIndex = event.target.dataset.regionIndex;
+ var regionItem = this.regionList[regionIndex];
+ var regionType = this.regionType;
+ var selectRegionList = this.selectRegionList;
+ selectRegionList[regionType - 1] = regionItem;
+
+ if (regionType == 3) {
+ this.setData({
+ selectRegionList: selectRegionList });
+
+ var _regionList = that.regionList.map(function (item) {
+ //标记已选择的
+ if (that.selectRegionList[that.regionType - 1].code == item.code) {
+ item.selected = true;
+ } else {
+ item.selected = false;
+ }
+
+ return item;
+ });
+ this.setData({
+ regionList: _regionList });
+
+ this.setRegionDoneStatus();
+ return;
+ } //重置下级区域为空
+
+ selectRegionList.map(function (item, index) {
+ if (index > regionType - 1) {
+ item.code = 0;
+
+ if (index == 1) {
+ item.name = '城市';
+ } else {
+ item.name = '区县';
+ }
+ }
+
+ return item;
+ });
+ this.setData({
+ selectRegionList: selectRegionList,
+ regionType: regionType + 1 });
+
+ var code = regionItem.code;
+ var regionList = [];
+
+ if (regionType === 1) {
+ // 点击省级,取市级
+ regionList = area.getList('city', code.slice(0, 2));
+ } else {
+ // 点击市级,取县级
+ regionList = area.getList('county', code.slice(0, 4));
+ }
+
+ this.setData({
+ regionList: regionList });
+
+ this.setRegionDoneStatus();
+ },
+
+ doneSelectRegion: function doneSelectRegion() {
+ if (this.selectRegionDone === false) {
+ return false;
+ }
+
+ var address = this.address;
+ var selectRegionList = this.selectRegionList;
+ address.province = selectRegionList[0].name;
+ address.city = selectRegionList[1].name;
+ address.county = selectRegionList[2].name;
+ address.areaCode = selectRegionList[2].code;
+ this.setData({
+ address: address,
+ openSelectRegion: false });
+
+ },
+
+ cancelSelectRegion: function cancelSelectRegion() {
+ this.setData({
+ openSelectRegion: false,
+ regionType: this.regionDoneStatus ? 3 : 1 });
+
+ },
+
+ cancelAddress: function cancelAddress() {
+ uni.navigateBack();
+ },
+
+ saveAddress: function saveAddress() {
+ console.log(this.address);
+ var address = this.address;
+
+ if (address.name == '') {
+ util.showErrorToast('请输入姓名');
+ return false;
+ }
+
+ if (address.tel == '') {
+ util.showErrorToast('请输入手机号码');
+ return false;
+ }
+
+ if (address.areaCode == 0) {
+ util.showErrorToast('请输入省市区');
+ return false;
+ }
+
+ if (address.addressDetail == '') {
+ util.showErrorToast('请输入详细地址');
+ return false;
+ }
+
+ var that = this;
+ util.request(
+ api.AddressSave,
+ {
+ id: address.id,
+ name: address.name,
+ tel: address.tel,
+ province: address.province,
+ city: address.city,
+ county: address.county,
+ areaCode: address.areaCode,
+ addressDetail: address.addressDetail,
+ isDefault: address.isDefault },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ //返回之前,先取出上一页对象,并设置addressId
+ var pages = getCurrentPages();
+ var prevPage = pages[pages.length - 2];
+ console.log(prevPage);
+
+ if (prevPage.route == 'pages/checkout/checkout') {
+ prevPage.setData({
+ addressId: res.data });
+
+
+ try {
+ uni.setStorageSync('addressId', res.data);
+ } catch (e) {}
+
+ console.log('set address');
+ }
+
+ uni.navigateBack();
+ }
+ });
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 74:
+/*!***********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./addressAdd.vue?vue&type=style&index=0&lang=css& */ 75);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_addressAdd_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 75:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/addressAdd/addressAdd.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[66,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/addressAdd/addressAdd.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.json
new file mode 100644
index 0000000000000000000000000000000000000000..2f5decb484f187ab7ceefa756c2a4b6f87aa479d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "编辑地址",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..0105f242f2c5d7ba37afeb9114a3c19bb16a9382
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.wxml
@@ -0,0 +1 @@
+设为默认地址 {{''+item.name+''}} 确定 {{''+item.name+''}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..a782844063a3a07ff92ae83690a689f79627e262
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/addressAdd/addressAdd.wxss
@@ -0,0 +1,142 @@
+page {
+ height: 100%;
+ background: #f4f4f4;
+}
+.add-address .add-form {
+ background: #fff;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+}
+.add-address .form-item {
+ height: 116rpx;
+ padding-left: 31.25rpx;
+ border-bottom: 1px solid #d9d9d9;
+ display: flex;
+ align-items: center;
+ padding-right: 31.25rpx;
+}
+.add-address .input {
+ flex: 1;
+ height: 44rpx;
+ line-height: 44rpx;
+ overflow: hidden;
+}
+.add-address .form-default {
+ border-bottom: 1px solid #d9d9d9;
+ height: 96rpx;
+ background: #fff;
+ padding-top: 28rpx;
+ font-size: 28rpx;
+ padding-left: 31.25rpx;
+}
+.add-address .form-default .van-checkbox .van-icon {
+ color: #fff;
+}
+.add-address .btns {
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ overflow: hidden;
+ display: flex;
+ height: 100rpx;
+ width: 100%;
+}
+.add-address .cannel,
+.add-address .save {
+ flex: 1;
+ height: 100rpx;
+ text-align: center;
+ line-height: 100rpx;
+ font-size: 28rpx;
+ color: #fff;
+ border: none;
+ border-radius: 0;
+}
+.add-address .cannel {
+ background: #333;
+}
+.add-address .save {
+ background: #b4282d;
+}
+.region-select {
+ width: 100%;
+ height: 600rpx;
+ background: #fff;
+ position: fixed;
+ z-index: 10;
+ left: 0;
+ bottom: 0;
+}
+.region-select .hd {
+ height: 108rpx;
+ width: 100%;
+ border-bottom: 1px solid #f4f4f4;
+ padding: 46rpx 30rpx 0 30rpx;
+}
+.region-select .region-selected {
+ float: left;
+ height: 60rpx;
+ display: flex;
+}
+.region-select .region-selected .item {
+ max-width: 140rpx;
+ margin-right: 30rpx;
+ text-align: left;
+ line-height: 60rpx;
+ height: 100%;
+ color: #333;
+ font-size: 28rpx;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+.region-select .region-selected .item.disabled {
+ color: #999;
+}
+.region-select .region-selected .item.selected {
+ color: #b4282d;
+}
+.region-select .done {
+ float: right;
+ height: 60rpx;
+ width: 60rpx;
+ border: none;
+ background: #fff;
+ line-height: 60rpx;
+ text-align: center;
+ color: #333;
+ font-size: 28rpx;
+}
+.region-select .done.disabled {
+ color: #999;
+}
+.region-select .bd {
+ height: 492rpx;
+ width: 100%;
+ padding: 0 30rpx;
+}
+.region-select .region-list {
+ height: 492rpx;
+}
+.region-select .region-list .item {
+ width: 100%;
+ height: 104rpx;
+ line-height: 104rpx;
+ text-align: left;
+ color: #333;
+ font-size: 28rpx;
+}
+.region-select .region-list .item.selected {
+ color: #b4282d;
+}
+.bg-mask {
+ height: 100%;
+ width: 100%;
+ background: rgba(0, 0, 0, 0.4);
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 8;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.js
new file mode 100644
index 0000000000000000000000000000000000000000..01f44aaaef8a16b69a2f2b0faff9eb9c1ad72926
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.js
@@ -0,0 +1,410 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/aftersale/aftersale"],{
+
+/***/ 324:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2Faftersale%2Faftersale"} ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _aftersale = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/aftersale/aftersale.vue */ 325));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_aftersale.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 325:
+/*!************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue ***!
+ \************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _aftersale_vue_vue_type_template_id_47d9f1c9___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./aftersale.vue?vue&type=template&id=47d9f1c9& */ 326);
+/* harmony import */ var _aftersale_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./aftersale.vue?vue&type=script&lang=js& */ 328);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _aftersale_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _aftersale_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _aftersale_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./aftersale.vue?vue&type=style&index=0&lang=css& */ 330);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _aftersale_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _aftersale_vue_vue_type_template_id_47d9f1c9___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _aftersale_vue_vue_type_template_id_47d9f1c9___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _aftersale_vue_vue_type_template_id_47d9f1c9___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/aftersale/aftersale.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 326:
+/*!*******************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?vue&type=template&id=47d9f1c9& ***!
+ \*******************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_template_id_47d9f1c9___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersale.vue?vue&type=template&id=47d9f1c9& */ 327);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_template_id_47d9f1c9___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_template_id_47d9f1c9___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_template_id_47d9f1c9___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_template_id_47d9f1c9___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 327:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?vue&type=template&id=47d9f1c9& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 328:
+/*!*************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?vue&type=script&lang=js& ***!
+ \*************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersale.vue?vue&type=script&lang=js& */ 329);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 329:
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?vue&type=script&lang=js& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;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 _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;} //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ orderId: 0,
+
+ orderInfo: {
+ goodsPrice: '',
+ freightPrice: '',
+ couponPrice: '',
+ actualPrice: '' },
+
+
+ orderGoods: [],
+
+ aftersale: {
+ pictures: [],
+ orderId: '',
+ amount: '',
+ comment: '',
+ reason: '',
+ type: '',
+ typeDesc: '' },
+
+
+ columns: ['未收货退款', '不退货退款', '退货退款'],
+ contentLength: 0,
+ fileList: [],
+ showPicker: false };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.setData({
+ orderId: options.id });
+
+ this.getOrderDetail();
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getOrderDetail: function getOrderDetail() {
+ uni.showLoading({
+ title: '加载中' });
+
+ setTimeout(function () {
+ uni.hideLoading();
+ }, 2000);
+ var that = this;
+ util.request(api.OrderDetail, {
+ orderId: that.orderId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ console.log(res.data);
+ that.setData({
+ orderInfo: res.data.orderInfo,
+ orderGoods: res.data.orderGoods,
+ 'aftersale.orderId': that.orderId,
+ 'aftersale.amount': res.data.orderInfo.actualPrice - res.data.orderInfo.freightPrice });
+
+ }
+
+ uni.hideLoading();
+ });
+ },
+
+ deleteImage: function deleteImage(event) {var _this$fileList =
+ this.fileList,fileList = _this$fileList === void 0 ? [] : _this$fileList;
+ fileList.splice(event.detail.index, 1);
+ this.setData({
+ fileList: fileList });
+
+ },
+
+ afterRead: function afterRead(event) {var
+ file = event.detail.file;
+ var that = this;
+ var uploadTask = uni.uploadFile({
+ url: api.StorageUpload,
+ filePath: file.path,
+ name: 'file',
+ success: function success(res) {
+ var _res = JSON.parse(res.data);
+
+ if (_res.errno === 0) {
+ var url = _res.data.url;
+ that.aftersale.pictures.push(url);var _that$fileList =
+ that.fileList,fileList = _that$fileList === void 0 ? [] : _that$fileList;
+ fileList.push(_objectSpread(_objectSpread({}, file), {}, { url: url }));
+ that.setData({
+ fileList: fileList });
+
+ }
+ },
+ fail: function fail(e) {
+ uni.showModal({
+ title: '错误',
+ content: '上传失败',
+ showCancel: false });
+
+ } });
+
+ },
+
+ previewImage: function previewImage(e) {
+ uni.previewImage({
+ current: e.currentTarget.id,
+ // 当前显示图片的http链接
+ urls: this.files // 需要预览的图片http链接列表
+ });
+ },
+
+ contentInput: function contentInput(e) {
+ this.setData({
+ contentLength: e.detail.cursor,
+ 'aftersale.comment': e.detail.value });
+
+ },
+
+ onReasonChange: function onReasonChange(e) {
+ this.setData({
+ 'aftersale.reason': e.detail });
+
+ },
+
+ showTypePicker: function showTypePicker() {
+ this.setData({
+ showPicker: true });
+
+ },
+
+ onCancel: function onCancel() {
+ this.setData({
+ showPicker: false });
+
+ },
+
+ onConfirm: function onConfirm(event) {
+ this.setData({
+ 'aftersale.type': event.detail.index,
+ 'aftersale.typeDesc': event.detail.value,
+ showPicker: false });
+
+ },
+
+ submit: function submit() {
+ var that = this;
+
+ if (that.aftersale.type == undefined) {
+ util.showErrorToast('请选择退款类型');
+ return false;
+ }
+
+ if (that.reason == '') {
+ util.showErrorToast('请输入退款原因');
+ return false;
+ }
+
+ uni.showLoading({
+ title: '提交中...',
+ mask: true,
+ success: function success() {} });
+
+ util.request(api.AftersaleSubmit, that.aftersale, 'POST').then(function (res) {
+ uni.hideLoading();
+
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '申请售后成功',
+ icon: 'success',
+ duration: 2000,
+ complete: function complete() {
+ uni.switchTab({
+ url: '/pages/ucenter/index/index' });
+
+ } });
+
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 330:
+/*!*********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersale.vue?vue&type=style&index=0&lang=css& */ 331);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersale_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 331:
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersale/aftersale.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[324,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/aftersale/aftersale.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.json
new file mode 100644
index 0000000000000000000000000000000000000000..9c4b6f65762bc6d45f5541ca57b40249c77ed49b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "售后",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ba147c7422cb6835a89b9db43676a1211a07b580
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.wxml
@@ -0,0 +1 @@
+退款商品 {{item.goodsName}} {{"x"+item.number}} {{item.specifications}} {{"¥"+item.price}} 申请售后
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..c3ed89058cd2dc47ce3d9f265cc0fdeade373655
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersale/aftersale.wxss
@@ -0,0 +1,90 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+.order-goods {
+ margin-top: 20rpx;
+ background: #fff;
+}
+.order-goods .h {
+ height: 93.75rpx;
+ line-height: 93.75rpx;
+ margin-left: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ padding-right: 31.25rpx;
+}
+.order-goods .h .label {
+ float: left;
+ font-size: 30rpx;
+ color: #333;
+}
+.order-goods .h .status {
+ float: right;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+.order-goods .item {
+ display: flex;
+ align-items: center;
+ height: 192rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.order-goods .item:last-child {
+ border-bottom: none;
+}
+.order-goods .item .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+.order-goods .item .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+.order-goods .item .info {
+ flex: 1;
+ height: 145.83rpx;
+ margin-left: 20rpx;
+}
+.order-goods .item .t {
+ margin-top: 8rpx;
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10.5rpx;
+}
+.order-goods .item .t .name {
+ display: block;
+ float: left;
+ height: 33rpx;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order-goods .item .t .number {
+ display: block;
+ float: right;
+ height: 33rpx;
+ text-align: right;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order-goods .item .attr {
+ height: 29rpx;
+ line-height: 29rpx;
+ color: #666;
+ margin-bottom: 25rpx;
+ font-size: 25rpx;
+}
+.order-goods .item .price {
+ display: block;
+ float: left;
+ height: 30rpx;
+ line-height: 30rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.js
new file mode 100644
index 0000000000000000000000000000000000000000..9eaac322c0fa30d07dd62cf30958dc32553459de
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.js
@@ -0,0 +1,290 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/aftersaleDetail/aftersaleDetail"],{
+
+/***/ 340:
+/*!*********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2FaftersaleDetail%2FaftersaleDetail"} ***!
+ \*********************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _aftersaleDetail = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/aftersaleDetail/aftersaleDetail.vue */ 341));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_aftersaleDetail.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 341:
+/*!************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue ***!
+ \************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _aftersaleDetail_vue_vue_type_template_id_d8a8b5aa___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./aftersaleDetail.vue?vue&type=template&id=d8a8b5aa& */ 342);
+/* harmony import */ var _aftersaleDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./aftersaleDetail.vue?vue&type=script&lang=js& */ 344);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _aftersaleDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _aftersaleDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _aftersaleDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./aftersaleDetail.vue?vue&type=style&index=0&lang=css& */ 346);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _aftersaleDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _aftersaleDetail_vue_vue_type_template_id_d8a8b5aa___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _aftersaleDetail_vue_vue_type_template_id_d8a8b5aa___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _aftersaleDetail_vue_vue_type_template_id_d8a8b5aa___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/aftersaleDetail/aftersaleDetail.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 342:
+/*!*******************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?vue&type=template&id=d8a8b5aa& ***!
+ \*******************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_template_id_d8a8b5aa___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleDetail.vue?vue&type=template&id=d8a8b5aa& */ 343);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_template_id_d8a8b5aa___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_template_id_d8a8b5aa___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_template_id_d8a8b5aa___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_template_id_d8a8b5aa___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 343:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?vue&type=template&id=d8a8b5aa& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 344:
+/*!*************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?vue&type=script&lang=js& ***!
+ \*************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleDetail.vue?vue&type=script&lang=js& */ 345);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 345:
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?vue&type=script&lang=js& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ orderId: 0,
+ order: {
+ goodsPrice: '',
+ freightPrice: '',
+ couponPrice: '',
+ actualPrice: '' },
+
+ orderGoods: [],
+ aftersale: {
+ status: '',
+ addTime: '',
+ aftersaleSn: '',
+ type: '',
+ reason: '',
+ amount: '',
+ comment: '' },
+
+ statusColumns: ['未申请', '已申请,待审核', '审核通过,待退款', '退款成功', '审核不通过,已拒绝'],
+ typeColumns: ['未收货退款', '不退货退款', '退货退款'],
+ fileList: [] };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.setData({
+ orderId: options.id });
+
+ this.getAftersaleDetail();
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getAftersaleDetail: function getAftersaleDetail() {
+ uni.showLoading({
+ title: '加载中' });
+
+ setTimeout(function () {
+ uni.hideLoading();
+ }, 2000);
+ var that = this;
+ util.request(api.AftersaleDetail, {
+ orderId: that.orderId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ var _fileList = [];
+ res.data.aftersale.pictures.forEach(function (v) {
+ _fileList.push({
+ url: v });
+
+ });
+ that.setData({
+ order: res.data.order,
+ orderGoods: res.data.orderGoods,
+ aftersale: res.data.aftersale,
+ fileList: _fileList });
+
+ }
+
+ uni.hideLoading();
+ });
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 346:
+/*!*********************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleDetail.vue?vue&type=style&index=0&lang=css& */ 347);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 347:
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleDetail/aftersaleDetail.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[340,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.json
new file mode 100644
index 0000000000000000000000000000000000000000..6bd69f91c24f183709635609b31ecf892fb5bf88
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "售后详情",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..5854e1b4de1b712857f5a857d9fdb65758494a59
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.wxml
@@ -0,0 +1 @@
+退款商品 {{item.goodsName}} {{"x"+item.number}} {{item.specifications}} {{"¥"+item.price}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..70bf94a0f0e05d67ee74074f78b319e819c96d82
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleDetail/aftersaleDetail.wxss
@@ -0,0 +1,163 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+.order-goods {
+ margin-top: 20rpx;
+ background: #fff;
+}
+.order-goods .h {
+ height: 93.75rpx;
+ line-height: 93.75rpx;
+ margin-left: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ padding-right: 31.25rpx;
+}
+.order-goods .h .label {
+ float: left;
+ font-size: 30rpx;
+ color: #333;
+}
+.order-goods .h .status {
+ float: right;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+.order-goods .item {
+ display: flex;
+ align-items: center;
+ height: 192rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.order-goods .item:last-child {
+ border-bottom: none;
+}
+.order-goods .item .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+.order-goods .item .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+.order-goods .item .info {
+ flex: 1;
+ height: 145.83rpx;
+ margin-left: 20rpx;
+}
+.order-goods .item .t {
+ margin-top: 8rpx;
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10.5rpx;
+}
+.order-goods .item .t .name {
+ display: block;
+ float: left;
+ height: 33rpx;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order-goods .item .t .number {
+ display: block;
+ float: right;
+ height: 33rpx;
+ text-align: right;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order-goods .item .attr {
+ height: 29rpx;
+ line-height: 29rpx;
+ color: #666;
+ margin-bottom: 25rpx;
+ font-size: 25rpx;
+}
+.order-goods .item .price {
+ display: block;
+ float: left;
+ height: 30rpx;
+ line-height: 30rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.fb-body {
+ width: 100%;
+ background: #fff;
+ height: 300rpx;
+ padding: 30rpx;
+}
+.fb-body .content {
+ width: 100%;
+ height: 200rpx;
+ color: #333;
+}
+.weui-uploader__files {
+ width: 100%;
+}
+.weui-uploader__file {
+ float: left;
+ margin-right: 9px;
+ margin-bottom: 9px;
+}
+.weui-uploader__img {
+ display: block;
+ width: 30px;
+ height: 30px;
+}
+.weui-uploader__input-box {
+ float: left;
+ position: relative;
+ margin-right: 9px;
+ margin-bottom: 9px;
+ width: 30px;
+ height: 30px;
+ border: 1px solid #d9d9d9;
+}
+.weui-uploader__input-box:after,
+.weui-uploader__input-box:before {
+ content: ' ';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ background-color: #d9d9d9;
+}
+.weui-uploader__input-box:before {
+ width: 2px;
+ height: 30px;
+}
+.weui-uploader__input-box:after {
+ width: 30px;
+ height: 2px;
+}
+.weui-uploader__input-box:active {
+ border-color: #999;
+}
+.weui-uploader__input-box:active:after,
+.weui-uploader__input-box:active:before {
+ background-color: #999;
+}
+.weui-uploader__input {
+ position: absolute;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+.fb-body .text-count {
+ float: right;
+ color: #666;
+ font-size: 24rpx;
+ line-height: 30rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.js
new file mode 100644
index 0000000000000000000000000000000000000000..c3e7fae7fd7aa8638692b222d4f42af957625737
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.js
@@ -0,0 +1,302 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/aftersaleList/aftersaleList"],{
+
+/***/ 332:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2FaftersaleList%2FaftersaleList"} ***!
+ \*****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _aftersaleList = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/aftersaleList/aftersaleList.vue */ 333));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_aftersaleList.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 333:
+/*!********************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue ***!
+ \********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _aftersaleList_vue_vue_type_template_id_efa7fc76___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./aftersaleList.vue?vue&type=template&id=efa7fc76& */ 334);
+/* harmony import */ var _aftersaleList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./aftersaleList.vue?vue&type=script&lang=js& */ 336);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _aftersaleList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _aftersaleList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _aftersaleList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./aftersaleList.vue?vue&type=style&index=0&lang=css& */ 338);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _aftersaleList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _aftersaleList_vue_vue_type_template_id_efa7fc76___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _aftersaleList_vue_vue_type_template_id_efa7fc76___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _aftersaleList_vue_vue_type_template_id_efa7fc76___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/aftersaleList/aftersaleList.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 334:
+/*!***************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?vue&type=template&id=efa7fc76& ***!
+ \***************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_template_id_efa7fc76___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleList.vue?vue&type=template&id=efa7fc76& */ 335);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_template_id_efa7fc76___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_template_id_efa7fc76___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_template_id_efa7fc76___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_template_id_efa7fc76___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 335:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?vue&type=template&id=efa7fc76& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 336:
+/*!*********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleList.vue?vue&type=script&lang=js& */ 337);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 337:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ aftersaleList: [],
+ showType: 1,
+ page: 1,
+ limit: 10,
+ totalPages: 1,
+
+ gitem: {
+ id: '',
+ picUrl: '',
+ goodsName: '',
+ number: '' } };
+
+
+ },
+ onLoad: function onLoad(options) {},
+ onReachBottom: function onReachBottom() {
+ if (this.totalPages > this.page) {
+ this.setData({
+ page: this.page + 1 });
+
+ this.getAftersaleList();
+ } else {
+ uni.showToast({
+ title: '没有更多售后了',
+ icon: 'none',
+ duration: 2000 });
+
+ return false;
+ }
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ this.getAftersaleList();
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getAftersaleList: function getAftersaleList() {
+ var that = this;
+ util.request(api.AftersaleList, {
+ status: that.showType,
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ if (res.errno === 0) {
+ console.log(res.data);
+ that.setData({
+ aftersaleList: that.aftersaleList.concat(res.data.list),
+ totalPages: res.data.pages });
+
+ }
+ });
+ },
+
+ switchTab: function switchTab(event) {
+ var showType = event.currentTarget.dataset.index;
+ this.setData({
+ aftersaleList: [],
+ showType: showType,
+ page: 1,
+ limit: 10,
+ totalPages: 1 });
+
+ this.getAftersaleList();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 338:
+/*!*****************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./aftersaleList.vue?vue&type=style&index=0&lang=css& */ 339);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_aftersaleList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 339:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/aftersaleList/aftersaleList.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[332,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.json
new file mode 100644
index 0000000000000000000000000000000000000000..b91ca6752f925e03458454d94bb6d24b097d3bf5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "我的售后",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..73feee5925b0d9b9212ac0414620cd47a3c1e3f5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.wxml
@@ -0,0 +1 @@
+申请中 处理中 已完成 已拒绝 还没有呢 {{"售后编号:"+item.aftersale.aftersaleSn}} {{gitem.goodsName}} {{gitem.number+"件商品"}} {{"申请退款金额:¥"+item.aftersale.amount+"元"}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..c10809cf4303301a497cf10a6d042a7435e6bfcc
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/aftersaleList/aftersaleList.wxss
@@ -0,0 +1,143 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+.aftersales-switch {
+ width: 100%;
+ background: #fff;
+ height: 84rpx;
+}
+.aftersales-switch .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 18%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+.aftersales-switch .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #9a9ba1;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+.aftersales-switch .item.active .txt {
+ color: #ab956d;
+ border-bottom: 4rpx solid #ab956d;
+}
+.no-aftersale {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+.no-aftersale .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+.no-aftersale .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+.aftersales {
+ height: auto;
+ width: 100%;
+ overflow: hidden;
+}
+.aftersale {
+ margin-top: 20rpx;
+ background: #fff;
+}
+.aftersale .h {
+ height: 83.3rpx;
+ line-height: 83.3rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ font-size: 30rpx;
+ color: #333;
+}
+.aftersale .h .l {
+ float: left;
+}
+.aftersale .h .r {
+ float: right;
+ color: #b4282d;
+ font-size: 24rpx;
+}
+.aftersale .goods {
+ display: flex;
+ align-items: center;
+ height: 199rpx;
+ margin-left: 31.25rpx;
+}
+.aftersale .goods .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+.aftersale .goods .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+.aftersale .goods .info {
+ height: 145.83rpx;
+ flex: 1;
+ padding-left: 20rpx;
+}
+.aftersale .goods .name {
+ margin-top: 30rpx;
+ display: block;
+ height: 44rpx;
+ line-height: 44rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.aftersale .goods .number {
+ display: block;
+ height: 37rpx;
+ line-height: 37rpx;
+ color: #666;
+ font-size: 25rpx;
+}
+.aftersale .goods .status {
+ width: 105rpx;
+ color: #b4282d;
+ font-size: 25rpx;
+}
+.aftersale .b {
+ height: 103rpx;
+ line-height: 103rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-top: 1px solid #f4f4f4;
+ font-size: 30rpx;
+ color: #333;
+}
+.aftersale .b .l {
+ float: left;
+}
+.aftersale .b .r {
+ float: right;
+}
+.aftersale .b .btn {
+ margin-top: 19rpx;
+ height: 64.5rpx;
+ line-height: 64.5rpx;
+ text-align: center;
+ padding: 0 20rpx;
+ border-radius: 5rpx;
+ font-size: 28rpx;
+ color: #fff;
+ background: #b4282d;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.js
new file mode 100644
index 0000000000000000000000000000000000000000..d5b58a9bfc62361a7be756a5ee58528d824960a9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.js
@@ -0,0 +1,346 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/collect/collect"],{
+
+/***/ 124:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2Fcollect%2Fcollect"} ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _collect = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/collect/collect.vue */ 125));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_collect.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 125:
+/*!********************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue ***!
+ \********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _collect_vue_vue_type_template_id_7a75d052___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./collect.vue?vue&type=template&id=7a75d052& */ 126);
+/* harmony import */ var _collect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./collect.vue?vue&type=script&lang=js& */ 128);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _collect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _collect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _collect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./collect.vue?vue&type=style&index=0&lang=css& */ 130);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _collect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _collect_vue_vue_type_template_id_7a75d052___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _collect_vue_vue_type_template_id_7a75d052___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _collect_vue_vue_type_template_id_7a75d052___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/collect/collect.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 126:
+/*!***************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?vue&type=template&id=7a75d052& ***!
+ \***************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_template_id_7a75d052___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./collect.vue?vue&type=template&id=7a75d052& */ 127);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_template_id_7a75d052___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_template_id_7a75d052___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_template_id_7a75d052___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_template_id_7a75d052___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 127:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?vue&type=template&id=7a75d052& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 128:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./collect.vue?vue&type=script&lang=js& */ 129);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 129:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ type: 0,
+ collectList: [],
+ page: 1,
+ limit: 10,
+ totalPages: 1,
+ touchStart: '',
+ touchEnd: '' };
+
+ },
+ onLoad: function onLoad(options) {
+ this.getCollectList();
+ },
+ onReachBottom: function onReachBottom() {
+ if (this.totalPages > this.page) {
+ this.setData({
+ page: this.page + 1 });
+
+ this.getCollectList();
+ } else {
+ uni.showToast({
+ title: '没有更多用户收藏了',
+ icon: 'none',
+ duration: 2000 });
+
+ return false;
+ }
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {},
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getCollectList: function getCollectList() {
+ uni.showLoading({
+ title: '加载中...' });
+
+ var that = this;
+ util.request(api.CollectList, {
+ type: that.type,
+ page: that.page,
+ limit: that.limit }).
+
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ collectList: that.collectList.concat(res.data.list),
+ totalPages: res.data.pages });
+
+ }
+ }).
+ finally(function () {
+ uni.hideLoading();
+ });
+ },
+
+ switchTab: function switchTab(event) {
+ var type = event.currentTarget.dataset.index;
+ this.setData({
+ collectList: [],
+ type: type,
+ page: 1,
+ limit: 10,
+ totalPages: 1 });
+
+ this.getCollectList();
+ },
+
+ openCollect: function openCollect(event) {
+ var that = this;
+ var index = event.currentTarget.dataset.index;
+ var valueId = this.collectList[index].valueId; //触摸时间距离页面打开的毫秒数
+
+ var touchTime = that.touchEnd - that.touchStart; //如果按下时间大于350为长按
+
+ if (touchTime > 350) {
+ uni.showModal({
+ title: '',
+ content: '确定删除吗?',
+ success: function success(res) {
+ if (res.confirm) {
+ util.request(
+ api.CollectAddOrDelete,
+ {
+ type: that.type,
+ valueId: valueId },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '删除成功',
+ icon: 'success',
+ duration: 2000 });
+
+ that.collectList.splice(index, 1);
+ that.setData({
+ collectList: that.collectList });
+
+ }
+ });
+ }
+ } });
+
+ } else {
+ var prefix = '/pages/goods/goods?id=';
+
+ if (this.type == 1) {
+ prefix = '/pages/topicDetail/topicDetail?id=';
+ }
+
+ uni.navigateTo({
+ url: prefix + valueId });
+
+ }
+ },
+
+ //按下事件开始
+ touchStartFun: function touchStartFun(e) {
+ var that = this;
+ that.setData({
+ touchStart: e.timeStamp });
+
+ },
+
+ //按下事件结束
+ touchEndFun: function touchEndFun(e) {
+ var that = this;
+ that.setData({
+ touchEnd: e.timeStamp });
+
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 130:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./collect.vue?vue&type=style&index=0&lang=css& */ 131);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_collect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 131:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/collect/collect.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[124,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/collect/collect.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.json
new file mode 100644
index 0000000000000000000000000000000000000000..c1b3d781f980c9d640c1a5806530cf3ad8bef19d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "我的收藏",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..45571936c8849da7c1e2537f0b1c3aac02f6dac2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.wxml
@@ -0,0 +1 @@
+商品收藏 专题收藏 还没有收藏 {{item.name}} {{item.brief}} {{"¥"+item.retailPrice}} {{item.title}} {{item.subtitle}} {{item.price+"元起"}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..0aa44d593ac9db21411978da5c1fc027ec07a22a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/collect/collect.wxss
@@ -0,0 +1,166 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+}
+.collect-switch {
+ width: 100%;
+ background: #fff;
+ height: 84rpx;
+}
+.collect-switch .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 50%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+.collect-switch .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #9a9ba1;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+.collect-switch .item.active .txt {
+ color: #ab956d;
+ border-bottom: 4rpx solid #ab956d;
+}
+.no-collect {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+.no-collect .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+.no-collect .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+
+/*商品收藏列表样式*/
+.goods-list {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+ padding-left: 30rpx;
+ border-top: 1px solid #e1e1e1;
+}
+.goods-list .item {
+ height: 212rpx;
+ width: 720rpx;
+ background: #fff;
+ padding: 30rpx 30rpx 30rpx 0;
+ border-bottom: 1px solid #e1e1e1;
+}
+.goods-list .item:last-child {
+ border-bottom: 1px solid #fff;
+}
+.goods-list .item .img {
+ float: left;
+ width: 150rpx;
+ height: 150rpx;
+}
+.goods-list .item .info {
+ float: right;
+ width: 540rpx;
+ height: 150rpx;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ padding-left: 20rpx;
+}
+.goods-list .item .info .name {
+ font-size: 28rpx;
+ color: #333;
+ line-height: 40rpx;
+}
+.goods-list .item .info .subtitle {
+ margin-top: 8rpx;
+ font-size: 24rpx;
+ color: #888;
+ line-height: 40rpx;
+}
+.goods-list .item .info .price {
+ margin-top: 8rpx;
+ font-size: 28rpx;
+ color: #333;
+ line-height: 40rpx;
+}
+
+/*专题收藏列表样式*/
+.topic-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+ background: #f4f4f4;
+}
+.topic-list .item {
+ width: 100%;
+ height: 625rpx;
+ overflow: hidden;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+.topic-list .img {
+ width: 100%;
+ height: 415rpx;
+}
+.topic-list .info {
+ width: 100%;
+ height: 210rpx;
+ overflow: hidden;
+}
+.topic-list .title {
+ display: block;
+ text-align: center;
+ width: 100%;
+ height: 33rpx;
+ line-height: 35rpx;
+ color: #333;
+ overflow: hidden;
+ font-size: 35rpx;
+ margin-top: 30rpx;
+}
+.topic-list .desc {
+ display: block;
+ text-align: center;
+ position: relative;
+ width: auto;
+ height: 24rpx;
+ line-height: 24rpx;
+ overflow: hidden;
+ color: #999;
+ font-size: 24rpx;
+ margin-top: 16rpx;
+ margin-bottom: 30rpx;
+}
+.topic-list .price {
+ display: block;
+ text-align: center;
+ width: 100%;
+ height: 27rpx;
+ line-height: 27rpx;
+ overflow: hidden;
+ color: #b4282d;
+ font-size: 27rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.js
new file mode 100644
index 0000000000000000000000000000000000000000..8b4c69fc57798891495bd554060e3a6ec7016ac1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.js
@@ -0,0 +1,390 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/couponList/couponList"],{
+
+/***/ 108:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2FcouponList%2FcouponList"} ***!
+ \***********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _couponList = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/couponList/couponList.vue */ 109));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_couponList.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 109:
+/*!**************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue ***!
+ \**************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _couponList_vue_vue_type_template_id_f3db95fe___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./couponList.vue?vue&type=template&id=f3db95fe& */ 110);
+/* harmony import */ var _couponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./couponList.vue?vue&type=script&lang=js& */ 112);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _couponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _couponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _couponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./couponList.vue?vue&type=style&index=0&lang=css& */ 114);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _couponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _couponList_vue_vue_type_template_id_f3db95fe___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _couponList_vue_vue_type_template_id_f3db95fe___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _couponList_vue_vue_type_template_id_f3db95fe___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/couponList/couponList.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 110:
+/*!*********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?vue&type=template&id=f3db95fe& ***!
+ \*********************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_template_id_f3db95fe___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponList.vue?vue&type=template&id=f3db95fe& */ 111);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_template_id_f3db95fe___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_template_id_f3db95fe___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_template_id_f3db95fe___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_template_id_f3db95fe___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 111:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?vue&type=template&id=f3db95fe& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 112:
+/*!***************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?vue&type=script&lang=js& ***!
+ \***************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponList.vue?vue&type=script&lang=js& */ 113);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 113:
+/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?vue&type=script&lang=js& ***!
+ \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ couponList: [],
+
+ code: {
+ length: 0 },
+
+
+ status: 0,
+ page: 1,
+ limit: 10,
+ count: 0,
+ scrollTop: 0,
+ showPage: false,
+ size: 0 };
+
+ }
+ /**
+ * 生命周期函数--监听页面加载
+ */,
+ onLoad: function onLoad(options) {
+ this.getCouponList();
+ },
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady: function onReady() {},
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow: function onShow() {},
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide: function onHide() {},
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload: function onUnload() {},
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh: function onPullDownRefresh() {
+ uni.showNavigationBarLoading(); //在标题栏中显示加载
+
+ this.getCouponList();
+ uni.hideNavigationBarLoading(); //完成停止加载
+
+ uni.stopPullDownRefresh(); //停止下拉刷新
+ },
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom: function onReachBottom() {},
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage: function onShareAppMessage() {},
+ methods: {
+ getCouponList: function getCouponList() {
+ var that = this;
+ that.setData({
+ scrollTop: 0,
+ showPage: false,
+ couponList: [] });
+
+ util.request(api.CouponMyList, {
+ status: that.status,
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ scrollTop: 0,
+ couponList: res.data.list,
+ showPage: res.data.total > that.limit,
+ count: res.data.total });
+
+ }
+ });
+ },
+
+ bindExchange: function bindExchange(e) {
+ this.setData({
+ code: e.detail.value });
+
+ },
+
+ clearExchange: function clearExchange() {
+ this.setData({
+ code: '' });
+
+ },
+
+ goExchange: function goExchange() {
+ if (this.code.length === 0) {
+ util.showErrorToast('请输入兑换码');
+ return;
+ }
+
+ var that = this;
+ util.request(
+ api.CouponExchange,
+ {
+ code: that.code },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ that.getCouponList();
+ that.clearExchange();
+ uni.showToast({
+ title: '领取成功',
+ duration: 2000 });
+
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ },
+
+ nextPage: function nextPage(event) {
+ var that = this;
+
+ if (this.page > that.count / that.limit) {
+ return true;
+ }
+
+ that.setData({
+ page: that.page + 1 });
+
+ this.getCouponList();
+ },
+
+ prevPage: function prevPage(event) {
+ if (this.page <= 1) {
+ return false;
+ }
+
+ var that = this;
+ that.setData({
+ page: that.page - 1 });
+
+ this.getCouponList();
+ },
+
+ switchTab: function switchTab(e) {
+ this.setData({
+ couponList: [],
+ status: e.currentTarget.dataset.index,
+ page: 1,
+ limit: 10,
+ count: 0,
+ scrollTop: 0,
+ showPage: false });
+
+ this.getCouponList();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 114:
+/*!***********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponList.vue?vue&type=style&index=0&lang=css& */ 115);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponList_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 115:
+/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponList/couponList.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[108,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/couponList/couponList.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.json
new file mode 100644
index 0000000000000000000000000000000000000000..6dcd5ca2aabe1dcf72205e2c61fa35e844e98a35
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.json
@@ -0,0 +1,5 @@
+{
+ "enablePullDownRefresh": true,
+ "navigationBarTitleText": "我的优惠券",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..d601256dfde13c88c6b36e62a09623eb64d345e4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.wxml
@@ -0,0 +1 @@
+未使用 已使用 已过期 兑换 使用说明{{item.tag}} {{item.discount+"元"}} {{"满"+item.min+"元使用"}} {{item.name}} {{"有效期:"+item.startTime+" - "+item.endTime}} {{item.desc}} 上一页 下一页
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..21c8a3f54c4127ddb00f572ff654d6aabef3650b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponList/couponList.wxss
@@ -0,0 +1,212 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ padding-top: 30rpx;
+}
+.container .h {
+ position: fixed;
+ left: 0;
+ top: 0;
+ z-index: 1000;
+ width: 100%;
+ display: flex;
+ background: #fff;
+ height: 84rpx;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.15);
+}
+.container .h .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 50%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+.container .h .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #333;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+.container .h .item.active .txt {
+ color: #ab2b2b;
+ border-bottom: 4rpx solid #ab2b2b;
+}
+.container .b {
+ margin-top: 85rpx;
+ height: auto;
+}
+.container .b .coupon-form {
+ height: 110rpx;
+ width: 100%;
+ background: #fff;
+ padding-left: 30rpx;
+ padding-right: 30rpx;
+ padding-top: 20rpx;
+ display: flex;
+}
+.container .b .input-box {
+ flex: 1;
+ height: 70rpx;
+ color: #333;
+ font-size: 24rpx;
+ background: #fff;
+ position: relative;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+ border-radius: 4rpx;
+ margin-right: 30rpx;
+}
+.container .b .input-box .coupon-sn {
+ position: absolute;
+ top: 10rpx;
+ left: 30rpx;
+ height: 50rpx;
+ width: 100%;
+ color: #000;
+ line-height: 50rpx;
+ font-size: 24rpx;
+}
+.container .b .clear-icon {
+ position: absolute;
+ top: 25rpx;
+ right: 18rpx;
+ z-index: 2;
+ display: block;
+ background: #fff;
+}
+.container .b .add-btn {
+ height: 70rpx;
+ border: none;
+ width: 168rpx;
+ background: #b4282d;
+ border-radius: 0;
+ line-height: 70rpx;
+ color: #fff;
+ font-size: 28rpx;
+ text-align: center;
+}
+.container .b .add-btn.disabled {
+ background: #ccc;
+}
+.container .b .help {
+ height: 72rpx;
+ line-height: 72rpx;
+ text-align: right;
+ padding-right: 30rpx;
+ background-size: 28rpx;
+ color: #999;
+ font-size: 24rpx;
+}
+.container .b .coupon-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+}
+.container .b .item {
+ position: relative;
+ height: 290rpx;
+ background: #ccc7c7;
+ margin-bottom: 30rpx;
+ margin-left: 30rpx;
+ margin-right: 30rpx;
+ padding-top: 52rpx;
+}
+.container .b .item.active {
+ background: linear-gradient(to right, #cfa568, #e3bf79);
+}
+.container .b .tag {
+ height: 32rpx;
+ background: #a48143;
+ padding-left: 16rpx;
+ padding-right: 16rpx;
+ position: absolute;
+ left: 20rpx;
+ color: #fff;
+ top: 20rpx;
+ font-size: 20rpx;
+ text-align: center;
+ line-height: 32rpx;
+}
+.container .b .content {
+ margin-top: 24rpx;
+ margin-left: 40rpx;
+ display: flex;
+ margin-right: 40rpx;
+ flex-direction: row;
+}
+.container .b .content .left {
+ flex: 1;
+}
+.container .b .discount {
+ font-size: 50rpx;
+ color: #b4282d;
+}
+.container .b .min {
+ color: #fff;
+}
+.container .b .content .right {
+ width: 400rpx;
+}
+.container .b .name {
+ font-size: 44rpx;
+ color: #fff;
+ margin-bottom: 14rpx;
+}
+.container .b .time {
+ font-size: 24rpx;
+ color: #fff;
+ line-height: 30rpx;
+}
+.container .b .condition {
+ position: absolute;
+ width: 100%;
+ bottom: 0;
+ left: 0;
+ height: 78rpx;
+ background: rgba(0, 0, 0, 0.08);
+ padding: 24rpx 40rpx;
+ display: flex;
+ flex-direction: row;
+}
+.container .b .condition .txt {
+ display: block;
+ height: 30rpx;
+ flex: 1;
+ overflow: hidden;
+ font-size: 24rpx;
+ line-height: 30rpx;
+ color: #fff;
+}
+.container .b .condition .icon {
+ margin-left: 30rpx;
+ width: 24rpx;
+ height: 24rpx;
+}
+.container .b .page {
+ width: 750rpx;
+ height: 108rpx;
+ background: #fff;
+ margin-bottom: 20rpx;
+}
+.container .b .page view {
+ height: 108rpx;
+ width: 50%;
+ float: left;
+ font-size: 29rpx;
+ color: #333;
+ text-align: center;
+ line-height: 108rpx;
+}
+.container .b .page .prev {
+ border-right: 1px solid #d9d9d9;
+}
+.container .b .page .disabled {
+ color: #ccc;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.js
new file mode 100644
index 0000000000000000000000000000000000000000..0da70e1853025817d07bcded45e5659b4d31b4cd
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.js
@@ -0,0 +1,340 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/couponSelect/couponSelect"],{
+
+/***/ 116:
+/*!***************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2FcouponSelect%2FcouponSelect"} ***!
+ \***************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _couponSelect = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/couponSelect/couponSelect.vue */ 117));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_couponSelect.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 117:
+/*!******************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue ***!
+ \******************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _couponSelect_vue_vue_type_template_id_0aebabfe___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./couponSelect.vue?vue&type=template&id=0aebabfe& */ 118);
+/* harmony import */ var _couponSelect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./couponSelect.vue?vue&type=script&lang=js& */ 120);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _couponSelect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _couponSelect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _couponSelect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./couponSelect.vue?vue&type=style&index=0&lang=css& */ 122);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _couponSelect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _couponSelect_vue_vue_type_template_id_0aebabfe___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _couponSelect_vue_vue_type_template_id_0aebabfe___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _couponSelect_vue_vue_type_template_id_0aebabfe___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/couponSelect/couponSelect.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 118:
+/*!*************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?vue&type=template&id=0aebabfe& ***!
+ \*************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_template_id_0aebabfe___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponSelect.vue?vue&type=template&id=0aebabfe& */ 119);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_template_id_0aebabfe___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_template_id_0aebabfe___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_template_id_0aebabfe___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_template_id_0aebabfe___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 119:
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?vue&type=template&id=0aebabfe& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 120:
+/*!*******************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?vue&type=script&lang=js& ***!
+ \*******************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponSelect.vue?vue&type=script&lang=js& */ 121);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 121:
+/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?vue&type=script&lang=js& ***!
+ \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ couponList: [],
+ cartId: 0,
+ couponId: 0,
+ userCouponId: 0,
+ grouponLinkId: 0,
+ scrollTop: 0,
+ grouponRulesId: '' };
+
+ }
+ /**
+ * 生命周期函数--监听页面加载
+ */,
+ onLoad: function onLoad(options) {},
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady: function onReady() {},
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow: function onShow() {
+ // 页面显示
+ uni.showLoading({
+ title: '加载中...' });
+
+
+ try {
+ var cartId = uni.getStorageSync('cartId');
+
+ if (!cartId) {
+ cartId = 0;
+ }
+
+ var couponId = uni.getStorageSync('couponId');
+
+ if (!couponId) {
+ couponId = 0;
+ }
+
+ var userCouponId = uni.getStorageSync('userCouponId');
+
+ if (!userCouponId) {
+ userCouponId = 0;
+ }
+
+ var grouponRulesId = uni.getStorageSync('grouponRulesId');
+
+ if (!grouponRulesId) {
+ grouponRulesId = 0;
+ }
+
+ this.setData({
+ cartId: cartId,
+ couponId: couponId,
+ userCouponId: userCouponId,
+ grouponRulesId: grouponRulesId });
+
+ } catch (e) {
+ // Do something when catch error
+ console.log(e);
+ }
+
+ this.getCouponList();
+ },
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide: function onHide() {},
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload: function onUnload() {},
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh: function onPullDownRefresh() {},
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom: function onReachBottom() {},
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage: function onShareAppMessage() {},
+ methods: {
+ getCouponList: function getCouponList() {
+ var that = this;
+ that.setData({
+ couponList: [] });
+ // 页面渲染完成
+
+ uni.showToast({
+ title: '加载中...',
+ icon: 'loading',
+ duration: 2000 });
+
+ util.request(api.CouponSelectList, {
+ cartId: that.cartId,
+ grouponRulesId: that.grouponRulesId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ var list = [];
+
+ for (var i = 0; i < res.data.list.length; i++) {
+ if (res.data.list[i].available) {
+ list.push(res.data.list[i]);
+ }
+ }
+
+ that.setData({
+ couponList: list });
+
+ }
+
+ uni.hideToast();
+ });
+ },
+
+ selectCoupon: function selectCoupon(e) {
+ try {
+ uni.setStorageSync('couponId', e.currentTarget.dataset.cid);
+ uni.setStorageSync('userCouponId', e.currentTarget.dataset.id);
+ } catch (error) {}
+
+ uni.navigateBack();
+ },
+
+ unselectCoupon: function unselectCoupon() {
+ // 如果优惠券ID设置-1,则表示订单不使用优惠券
+ try {
+ uni.setStorageSync('couponId', -1);
+ uni.setStorageSync('userCouponId', -1);
+ } catch (error) {}
+
+ uni.navigateBack();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 122:
+/*!***************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?vue&type=style&index=0&lang=css& ***!
+ \***************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./couponSelect.vue?vue&type=style&index=0&lang=css& */ 123);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_couponSelect_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 123:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/couponSelect/couponSelect.vue?vue&type=style&index=0&lang=css& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[116,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/couponSelect/couponSelect.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.json
new file mode 100644
index 0000000000000000000000000000000000000000..4baf81519954a9fb5bd9953905fe94cdc421340c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "选择优惠券",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ce5ee28bce7e6f0c24329bb34de76ac5cf56e604
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.wxml
@@ -0,0 +1 @@
+不选择优惠券 {{item.tag}} {{item.discount+"元"}} {{"满"+item.min+"元使用"}} {{item.name}} {{"有效期:"+item.startTime+" - "+item.endTime}} {{item.desc}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..9b9e529ca456ecf59923c99b1b6dce9386d5c8fc
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/couponSelect/couponSelect.wxss
@@ -0,0 +1,106 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ padding-top: 30rpx;
+}
+.coupon-list {
+ width: 750rpx;
+ height: 100%;
+ overflow: hidden;
+}
+.unselect {
+ height: 80rpx;
+ border: none;
+ width: 700rpx;
+ background: #28b43b;
+ color: #fff;
+ font-size: 40rpx;
+ text-align: center;
+ margin-bottom: 30rpx;
+ margin-left: 30rpx;
+ margin-right: 30rpx;
+ line-height: 80rpx;
+}
+.item {
+ position: relative;
+ height: 290rpx;
+ width: 700rpx;
+ background: linear-gradient(to right, #cfa568, #e3bf79);
+ margin-bottom: 30rpx;
+ margin-left: 30rpx;
+ margin-right: 30rpx;
+ padding-top: 52rpx;
+}
+.tag {
+ height: 32rpx;
+ background: #a48143;
+ padding-left: 16rpx;
+ padding-right: 16rpx;
+ position: absolute;
+ left: 20rpx;
+ color: #fff;
+ top: 20rpx;
+ font-size: 20rpx;
+ text-align: center;
+ line-height: 32rpx;
+}
+.content {
+ margin-top: 24rpx;
+ margin-left: 40rpx;
+ display: flex;
+ margin-right: 40rpx;
+ flex-direction: row;
+}
+.content .left {
+ flex: 1;
+}
+.discount {
+ font-size: 50rpx;
+ color: #b4282d;
+}
+.min {
+ color: #fff;
+}
+.content .right {
+ width: 400rpx;
+}
+.name {
+ font-size: 44rpx;
+ color: #fff;
+ margin-bottom: 14rpx;
+}
+.time {
+ font-size: 24rpx;
+ color: #fff;
+ line-height: 30rpx;
+}
+.condition {
+ position: absolute;
+ width: 100%;
+ bottom: 0;
+ left: 0;
+ height: 78rpx;
+ background: rgba(0, 0, 0, 0.08);
+ padding: 24rpx 40rpx;
+ display: flex;
+ flex-direction: row;
+}
+.condition .txt {
+ display: block;
+ height: 30rpx;
+ flex: 1;
+ overflow: hidden;
+ font-size: 24rpx;
+ line-height: 30rpx;
+ color: #fff;
+}
+.condition .icon {
+ margin-left: 30rpx;
+ width: 24rpx;
+ height: 24rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.js
new file mode 100644
index 0000000000000000000000000000000000000000..e147b2668e2b0bb6319f9cbf08aabb979459953e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.js
@@ -0,0 +1,393 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/feedback/feedback"],{
+
+/***/ 76:
+/*!*******************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2Ffeedback%2Ffeedback"} ***!
+ \*******************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _feedback = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/feedback/feedback.vue */ 77));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_feedback.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 77:
+/*!**********************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue ***!
+ \**********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _feedback_vue_vue_type_template_id_927c443e___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./feedback.vue?vue&type=template&id=927c443e& */ 78);
+/* harmony import */ var _feedback_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./feedback.vue?vue&type=script&lang=js& */ 80);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _feedback_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _feedback_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _feedback_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./feedback.vue?vue&type=style&index=0&lang=css& */ 82);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _feedback_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _feedback_vue_vue_type_template_id_927c443e___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _feedback_vue_vue_type_template_id_927c443e___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _feedback_vue_vue_type_template_id_927c443e___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/feedback/feedback.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 78:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?vue&type=template&id=927c443e& ***!
+ \*****************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_template_id_927c443e___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./feedback.vue?vue&type=template&id=927c443e& */ 79);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_template_id_927c443e___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_template_id_927c443e___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_template_id_927c443e___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_template_id_927c443e___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 79:
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?vue&type=template&id=927c443e& ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 80:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?vue&type=script&lang=js& ***!
+ \***********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./feedback.vue?vue&type=script&lang=js& */ 81);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 81:
+/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?vue&type=script&lang=js& ***!
+ \******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var check = __webpack_require__(/*! ../../../utils/check.js */ 72);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ array: ['请选择反馈类型', '商品相关', '功能异常', '优化建议', '其他'],
+ index: 0,
+ content: '',
+ contentLength: 0,
+ mobile: {
+ length: 0 },
+
+ hasPicture: false,
+ picUrls: [],
+ files: [] };
+
+ },
+ onLoad: function onLoad(options) {},
+ onReady: function onReady() {},
+ onShow: function onShow() {},
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ chooseImage: function chooseImage(e) {
+ if (this.files.length >= 5) {
+ util.showErrorToast('只能上传五张图片');
+ return false;
+ }
+
+ var that = this;
+ uni.chooseImage({
+ count: 1,
+ sizeType: ['original', 'compressed'],
+ sourceType: ['album', 'camera'],
+ success: function success(res) {
+ that.setData({
+ files: that.files.concat(res.tempFilePaths) });
+
+ that.upload(res);
+ } });
+
+ },
+
+ upload: function upload(res) {
+ var that = this;
+ var uploadTask = uni.uploadFile({
+ url: api.StorageUpload,
+ filePath: res.tempFilePaths[0],
+ name: 'file',
+ success: function success(res) {
+ var _res = JSON.parse(res.data);
+
+ if (_res.errno === 0) {
+ var url = _res.data.url;
+ that.picUrls.push(url);
+ that.setData({
+ hasPicture: true,
+ picUrls: that.picUrls });
+
+ }
+ },
+ fail: function fail(e) {
+ uni.showModal({
+ title: '错误',
+ content: '上传失败',
+ showCancel: false });
+
+ } });
+
+ uploadTask.onProgressUpdate(function (res) {
+ console.log('上传进度', res.progress);
+ console.log('已经上传的数据长度', res.totalBytesSent);
+ console.log('预期需要上传的数据总长度', res.totalBytesExpectedToSend);
+ });
+ },
+
+ previewImage: function previewImage(e) {
+ uni.previewImage({
+ current: e.currentTarget.id,
+ // 当前显示图片的http链接
+ urls: this.files // 需要预览的图片http链接列表
+ });
+ },
+
+ bindPickerChange: function bindPickerChange(e) {
+ this.setData({
+ index: e.detail.value });
+
+ },
+
+ mobileInput: function mobileInput(e) {
+ this.setData({
+ mobile: e.detail.value });
+
+ },
+
+ contentInput: function contentInput(e) {
+ this.setData({
+ contentLength: e.detail.cursor,
+ content: e.detail.value });
+
+ },
+
+ clearMobile: function clearMobile(e) {
+ this.setData({
+ mobile: '' });
+
+ },
+
+ submitFeedback: function submitFeedback(e) {
+ if (!app.globalData.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+
+ var that = this;
+
+ if (that.index == 0) {
+ util.showErrorToast('请选择反馈类型');
+ return false;
+ }
+
+ if (that.content == '') {
+ util.showErrorToast('请输入反馈内容');
+ return false;
+ }
+
+ if (that.mobile == '') {
+ util.showErrorToast('请输入手机号码');
+ return false;
+ }
+
+ uni.showLoading({
+ title: '提交中...',
+ mask: true,
+ success: function success() {} });
+
+ util.request(
+ api.FeedbackAdd,
+ {
+ mobile: that.mobile,
+ feedType: that.array[that.index],
+ content: that.content,
+ hasPicture: that.hasPicture,
+ picUrls: that.picUrls },
+
+ 'POST').
+ then(function (res) {
+ uni.hideLoading();
+
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '感谢您的反馈!',
+ icon: 'success',
+ duration: 2000,
+ complete: function complete() {
+ that.setData({
+ index: 0,
+ content: '',
+ contentLength: 0,
+ mobile: '',
+ hasPicture: false,
+ picUrls: [],
+ files: [] });
+
+ } });
+
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 82:
+/*!*******************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?vue&type=style&index=0&lang=css& ***!
+ \*******************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./feedback.vue?vue&type=style&index=0&lang=css& */ 83);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_feedback_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 83:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/feedback/feedback.vue?vue&type=style&index=0&lang=css& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[76,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/feedback/feedback.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.json
new file mode 100644
index 0000000000000000000000000000000000000000..431022fc89906f52f9e91a004ec8aed015f6b66c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "意见反馈",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..2f73b2e71ad08ab4def7f29900c330283aa36e35
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.wxml
@@ -0,0 +1 @@
+{{array[index]}} {{contentLength+"/500"}} 手机号码 提交
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..902ed2d4d6945dd207e73a7dbb1dd9a9dfa16198
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/feedback/feedback.wxss
@@ -0,0 +1,175 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ padding-top: 30rpx;
+}
+.fb-type {
+ height: 104rpx;
+ width: 100%;
+ background: #fff;
+ margin-bottom: 20rpx;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ padding-left: 30rpx;
+ padding-right: 30rpx;
+}
+.fb-type .type-label {
+ height: 36rpx;
+ flex: 1;
+ color: #333;
+ font-size: 28rpx;
+}
+.fb-type .type-icon {
+ height: 36rpx;
+ width: 36rpx;
+}
+.fb-body {
+ width: 100%;
+ background: #fff;
+ height: 600rpx;
+ padding: 18rpx 30rpx 64rpx 30rpx;
+}
+.fb-body .content {
+ width: 100%;
+ height: 400rpx;
+ color: #333;
+ line-height: 40rpx;
+ font-size: 28rpx;
+}
+.weui-uploader__files {
+ width: 100%;
+}
+.weui-uploader__file {
+ float: left;
+ margin-right: 9px;
+ margin-bottom: 9px;
+}
+.weui-uploader__img {
+ display: block;
+ width: 50px;
+ height: 50px;
+}
+.weui-uploader__input-box {
+ float: left;
+ position: relative;
+ margin-right: 9px;
+ margin-bottom: 9px;
+ width: 50px;
+ height: 50px;
+ border: 1px solid #d9d9d9;
+}
+.weui-uploader__input-box:after,
+.weui-uploader__input-box:before {
+ content: ' ';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+ background-color: #d9d9d9;
+}
+.weui-uploader__input-box:before {
+ width: 2px;
+ height: 39.5px;
+}
+.weui-uploader__input-box:after {
+ width: 39.5px;
+ height: 2px;
+}
+.weui-uploader__input-box:active {
+ border-color: #999;
+}
+.weui-uploader__input-box:active:after,
+.weui-uploader__input-box:active:before {
+ background-color: #999;
+}
+.weui-uploader__input {
+ position: absolute;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+.fb-body .text-count {
+ line-height: 30rpx;
+ float: right;
+ color: #666;
+ font-size: 24rpx;
+}
+.fb-mobile {
+ height: 162rpx;
+ width: 100%;
+}
+.fb-mobile .label {
+ height: 58rpx;
+ width: 100%;
+ padding-top: 14rpx;
+ padding-bottom: 11rpx;
+ color: #7f7f7f;
+ font-size: 24rpx;
+ padding-left: 30rpx;
+ padding-right: 30rpx;
+ line-height: 33rpx;
+}
+.fb-mobile .mobile-box {
+ height: 104rpx;
+ width: 100%;
+ color: #333;
+ padding-left: 30rpx;
+ padding-right: 30rpx;
+ font-size: 24rpx;
+ background: #fff;
+ position: relative;
+}
+.fb-mobile .mobile {
+ position: absolute;
+ top: 27rpx;
+ left: 30rpx;
+ height: 50rpx;
+ width: 100%;
+ color: #333;
+ line-height: 50rpx;
+ font-size: 24rpx;
+}
+.fb-mobile .clear-icon {
+ position: absolute;
+ top: 27rpx;
+ right: 30rpx;
+ width: 48rpx;
+ height: 48rpx;
+ z-index: 2;
+}
+.fb-btn {
+ right: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 80%;
+ height: 90rpx;
+ line-height: 98rpx;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ border-radius: 0;
+ padding: 0;
+ margin: 0;
+ margin-left: 10%;
+ text-align: center;
+ /* padding-left: -5rpx; */
+ font-size: 25rpx;
+ color: #f4f4f4;
+ border-top-left-radius: 50rpx;
+ border-bottom-left-radius: 50rpx;
+ border-top-right-radius: 50rpx;
+ border-bottom-right-radius: 50rpx;
+ letter-spacing: 3rpx;
+ background-image: linear-gradient(to right, #9a9ba1 0%, #9a9ba1 100%);
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.js
new file mode 100644
index 0000000000000000000000000000000000000000..9d017dee7c0a066ddb5f5002bb13c15dc927f79d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.js
@@ -0,0 +1,358 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/footprint/footprint"],{
+
+/***/ 84:
+/*!*********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2Ffootprint%2Ffootprint"} ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _footprint = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/footprint/footprint.vue */ 85));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_footprint.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 85:
+/*!************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue ***!
+ \************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _footprint_vue_vue_type_template_id_66147881___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./footprint.vue?vue&type=template&id=66147881& */ 86);
+/* harmony import */ var _footprint_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./footprint.vue?vue&type=script&lang=js& */ 88);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _footprint_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _footprint_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _footprint_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./footprint.vue?vue&type=style&index=0&lang=css& */ 90);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _footprint_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _footprint_vue_vue_type_template_id_66147881___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _footprint_vue_vue_type_template_id_66147881___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _footprint_vue_vue_type_template_id_66147881___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/footprint/footprint.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 86:
+/*!*******************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?vue&type=template&id=66147881& ***!
+ \*******************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_template_id_66147881___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./footprint.vue?vue&type=template&id=66147881& */ 87);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_template_id_66147881___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_template_id_66147881___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_template_id_66147881___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_template_id_66147881___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 87:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?vue&type=template&id=66147881& ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 88:
+/*!*************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?vue&type=script&lang=js& ***!
+ \*************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./footprint.vue?vue&type=script&lang=js& */ 89);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 89:
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?vue&type=script&lang=js& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ footprintList: [],
+ page: 1,
+ limit: 10,
+ totalPages: 1,
+ touchStart: '',
+ touchEnd: '',
+ iindex: 0,
+
+ iitem: {
+ id: '',
+ picUrl: '',
+ name: '',
+ brief: '',
+ retailPrice: '' } };
+
+
+ },
+ onLoad: function onLoad(options) {
+ this.getFootprintList();
+ },
+ onReachBottom: function onReachBottom() {
+ if (this.totalPages > this.page) {
+ this.setData({
+ page: this.page + 1 });
+
+ this.getFootprintList();
+ } else {
+ uni.showToast({
+ title: '没有更多用户足迹了',
+ icon: 'none',
+ duration: 2000 });
+
+ return false;
+ }
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {},
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getFootprintList: function getFootprintList() {
+ uni.showLoading({
+ title: '加载中...' });
+
+ var that = this;
+ util.request(api.FootprintList, {
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ if (res.errno === 0) {
+ var f1 = that.footprintList;
+ var f2 = res.data.list;
+
+ for (var i = 0; i < f2.length; i++) {
+ f2[i].addDate = f2[i].addTime.substring(0, 10);
+ var last = f1.length - 1;
+
+ if (last >= 0 && f1[last][0].addDate === f2[i].addDate) {
+ f1[last].push(f2[i]);
+ } else {
+ var tmp = [];
+ tmp.push(f2[i]);
+ f1.push(tmp);
+ }
+ }
+
+ that.setData({
+ footprintList: f1,
+ totalPages: res.data.pages });
+
+ }
+
+ uni.hideLoading();
+ });
+ },
+
+ deleteItem: function deleteItem(event) {
+ var that = this;
+ var index = event.currentTarget.dataset.index;
+ var iindex = event.currentTarget.dataset.iindex;
+ var footprintId = this.footprintList[index][iindex].id;
+ var goodsId = this.footprintList[index][iindex].goodsId;
+ var touchTime = that.touchEnd - that.touchStart;
+ console.log(touchTime); //如果按下时间大于350为长按
+
+ if (touchTime > 350) {
+ uni.showModal({
+ title: '',
+ content: '要删除所选足迹?',
+ success: function success(res) {
+ if (res.confirm) {
+ util.request(
+ api.FootprintDelete,
+ {
+ id: footprintId },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '删除成功',
+ icon: 'success',
+ duration: 2000 });
+
+ that.footprintList[index].splice(iindex, 1);
+
+ if (that.footprintList[index].length == 0) {
+ that.footprintList.splice(index, 1);
+ }
+
+ that.setData({
+ footprintList: that.footprintList });
+
+ }
+ });
+ }
+ } });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/goods/goods?id=' + goodsId });
+
+ }
+ },
+
+ //按下事件开始
+ touchStartFun: function touchStartFun(e) {
+ var that = this;
+ that.setData({
+ touchStart: e.timeStamp });
+
+ console.log(e.timeStamp + '- touchStart');
+ },
+
+ //按下事件结束
+ touchEndFun: function touchEndFun(e) {
+ var that = this;
+ that.setData({
+ touchEnd: e.timeStamp });
+
+ console.log(e.timeStamp + '- touchEnd');
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 90:
+/*!*********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?vue&type=style&index=0&lang=css& ***!
+ \*********************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./footprint.vue?vue&type=style&index=0&lang=css& */ 91);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_footprint_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 91:
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/footprint/footprint.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[84,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/footprint/footprint.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.json
new file mode 100644
index 0000000000000000000000000000000000000000..8e84c6c65c4bbc57aa0e81dd915aff4fde792146
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "我的足迹",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..9f89156c9bddae1f1859e1c2d6ca30695e681e73
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.wxml
@@ -0,0 +1 @@
+没有浏览足迹 {{item[0].addDate}} {{iitem.name}} {{iitem.brief}} {{"¥"+iitem.retailPrice}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..5af7a5287a3b8ee999520f2427f80916b777fbc3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/footprint/footprint.wxss
@@ -0,0 +1,102 @@
+page {
+ background: #f4f4f4;
+ min-height: 100%;
+}
+.container {
+ background: #f4f4f4;
+ min-height: 100%;
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+}
+.no-footprint {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+.no-footprint .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+.no-footprint .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+.footprint {
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+ border-top: 1px solid #e1e1e1;
+}
+.day-item {
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+ margin-bottom: 20rpx;
+}
+.day-hd {
+ height: 94rpx;
+ width: 100%;
+ line-height: 94rpx;
+ background: #fff;
+ padding-left: 30rpx;
+ color: #333;
+ font-size: 28rpx;
+}
+.day-list {
+ width: 100%;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+ padding-left: 30rpx;
+ border-top: 1px solid #e1e1e1;
+}
+.item {
+ height: 212rpx;
+ width: 720rpx;
+ background: #fff;
+ padding: 30rpx 30rpx 30rpx 0;
+ border-bottom: 1px solid #e1e1e1;
+}
+.item:last-child {
+ border-bottom: 1px solid #fff;
+}
+.item .img {
+ float: left;
+ width: 150rpx;
+ height: 150rpx;
+}
+.item .info {
+ float: right;
+ width: 540rpx;
+ height: 150rpx;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ padding-left: 20rpx;
+}
+.item .info .name {
+ font-size: 28rpx;
+ color: #333;
+ line-height: 40rpx;
+}
+.item .info .subtitle {
+ margin-top: 8rpx;
+ font-size: 24rpx;
+ color: #888;
+ line-height: 40rpx;
+}
+.item .info .price {
+ margin-top: 8rpx;
+ font-size: 28rpx;
+ color: #333;
+ line-height: 40rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..7f77f4db55a6ceb35ad6a0156446adbdb8eb595f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.js
@@ -0,0 +1,521 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/index/index"],{
+
+/***/ 50:
+/*!*************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2Findex%2Findex"} ***!
+ \*************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _index = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/index/index.vue */ 51));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_index.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 51:
+/*!****************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue ***!
+ \****************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _index_vue_vue_type_template_id_a9934e32___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./index.vue?vue&type=template&id=a9934e32& */ 52);
+/* harmony import */ var _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./index.vue?vue&type=script&lang=js& */ 54);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./index.vue?vue&type=style&index=0&lang=css& */ 56);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _index_vue_vue_type_template_id_a9934e32___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _index_vue_vue_type_template_id_a9934e32___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _index_vue_vue_type_template_id_a9934e32___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/index/index.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 52:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?vue&type=template&id=a9934e32& ***!
+ \***********************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_template_id_a9934e32___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=template&id=a9934e32& */ 53);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_template_id_a9934e32___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_template_id_a9934e32___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_template_id_a9934e32___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_template_id_a9934e32___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 53:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?vue&type=template&id=a9934e32& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 54:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?vue&type=script&lang=js& ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=script&lang=js& */ 55);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 55:
+/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?vue&type=script&lang=js& ***!
+ \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);
+
+var user = __webpack_require__(/*! ../../../utils/user.js */ 11);
+
+var app = getApp();var _default =
+{
+ data: function data() {
+ return {
+ userInfo: {
+ nickName: '点击登录',
+ avatarUrl: '/static/images/my.png' },
+
+ order: {
+ unpaid: 0,
+ unship: 0,
+ unrecv: 0,
+ uncomment: 0 },
+
+ hasLogin: false };
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ },
+ onReady: function onReady() {},
+ onShow: function onShow() {
+ //获取用户的登录信息
+ if (app.globalData.hasLogin) {
+ var userInfo = uni.getStorageSync('userInfo');
+ this.setData({
+ userInfo: userInfo,
+ hasLogin: true });
+
+ var that = this;
+ util.request(api.UserIndex).then(function (res) {
+ if (res.errno === 0) {
+ that.setData({
+ order: res.data.order });
+
+ }
+ });
+ }
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ goLogin: function goLogin() {
+ if (!this.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+ },
+
+ goOrder: function goOrder() {
+ if (this.hasLogin) {
+ try {
+ uni.setStorageSync('tab', 0);
+ } catch (e) {}
+
+ uni.navigateTo({
+ url: '/pages/ucenter/order/order' });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+ },
+
+ goOrderIndex: function goOrderIndex(e) {
+ if (this.hasLogin) {
+ var tab = e.currentTarget.dataset.index;
+ var route = e.currentTarget.dataset.route;
+
+ try {
+ uni.setStorageSync('tab', tab);
+ } catch (e) {}
+
+ uni.navigateTo({
+ url: route,
+ success: function success(res) {},
+ fail: function fail(res) {},
+ complete: function complete(res) {} });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+ },
+
+ goCoupon: function goCoupon() {
+ if (this.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/ucenter/couponList/couponList' });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+ },
+
+ goGroupon: function goGroupon() {
+ if (this.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/groupon/myGroupon/myGroupon' });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+ },
+
+ goCollect: function goCollect() {
+ if (this.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/ucenter/collect/collect' });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+ },
+
+ goFeedback: function goFeedback(e) {
+ if (this.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/ucenter/feedback/feedback' });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+ },
+
+ goFootprint: function goFootprint() {
+ if (this.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/ucenter/footprint/footprint' });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+ },
+
+ goAddress: function goAddress() {
+ if (this.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/ucenter/address/address' });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+ },
+
+ bindPhoneNumber: function bindPhoneNumber(e) {
+ if (e.detail.errMsg !== 'getPhoneNumber:ok') {
+ // 拒绝授权
+ return;
+ }
+
+ if (!this.hasLogin) {
+ uni.showToast({
+ title: '绑定失败:请先登录',
+ icon: 'none',
+ duration: 2000 });
+
+ return;
+ }
+
+ util.request(
+ api.AuthBindPhone,
+ {
+ iv: e.detail.iv,
+ encryptedData: e.detail.encryptedData },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '绑定手机号码成功',
+ icon: 'success',
+ duration: 2000 });
+
+ }
+ });
+ },
+
+ goAfterSale: function goAfterSale() {
+ if (this.hasLogin) {
+ uni.navigateTo({
+ url: '/pages/ucenter/aftersaleList/aftersaleList' });
+
+ } else {
+ uni.navigateTo({
+ url: '/pages/auth/login/login' });
+
+ }
+ },
+
+ aboutUs: function aboutUs() {
+ uni.navigateTo({
+ url: '/pages/about/about' });
+
+ },
+
+ goHelp: function goHelp() {
+ uni.navigateTo({
+ url: '/pages/help/help' });
+
+ },
+
+ exitLogin: function exitLogin() {
+ uni.showModal({
+ title: '',
+ confirmColor: '#b4282d',
+ content: '退出登录?',
+ success: function success(res) {
+ if (!res.confirm) {
+ return;
+ }
+
+ util.request(api.AuthLogout, {}, 'POST');
+ app.globalData.hasLogin = false;
+ uni.removeStorageSync('token');
+ uni.removeStorageSync('userInfo');
+ uni.reLaunch({
+ url: '/pages/index/index' });
+
+ } });
+
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 56:
+/*!*************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./index.vue?vue&type=style&index=0&lang=css& */ 57);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_index_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 57:
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/index/index.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[50,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/index/index.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..d82ae3eba37d235a5a68b14ff99f543273822eb5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.json
@@ -0,0 +1,6 @@
+{
+ "backgroundColor": "#f4f4f4",
+ "navigationBarTitleText": "个人中心",
+ "enablePullDownRefresh": false,
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..bc9f059f44d7412efd8d2aee449a559e49867838
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.wxml
@@ -0,0 +1 @@
+{{userInfo.nickName}} 我的订单 {{order.unpaid}} 待付款 {{order.unship}} 待发货 {{order.unrecv}} 待收货 {{order.uncomment}} 待评价 售后 核心服务 优惠卷 收藏夹 浏览足迹 我的拼团 地址管理 必备工具 帮助中心 意见反馈 联系客服 关于我们 退出登录
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..cd6b6aeebd201f829d7e89e56ac882f26fddde20
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/index/index.wxss
@@ -0,0 +1,147 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+.container {
+ background: #f4f4f4;
+ height: auto;
+ overflow: hidden;
+ width: 100%;
+}
+.profile-info {
+ background-color: #ab956d;
+ color: #f4f4f4;
+ display: flex;
+ align-items: center;
+ padding: 30rpx;
+ font-size: 28rpx;
+}
+.profile-info .avatar {
+ height: 148rpx;
+ width: 148rpx;
+ border-radius: 50%;
+}
+.profile-info .info {
+ flex: 1;
+ height: 85rpx;
+ padding-left: 31.25rpx;
+}
+.profile-info .name {
+ display: block;
+ height: 45rpx;
+ line-height: 45rpx;
+ color: #fff;
+ font-size: 37.5rpx;
+ margin-bottom: 10rpx;
+}
+.profile-info .level {
+ display: block;
+ height: 30rpx;
+ line-height: 30rpx;
+ margin-bottom: 10rpx;
+ color: #7f7f7f;
+ font-size: 30rpx;
+}
+.user_area {
+ /* border: 1px solid black; */
+ width: 100%;
+ height: 226rpx;
+ /* margin: 0 auto; */
+ margin-top: -8rpx;
+ background: #fff;
+ /* border-top: 1px solid #f4f4f4; */
+}
+.user_row {
+ /* border: 1px solid black; */
+ height: 86rpx;
+ line-height: 86rpx;
+ border-bottom: 1px solid #fafafa;
+}
+.user_row_left {
+ /* border: 1px solid #757575; */
+ float: left;
+ height: 86rpx;
+ font-weight: 550;
+ line-height: 86rpx;
+ margin-left: 35rpx;
+ font-size: 26rpx;
+ letter-spacing: 1rpx;
+}
+.user_row_right {
+ /* border: 1px solid #757575; */
+ float: right;
+ height: 40rpx;
+ width: 40rpx;
+ font-weight: 550;
+ line-height: 86rpx;
+ margin-top: 28rpx;
+ margin-right: 30rpx;
+}
+.user_column {
+ /* border: 1px solid black; */
+ height: 140rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.user_column_item {
+ width: 30%;
+ height: 140rpx;
+ background: #fff;
+ text-align: center;
+ position: relative;
+}
+.user_column_item_badge {
+ height: 28rpx;
+ width: 28rpx;
+ position: absolute;
+ background: #b4282d;
+ color: #fff;
+ border-radius: 50%;
+ margin-top: 20rpx;
+ margin-left: 40rpx;
+}
+.user_column_item_image {
+ width: 50rpx;
+ height: 50rpx;
+ margin-top: 30rpx;
+}
+.user_column_item_text {
+ /* border: 1px solid black; */
+ margin-top: 5rpx;
+ font-size: 24rpx;
+ color: #555;
+}
+.separate {
+ background: #e0e3da;
+ width: 100%;
+ height: 6rpx;
+}
+.user_column_item_phone {
+ width: 30%;
+ height: 140rpx;
+ text-align: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-wrap: wrap;
+ float: left;
+ background: #fff;
+ border-radius: 0;
+}
+.user_column_item_phone::after {
+ border: none;
+ border-radius: 0;
+}
+.logout {
+ margin-top: 30rpx;
+ height: 100rpx;
+ width: 100%;
+ line-height: 100rpx;
+ text-align: center;
+ background: #fff;
+ color: red;
+ font-size: 30rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.js
new file mode 100644
index 0000000000000000000000000000000000000000..763b0ffe1abfa8cc0130b412a1036e8fb0892225
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.js
@@ -0,0 +1,310 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/order/order"],{
+
+/***/ 92:
+/*!*************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2Forder%2Forder"} ***!
+ \*************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _order = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/order/order.vue */ 93));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_order.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 93:
+/*!****************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue ***!
+ \****************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _order_vue_vue_type_template_id_2d7ee642___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./order.vue?vue&type=template&id=2d7ee642& */ 94);
+/* harmony import */ var _order_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./order.vue?vue&type=script&lang=js& */ 96);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _order_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _order_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _order_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./order.vue?vue&type=style&index=0&lang=css& */ 98);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _order_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _order_vue_vue_type_template_id_2d7ee642___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _order_vue_vue_type_template_id_2d7ee642___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _order_vue_vue_type_template_id_2d7ee642___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/order/order.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 94:
+/*!***********************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?vue&type=template&id=2d7ee642& ***!
+ \***********************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_template_id_2d7ee642___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./order.vue?vue&type=template&id=2d7ee642& */ 95);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_template_id_2d7ee642___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_template_id_2d7ee642___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_template_id_2d7ee642___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_template_id_2d7ee642___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 95:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?vue&type=template&id=2d7ee642& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 96:
+/*!*****************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?vue&type=script&lang=js& ***!
+ \*****************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./order.vue?vue&type=script&lang=js& */ 97);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 97:
+/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?vue&type=script&lang=js& ***!
+ \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ orderList: [],
+ showType: 0,
+ page: 1,
+ limit: 10,
+ totalPages: 1,
+
+ gitem: {
+ id: '',
+ picUrl: '',
+ goodsName: '',
+ number: '' } };
+
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ var that = this;
+
+ try {
+ var tab = uni.getStorageSync('tab');
+ this.setData({
+ showType: tab });
+
+ } catch (e) {}
+ },
+ onReachBottom: function onReachBottom() {
+ if (this.totalPages > this.page) {
+ this.setData({
+ page: this.page + 1 });
+
+ this.getOrderList();
+ } else {
+ uni.showToast({
+ title: '没有更多订单了',
+ icon: 'none',
+ duration: 2000 });
+
+ return false;
+ }
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ this.getOrderList();
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ getOrderList: function getOrderList() {
+ var that = this;
+ util.request(api.OrderList, {
+ showType: that.showType,
+ page: that.page,
+ limit: that.limit }).
+ then(function (res) {
+ if (res.errno === 0) {
+ console.log(res.data);
+ that.setData({
+ orderList: that.orderList.concat(res.data.list),
+ totalPages: res.data.pages });
+
+ }
+ });
+ },
+
+ switchTab: function switchTab(event) {
+ var showType = event.currentTarget.dataset.index;
+ this.setData({
+ orderList: [],
+ showType: showType,
+ page: 1,
+ limit: 10,
+ totalPages: 1 });
+
+ this.getOrderList();
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 98:
+/*!*************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./order.vue?vue&type=style&index=0&lang=css& */ 99);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_order_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 99:
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/order/order.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[92,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/order/order.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.json
new file mode 100644
index 0000000000000000000000000000000000000000..aa73fde6dfdee3b282a0a4f7a00af4007df74b87
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "我的订单",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..9f9791be1354b306bde06b1b72e1ccaa95af3a48
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.wxml
@@ -0,0 +1 @@
+全部 待付款 待发货 待收货 待评价 还没有任何订单呢 {{"订单编号:"+item.orderSn}} {{item.orderStatusText}} {{gitem.goodsName}} {{"共"+gitem.number+"件商品"}} {{"实付:¥"+item.actualPrice}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..fb33b604bf92dcd4c82d2f1a2383463a42fe5c79
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/order/order.wxss
@@ -0,0 +1,144 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+.orders-switch {
+ width: 100%;
+ background: #fff;
+ height: 84rpx;
+ /* border-bottom: 1px solid rgba(0,0,0,.15); */
+}
+.orders-switch .item {
+ display: inline-block;
+ height: 82rpx;
+ width: 18%;
+ padding: 0 15rpx;
+ text-align: center;
+}
+.orders-switch .item .txt {
+ display: inline-block;
+ height: 82rpx;
+ padding: 0 20rpx;
+ line-height: 82rpx;
+ color: #9a9ba1;
+ font-size: 30rpx;
+ width: 170rpx;
+}
+.orders-switch .item.active .txt {
+ color: #ab956d;
+ border-bottom: 4rpx solid #ab956d;
+}
+.no-order {
+ width: 100%;
+ height: auto;
+ margin: 0 auto;
+}
+.no-order .c {
+ width: 100%;
+ height: auto;
+ margin-top: 400rpx;
+}
+.no-order .c text {
+ margin: 0 auto;
+ display: block;
+ width: 258rpx;
+ height: 29rpx;
+ line-height: 29rpx;
+ text-align: center;
+ font-size: 29rpx;
+ color: #999;
+}
+.orders {
+ height: auto;
+ width: 100%;
+ overflow: hidden;
+}
+.order {
+ margin-top: 20rpx;
+ background: #fff;
+}
+.order .h {
+ height: 83.3rpx;
+ line-height: 83.3rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ font-size: 30rpx;
+ color: #333;
+}
+.order .h .l {
+ float: left;
+}
+.order .h .r {
+ float: right;
+ color: #b4282d;
+ font-size: 24rpx;
+}
+.order .goods {
+ display: flex;
+ align-items: center;
+ height: 199rpx;
+ margin-left: 31.25rpx;
+}
+.order .goods .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+.order .goods .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+.order .goods .info {
+ height: 145.83rpx;
+ flex: 1;
+ padding-left: 20rpx;
+}
+.order .goods .name {
+ margin-top: 30rpx;
+ display: block;
+ height: 44rpx;
+ line-height: 44rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order .goods .number {
+ display: block;
+ height: 37rpx;
+ line-height: 37rpx;
+ color: #666;
+ font-size: 25rpx;
+}
+.order .goods .status {
+ width: 105rpx;
+ color: #b4282d;
+ font-size: 25rpx;
+}
+.order .b {
+ height: 103rpx;
+ line-height: 103rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-top: 1px solid #f4f4f4;
+ font-size: 30rpx;
+ color: #333;
+}
+.order .b .l {
+ float: left;
+}
+.order .b .r {
+ float: right;
+}
+.order .b .btn {
+ margin-top: 19rpx;
+ height: 64.5rpx;
+ line-height: 64.5rpx;
+ text-align: center;
+ padding: 0 20rpx;
+ border-radius: 5rpx;
+ font-size: 28rpx;
+ color: #fff;
+ background: #b4282d;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.js
new file mode 100644
index 0000000000000000000000000000000000000000..5621b511675eeba96acf62de5972445397dd1132
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.js
@@ -0,0 +1,538 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["pages/ucenter/orderDetail/orderDetail"],{
+
+/***/ 100:
+/*!*************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/main.js?{"page":"pages%2Fucenter%2ForderDetail%2ForderDetail"} ***!
+ \*************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(createPage) {__webpack_require__(/*! uni-pages */ 5);
+var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 3));
+var _orderDetail = _interopRequireDefault(__webpack_require__(/*! ./pages/ucenter/orderDetail/orderDetail.vue */ 101));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}wx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;
+createPage(_orderDetail.default);
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["createPage"]))
+
+/***/ }),
+
+/***/ 101:
+/*!****************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue ***!
+ \****************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _orderDetail_vue_vue_type_template_id_063f67fe___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./orderDetail.vue?vue&type=template&id=063f67fe& */ 102);
+/* harmony import */ var _orderDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./orderDetail.vue?vue&type=script&lang=js& */ 104);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _orderDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _orderDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _orderDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./orderDetail.vue?vue&type=style&index=0&lang=css& */ 106);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _orderDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _orderDetail_vue_vue_type_template_id_063f67fe___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _orderDetail_vue_vue_type_template_id_063f67fe___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _orderDetail_vue_vue_type_template_id_063f67fe___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "pages/ucenter/orderDetail/orderDetail.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 102:
+/*!***********************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?vue&type=template&id=063f67fe& ***!
+ \***********************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_template_id_063f67fe___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./orderDetail.vue?vue&type=template&id=063f67fe& */ 103);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_template_id_063f67fe___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_template_id_063f67fe___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_template_id_063f67fe___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_template_id_063f67fe___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 103:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?vue&type=template&id=063f67fe& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 104:
+/*!*****************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?vue&type=script&lang=js& ***!
+ \*****************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./orderDetail.vue?vue&type=script&lang=js& */ 105);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 105:
+/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?vue&type=script&lang=js& ***!
+ \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; //
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+//
+
+var util = __webpack_require__(/*! ../../../utils/util.js */ 9);
+
+var api = __webpack_require__(/*! ../../../config/api.js */ 10);var _default =
+
+{
+ data: function data() {
+ return {
+ orderId: 0,
+
+ orderInfo: {
+ addTime: '',
+ orderSn: '',
+ message: '',
+ actualPrice: '',
+ orderStatusText: '',
+ consignee: '',
+ mobile: '',
+ address: '',
+ goodsPrice: '',
+ freightPrice: '',
+ couponPrice: '',
+ expNo: '',
+ expName: '' },
+
+
+ orderGoods: [],
+
+ expressInfo: {
+ Traces: [] },
+
+
+ flag: false,
+
+ handleOption: {
+ cancel: '',
+ pay: '',
+ confirm: '',
+ delete: '',
+ refund: '',
+ aftersale: '',
+ comment: '',
+ rebuy: '' },
+
+
+ iitem: {
+ AcceptStation: '',
+ AcceptTime: '' } };
+
+
+ },
+ onLoad: function onLoad(options) {
+ // 页面初始化 options为页面跳转所带来的参数
+ this.setData({
+ orderId: options.id });
+
+ this.getOrderDetail();
+ },
+ onPullDownRefresh: function onPullDownRefresh() {
+ uni.showNavigationBarLoading(); //在标题栏中显示加载
+
+ this.getOrderDetail();
+ uni.hideNavigationBarLoading(); //完成停止加载
+
+ uni.stopPullDownRefresh(); //停止下拉刷新
+ },
+ onReady: function onReady() {
+ // 页面渲染完成
+ },
+ onShow: function onShow() {
+ // 页面显示
+ },
+ onHide: function onHide() {
+ // 页面隐藏
+ },
+ onUnload: function onUnload() {
+ // 页面关闭
+ },
+ methods: {
+ expandDetail: function expandDetail() {
+ var that = this;
+ this.setData({
+ flag: !that.flag });
+
+ },
+
+ getOrderDetail: function getOrderDetail() {
+ uni.showLoading({
+ title: '加载中' });
+
+ setTimeout(function () {
+ uni.hideLoading();
+ }, 2000);
+ var that = this;
+ util.request(api.OrderDetail, {
+ orderId: that.orderId }).
+ then(function (res) {
+ if (res.errno === 0) {
+ console.log(res.data);
+ that.setData({
+ orderInfo: res.data.orderInfo,
+ orderGoods: res.data.orderGoods,
+ handleOption: res.data.orderInfo.handleOption,
+ expressInfo: res.data.expressInfo });
+
+ }
+
+ uni.hideLoading();
+ });
+ },
+
+ // “去付款”按钮点击效果
+ payOrder: function payOrder() {
+ var that = this;
+ util.request(
+ api.OrderPrepay,
+ {
+ orderId: that.orderId },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ var payParam = res.data;
+ console.log('支付过程开始');
+ uni.requestPayment({
+ timeStamp: payParam.timeStamp,
+ nonceStr: payParam.nonceStr,
+ package: payParam.packageValue,
+ signType: payParam.signType,
+ paySign: payParam.paySign,
+ success: function success(res) {
+ console.log('支付过程成功');
+ util.redirect('/pages/ucenter/order/order');
+ },
+ fail: function fail(res) {
+ console.log('支付过程失败');
+ util.showErrorToast('支付失败');
+ },
+ complete: function complete(res) {
+ console.log('支付过程结束');
+ } });
+
+ }
+ });
+ },
+
+ // “取消订单”点击效果
+ cancelOrder: function cancelOrder() {
+ var that = this;
+ var orderInfo = that.orderInfo;
+ uni.showModal({
+ title: '',
+ content: '确定要取消此订单?',
+ success: function success(res) {
+ if (res.confirm) {
+ util.request(
+ api.OrderCancel,
+ {
+ orderId: orderInfo.id },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '取消订单成功' });
+
+ util.redirect('/pages/ucenter/order/order');
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ }
+ } });
+
+ },
+
+ // “取消订单并退款”点击效果
+ refundOrder: function refundOrder() {
+ var that = this;
+ var orderInfo = that.orderInfo;
+ uni.showModal({
+ title: '',
+ content: '确定要取消此订单?',
+ success: function success(res) {
+ if (res.confirm) {
+ util.request(
+ api.OrderRefund,
+ {
+ orderId: orderInfo.id },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '取消订单成功' });
+
+ util.redirect('/pages/ucenter/order/order');
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ }
+ } });
+
+ },
+
+ // “删除”点击效果
+ deleteOrder: function deleteOrder() {
+ var that = this;
+ var orderInfo = that.orderInfo;
+ uni.showModal({
+ title: '',
+ content: '确定要删除此订单?',
+ success: function success(res) {
+ if (res.confirm) {
+ util.request(
+ api.OrderDelete,
+ {
+ orderId: orderInfo.id },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '删除订单成功' });
+
+ util.redirect('/pages/ucenter/order/order');
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ }
+ } });
+
+ },
+
+ // “确认收货”点击效果
+ confirmOrder: function confirmOrder() {
+ var that = this;
+ var orderInfo = that.orderInfo;
+ uni.showModal({
+ title: '',
+ content: '确认收货?',
+ success: function success(res) {
+ if (res.confirm) {
+ util.request(
+ api.OrderConfirm,
+ {
+ orderId: orderInfo.id },
+
+ 'POST').
+ then(function (res) {
+ if (res.errno === 0) {
+ uni.showToast({
+ title: '确认收货成功!' });
+
+ util.redirect('/pages/ucenter/order/order');
+ } else {
+ util.showErrorToast(res.errmsg);
+ }
+ });
+ }
+ } });
+
+ },
+
+ // “申请售后”点击效果
+ aftersaleOrder: function aftersaleOrder() {
+ if (this.orderInfo.aftersaleStatus === 0) {
+ util.redirect('/pages/ucenter/aftersale/aftersale?id=' + this.orderId);
+ } else {
+ util.redirect('/pages/ucenter/aftersaleDetail/aftersaleDetail?id=' + this.orderId);
+ }
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 106:
+/*!*************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?vue&type=style&index=0&lang=css& ***!
+ \*************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./orderDetail.vue?vue&type=style&index=0&lang=css& */ 107);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_orderDetail_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 107:
+/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/pages/ucenter/orderDetail/orderDetail.vue?vue&type=style&index=0&lang=css& ***!
+ \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+},[[100,"common/runtime","common/vendor"]]]);
+//# sourceMappingURL=../../../../.sourcemap/mp-weixin/pages/ucenter/orderDetail/orderDetail.js.map
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.json
new file mode 100644
index 0000000000000000000000000000000000000000..95c7a3512338eba12613c9285826452f703e3377
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "订单详情",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..7e7bc58104453dad24b2e0b7c43a909b8e7965bb
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.wxml
@@ -0,0 +1 @@
+{{"下单时间:"+orderInfo.addTime}} {{"订单编号:"+orderInfo.orderSn}} {{"订单留言:"+orderInfo.message}} 实付:{{"¥"+orderInfo.actualPrice}} 取消订单 去付款 确认收货 删除订单 申请退款 申请售后 商品信息 {{orderInfo.orderStatusText}} {{item.goodsName}} {{"x"+item.number}} {{item.specifications}} {{"¥"+item.price}} 去评价 再次购买 {{orderInfo.consignee}} {{orderInfo.mobile}} {{orderInfo.address}} 商品合计: {{"¥"+orderInfo.goodsPrice}} 运费: {{"¥"+orderInfo.freightPrice}} 优惠: {{"¥-"+orderInfo.couponPrice}} 实付: {{"¥"+orderInfo.actualPrice}} {{"快递公司:"+orderInfo.expName}} {{"物流单号:"+orderInfo.expNo}} {{iitem.AcceptStation}} {{iitem.AcceptTime}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..2847ef33987a5c32e602d5e6ee1ff35b54019e2d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/pages/ucenter/orderDetail/orderDetail.wxss
@@ -0,0 +1,274 @@
+page {
+ height: 100%;
+ width: 100%;
+ background: #f4f4f4;
+}
+.order-info {
+ padding-top: 25rpx;
+ background: #fff;
+ height: auto;
+ overflow: hidden;
+}
+.item {
+ padding-left: 31.25rpx;
+ height: 42.5rpx;
+ padding-bottom: 12.5rpx;
+ line-height: 30rpx;
+ font-size: 30rpx;
+ color: #666;
+}
+.item-c {
+ margin-left: 31.25rpx;
+ border-top: 1px solid #f4f4f4;
+ height: 103rpx;
+ line-height: 103rpx;
+}
+.item-c .l {
+ float: left;
+}
+.item-c .r {
+ height: 103rpx;
+ float: right;
+ display: flex;
+ align-items: center;
+ padding-right: 16rpx;
+}
+.item-c .r .btn {
+ float: right;
+}
+.item-c .cost {
+ color: #b4282d;
+}
+.item-c .btn {
+ line-height: 66rpx;
+ border-radius: 5rpx;
+ text-align: center;
+ margin: 0 15rpx;
+ padding: 0 20rpx;
+ height: 66rpx;
+}
+.item-c .btn.active {
+ background: #b4282d;
+ color: #fff;
+}
+.order-goods {
+ margin-top: 20rpx;
+ background: #fff;
+}
+.order-goods .h {
+ height: 93.75rpx;
+ line-height: 93.75rpx;
+ margin-left: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+ padding-right: 31.25rpx;
+}
+.order-goods .h .label {
+ float: left;
+ font-size: 30rpx;
+ color: #333;
+}
+.order-goods .h .status {
+ float: right;
+ font-size: 30rpx;
+ color: #b4282d;
+}
+.order-goods .item {
+ display: flex;
+ align-items: center;
+ height: 192rpx;
+ margin-left: 31.25rpx;
+ padding-right: 31.25rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.order-goods .item:last-child {
+ border-bottom: none;
+}
+.order-goods .item .img {
+ height: 145.83rpx;
+ width: 145.83rpx;
+ background: #f4f4f4;
+}
+.order-goods .item .img image {
+ height: 145.83rpx;
+ width: 145.83rpx;
+}
+.order-goods .item .info {
+ flex: 1;
+ height: 145.83rpx;
+ margin-left: 20rpx;
+}
+.order-goods .item .t {
+ margin-top: 8rpx;
+ height: 33rpx;
+ line-height: 33rpx;
+ margin-bottom: 10.5rpx;
+}
+.order-goods .item .t .name {
+ display: block;
+ float: left;
+ height: 33rpx;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order-goods .item .t .number {
+ display: block;
+ float: right;
+ height: 33rpx;
+ text-align: right;
+ line-height: 33rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order-goods .item .attr {
+ height: 29rpx;
+ line-height: 29rpx;
+ color: #666;
+ margin-bottom: 25rpx;
+ font-size: 25rpx;
+}
+.order-goods .item .price {
+ display: block;
+ float: left;
+ height: 30rpx;
+ line-height: 30rpx;
+ color: #333;
+ font-size: 30rpx;
+}
+.order-goods .item .btn {
+ height: 50rpx;
+ line-height: 50rpx;
+ border-radius: 5rpx;
+ text-align: center;
+ display: block;
+ float: right;
+ margin: 0 15rpx;
+ padding: 0 20rpx;
+}
+.order-goods .item .btn.active {
+ background: #b4282d;
+ color: #fff;
+}
+.order-bottom {
+ margin-top: 20rpx;
+ padding-left: 31.25rpx;
+ height: auto;
+ overflow: hidden;
+ background: #fff;
+}
+.order-bottom .address {
+ height: 128rpx;
+ padding-top: 25rpx;
+ border-top: 1px solid #f4f4f4;
+ border-bottom: 1px solid #f4f4f4;
+}
+.order-bottom .address .t {
+ height: 35rpx;
+ line-height: 35rpx;
+ margin-bottom: 7.5rpx;
+}
+.order-bottom .address .name {
+ display: inline-block;
+ height: 35rpx;
+ width: 140rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+.order-bottom .address .mobile {
+ display: inline-block;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+.order-bottom .address .b {
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+.order-bottom .total {
+ height: 130rpx;
+ padding-top: 20rpx;
+ border-bottom: 1px solid #f4f4f4;
+}
+.order-bottom .total .t {
+ height: 30rpx;
+ line-height: 30rpx;
+ margin-bottom: 7.5rpx;
+ display: flex;
+}
+.order-bottom .total .label {
+ width: 150rpx;
+ display: inline-block;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+.order-bottom .total .txt {
+ flex: 1;
+ display: inline-block;
+ height: 35rpx;
+ line-height: 35rpx;
+ font-size: 30rpx;
+}
+.order-bottom .pay-fee {
+ height: 81rpx;
+ line-height: 81rpx;
+}
+.order-bottom .pay-fee .label {
+ display: inline-block;
+ width: 140rpx;
+ color: #b4282d;
+}
+.order-bottom .pay-fee .txt {
+ display: inline-block;
+ width: 140rpx;
+ color: #b4282d;
+}
+.order-express {
+ margin-top: 20rpx;
+ width: 100%;
+ height: 100rpx;
+ background: #fff;
+}
+.order-express .title {
+ float: left;
+ margin-bottom: 20rpx;
+ padding: 10rpx;
+}
+.order-express .ti {
+ float: right;
+ width: 52rpx;
+ height: 52rpx;
+ margin-right: 16rpx;
+ margin-top: 28rpx;
+}
+.order-express .t {
+ font-size: 29rpx;
+ margin-left: 10.25rpx;
+ color: #a78845;
+}
+.order-express .b {
+ font-size: 29rpx;
+ margin-left: 10.25rpx;
+ color: #a78845;
+}
+.order-express .traces {
+ padding: 17.5rpx;
+ background: #fff;
+ border-bottom: 1rpx solid #f1e6cdcc;
+}
+.order-express .trace {
+ padding-bottom: 17.5rpx;
+ padding-top: 17.5rpx;
+ background: #fff;
+}
+.order-express .acceptTime {
+ margin-top: 20rpx;
+ margin-right: 40rpx;
+ text-align: right;
+ font-size: 26rpx;
+}
+.order-express .acceptStation {
+ font-size: 26rpx;
+}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/project.config.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/project.config.json
new file mode 100644
index 0000000000000000000000000000000000000000..dfa38773615d6499e2c97448e7354dc0a1dee19e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/project.config.json
@@ -0,0 +1,32 @@
+{
+ "description": "项目配置文件。",
+ "packOptions": {
+ "ignore": []
+ },
+ "setting": {
+ "urlCheck": false,
+ "es6": true
+ },
+ "compileType": "miniprogram",
+ "libVersion": "",
+ "appid": "wx5e4cd1d279a5fca0",
+ "projectname": "litemall-wx",
+ "condition": {
+ "search": {
+ "current": -1,
+ "list": []
+ },
+ "conversation": {
+ "current": -1,
+ "list": []
+ },
+ "game": {
+ "current": -1,
+ "list": []
+ },
+ "miniprogram": {
+ "current": -1,
+ "list": []
+ }
+ }
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/project.private.config.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/project.private.config.json
new file mode 100644
index 0000000000000000000000000000000000000000..1957a3cd78e781169a1087293346a2ae780623c7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/project.private.config.json
@@ -0,0 +1,23 @@
+{
+ "condition": {
+ "plugin": {
+ "list": []
+ },
+ "game": {
+ "list": []
+ },
+ "gamePlugin": {
+ "list": []
+ },
+ "miniprogram": {
+ "list": [
+ {
+ "name": "登录",
+ "pathName": "pages/auth/login/login",
+ "query": "",
+ "scene": null
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/sitemap.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/sitemap.json
new file mode 100644
index 0000000000000000000000000000000000000000..940dce4609f59316d7da443f4d1582e85a7a559d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/sitemap.json
@@ -0,0 +1,21 @@
+{
+ "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
+ "rules": [
+ {
+ "action": "disallow",
+ "page": "pages/checkout/checkout"
+ },
+ {
+ "action": "disallow",
+ "page": "pages/payResult/payResult"
+ },
+ {
+ "action": "disallow",
+ "page": "pages/ucenter/index/index"
+ },
+ {
+ "action": "allow",
+ "page": "*"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/about.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/about.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbc47874543031cfff5a3f62bcfe910c066d41f1
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/about.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/address.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/address.png
new file mode 100644
index 0000000000000000000000000000000000000000..df6e3a93b86a36ff13720a7380db48113364653b
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/address.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/aftersale.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/aftersale.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed338acedb0920aa8a60635f4bfc3e7149f87158
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/aftersale.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/cart.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/cart.png
new file mode 100644
index 0000000000000000000000000000000000000000..3c9a08ce4a9fe378815caeadc1fa419d4c782cad
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/cart.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/cart@selected.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/cart@selected.png
new file mode 100644
index 0000000000000000000000000000000000000000..d46f0de182e0b9e70a3291ca5036c8cc2454f73f
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/cart@selected.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/category.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/category.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ffb7c844eb9f51a2f2bf1fd6a78b6793532085b
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/category.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/category@selected.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/category@selected.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9e7efc0d386f4ab54fdc034d5dbb965b785a74a
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/category@selected.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/collect.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/collect.png
new file mode 100644
index 0000000000000000000000000000000000000000..b156033680082e1d36801e78625e2df2cbf53c25
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/collect.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/comment.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/comment.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b2722fa84051e3a8b284bff61ec1e37913beb0d
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/comment.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/coupon.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/coupon.png
new file mode 100644
index 0000000000000000000000000000000000000000..7efd62bf47c0a9793f7f57bdb6a14a168f7fd6bb
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/coupon.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/customer.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/customer.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4fb4ece0cec36d5623fc381dd4225df11841b8b
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/customer.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/feedback.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/feedback.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa80d4f9eef7790818d16d1231ed6f4fce9b0ccf
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/feedback.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/footprint.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/footprint.png
new file mode 100644
index 0000000000000000000000000000000000000000..32d24f7a808220d57572d402dd343333b876bc43
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/footprint.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/friend.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/friend.png
new file mode 100644
index 0000000000000000000000000000000000000000..b8a372b2c8fa353452c5b677018d3a1f8b1cd2d5
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/friend.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/group.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/group.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8eb0a04d2095c3e3904bc6ca3d0af2376717334
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/group.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/help.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/help.png
new file mode 100644
index 0000000000000000000000000000000000000000..4adc4b80b352757bfe628d4879445fafaa0f1ab5
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/help.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/home.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/home.png
new file mode 100644
index 0000000000000000000000000000000000000000..4e3df7884636bb7551563beeb09582844e66e2d0
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/home.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/home@selected.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/home@selected.png
new file mode 100644
index 0000000000000000000000000000000000000000..b1d3723b3b3c2f6d124ff7b37193110adaed9274
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/home@selected.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/hot.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/hot.png
new file mode 100644
index 0000000000000000000000000000000000000000..3bc7a7266db7034bbbfef83ba386495e602a3bfd
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/hot.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/icon_error.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/icon_error.png
new file mode 100644
index 0000000000000000000000000000000000000000..b13c94ba6c9c11713b10a7d31c6a4364a4cf8a98
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/icon_error.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/mobile.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/mobile.png
new file mode 100644
index 0000000000000000000000000000000000000000..d48b2bc7a2352886cf012a9794b26f40538d5b10
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/mobile.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/my.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/my.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a401a8b34707cb5dfe3999f28b2439f4bb4d458
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/my.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/my@selected.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/my@selected.png
new file mode 100644
index 0000000000000000000000000000000000000000..32aa4aada4723fcb8dfe9938689bbc6f5ad71309
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/my@selected.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/new.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/new.png
new file mode 100644
index 0000000000000000000000000000000000000000..e003f91ccdee64998cab25d32178f6130e811f2b
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/new.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/pendpay.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/pendpay.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ab0c263a0dbc22aa76e8315e481ff6b4ee849e3
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/pendpay.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/receive.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/receive.png
new file mode 100644
index 0000000000000000000000000000000000000000..bad66f4c372de5f1ebc14c373db83ee19ee65540
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/receive.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/send.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/send.png
new file mode 100644
index 0000000000000000000000000000000000000000..d8e481810b14891407863b1e990b5cb8aa3efb64
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/send.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/wechat.png b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/wechat.png
new file mode 100644
index 0000000000000000000000000000000000000000..222857cbe34f8428de10b2ce6683784d6122329e
Binary files /dev/null and b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/static/images/wechat.png differ
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.js
new file mode 100644
index 0000000000000000000000000000000000000000..7939bcb12d805dd1db36350c9b26f7e20bccb994
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.js
@@ -0,0 +1,469 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["uni_modules/mp-html/components/mp-html/mp-html"],{
+
+/***/ 348:
+/*!*************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue ***!
+ \*************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _mp_html_vue_vue_type_template_id_0cfd6ca1___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mp-html.vue?vue&type=template&id=0cfd6ca1& */ 349);
+/* harmony import */ var _mp_html_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./mp-html.vue?vue&type=script&lang=js& */ 351);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _mp_html_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _mp_html_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _mp_html_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./mp-html.vue?vue&type=style&index=0&lang=css& */ 354);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _mp_html_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _mp_html_vue_vue_type_template_id_0cfd6ca1___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _mp_html_vue_vue_type_template_id_0cfd6ca1___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _mp_html_vue_vue_type_template_id_0cfd6ca1___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+component.options.__file = "uni_modules/mp-html/components/mp-html/mp-html.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 349:
+/*!********************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?vue&type=template&id=0cfd6ca1& ***!
+ \********************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_template_id_0cfd6ca1___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./mp-html.vue?vue&type=template&id=0cfd6ca1& */ 350);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_template_id_0cfd6ca1___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_template_id_0cfd6ca1___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_template_id_0cfd6ca1___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_template_id_0cfd6ca1___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 350:
+/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?vue&type=template&id=0cfd6ca1& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 351:
+/*!**************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?vue&type=script&lang=js& ***!
+ \**************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./mp-html.vue?vue&type=script&lang=js& */ 352);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 352:
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var node = function node() {__webpack_require__.e(/*! require.ensure | uni_modules/mp-html/components/mp-html/node/node */ "uni_modules/mp-html/components/mp-html/node/node").then((function () {return resolve(__webpack_require__(/*! ./node/node */ 356));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+var plugins = [];
+var Parser = __webpack_require__(/*! ./parser */ 353);var _default =
+
+
+
+{
+ name: 'mp-html',
+ data: function data() {
+ return {
+ nodes: [] };
+
+
+
+
+ },
+ props: {
+ containerStyle: {
+ type: String,
+ default: '' },
+
+ content: String,
+ copyLink: {
+ type: [Boolean, String],
+ default: true },
+
+ domain: String,
+ errorImg: {
+ type: String,
+ default: '' },
+
+ lazyLoad: {
+ type: [Boolean, String],
+ default: false },
+
+ loadingImg: {
+ type: String,
+ default: '' },
+
+ pauseVideo: {
+ type: [Boolean, String],
+ default: true },
+
+ previewImg: {
+ type: [Boolean, String],
+ default: true },
+
+ scrollTable: [Boolean, String],
+ selectable: [Boolean, String],
+ setTitle: {
+ type: [Boolean, String],
+ default: true },
+
+ showImgMenu: {
+ type: [Boolean, String],
+ default: true },
+
+ tagStyle: Object,
+ useAnchor: [Boolean, Number] },
+
+
+ components: {
+ node: node },
+
+
+ watch: {
+ content: function content(_content) {
+ this.setContent(_content);
+ } },
+
+ created: function created() {
+ this.plugins = [];
+ for (var i = plugins.length; i--;) {
+ this.plugins.push(new plugins[i](this));
+ }
+ },
+ mounted: function mounted() {
+ if (this.content && !this.nodes.length) {
+ this.setContent(this.content);
+ }
+ },
+ beforeDestroy: function beforeDestroy() {
+ this._hook('onDetached');
+ clearInterval(this._timer);
+ },
+ methods: {
+ /**
+ * @description 将锚点跳转的范围限定在一个 scroll-view 内
+ * @param {Object} page scroll-view 所在页面的示例
+ * @param {String} selector scroll-view 的选择器
+ * @param {String} scrollTop scroll-view scroll-top 属性绑定的变量名
+ */
+ in: function _in(page, selector, scrollTop) {
+
+ if (page && selector && scrollTop) {
+ this._in = {
+ page: page,
+ selector: selector,
+ scrollTop: scrollTop };
+
+ }
+
+ },
+
+ /**
+ * @description 锚点跳转
+ * @param {String} id 要跳转的锚点 id
+ * @param {Number} offset 跳转位置的偏移量
+ * @returns {Promise}
+ */
+ navigateTo: function navigateTo(id, offset) {var _this = this;
+ return new Promise(function (resolve, reject) {
+ if (!_this.useAnchor) {
+ reject(Error('Anchor is disabled'));
+ return;
+ }
+ offset = offset || parseInt(_this.useAnchor) || 0;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ var deep = ' ';
+
+ deep = '>>>';
+
+ var selector = uni.createSelectorQuery().
+
+ in(_this._in ? _this._in.page : _this).
+
+ select((_this._in ? _this._in.selector : '._root') + (id ? "".concat(deep, "#").concat(id) : '')).boundingClientRect();
+ if (_this._in) {
+ selector.select(_this._in.selector).scrollOffset().
+ select(_this._in.selector).boundingClientRect();
+ } else {
+ // 获取 scroll-view 的位置和滚动距离
+ selector.selectViewport().scrollOffset(); // 获取窗口的滚动距离
+ }
+ selector.exec(function (res) {
+ if (!res[0]) {
+ reject(Error('Label not found'));
+ return;
+ }
+ var scrollTop = res[1].scrollTop + res[0].top - (res[2] ? res[2].top : 0) + offset;
+ if (_this._in) {
+ // scroll-view 跳转
+ _this._in.page[_this._in.scrollTop] = scrollTop;
+ } else {
+ // 页面跳转
+ uni.pageScrollTo({
+ scrollTop: scrollTop,
+ duration: 300 });
+
+ }
+ resolve();
+ });
+
+ });
+ },
+
+ /**
+ * @description 获取文本内容
+ * @return {String}
+ */
+ getText: function getText(nodes) {
+ var text = '';
+ (function traversal(nodes) {
+ for (var i = 0; i < nodes.length; i++) {
+ var node = nodes[i];
+ if (node.type === 'text') {
+ text += node.text.replace(/&/g, '&');
+ } else if (node.name === 'br') {
+ text += '\n';
+ } else {
+ // 块级标签前后加换行
+ var isBlock = node.name === 'p' || node.name === 'div' || node.name === 'tr' || node.name === 'li' || node.name[0] === 'h' && node.name[1] > '0' && node.name[1] < '7';
+ if (isBlock && text && text[text.length - 1] !== '\n') {
+ text += '\n';
+ }
+ // 递归获取子节点的文本
+ if (node.children) {
+ traversal(node.children);
+ }
+ if (isBlock && text[text.length - 1] !== '\n') {
+ text += '\n';
+ } else if (node.name === 'td' || node.name === 'th') {
+ text += '\t';
+ }
+ }
+ }
+ })(nodes || this.nodes);
+ return text;
+ },
+
+ /**
+ * @description 获取内容大小和位置
+ * @return {Promise}
+ */
+ getRect: function getRect() {var _this2 = this;
+ return new Promise(function (resolve, reject) {
+ uni.createSelectorQuery().
+
+ in(_this2).
+
+ select('#_root').boundingClientRect().exec(function (res) {return res[0] ? resolve(res[0]) : reject(Error('Root label not found'));});
+ });
+ },
+
+ /**
+ * @description 设置内容
+ * @param {String} content html 内容
+ * @param {Boolean} append 是否在尾部追加
+ */
+ setContent: function setContent(content, append) {var _this3 = this;
+ if (!append || !this.imgList) {
+ this.imgList = [];
+ }
+ var nodes = new Parser(this).parse(content);
+
+
+
+
+
+ this.$set(this, 'nodes', append ? (this.nodes || []).concat(nodes) : nodes);
+
+
+ this._videos = [];
+ this.$nextTick(function () {
+ _this3._hook('onLoad');
+ _this3.$emit('load');
+ });
+
+ // 等待图片加载完毕
+ var height;
+ clearInterval(this._timer);
+ this._timer = setInterval(function () {
+ _this3.getRect().then(function (rect) {
+ // 350ms 总高度无变化就触发 ready 事件
+ if (rect.height === height) {
+ _this3.$emit('ready', rect);
+ clearInterval(_this3._timer);
+ }
+ height = rect.height;
+ }).catch(function () {});
+ }, 350);
+
+ },
+
+ /**
+ * @description 调用插件钩子函数
+ */
+ _hook: function _hook(name) {
+ for (var i = plugins.length; i--;) {
+ if (this.plugins[i][name]) {
+ this.plugins[i][name]();
+ }
+ }
+ } } };exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 354:
+/*!**********************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?vue&type=style&index=0&lang=css& ***!
+ \**********************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./mp-html.vue?vue&type=style&index=0&lang=css& */ 355);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_mp_html_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 355:
+/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/mp-html.vue?vue&type=style&index=0&lang=css& ***!
+ \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ })
+
+}]);
+//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.js.map
+;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([
+ 'uni_modules/mp-html/components/mp-html/mp-html-create-component',
+ {
+ 'uni_modules/mp-html/components/mp-html/mp-html-create-component':(function(module, exports, __webpack_require__){
+ __webpack_require__('1')['createComponent'](__webpack_require__(348))
+ })
+ },
+ [['uni_modules/mp-html/components/mp-html/mp-html-create-component']]
+]);
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.json
new file mode 100644
index 0000000000000000000000000000000000000000..a78c5e0095b0bbba43daf82395463baba7ba2252
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "node": "/uni_modules/mp-html/components/mp-html/node/node"
+ }
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..4e7487c82d12cb01fd046c258a9a98a054172fe4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.wxml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..057c9010be67d8ca61552f61236f738cbdfe7202
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/mp-html.wxss
@@ -0,0 +1,432 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+/* 根节点样式 */
+._root {
+ padding: 1px 0;
+ overflow-x: auto;
+ overflow-y: hidden;
+ -webkit-overflow-scrolling: touch;
+}
+/* 长按复制 */
+._select {
+ -webkit-user-select: text;
+ user-select: text;
+}
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.js
new file mode 100644
index 0000000000000000000000000000000000000000..81464f935bb07eaee2d2455f2750ac62798f7803
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.js
@@ -0,0 +1,546 @@
+(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["uni_modules/mp-html/components/mp-html/node/node"],{
+
+/***/ 356:
+/*!***************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue ***!
+ \***************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_vue_vue_type_template_id_35a45afb_filter_modules_eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562_2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK_2FlkKbkvb_2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ_3D_3D___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node.vue?vue&type=template&id=35a45afb&filter-modules=eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562%2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK%2FlkKbkvb%2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ%3D%3D& */ 357);
+/* harmony import */ var _node_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node.vue?vue&type=script&lang=js& */ 359);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+/* harmony import */ var _node_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./node.vue?vue&type=style&index=0&lang=css& */ 361);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js */ 14);
+/* harmony import */ var _node_vue_vue_type_custom_index_0_blockType_script_module_handler_lang_wxs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./node.vue?vue&type=custom&index=0&blockType=script&module=handler&lang=wxs */ 363);
+
+var renderjs
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _node_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _node_vue_vue_type_template_id_35a45afb_filter_modules_eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562_2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK_2FlkKbkvb_2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ_3D_3D___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _node_vue_vue_type_template_id_35a45afb_filter_modules_eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562_2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK_2FlkKbkvb_2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ_3D_3D___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ null,
+ null,
+ false,
+ _node_vue_vue_type_template_id_35a45afb_filter_modules_eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562_2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK_2FlkKbkvb_2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ_3D_3D___WEBPACK_IMPORTED_MODULE_0__["components"],
+ renderjs
+)
+
+/* custom blocks */
+
+if (typeof _node_vue_vue_type_custom_index_0_blockType_script_module_handler_lang_wxs__WEBPACK_IMPORTED_MODULE_4__["default"] === 'function') Object(_node_vue_vue_type_custom_index_0_blockType_script_module_handler_lang_wxs__WEBPACK_IMPORTED_MODULE_4__["default"])(component)
+
+component.options.__file = "uni_modules/mp-html/components/mp-html/node/node.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ 357:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?vue&type=template&id=35a45afb&filter-modules=eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562%2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK%2FlkKbkvb%2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ%3D%3D& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_template_id_35a45afb_filter_modules_eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562_2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK_2FlkKbkvb_2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ_3D_3D___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=template&id=35a45afb&filter-modules=eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562%2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK%2FlkKbkvb%2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ%3D%3D& */ 358);
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_template_id_35a45afb_filter_modules_eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562_2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK_2FlkKbkvb_2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ_3D_3D___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_template_id_35a45afb_filter_modules_eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562_2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK_2FlkKbkvb_2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ_3D_3D___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_template_id_35a45afb_filter_modules_eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562_2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK_2FlkKbkvb_2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ_3D_3D___WEBPACK_IMPORTED_MODULE_0__["recyclableRender"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "components", function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_16_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_template_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_app_loader_page_meta_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_template_id_35a45afb_filter_modules_eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562_2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK_2FlkKbkvb_2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ_3D_3D___WEBPACK_IMPORTED_MODULE_0__["components"]; });
+
+
+
+/***/ }),
+
+/***/ 358:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--16-0!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/template.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-app-loader/page-meta.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?vue&type=template&id=35a45afb&filter-modules=eyJoYW5kbGVyIjp7InR5cGUiOiJzY3JpcHQiLCJjb250ZW50IjoiLy8g6KGM5YaF5qCH562%2B5YiX6KGoXHJcbnZhciBpbmxpbmVUYWdzID0ge1xyXG4gIGFiYnI6IHRydWUsXHJcbiAgYjogdHJ1ZSxcclxuICBiaWc6IHRydWUsXHJcbiAgY29kZTogdHJ1ZSxcclxuICBkZWw6IHRydWUsXHJcbiAgZW06IHRydWUsXHJcbiAgaTogdHJ1ZSxcclxuICBpbnM6IHRydWUsXHJcbiAgbGFiZWw6IHRydWUsXHJcbiAgcTogdHJ1ZSxcclxuICBzbWFsbDogdHJ1ZSxcclxuICBzcGFuOiB0cnVlLFxyXG4gIHN0cm9uZzogdHJ1ZSxcclxuICBzdWI6IHRydWUsXHJcbiAgc3VwOiB0cnVlXHJcbn1cclxuLyoqXHJcbiAqIEBkZXNjcmlwdGlvbiDmmK%2FlkKbkvb%2FnlKggcmljaC10ZXh0IOaYvuekuuWJqeS9meWGheWuuVxyXG4gKi9cclxubW9kdWxlLmV4cG9ydHMgPSB7XHJcbiAgdXNlOiBmdW5jdGlvbiAoaXRlbSkge1xyXG4gICAgaWYgKGl0ZW0uYykgcmV0dXJuIGZhbHNlXHJcbiAgICAvLyDlvq7kv6HlkowgUVEg55qEIHJpY2gtdGV4dCBpbmxpbmUg5biD5bGA5peg5pWIXHJcbiAgICByZXR1cm4gIWlubGluZVRhZ3NbaXRlbS5uYW1lXSAmJiAoaXRlbS5hdHRycy5zdHlsZSB8fCAnJykuaW5kZXhPZignZGlzcGxheTppbmxpbmUnKSA9PSAtMVxyXG4gIH1cclxufSIsInN0YXJ0Ijo1MDYwLCJhdHRycyI6eyJtb2R1bGUiOiJoYW5kbGVyIiwibGFuZyI6Ind4cyJ9LCJlbmQiOjU1NzV9fQ%3D%3D& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns, recyclableRender, components */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "recyclableRender", function() { return recyclableRender; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "components", function() { return components; });
+var components
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+}
+var recyclableRender = false
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ 359:
+/*!****************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/babel-loader/lib!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=script&lang=js& */ 360);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_babel_loader_lib_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_12_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_script_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 360:
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--12-1!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/script.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?vue&type=script&lang=js& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var node = function node() {Promise.resolve(/*! require.ensure */).then((function () {return resolve(__webpack_require__(/*! ./node */ 356));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default2 =
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{
+ name: 'node',
+ options: {
+
+ virtualHost: true },
+
+
+
+
+
+ data: function data() {
+ return {
+ ctrl: {} };
+
+ },
+ props: {
+ name: String,
+ attrs: {
+ type: Object,
+ default: function _default() {
+ return {};
+ } },
+
+ childs: Array,
+ opts: Array },
+
+ components: {
+
+ node: node },
+
+ mounted: function mounted() {var _this = this;
+ this.$nextTick(function () {
+ for (_this.root = _this.$parent; _this.root.$options.name !== 'mp-html'; _this.root = _this.root.$parent) {;}
+ });
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ },
+ beforeDestroy: function beforeDestroy() {
+
+
+
+
+
+ },
+ methods: {
+
+ toJSON: function toJSON() {},
+
+ /**
+ * @description 播放视频事件
+ * @param {Event} e
+ */
+ play: function play(e) {
+
+ if (this.root.pauseVideo) {
+ var flag = false;var id = e.target.id;
+ for (var i = this.root._videos.length; i--;) {
+ if (this.root._videos[i].id === id) {
+ flag = true;
+ } else {
+ this.root._videos[i].pause(); // 自动暂停其他视频
+ }
+ }
+ // 将自己加入列表
+ if (!flag) {
+ var ctx = uni.createVideoContext(id,
+
+ this);
+
+
+ ctx.id = id;
+ this.root._videos.push(ctx);
+ }
+ }
+
+ },
+
+ /**
+ * @description 图片点击事件
+ * @param {Event} e
+ */
+ imgTap: function imgTap(e) {
+ var node = this.childs[e.currentTarget.dataset.i];
+ if (node.a) {
+ this.linkTap(node.a);
+ return;
+ }
+ if (node.attrs.ignore) return;
+
+
+
+ this.root.$emit('imgtap', node.attrs);
+ // 自动预览图片
+ if (this.root.previewImg) {
+ uni.previewImage({
+ current: parseInt(node.attrs.i),
+ urls: this.root.imgList });
+
+ }
+ },
+
+ /**
+ * @description 图片长按
+ */
+ imgLongTap: function imgLongTap(e) {
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ },
+
+ /**
+ * @description 图片加载完成事件
+ * @param {Event} e
+ */
+ imgLoad: function imgLoad(e) {
+ var i = e.currentTarget.dataset.i;
+
+ if (!this.childs[i].w) {
+ // 设置原宽度
+ this.$set(this.ctrl, i, e.detail.width);
+ } else if (this.opts[1] && !this.ctrl[i] || this.ctrl[i] === -1) {
+ // 加载完毕,取消加载中占位图
+ this.$set(this.ctrl, i, 1);
+ }
+ },
+
+ /**
+ * @description 链接点击事件
+ * @param {Event} e
+ */
+ linkTap: function linkTap(e) {
+ var node = e.currentTarget ? this.childs[e.currentTarget.dataset.i] : {};
+ var attrs = node.attrs || e;
+ var href = attrs.href;
+ this.root.$emit('linktap', Object.assign({
+ innerText: this.root.getText(node.children || []) // 链接内的文本内容
+ }, attrs));
+ if (href) {
+ if (href[0] === '#') {
+ // 跳转锚点
+ this.root.navigateTo(href.substring(1)).catch(function () {});
+ } else if (href.split('?')[0].includes('://')) {
+ // 复制外部链接
+ if (this.root.copyLink) {
+
+
+
+
+ uni.setClipboardData({
+ data: href,
+ success: function success() {return (
+ uni.showToast({
+ title: '链接已复制' }));} });
+
+
+
+
+
+
+ }
+ } else {
+ // 跳转页面
+ uni.navigateTo({
+ url: href,
+ fail: function fail() {
+ uni.switchTab({
+ url: href,
+ fail: function fail() {} });
+
+ } });
+
+ }
+ }
+ },
+
+ /**
+ * @description 错误事件
+ * @param {Event} e
+ */
+ mediaError: function mediaError(e) {
+ var i = e.currentTarget.dataset.i;
+ var node = this.childs[i];
+ // 加载其他源
+ if (node.name === 'video' || node.name === 'audio') {
+ var index = (this.ctrl[i] || 0) + 1;
+ if (index > node.src.length) {
+ index = 0;
+ }
+ if (index < node.src.length) {
+ this.$set(this.ctrl, i, index);
+ return;
+ }
+ } else if (node.name === 'img' && this.opts[2]) {
+ // 显示错误占位图
+ this.$set(this.ctrl, i, -1);
+ }
+ if (this.root) {
+ this.root.$emit('error', {
+ source: node.name,
+ attrs: node.attrs,
+ errMsg: e.detail.errMsg });
+
+ }
+ } } };exports.default = _default2;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 1)["default"]))
+
+/***/ }),
+
+/***/ 361:
+/*!************************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?vue&type=style&index=0&lang=css& ***!
+ \************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/postcss-loader/src??ref--6-oneOf-1-3!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=style&index=0&lang=css& */ 362);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_loaders_stylePostLoader_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_preprocess_loader_index_js_ref_6_oneOf_1_2_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_3_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ 362:
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/mini-css-extract-plugin/dist/loader.js??ref--6-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-preprocess-loader??ref--6-oneOf-1-2!./node_modules/postcss-loader/src??ref--6-oneOf-1-3!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?vue&type=style&index=0&lang=css& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// extracted by mini-css-extract-plugin
+ if(false) { var cssReload; }
+
+
+/***/ }),
+
+/***/ 363:
+/*!********************************************************************************************************************************************************************************!*\
+ !*** D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?vue&type=custom&index=0&blockType=script&module=handler&lang=wxs ***!
+ \********************************************************************************************************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_filter_loader_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_custom_index_0_blockType_script_module_handler_lang_wxs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!../../../../../../../../../Program Files/HBuilderX/plugins/uniapp-cli/node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!./node.vue?vue&type=custom&index=0&blockType=script&module=handler&lang=wxs */ 364);
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_webpack_uni_filter_loader_index_js_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_vue_cli_plugin_uni_packages_vue_loader_lib_index_js_vue_loader_options_Program_Files_HBuilderX_plugins_uniapp_cli_node_modules_dcloudio_webpack_uni_mp_loader_lib_style_js_node_vue_vue_type_custom_index_0_blockType_script_module_handler_lang_wxs__WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ 364:
+/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/webpack-uni-filter-loader!./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib??vue-loader-options!./node_modules/@dcloudio/webpack-uni-mp-loader/lib/style.js!D:/projects/beijingcanghe/litemall/litemall-wx_uni/uni_modules/mp-html/components/mp-html/node/node.vue?vue&type=custom&index=0&blockType=script&module=handler&lang=wxs ***!
+ \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony default export */ __webpack_exports__["default"] = (function (Component) {
+ if(!Component.options.wxsCallMethods){
+ Component.options.wxsCallMethods = []
+ }
+
+ });
+
+/***/ })
+
+}]);
+//# sourceMappingURL=../../../../../../.sourcemap/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.js.map
+;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([
+ 'uni_modules/mp-html/components/mp-html/node/node-create-component',
+ {
+ 'uni_modules/mp-html/components/mp-html/node/node-create-component':(function(module, exports, __webpack_require__){
+ __webpack_require__('1')['createComponent'](__webpack_require__(356))
+ })
+ },
+ [['uni_modules/mp-html/components/mp-html/node/node-create-component']]
+]);
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.json
new file mode 100644
index 0000000000000000000000000000000000000000..a78c5e0095b0bbba43daf82395463baba7ba2252
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "node": "/uni_modules/mp-html/components/mp-html/node/node"
+ }
+}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..2af0813e2c140a954123e9e1ff80bf891d5970a7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.wxml
@@ -0,0 +1,31 @@
+
+// 行内标签列表
+var inlineTags = {
+ abbr: true,
+ b: true,
+ big: true,
+ code: true,
+ del: true,
+ em: true,
+ i: true,
+ ins: true,
+ label: true,
+ q: true,
+ small: true,
+ span: true,
+ strong: true,
+ sub: true,
+ sup: true
+}
+/**
+ * @description 是否使用 rich-text 显示剩余内容
+ */
+module.exports = {
+ use: function (item) {
+ if (item.c) return false
+ // 微信和 QQ 的 rich-text inline 布局无效
+ return !inlineTags[item.name] && (item.attrs.style || '').indexOf('display:inline') == -1
+ }
+}
+
+{{n.text}} \n
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..3e48bf276ebaf6e40c33d0c91e2f5e312fe3ebd9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/uni_modules/mp-html/components/mp-html/node/node.wxss
@@ -0,0 +1,492 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+/* a 标签默认效果 */
+._a {
+ padding: 1.5px 0 1.5px 0;
+ color: #366092;
+ word-break: break-all;
+}
+/* a 标签点击态效果 */
+._hover {
+ text-decoration: underline;
+ opacity: 0.7;
+}
+/* 图片默认效果 */
+._img {
+ max-width: 100%;
+ -webkit-touch-callout: none;
+}
+/* 内部样式 */
+._block {
+ display: block;
+}
+._b,
+._strong {
+ font-weight: bold;
+}
+._code {
+ font-family: monospace;
+}
+._del {
+ text-decoration: line-through;
+}
+._em,
+._i {
+ font-style: italic;
+}
+._h1 {
+ font-size: 2em;
+}
+._h2 {
+ font-size: 1.5em;
+}
+._h3 {
+ font-size: 1.17em;
+}
+._h5 {
+ font-size: 0.83em;
+}
+._h6 {
+ font-size: 0.67em;
+}
+._h1,
+._h2,
+._h3,
+._h4,
+._h5,
+._h6 {
+ display: block;
+ font-weight: bold;
+}
+._image {
+ height: 1px;
+}
+._ins {
+ text-decoration: underline;
+}
+._li {
+ display: list-item;
+}
+._ol {
+ list-style-type: decimal;
+}
+._ol,
+._ul {
+ display: block;
+ padding-left: 40px;
+ margin: 1em 0;
+}
+._q::before {
+ content: '"';
+}
+._q::after {
+ content: '"';
+}
+._sub {
+ font-size: smaller;
+ vertical-align: sub;
+}
+._sup {
+ font-size: smaller;
+ vertical-align: super;
+}
+._thead,
+._tbody,
+._tfoot {
+ display: table-row-group;
+}
+._tr {
+ display: table-row;
+}
+._td,
+._th {
+ display: table-cell;
+ vertical-align: middle;
+}
+._th {
+ font-weight: bold;
+ text-align: center;
+}
+._ul {
+ list-style-type: disc;
+}
+._ul ._ul {
+ margin: 0;
+ list-style-type: circle;
+}
+._ul ._ul ._ul {
+ list-style-type: square;
+}
+._abbr,
+._b,
+._code,
+._del,
+._em,
+._i,
+._ins,
+._label,
+._q,
+._span,
+._strong,
+._sub,
+._sup {
+ display: inline;
+}
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..58e866d9588843db4c961c8ca4112b8da7124a14
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.js
@@ -0,0 +1,70 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+VantComponent({
+ mixins: [button],
+ props: {
+ show: Boolean,
+ title: String,
+ cancelText: String,
+ description: String,
+ round: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ actions: {
+ type: Array,
+ value: [],
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickAction: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ onSelect(event) {
+ const { index } = event.currentTarget.dataset;
+ const { actions, closeOnClickAction, canIUseGetUserProfile } = this.data;
+ const item = actions[index];
+ if (item) {
+ this.$emit('select', item);
+ if (closeOnClickAction) {
+ this.onClose();
+ }
+ if (item.openType === 'getUserInfo' && canIUseGetUserProfile) {
+ wx.getUserProfile({
+ desc: item.getUserProfileDesc || ' ',
+ complete: (userProfile) => {
+ this.$emit('getuserinfo', userProfile);
+ },
+ });
+ }
+ }
+ },
+ onCancel() {
+ this.$emit('cancel');
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ onClickOverlay() {
+ this.$emit('click-overlay');
+ this.onClose();
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..19bf98915f6b60674e153fca262fc9e6dd595ea1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.json
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-popup": "../popup/index",
+ "van-loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..b04cc3a3dc36fcf8f7521be7b84ee7cc2aca70cb
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.wxml
@@ -0,0 +1,69 @@
+
+
+
+
+ {{ title }}
+
+
+
+ {{ description }}
+
+
+
+
+
+
+
+
+
+ {{ cancelText }}
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..eedd361b0d219dfb80f6dda0658baf34a40de83b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/action-sheet/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-action-sheet{color:var(--action-sheet-item-text-color,#323233);max-height:var(--action-sheet-max-height,90%)!important}.van-action-sheet__cancel,.van-action-sheet__item{background-color:var(--action-sheet-item-background,#fff);font-size:var(--action-sheet-item-font-size,16px);line-height:var(--action-sheet-item-line-height,22px);padding:14px 16px;text-align:center}.van-action-sheet__cancel--hover,.van-action-sheet__item--hover{background-color:#f2f3f5}.van-action-sheet__cancel:after,.van-action-sheet__item:after{border-width:0}.van-action-sheet__cancel{color:var(--action-sheet-cancel-text-color,#646566)}.van-action-sheet__gap{background-color:var(--action-sheet-cancel-padding-color,#f7f8fa);display:block;height:var(--action-sheet-cancel-padding-top,8px)}.van-action-sheet__item--disabled{color:var(--action-sheet-item-disabled-text-color,#c8c9cc)}.van-action-sheet__item--disabled.van-action-sheet__item--hover{background-color:var(--action-sheet-item-background,#fff)}.van-action-sheet__subname{color:var(--action-sheet-subname-color,#969799);font-size:var(--action-sheet-subname-font-size,12px);line-height:var(--action-sheet-subname-line-height,20px);margin-top:var(--padding-xs,8px)}.van-action-sheet__header{font-size:var(--action-sheet-header-font-size,16px);font-weight:var(--font-weight-bold,500);line-height:var(--action-sheet-header-height,48px);text-align:center}.van-action-sheet__description{color:var(--action-sheet-description-color,#969799);font-size:var(--action-sheet-description-font-size,14px);line-height:var(--action-sheet-description-line-height,20px);padding:20px var(--padding-md,16px);text-align:center}.van-action-sheet__close{color:var(--action-sheet-close-icon-color,#c8c9cc);font-size:var(--action-sheet-close-icon-size,22px)!important;line-height:inherit!important;padding:var(--action-sheet-close-icon-padding,0 16px);position:absolute!important;right:0;top:0}.van-action-sheet__loading{display:flex!important}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..2a7c79b1722a309955eb59459196b511c6ae316b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.js
@@ -0,0 +1,217 @@
+import { VantComponent } from '../common/component';
+import { pickerProps } from '../picker/shared';
+import { requestAnimationFrame } from '../common/utils';
+const EMPTY_CODE = '000000';
+VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: Object.assign(Object.assign({}, pickerProps), { value: {
+ type: String,
+ observer(value) {
+ this.code = value;
+ this.setValues();
+ },
+ }, areaList: {
+ type: Object,
+ value: {},
+ observer: 'setValues',
+ }, columnsNum: {
+ type: null,
+ value: 3,
+ }, columnsPlaceholder: {
+ type: Array,
+ observer(val) {
+ this.setData({
+ typeToColumnsPlaceholder: {
+ province: val[0] || '',
+ city: val[1] || '',
+ county: val[2] || '',
+ },
+ });
+ },
+ } }),
+ data: {
+ columns: [{ values: [] }, { values: [] }, { values: [] }],
+ typeToColumnsPlaceholder: {},
+ },
+ mounted() {
+ requestAnimationFrame(() => {
+ this.setValues();
+ });
+ },
+ methods: {
+ getPicker() {
+ if (this.picker == null) {
+ this.picker = this.selectComponent('.van-area__picker');
+ }
+ return this.picker;
+ },
+ onCancel(event) {
+ this.emit('cancel', event.detail);
+ },
+ onConfirm(event) {
+ const { index } = event.detail;
+ let { value } = event.detail;
+ value = this.parseValues(value);
+ this.emit('confirm', { value, index });
+ },
+ emit(type, detail) {
+ detail.values = detail.value;
+ delete detail.value;
+ this.$emit(type, detail);
+ },
+ parseValues(values) {
+ const { columnsPlaceholder } = this.data;
+ return values.map((value, index) => {
+ if (value &&
+ (!value.code || value.name === columnsPlaceholder[index])) {
+ return Object.assign(Object.assign({}, value), { code: '', name: '' });
+ }
+ return value;
+ });
+ },
+ onChange(event) {
+ var _a;
+ const { index, picker, value } = event.detail;
+ this.code = value[index].code;
+ (_a = this.setValues()) === null || _a === void 0 ? void 0 : _a.then(() => {
+ this.$emit('change', {
+ picker,
+ values: this.parseValues(picker.getValues()),
+ index,
+ });
+ });
+ },
+ getConfig(type) {
+ const { areaList } = this.data;
+ return (areaList && areaList[`${type}_list`]) || {};
+ },
+ getList(type, code) {
+ if (type !== 'province' && !code) {
+ return [];
+ }
+ const { typeToColumnsPlaceholder } = this.data;
+ const list = this.getConfig(type);
+ let result = Object.keys(list).map((code) => ({
+ code,
+ name: list[code],
+ }));
+ if (code != null) {
+ // oversea code
+ if (code[0] === '9' && type === 'city') {
+ code = '9';
+ }
+ result = result.filter((item) => item.code.indexOf(code) === 0);
+ }
+ if (typeToColumnsPlaceholder[type] && result.length) {
+ // set columns placeholder
+ const codeFill = type === 'province'
+ ? ''
+ : type === 'city'
+ ? EMPTY_CODE.slice(2, 4)
+ : EMPTY_CODE.slice(4, 6);
+ result.unshift({
+ code: `${code}${codeFill}`,
+ name: typeToColumnsPlaceholder[type],
+ });
+ }
+ return result;
+ },
+ getIndex(type, code) {
+ let compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6;
+ const list = this.getList(type, code.slice(0, compareNum - 2));
+ // oversea code
+ if (code[0] === '9' && type === 'province') {
+ compareNum = 1;
+ }
+ code = code.slice(0, compareNum);
+ for (let i = 0; i < list.length; i++) {
+ if (list[i].code.slice(0, compareNum) === code) {
+ return i;
+ }
+ }
+ return 0;
+ },
+ setValues() {
+ const picker = this.getPicker();
+ if (!picker) {
+ return;
+ }
+ let code = this.code || this.getDefaultCode();
+ const provinceList = this.getList('province');
+ const cityList = this.getList('city', code.slice(0, 2));
+ const stack = [];
+ const indexes = [];
+ const { columnsNum } = this.data;
+ if (columnsNum >= 1) {
+ stack.push(picker.setColumnValues(0, provinceList, false));
+ indexes.push(this.getIndex('province', code));
+ }
+ if (columnsNum >= 2) {
+ stack.push(picker.setColumnValues(1, cityList, false));
+ indexes.push(this.getIndex('city', code));
+ if (cityList.length && code.slice(2, 4) === '00') {
+ [{ code }] = cityList;
+ }
+ }
+ if (columnsNum === 3) {
+ stack.push(picker.setColumnValues(2, this.getList('county', code.slice(0, 4)), false));
+ indexes.push(this.getIndex('county', code));
+ }
+ return Promise.all(stack)
+ .catch(() => { })
+ .then(() => picker.setIndexes(indexes))
+ .catch(() => { });
+ },
+ getDefaultCode() {
+ const { columnsPlaceholder } = this.data;
+ if (columnsPlaceholder.length) {
+ return EMPTY_CODE;
+ }
+ const countyCodes = Object.keys(this.getConfig('county'));
+ if (countyCodes[0]) {
+ return countyCodes[0];
+ }
+ const cityCodes = Object.keys(this.getConfig('city'));
+ if (cityCodes[0]) {
+ return cityCodes[0];
+ }
+ return '';
+ },
+ getValues() {
+ const picker = this.getPicker();
+ if (!picker) {
+ return [];
+ }
+ return this.parseValues(picker.getValues().filter((value) => !!value));
+ },
+ getDetail() {
+ const values = this.getValues();
+ const area = {
+ code: '',
+ country: '',
+ province: '',
+ city: '',
+ county: '',
+ };
+ if (!values.length) {
+ return area;
+ }
+ const names = values.map((item) => item.name);
+ area.code = values[values.length - 1].code;
+ if (area.code[0] === '9') {
+ area.country = names[1] || '';
+ area.province = names[2] || '';
+ }
+ else {
+ area.province = names[0] || '';
+ area.city = names[1] || '';
+ area.county = names[2] || '';
+ }
+ return area;
+ },
+ reset(code) {
+ this.code = code || '';
+ return this.setValues();
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..a778e91cce16edbb1fd2af764415c4f8d2f0a0ea
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-picker": "../picker/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f7dc51f53e9dc7fd462c4b314068ee160331ebce
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.wxml
@@ -0,0 +1,20 @@
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..07723c11af98212d0c454d9fbacabe9e6963e838
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.wxs
@@ -0,0 +1,8 @@
+/* eslint-disable */
+function displayColumns(columns, columnsNum) {
+ return columns.slice(0, +columnsNum);
+}
+
+module.exports = {
+ displayColumns: displayColumns,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..99694d603361421fe8f1acfc76a09eae443cb3aa
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/area/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..0e3c134e662096b5aad37ccc02aa9986bfce388f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.js
@@ -0,0 +1,64 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { canIUseFormFieldButton } from '../common/version';
+const mixins = [button];
+if (canIUseFormFieldButton()) {
+ mixins.push('wx://form-field-button');
+}
+VantComponent({
+ mixins,
+ classes: ['hover-class', 'loading-class'],
+ data: {
+ baseStyle: '',
+ },
+ props: {
+ formType: String,
+ icon: String,
+ classPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ plain: Boolean,
+ block: Boolean,
+ round: Boolean,
+ square: Boolean,
+ loading: Boolean,
+ hairline: Boolean,
+ disabled: Boolean,
+ loadingText: String,
+ customStyle: String,
+ loadingType: {
+ type: String,
+ value: 'circular',
+ },
+ type: {
+ type: String,
+ value: 'default',
+ },
+ dataset: null,
+ size: {
+ type: String,
+ value: 'normal',
+ },
+ loadingSize: {
+ type: String,
+ value: '20px',
+ },
+ color: String,
+ },
+ methods: {
+ onClick(event) {
+ this.$emit('click', event);
+ const { canIUseGetUserProfile, openType, getUserProfileDesc, lang, } = this.data;
+ if (openType === 'getUserInfo' && canIUseGetUserProfile) {
+ wx.getUserProfile({
+ desc: getUserProfileDesc || ' ',
+ lang: lang || 'en',
+ complete: (userProfile) => {
+ this.$emit('getuserinfo', userProfile);
+ },
+ });
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..e00a588702da8887bbe5f8261aea5764251d14ff
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..80348459c7719aa56f1a086cd62fe050edc2f0a3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.wxml
@@ -0,0 +1,53 @@
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..8b649fe18d9444424b6b4c87737790d5bdd0b800
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.wxs
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ if (!data.color) {
+ return data.customStyle;
+ }
+
+ var properties = {
+ color: data.plain ? data.color : '#fff',
+ background: data.plain ? null : data.color,
+ };
+
+ // hide border when color is linear-gradient
+ if (data.color.indexOf('gradient') !== -1) {
+ properties.border = 0;
+ } else {
+ properties['border-color'] = data.color;
+ }
+
+ return style([properties, data.customStyle]);
+}
+
+function loadingColor(data) {
+ if (data.plain) {
+ return data.color ? data.color : '#c9c9c9';
+ }
+
+ if (data.type === 'default') {
+ return '#c9c9c9';
+ }
+
+ return '#fff';
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ loadingColor: loadingColor,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..bd8bb5af1975c91fae9992811e7b4fe47b790495
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/button/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-button{-webkit-text-size-adjust:100%;align-items:center;-webkit-appearance:none;border-radius:var(--button-border-radius,2px);box-sizing:border-box;display:inline-flex;font-size:var(--button-default-font-size,16px);height:var(--button-default-height,44px);justify-content:center;line-height:var(--button-line-height,20px);padding:0;position:relative;text-align:center;transition:opacity .2s;vertical-align:middle}.van-button:before{background-color:#000;border:inherit;border-color:#000;border-radius:inherit;content:" ";height:100%;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%}.van-button:after{border-width:0}.van-button--active:before{opacity:.15}.van-button--unclickable:after{display:none}.van-button--default{background:var(--button-default-background-color,#fff);border:var(--button-border-width,1px) solid var(--button-default-border-color,#ebedf0);color:var(--button-default-color,#323233)}.van-button--primary{background:var(--button-primary-background-color,#07c160);border:var(--button-border-width,1px) solid var(--button-primary-border-color,#07c160);color:var(--button-primary-color,#fff)}.van-button--info{background:var(--button-info-background-color,#1989fa);border:var(--button-border-width,1px) solid var(--button-info-border-color,#1989fa);color:var(--button-info-color,#fff)}.van-button--danger{background:var(--button-danger-background-color,#ee0a24);border:var(--button-border-width,1px) solid var(--button-danger-border-color,#ee0a24);color:var(--button-danger-color,#fff)}.van-button--warning{background:var(--button-warning-background-color,#ff976a);border:var(--button-border-width,1px) solid var(--button-warning-border-color,#ff976a);color:var(--button-warning-color,#fff)}.van-button--plain{background:var(--button-plain-background-color,#fff)}.van-button--plain.van-button--primary{color:var(--button-primary-background-color,#07c160)}.van-button--plain.van-button--info{color:var(--button-info-background-color,#1989fa)}.van-button--plain.van-button--danger{color:var(--button-danger-background-color,#ee0a24)}.van-button--plain.van-button--warning{color:var(--button-warning-background-color,#ff976a)}.van-button--large{height:var(--button-large-height,50px);width:100%}.van-button--normal{font-size:var(--button-normal-font-size,14px);padding:0 15px}.van-button--small{font-size:var(--button-small-font-size,12px);height:var(--button-small-height,30px);min-width:var(--button-small-min-width,60px);padding:0 var(--padding-xs,8px)}.van-button--mini{display:inline-block;font-size:var(--button-mini-font-size,10px);height:var(--button-mini-height,22px);min-width:var(--button-mini-min-width,50px)}.van-button--mini+.van-button--mini{margin-left:5px}.van-button--block{display:flex;width:100%}.van-button--round{border-radius:var(--button-round-border-radius,999px)}.van-button--square{border-radius:0}.van-button--disabled{opacity:var(--button-disabled-opacity,.5)}.van-button__text{display:inline}.van-button__icon+.van-button__text:not(:empty),.van-button__loading-text{margin-left:4px}.van-button__icon{line-height:inherit!important;min-width:1em;vertical-align:top}.van-button--hairline{border-width:0;padding-top:1px}.van-button--hairline:after{border-color:inherit;border-radius:calc(var(--button-border-radius, 2px)*2);border-width:1px}.van-button--hairline.van-button--round:after{border-radius:var(--button-round-border-radius,999px)}.van-button--hairline.van-button--square:after{border-radius:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/calendar.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/calendar.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..808f739ef23e8f74c4b86eff510222b1c354fc5b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/calendar.wxml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{
+ computed.getButtonDisabled(type, currentDate)
+ ? confirmDisabledText
+ : confirmText
+ }}
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..8fb3682d36afd4b63a30d29719e19522441a05e7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.js
@@ -0,0 +1,37 @@
+import { VantComponent } from '../../../common/component';
+VantComponent({
+ props: {
+ title: {
+ type: String,
+ value: '日期选择',
+ },
+ subtitle: String,
+ showTitle: Boolean,
+ showSubtitle: Boolean,
+ firstDayOfWeek: {
+ type: Number,
+ observer: 'initWeekDay',
+ },
+ },
+ data: {
+ weekdays: [],
+ },
+ created() {
+ this.initWeekDay();
+ },
+ methods: {
+ initWeekDay() {
+ const defaultWeeks = ['日', '一', '二', '三', '四', '五', '六'];
+ const firstDayOfWeek = this.data.firstDayOfWeek || 0;
+ this.setData({
+ weekdays: [
+ ...defaultWeeks.slice(firstDayOfWeek, 7),
+ ...defaultWeeks.slice(0, firstDayOfWeek),
+ ],
+ });
+ },
+ onClickSubtitle(event) {
+ this.$emit('click-subtitle', event);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..7e56c83e1d880957f007b5bde1e4677fa42fdbeb
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.wxml
@@ -0,0 +1,16 @@
+
+
+
+ {{ title }}
+
+
+
+ {{ subtitle }}
+
+
+
+
+ {{ item }}
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..272537efc4cc1767b455b8d592596707c6b887a5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/header/index.wxss
@@ -0,0 +1 @@
+@import '../../../common/index.wxss';.van-calendar__header{box-shadow:var(--calendar-header-box-shadow,0 2px 10px hsla(220,1%,50%,.16));flex-shrink:0}.van-calendar__header-subtitle,.van-calendar__header-title{font-weight:var(--font-weight-bold,500);height:var(--calendar-header-title-height,44px);line-height:var(--calendar-header-title-height,44px);text-align:center}.van-calendar__header-title+.van-calendar__header-title,.van-calendar__header-title:empty{display:none}.van-calendar__header-title:empty+.van-calendar__header-title{display:block!important}.van-calendar__weekdays{display:flex}.van-calendar__weekday{flex:1;font-size:var(--calendar-weekdays-font-size,12px);line-height:var(--calendar-weekdays-height,30px);text-align:center}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..3ccf85a6761697f3ad570029fb5783e829a02ae3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.d.ts
@@ -0,0 +1,6 @@
+export interface Day {
+ date: Date;
+ type: string;
+ text: number;
+ bottomInfo?: string;
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..d04c0fe282f19af6584ebcd29d946886d69e8664
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.js
@@ -0,0 +1,154 @@
+import { VantComponent } from '../../../common/component';
+import { getMonthEndDay, compareDay, getPrevDay, getNextDay, } from '../../utils';
+VantComponent({
+ props: {
+ date: {
+ type: null,
+ observer: 'setDays',
+ },
+ type: {
+ type: String,
+ observer: 'setDays',
+ },
+ color: String,
+ minDate: {
+ type: null,
+ observer: 'setDays',
+ },
+ maxDate: {
+ type: null,
+ observer: 'setDays',
+ },
+ showMark: Boolean,
+ rowHeight: null,
+ formatter: {
+ type: null,
+ observer: 'setDays',
+ },
+ currentDate: {
+ type: null,
+ observer: 'setDays',
+ },
+ firstDayOfWeek: {
+ type: Number,
+ observer: 'setDays',
+ },
+ allowSameDay: Boolean,
+ showSubtitle: Boolean,
+ showMonthTitle: Boolean,
+ },
+ data: {
+ visible: true,
+ days: [],
+ },
+ methods: {
+ onClick(event) {
+ const { index } = event.currentTarget.dataset;
+ const item = this.data.days[index];
+ if (item.type !== 'disabled') {
+ this.$emit('click', item);
+ }
+ },
+ setDays() {
+ const days = [];
+ const startDate = new Date(this.data.date);
+ const year = startDate.getFullYear();
+ const month = startDate.getMonth();
+ const totalDay = getMonthEndDay(startDate.getFullYear(), startDate.getMonth() + 1);
+ for (let day = 1; day <= totalDay; day++) {
+ const date = new Date(year, month, day);
+ const type = this.getDayType(date);
+ let config = {
+ date,
+ type,
+ text: day,
+ bottomInfo: this.getBottomInfo(type),
+ };
+ if (this.data.formatter) {
+ config = this.data.formatter(config);
+ }
+ days.push(config);
+ }
+ this.setData({ days });
+ },
+ getMultipleDayType(day) {
+ const { currentDate } = this.data;
+ if (!Array.isArray(currentDate)) {
+ return '';
+ }
+ const isSelected = (date) => currentDate.some((item) => compareDay(item, date) === 0);
+ if (isSelected(day)) {
+ const prevDay = getPrevDay(day);
+ const nextDay = getNextDay(day);
+ const prevSelected = isSelected(prevDay);
+ const nextSelected = isSelected(nextDay);
+ if (prevSelected && nextSelected) {
+ return 'multiple-middle';
+ }
+ if (prevSelected) {
+ return 'end';
+ }
+ return nextSelected ? 'start' : 'multiple-selected';
+ }
+ return '';
+ },
+ getRangeDayType(day) {
+ const { currentDate, allowSameDay } = this.data;
+ if (!Array.isArray(currentDate)) {
+ return '';
+ }
+ const [startDay, endDay] = currentDate;
+ if (!startDay) {
+ return '';
+ }
+ const compareToStart = compareDay(day, startDay);
+ if (!endDay) {
+ return compareToStart === 0 ? 'start' : '';
+ }
+ const compareToEnd = compareDay(day, endDay);
+ if (compareToStart === 0 && compareToEnd === 0 && allowSameDay) {
+ return 'start-end';
+ }
+ if (compareToStart === 0) {
+ return 'start';
+ }
+ if (compareToEnd === 0) {
+ return 'end';
+ }
+ if (compareToStart > 0 && compareToEnd < 0) {
+ return 'middle';
+ }
+ return '';
+ },
+ getDayType(day) {
+ const { type, minDate, maxDate, currentDate } = this.data;
+ if (compareDay(day, minDate) < 0 || compareDay(day, maxDate) > 0) {
+ return 'disabled';
+ }
+ if (type === 'single') {
+ return compareDay(day, currentDate) === 0 ? 'selected' : '';
+ }
+ if (type === 'multiple') {
+ return this.getMultipleDayType(day);
+ }
+ /* istanbul ignore else */
+ if (type === 'range') {
+ return this.getRangeDayType(day);
+ }
+ return '';
+ },
+ getBottomInfo(type) {
+ if (this.data.type === 'range') {
+ if (type === 'start') {
+ return '开始';
+ }
+ if (type === 'end') {
+ return '结束';
+ }
+ if (type === 'start-end') {
+ return '开始/结束';
+ }
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..4a2c47c9eceebdb51a1feafb82081dcee9bb9971
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.wxml
@@ -0,0 +1,39 @@
+
+
+
+
+
+ {{ computed.formatMonthTitle(date) }}
+
+
+
+
+ {{ computed.getMark(date) }}
+
+
+
+
+ {{ item.topInfo }}
+ {{ item.text }}
+
+ {{ item.bottomInfo }}
+
+
+
+
+ {{ item.topInfo }}
+ {{ item.text }}
+
+ {{ item.bottomInfo }}
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..55e45a5720ef50bd9b29c7a270f53d7b5ecaf9e3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.wxs
@@ -0,0 +1,71 @@
+/* eslint-disable */
+var utils = require('../../utils.wxs');
+
+function getMark(date) {
+ return getDate(date).getMonth() + 1;
+}
+
+var ROW_HEIGHT = 64;
+
+function getDayStyle(type, index, date, rowHeight, color, firstDayOfWeek) {
+ var style = [];
+ var current = getDate(date).getDay() || 7;
+ var offset = current < firstDayOfWeek ? (7 - firstDayOfWeek + current) :
+ current === 7 && firstDayOfWeek === 0 ? 0 :
+ (current - firstDayOfWeek);
+
+ if (index === 0) {
+ style.push(['margin-left', (100 * offset) / 7 + '%']);
+ }
+
+ if (rowHeight !== ROW_HEIGHT) {
+ style.push(['height', rowHeight + 'px']);
+ }
+
+ if (color) {
+ if (
+ type === 'start' ||
+ type === 'end' ||
+ type === 'start-end' ||
+ type === 'multiple-selected' ||
+ type === 'multiple-middle'
+ ) {
+ style.push(['background', color]);
+ } else if (type === 'middle') {
+ style.push(['color', color]);
+ }
+ }
+
+ return style
+ .map(function(item) {
+ return item.join(':');
+ })
+ .join(';');
+}
+
+function formatMonthTitle(date) {
+ date = getDate(date);
+ return date.getFullYear() + '年' + (date.getMonth() + 1) + '月';
+}
+
+function getMonthStyle(visible, date, rowHeight) {
+ if (!visible) {
+ date = getDate(date);
+
+ var totalDay = utils.getMonthEndDay(
+ date.getFullYear(),
+ date.getMonth() + 1
+ );
+ var offset = getDate(date).getDay();
+ var padding = Math.ceil((totalDay + offset) / 7) * rowHeight;
+
+ return 'padding-bottom:' + padding + 'px';
+ }
+}
+
+module.exports = {
+ getMark: getMark,
+ getDayStyle: getDayStyle,
+ formatMonthTitle: formatMonthTitle,
+ getMonthStyle: getMonthStyle
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..9aee73d814173862ed8d3b5d1e1e9307df4ab5cf
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/components/month/index.wxss
@@ -0,0 +1 @@
+@import '../../../common/index.wxss';.van-calendar{background-color:var(--calendar-background-color,#fff);display:flex;flex-direction:column;height:100%}.van-calendar__month-title{font-size:var(--calendar-month-title-font-size,14px);font-weight:var(--font-weight-bold,500);height:var(--calendar-header-title-height,44px);line-height:var(--calendar-header-title-height,44px);text-align:center}.van-calendar__days{display:flex;flex-wrap:wrap;position:relative;-webkit-user-select:none;user-select:none}.van-calendar__month-mark{color:var(--calendar-month-mark-color,rgba(242,243,245,.8));font-size:var(--calendar-month-mark-font-size,160px);left:50%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:0}.van-calendar__day,.van-calendar__selected-day{align-items:center;display:flex;justify-content:center;text-align:center}.van-calendar__day{font-size:var(--calendar-day-font-size,16px);height:var(--calendar-day-height,64px);position:relative;width:14.285%}.van-calendar__day--end,.van-calendar__day--multiple-middle,.van-calendar__day--multiple-selected,.van-calendar__day--start,.van-calendar__day--start-end{background-color:var(--calendar-range-edge-background-color,#ee0a24);color:var(--calendar-range-edge-color,#fff)}.van-calendar__day--start{border-radius:4px 0 0 4px}.van-calendar__day--end{border-radius:0 4px 4px 0}.van-calendar__day--multiple-selected,.van-calendar__day--start-end{border-radius:4px}.van-calendar__day--middle{color:var(--calendar-range-middle-color,#ee0a24)}.van-calendar__day--middle:after{background-color:currentColor;bottom:0;content:"";left:0;opacity:var(--calendar-range-middle-background-opacity,.1);position:absolute;right:0;top:0}.van-calendar__day--disabled{color:var(--calendar-day-disabled-color,#c8c9cc);cursor:default}.van-calendar__bottom-info,.van-calendar__top-info{font-size:var(--calendar-info-font-size,10px);left:0;line-height:var(--calendar-info-line-height,14px);position:absolute;right:0}@media (max-width:350px){.van-calendar__bottom-info,.van-calendar__top-info{font-size:9px}}.van-calendar__top-info{top:6px}.van-calendar__bottom-info{bottom:6px}.van-calendar__selected-day{background-color:var(--calendar-selected-day-background-color,#ee0a24);border-radius:4px;color:var(--calendar-selected-day-color,#fff);height:var(--calendar-selected-day-size,54px);width:var(--calendar-selected-day-size,54px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..3b7b45400621edad7b56390ce90abf0c34a32938
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.js
@@ -0,0 +1,337 @@
+import { VantComponent } from '../common/component';
+import { ROW_HEIGHT, getPrevDay, getNextDay, getToday, compareDay, copyDates, calcDateNum, formatMonthTitle, compareMonth, getMonths, getDayByOffset, } from './utils';
+import Toast from '../toast/toast';
+import { requestAnimationFrame } from '../common/utils';
+const initialMinDate = getToday().getTime();
+const initialMaxDate = (() => {
+ const now = getToday();
+ return new Date(now.getFullYear(), now.getMonth() + 6, now.getDate()).getTime();
+})();
+const getTime = (date) => date instanceof Date ? date.getTime() : date;
+VantComponent({
+ props: {
+ title: {
+ type: String,
+ value: '日期选择',
+ },
+ color: String,
+ show: {
+ type: Boolean,
+ observer(val) {
+ if (val) {
+ this.initRect();
+ this.scrollIntoView();
+ }
+ },
+ },
+ formatter: null,
+ confirmText: {
+ type: String,
+ value: '确定',
+ },
+ confirmDisabledText: {
+ type: String,
+ value: '确定',
+ },
+ rangePrompt: String,
+ showRangePrompt: {
+ type: Boolean,
+ value: true,
+ },
+ defaultDate: {
+ type: null,
+ observer(val) {
+ this.setData({ currentDate: val });
+ this.scrollIntoView();
+ },
+ },
+ allowSameDay: Boolean,
+ type: {
+ type: String,
+ value: 'single',
+ observer: 'reset',
+ },
+ minDate: {
+ type: Number,
+ value: initialMinDate,
+ },
+ maxDate: {
+ type: Number,
+ value: initialMaxDate,
+ },
+ position: {
+ type: String,
+ value: 'bottom',
+ },
+ rowHeight: {
+ type: null,
+ value: ROW_HEIGHT,
+ },
+ round: {
+ type: Boolean,
+ value: true,
+ },
+ poppable: {
+ type: Boolean,
+ value: true,
+ },
+ showMark: {
+ type: Boolean,
+ value: true,
+ },
+ showTitle: {
+ type: Boolean,
+ value: true,
+ },
+ showConfirm: {
+ type: Boolean,
+ value: true,
+ },
+ showSubtitle: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ maxRange: {
+ type: null,
+ value: null,
+ },
+ firstDayOfWeek: {
+ type: Number,
+ value: 0,
+ },
+ readonly: Boolean,
+ },
+ data: {
+ subtitle: '',
+ currentDate: null,
+ scrollIntoView: '',
+ },
+ created() {
+ this.setData({
+ currentDate: this.getInitialDate(this.data.defaultDate),
+ });
+ },
+ mounted() {
+ if (this.data.show || !this.data.poppable) {
+ this.initRect();
+ this.scrollIntoView();
+ }
+ },
+ methods: {
+ reset() {
+ this.setData({ currentDate: this.getInitialDate() });
+ this.scrollIntoView();
+ },
+ initRect() {
+ if (this.contentObserver != null) {
+ this.contentObserver.disconnect();
+ }
+ const contentObserver = this.createIntersectionObserver({
+ thresholds: [0, 0.1, 0.9, 1],
+ observeAll: true,
+ });
+ this.contentObserver = contentObserver;
+ contentObserver.relativeTo('.van-calendar__body');
+ contentObserver.observe('.month', (res) => {
+ if (res.boundingClientRect.top <= res.relativeRect.top) {
+ // @ts-ignore
+ this.setData({ subtitle: formatMonthTitle(res.dataset.date) });
+ }
+ });
+ },
+ limitDateRange(date, minDate = null, maxDate = null) {
+ minDate = minDate || this.data.minDate;
+ maxDate = maxDate || this.data.maxDate;
+ if (compareDay(date, minDate) === -1) {
+ return minDate;
+ }
+ if (compareDay(date, maxDate) === 1) {
+ return maxDate;
+ }
+ return date;
+ },
+ getInitialDate(defaultDate = null) {
+ const { type, minDate, maxDate } = this.data;
+ const now = getToday().getTime();
+ if (type === 'range') {
+ if (!Array.isArray(defaultDate)) {
+ defaultDate = [];
+ }
+ const [startDay, endDay] = defaultDate || [];
+ const start = this.limitDateRange(startDay || now, minDate, getPrevDay(new Date(maxDate)).getTime());
+ const end = this.limitDateRange(endDay || now, getNextDay(new Date(minDate)).getTime());
+ return [start, end];
+ }
+ if (type === 'multiple') {
+ if (Array.isArray(defaultDate)) {
+ return defaultDate.map((date) => this.limitDateRange(date));
+ }
+ return [this.limitDateRange(now)];
+ }
+ if (!defaultDate || Array.isArray(defaultDate)) {
+ defaultDate = now;
+ }
+ return this.limitDateRange(defaultDate);
+ },
+ scrollIntoView() {
+ requestAnimationFrame(() => {
+ const { currentDate, type, show, poppable, minDate, maxDate } = this.data;
+ // @ts-ignore
+ const targetDate = type === 'single' ? currentDate : currentDate[0];
+ const displayed = show || !poppable;
+ if (!targetDate || !displayed) {
+ return;
+ }
+ const months = getMonths(minDate, maxDate);
+ months.some((month, index) => {
+ if (compareMonth(month, targetDate) === 0) {
+ this.setData({ scrollIntoView: `month${index}` });
+ return true;
+ }
+ return false;
+ });
+ });
+ },
+ onOpen() {
+ this.$emit('open');
+ },
+ onOpened() {
+ this.$emit('opened');
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ onClosed() {
+ this.$emit('closed');
+ },
+ onClickDay(event) {
+ if (this.data.readonly) {
+ return;
+ }
+ let { date } = event.detail;
+ const { type, currentDate, allowSameDay } = this.data;
+ if (type === 'range') {
+ // @ts-ignore
+ const [startDay, endDay] = currentDate;
+ if (startDay && !endDay) {
+ const compareToStart = compareDay(date, startDay);
+ if (compareToStart === 1) {
+ const { days } = this.selectComponent('.month').data;
+ days.some((day, index) => {
+ const isDisabled = day.type === 'disabled' &&
+ getTime(startDay) < getTime(day.date) &&
+ getTime(day.date) < getTime(date);
+ if (isDisabled) {
+ ({ date } = days[index - 1]);
+ }
+ return isDisabled;
+ });
+ this.select([startDay, date], true);
+ }
+ else if (compareToStart === -1) {
+ this.select([date, null]);
+ }
+ else if (allowSameDay) {
+ this.select([date, date]);
+ }
+ }
+ else {
+ this.select([date, null]);
+ }
+ }
+ else if (type === 'multiple') {
+ let selectedIndex;
+ // @ts-ignore
+ const selected = currentDate.some((dateItem, index) => {
+ const equal = compareDay(dateItem, date) === 0;
+ if (equal) {
+ selectedIndex = index;
+ }
+ return equal;
+ });
+ if (selected) {
+ // @ts-ignore
+ const cancelDate = currentDate.splice(selectedIndex, 1);
+ this.setData({ currentDate });
+ this.unselect(cancelDate);
+ }
+ else {
+ // @ts-ignore
+ this.select([...currentDate, date]);
+ }
+ }
+ else {
+ this.select(date, true);
+ }
+ },
+ unselect(dateArray) {
+ const date = dateArray[0];
+ if (date) {
+ this.$emit('unselect', copyDates(date));
+ }
+ },
+ select(date, complete) {
+ if (complete && this.data.type === 'range') {
+ const valid = this.checkRange(date);
+ if (!valid) {
+ // auto selected to max range if showConfirm
+ if (this.data.showConfirm) {
+ this.emit([
+ date[0],
+ getDayByOffset(date[0], this.data.maxRange - 1),
+ ]);
+ }
+ else {
+ this.emit(date);
+ }
+ return;
+ }
+ }
+ this.emit(date);
+ if (complete && !this.data.showConfirm) {
+ this.onConfirm();
+ }
+ },
+ emit(date) {
+ this.setData({
+ currentDate: Array.isArray(date) ? date.map(getTime) : getTime(date),
+ });
+ this.$emit('select', copyDates(date));
+ },
+ checkRange(date) {
+ const { maxRange, rangePrompt, showRangePrompt } = this.data;
+ if (maxRange && calcDateNum(date) > maxRange) {
+ if (showRangePrompt) {
+ Toast({
+ context: this,
+ message: rangePrompt || `选择天数不能超过 ${maxRange} 天`,
+ });
+ }
+ this.$emit('over-range');
+ return false;
+ }
+ return true;
+ },
+ onConfirm() {
+ if (this.data.type === 'range' &&
+ !this.checkRange(this.data.currentDate)) {
+ return;
+ }
+ wx.nextTick(() => {
+ // @ts-ignore
+ this.$emit('confirm', copyDates(this.data.currentDate));
+ });
+ },
+ onClickSubtitle(event) {
+ this.$emit('click-subtitle', event);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..397d5aea19a5301358cd2dfc4b0e9a1879fe5b6f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.json
@@ -0,0 +1,10 @@
+{
+ "component": true,
+ "usingComponents": {
+ "header": "./components/header/index",
+ "month": "./components/month/index",
+ "van-button": "../button/index",
+ "van-popup": "../popup/index",
+ "van-toast": "../toast/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..bc8bcfd60180b5a3343ba95f6d45cdbbe4eed6c0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.wxml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..2c04be10f07bb4614ede2e80d3935191635d3831
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.wxs
@@ -0,0 +1,37 @@
+/* eslint-disable */
+var utils = require('./utils.wxs');
+
+function getMonths(minDate, maxDate) {
+ var months = [];
+ var cursor = getDate(minDate);
+
+ cursor.setDate(1);
+
+ do {
+ months.push(cursor.getTime());
+ cursor.setMonth(cursor.getMonth() + 1);
+ } while (utils.compareMonth(cursor, getDate(maxDate)) !== 1);
+
+ return months;
+}
+
+function getButtonDisabled(type, currentDate) {
+ if (currentDate == null) {
+ return true;
+ }
+
+ if (type === 'range') {
+ return !currentDate[0] || !currentDate[1];
+ }
+
+ if (type === 'multiple') {
+ return !currentDate.length;
+ }
+
+ return !currentDate;
+}
+
+module.exports = {
+ getMonths: getMonths,
+ getButtonDisabled: getButtonDisabled
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..05df518268f0a8ef331d634f8329cceb1d69134a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-calendar{background-color:var(--calendar-background-color,#fff);display:flex;flex-direction:column;height:var(--calendar-height,100%)}.van-calendar__close-icon{top:11px}.van-calendar__popup--bottom,.van-calendar__popup--top{height:var(--calendar-popup-height,80%)}.van-calendar__popup--left,.van-calendar__popup--right{height:100%}.van-calendar__body{-webkit-overflow-scrolling:touch;flex:1;overflow:auto}.van-calendar__footer{flex-shrink:0;padding:0 var(--padding-md,16px)}.van-calendar__footer--safe-area-inset-bottom{padding-bottom:env(safe-area-inset-bottom)}.van-calendar__footer+.van-calendar__footer,.van-calendar__footer:empty{display:none}.van-calendar__footer:empty+.van-calendar__footer{display:block!important}.van-calendar__confirm{height:var(--calendar-confirm-button-height,36px)!important;line-height:var(--calendar-confirm-button-line-height,34px)!important;margin:var(--calendar-confirm-button-margin,7px 0)!important}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/utils.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/utils.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..eb710c0928344cb626a1ee18f5795cfa5f8e4c39
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/utils.d.ts
@@ -0,0 +1,12 @@
+export declare const ROW_HEIGHT = 64;
+export declare function formatMonthTitle(date: Date): string;
+export declare function compareMonth(date1: Date | number, date2: Date | number): 1 | -1 | 0;
+export declare function compareDay(day1: Date | number, day2: Date | number): 1 | -1 | 0;
+export declare function getDayByOffset(date: Date, offset: number): Date;
+export declare function getPrevDay(date: Date): Date;
+export declare function getNextDay(date: Date): Date;
+export declare function getToday(): Date;
+export declare function calcDateNum(date: [Date, Date]): number;
+export declare function copyDates(dates: Date | Date[]): Date | Date[];
+export declare function getMonthEndDay(year: number, month: number): number;
+export declare function getMonths(minDate: number, maxDate: number): number[];
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/utils.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/utils.js
new file mode 100644
index 0000000000000000000000000000000000000000..83d6971db6fc7c3bcd1105ac3ad67b6ff91d77d2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/utils.js
@@ -0,0 +1,83 @@
+export const ROW_HEIGHT = 64;
+export function formatMonthTitle(date) {
+ if (!(date instanceof Date)) {
+ date = new Date(date);
+ }
+ return `${date.getFullYear()}年${date.getMonth() + 1}月`;
+}
+export function compareMonth(date1, date2) {
+ if (!(date1 instanceof Date)) {
+ date1 = new Date(date1);
+ }
+ if (!(date2 instanceof Date)) {
+ date2 = new Date(date2);
+ }
+ const year1 = date1.getFullYear();
+ const year2 = date2.getFullYear();
+ const month1 = date1.getMonth();
+ const month2 = date2.getMonth();
+ if (year1 === year2) {
+ return month1 === month2 ? 0 : month1 > month2 ? 1 : -1;
+ }
+ return year1 > year2 ? 1 : -1;
+}
+export function compareDay(day1, day2) {
+ if (!(day1 instanceof Date)) {
+ day1 = new Date(day1);
+ }
+ if (!(day2 instanceof Date)) {
+ day2 = new Date(day2);
+ }
+ const compareMonthResult = compareMonth(day1, day2);
+ if (compareMonthResult === 0) {
+ const date1 = day1.getDate();
+ const date2 = day2.getDate();
+ return date1 === date2 ? 0 : date1 > date2 ? 1 : -1;
+ }
+ return compareMonthResult;
+}
+export function getDayByOffset(date, offset) {
+ date = new Date(date);
+ date.setDate(date.getDate() + offset);
+ return date;
+}
+export function getPrevDay(date) {
+ return getDayByOffset(date, -1);
+}
+export function getNextDay(date) {
+ return getDayByOffset(date, 1);
+}
+export function getToday() {
+ const today = new Date();
+ today.setHours(0, 0, 0, 0);
+ return today;
+}
+export function calcDateNum(date) {
+ const day1 = new Date(date[0]).getTime();
+ const day2 = new Date(date[1]).getTime();
+ return (day2 - day1) / (1000 * 60 * 60 * 24) + 1;
+}
+export function copyDates(dates) {
+ if (Array.isArray(dates)) {
+ return dates.map((date) => {
+ if (date === null) {
+ return date;
+ }
+ return new Date(date);
+ });
+ }
+ return new Date(dates);
+}
+export function getMonthEndDay(year, month) {
+ return 32 - new Date(year, month - 1, 32).getDate();
+}
+export function getMonths(minDate, maxDate) {
+ const months = [];
+ const cursor = new Date(minDate);
+ cursor.setDate(1);
+ do {
+ months.push(cursor.getTime());
+ cursor.setMonth(cursor.getMonth() + 1);
+ } while (compareMonth(cursor, maxDate) !== 1);
+ return months;
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/utils.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/utils.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..e57f6b32befa9e3bc9f925189eb29c9b49e0a9af
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/calendar/utils.wxs
@@ -0,0 +1,25 @@
+/* eslint-disable */
+function getMonthEndDay(year, month) {
+ return 32 - getDate(year, month - 1, 32).getDate();
+}
+
+function compareMonth(date1, date2) {
+ date1 = getDate(date1);
+ date2 = getDate(date2);
+
+ var year1 = date1.getFullYear();
+ var year2 = date2.getFullYear();
+ var month1 = date1.getMonth();
+ var month2 = date2.getMonth();
+
+ if (year1 === year2) {
+ return month1 === month2 ? 0 : month1 > month2 ? 1 : -1;
+ }
+
+ return year1 > year2 ? 1 : -1;
+}
+
+module.exports = {
+ getMonthEndDay: getMonthEndDay,
+ compareMonth: compareMonth
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..5bbd21274ca22eefd7ff6d8937bf2fa31f5284f6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.js
@@ -0,0 +1,49 @@
+import { link } from '../mixins/link';
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: [
+ 'num-class',
+ 'desc-class',
+ 'thumb-class',
+ 'title-class',
+ 'price-class',
+ 'origin-price-class',
+ ],
+ mixins: [link],
+ props: {
+ tag: String,
+ num: String,
+ desc: String,
+ thumb: String,
+ title: String,
+ price: {
+ type: String,
+ observer: 'updatePrice',
+ },
+ centered: Boolean,
+ lazyLoad: Boolean,
+ thumbLink: String,
+ originPrice: String,
+ thumbMode: {
+ type: String,
+ value: 'aspectFit',
+ },
+ currency: {
+ type: String,
+ value: '¥',
+ },
+ },
+ methods: {
+ updatePrice() {
+ const { price } = this.data;
+ const priceArr = price.toString().split('.');
+ this.setData({
+ integerStr: priceArr[0],
+ decimalStr: priceArr[1] ? `.${priceArr[1]}` : '',
+ });
+ },
+ onClickThumb() {
+ this.jumpLink('thumbLink');
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..e917407692d20b91dbe066e7e198db5e93ae474a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-tag": "../tag/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..62173e4a0de699496f5a9745bfdd8161d0a5f02e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.wxml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+ {{ tag }}
+
+
+
+
+
+
+ {{ title }}
+
+
+ {{ desc }}
+
+
+
+
+
+
+
+
+ {{ currency }}
+ {{ integerStr }}
+ {{ decimalStr }}
+
+
+ {{ currency }} {{ originPrice }}
+
+ x {{ num }}
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..0f4d7c5b9d1b4c8a900e883d864ac7070e656cda
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/card/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-card{background-color:var(--card-background-color,#fafafa);box-sizing:border-box;color:var(--card-text-color,#323233);font-size:var(--card-font-size,12px);padding:var(--card-padding,8px 16px);position:relative}.van-card__header{display:flex}.van-card__header--center{align-items:center;justify-content:center}.van-card__thumb{flex:none;height:var(--card-thumb-size,88px);margin-right:var(--padding-xs,8px);position:relative;width:var(--card-thumb-size,88px)}.van-card__thumb:empty{display:none}.van-card__img{border-radius:8px;height:100%;width:100%}.van-card__content{display:flex;flex:1;flex-direction:column;justify-content:space-between;min-height:var(--card-thumb-size,88px);min-width:0;position:relative}.van-card__content--center{justify-content:center}.van-card__desc,.van-card__title{word-wrap:break-word}.van-card__title{font-weight:700;line-height:var(--card-title-line-height,16px)}.van-card__desc{color:var(--card-desc-color,#646566);line-height:var(--card-desc-line-height,20px)}.van-card__bottom{line-height:20px}.van-card__price{color:var(--card-price-color,#ee0a24);display:inline-block;font-size:var(--card-price-font-size,12px);font-weight:700}.van-card__price-integer{font-size:var(--card-price-integer-font-size,16px)}.van-card__price-decimal,.van-card__price-integer{font-family:var(--card-price-font-family,Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif)}.van-card__origin-price{color:var(--card-origin-price-color,#646566);display:inline-block;font-size:var(--card-origin-price-font-size,10px);margin-left:5px;text-decoration:line-through}.van-card__num{float:right}.van-card__tag{left:0;position:absolute!important;top:2px}.van-card__footer{flex:none;text-align:right;width:100%}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..170760f71f60798693ca32cd3747dab2b110f8c1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.js
@@ -0,0 +1,11 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ title: String,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ inset: Boolean,
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..311e064aaa3ae97363acdbf7c52e5ebbe007a19a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.wxml
@@ -0,0 +1,11 @@
+
+
+
+ {{ title }}
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..08b252f94aab45f67f5e0d3bd9975d2524aff1b3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell-group/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-cell-group--inset{border-radius:var(--cell-group-inset-border-radius,8px);margin:var(--cell-group-inset-padding,0 16px);overflow:hidden}.van-cell-group__title{color:var(--cell-group-title-color,#969799);font-size:var(--cell-group-title-font-size,14px);line-height:var(--cell-group-title-line-height,16px);padding:var(--cell-group-title-padding,16px 16px 8px)}.van-cell-group__title--inset{padding:var(--cell-group-inset-title-padding,16px 16px 8px 32px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..35548b99faba36625a6244c08f77489076eebb0b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.js
@@ -0,0 +1,38 @@
+import { link } from '../mixins/link';
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: [
+ 'title-class',
+ 'label-class',
+ 'value-class',
+ 'right-icon-class',
+ 'hover-class',
+ ],
+ mixins: [link],
+ props: {
+ title: null,
+ value: null,
+ icon: String,
+ size: String,
+ label: String,
+ center: Boolean,
+ isLink: Boolean,
+ required: Boolean,
+ clickable: Boolean,
+ titleWidth: String,
+ customStyle: String,
+ arrowDirection: String,
+ useLabelSlot: Boolean,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ titleStyle: String,
+ },
+ methods: {
+ onClick(event) {
+ this.$emit('click', event.detail);
+ this.jumpLink();
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..8387c3c8cc6dff136f1adccf52b473af88dce8d2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.wxml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+ {{ label }}
+
+
+
+
+ {{ value }}
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..e3500c4343687b5618af3dec95496cef26f53ed4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.wxs
@@ -0,0 +1,17 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function titleStyle(data) {
+ return style([
+ {
+ 'max-width': addUnit(data.titleWidth),
+ 'min-width': addUnit(data.titleWidth),
+ },
+ data.titleStyle,
+ ]);
+}
+
+module.exports = {
+ titleStyle: titleStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..1802f8e8ac7b20d636f0bb2b37a4dab9f57ef1e0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/cell/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-cell{background-color:var(--cell-background-color,#fff);box-sizing:border-box;color:var(--cell-text-color,#323233);display:flex;font-size:var(--cell-font-size,14px);line-height:var(--cell-line-height,24px);padding:var(--cell-vertical-padding,10px) var(--cell-horizontal-padding,16px);position:relative;width:100%}.van-cell:after{border-bottom:1px solid #ebedf0;bottom:0;box-sizing:border-box;content:" ";left:16px;pointer-events:none;position:absolute;right:16px;transform:scaleY(.5);transform-origin:center}.van-cell--borderless:after{display:none}.van-cell-group{background-color:var(--cell-background-color,#fff)}.van-cell__label{color:var(--cell-label-color,#969799);font-size:var(--cell-label-font-size,12px);line-height:var(--cell-label-line-height,18px);margin-top:var(--cell-label-margin-top,3px)}.van-cell__value{color:var(--cell-value-color,#969799);overflow:hidden;text-align:right;vertical-align:middle}.van-cell__title,.van-cell__value{flex:1}.van-cell__title:empty,.van-cell__value:empty{display:none}.van-cell__left-icon-wrap,.van-cell__right-icon-wrap{align-items:center;display:flex;font-size:var(--cell-icon-size,16px);height:var(--cell-line-height,24px)}.van-cell__left-icon-wrap{margin-right:var(--padding-base,4px)}.van-cell__right-icon-wrap{color:var(--cell-right-icon-color,#969799);margin-left:var(--padding-base,4px)}.van-cell__left-icon{vertical-align:middle}.van-cell__left-icon,.van-cell__right-icon{line-height:var(--cell-line-height,24px)}.van-cell--clickable.van-cell--hover{background-color:var(--cell-active-color,#f2f3f5)}.van-cell--required{overflow:visible}.van-cell--required:before{color:var(--cell-required-color,#ee0a24);content:"*";font-size:var(--cell-font-size,14px);left:var(--padding-xs,8px);position:absolute}.van-cell--center{align-items:center}.van-cell--large{padding-bottom:var(--cell-large-vertical-padding,12px);padding-top:var(--cell-large-vertical-padding,12px)}.van-cell--large .van-cell__title{font-size:var(--cell-large-title-font-size,16px)}.van-cell--large .van-cell__value{font-size:var(--cell-large-value-font-size,16px)}.van-cell--large .van-cell__label{font-size:var(--cell-large-label-font-size,14px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..c47d97d01d2bdbf29d6a5ac7d4c76ff74a822e84
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.js
@@ -0,0 +1,36 @@
+import { useChildren } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ field: true,
+ relation: useChildren('checkbox', function (target) {
+ this.updateChild(target);
+ }),
+ props: {
+ max: Number,
+ value: {
+ type: Array,
+ observer: 'updateChildren',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ direction: {
+ type: String,
+ value: 'vertical',
+ },
+ },
+ methods: {
+ updateChildren() {
+ this.children.forEach((child) => this.updateChild(child));
+ },
+ updateChild(child) {
+ const { value, disabled, direction } = this.data;
+ child.setData({
+ value: value.indexOf(child.data.name) !== -1,
+ parentDisabled: disabled,
+ direction,
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..638bf9dee9b453b5c65c5e4191b46b003be26be3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.wxml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..c5666d72a7cb73a10f7b218eb58615f95bf97abe
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox-group/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-checkbox-group--horizontal{display:flex;flex-wrap:wrap}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..e3b78ab72ca567a224b772415cf98446b28d7804
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.js
@@ -0,0 +1,77 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+function emit(target, value) {
+ target.$emit('input', value);
+ target.$emit('change', value);
+}
+VantComponent({
+ field: true,
+ relation: useParent('checkbox-group'),
+ classes: ['icon-class', 'label-class'],
+ props: {
+ value: Boolean,
+ disabled: Boolean,
+ useIconSlot: Boolean,
+ checkedColor: String,
+ labelPosition: {
+ type: String,
+ value: 'right',
+ },
+ labelDisabled: Boolean,
+ shape: {
+ type: String,
+ value: 'round',
+ },
+ iconSize: {
+ type: null,
+ value: 20,
+ },
+ },
+ data: {
+ parentDisabled: false,
+ direction: 'vertical',
+ },
+ methods: {
+ emitChange(value) {
+ if (this.parent) {
+ this.setParentValue(this.parent, value);
+ }
+ else {
+ emit(this, value);
+ }
+ },
+ toggle() {
+ const { parentDisabled, disabled, value } = this.data;
+ if (!disabled && !parentDisabled) {
+ this.emitChange(!value);
+ }
+ },
+ onClickLabel() {
+ const { labelDisabled, parentDisabled, disabled, value } = this.data;
+ if (!disabled && !labelDisabled && !parentDisabled) {
+ this.emitChange(!value);
+ }
+ },
+ setParentValue(parent, value) {
+ const parentValue = parent.data.value.slice();
+ const { name } = this.data;
+ const { max } = parent.data;
+ if (value) {
+ if (max && parentValue.length >= max) {
+ return;
+ }
+ if (parentValue.indexOf(name) === -1) {
+ parentValue.push(name);
+ emit(parent, parentValue);
+ }
+ }
+ else {
+ const index = parentValue.indexOf(name);
+ if (index !== -1) {
+ parentValue.splice(index, 1);
+ emit(parent, parentValue);
+ }
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..39a7bb039e814dc7ebdd710093e7ce68d11025a4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.wxml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..eb9c7726312ae65433806cd8c9b3c3f44f205377
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.wxs
@@ -0,0 +1,20 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function iconStyle(checkedColor, value, disabled, parentDisabled, iconSize) {
+ var styles = {
+ 'font-size': addUnit(iconSize),
+ };
+
+ if (checkedColor && value && !disabled && !parentDisabled) {
+ styles['border-color'] = checkedColor;
+ styles['background-color'] = checkedColor;
+ }
+
+ return style(styles);
+}
+
+module.exports = {
+ iconStyle: iconStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..da2272adb985a1c3ad99830fc0188da928a13159
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/checkbox/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-checkbox{align-items:center;display:flex;overflow:hidden;-webkit-user-select:none;user-select:none}.van-checkbox--horizontal{margin-right:12px}.van-checkbox__icon-wrap,.van-checkbox__label{line-height:var(--checkbox-size,20px)}.van-checkbox__icon-wrap{flex:none}.van-checkbox__icon{align-items:center;border:1px solid var(--checkbox-border-color,#c8c9cc);box-sizing:border-box;color:transparent;display:flex;font-size:var(--checkbox-size,20px);height:1em;justify-content:center;text-align:center;transition-duration:var(--checkbox-transition-duration,.2s);transition-property:color,border-color,background-color;width:1em}.van-checkbox__icon--round{border-radius:100%}.van-checkbox__icon--checked{background-color:var(--checkbox-checked-icon-color,#1989fa);border-color:var(--checkbox-checked-icon-color,#1989fa);color:#fff}.van-checkbox__icon--disabled{background-color:var(--checkbox-disabled-background-color,#ebedf0);border-color:var(--checkbox-disabled-icon-color,#c8c9cc)}.van-checkbox__icon--disabled.van-checkbox__icon--checked{color:var(--checkbox-disabled-icon-color,#c8c9cc)}.van-checkbox__label{word-wrap:break-word;color:var(--checkbox-label-color,#323233);padding-left:var(--checkbox-label-margin,10px)}.van-checkbox__label--left{float:left;margin:0 var(--checkbox-label-margin,10px) 0 0}.van-checkbox__label--disabled{color:var(--checkbox-disabled-label-color,#c8c9cc)}.van-checkbox__label:empty{margin:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/canvas.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/canvas.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..15268c9f8d00f020652f13fa15509cb77338e8db
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/canvas.d.ts
@@ -0,0 +1,4 @@
+///
+declare type CanvasContext = WechatMiniprogram.CanvasContext;
+export declare function adaptor(ctx: CanvasContext & Record): CanvasContext;
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/canvas.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/canvas.js
new file mode 100644
index 0000000000000000000000000000000000000000..3ade4cdb3d10e5b386c32712b9c17f9cd61e935e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/canvas.js
@@ -0,0 +1,43 @@
+export function adaptor(ctx) {
+ // @ts-ignore
+ return Object.assign(ctx, {
+ setStrokeStyle(val) {
+ ctx.strokeStyle = val;
+ },
+ setLineWidth(val) {
+ ctx.lineWidth = val;
+ },
+ setLineCap(val) {
+ ctx.lineCap = val;
+ },
+ setFillStyle(val) {
+ ctx.fillStyle = val;
+ },
+ setFontSize(val) {
+ ctx.font = String(val);
+ },
+ setGlobalAlpha(val) {
+ ctx.globalAlpha = val;
+ },
+ setLineJoin(val) {
+ ctx.lineJoin = val;
+ },
+ setTextAlign(val) {
+ ctx.textAlign = val;
+ },
+ setMiterLimit(val) {
+ ctx.miterLimit = val;
+ },
+ setShadow(offsetX, offsetY, blur, color) {
+ ctx.shadowOffsetX = offsetX;
+ ctx.shadowOffsetY = offsetY;
+ ctx.shadowBlur = blur;
+ ctx.shadowColor = color;
+ },
+ setTextBaseline(val) {
+ ctx.textBaseline = val;
+ },
+ createCircularGradient() { },
+ draw() { },
+ });
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..2a4baf59da675ec4dc5d4d1e521df5a9ab03dd0b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.js
@@ -0,0 +1,193 @@
+import { BLUE, WHITE } from '../common/color';
+import { VantComponent } from '../common/component';
+import { getSystemInfoSync } from '../common/utils';
+import { isObj } from '../common/validator';
+import { canIUseCanvas2d } from '../common/version';
+import { adaptor } from './canvas';
+function format(rate) {
+ return Math.min(Math.max(rate, 0), 100);
+}
+const PERIMETER = 2 * Math.PI;
+const BEGIN_ANGLE = -Math.PI / 2;
+const STEP = 1;
+VantComponent({
+ props: {
+ text: String,
+ lineCap: {
+ type: String,
+ value: 'round',
+ },
+ value: {
+ type: Number,
+ value: 0,
+ observer: 'reRender',
+ },
+ speed: {
+ type: Number,
+ value: 50,
+ },
+ size: {
+ type: Number,
+ value: 100,
+ observer() {
+ this.drawCircle(this.currentValue);
+ },
+ },
+ fill: String,
+ layerColor: {
+ type: String,
+ value: WHITE,
+ },
+ color: {
+ type: null,
+ value: BLUE,
+ observer() {
+ this.setHoverColor().then(() => {
+ this.drawCircle(this.currentValue);
+ });
+ },
+ },
+ type: {
+ type: String,
+ value: '',
+ },
+ strokeWidth: {
+ type: Number,
+ value: 4,
+ },
+ clockwise: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ hoverColor: BLUE,
+ },
+ methods: {
+ getContext() {
+ const { type, size } = this.data;
+ if (type === '' || !canIUseCanvas2d()) {
+ const ctx = wx.createCanvasContext('van-circle', this);
+ return Promise.resolve(ctx);
+ }
+ const dpr = getSystemInfoSync().pixelRatio;
+ return new Promise((resolve) => {
+ wx.createSelectorQuery()
+ .in(this)
+ .select('#van-circle')
+ .node()
+ .exec((res) => {
+ const canvas = res[0].node;
+ const ctx = canvas.getContext(type);
+ if (!this.inited) {
+ this.inited = true;
+ canvas.width = size * dpr;
+ canvas.height = size * dpr;
+ ctx.scale(dpr, dpr);
+ }
+ resolve(adaptor(ctx));
+ });
+ });
+ },
+ setHoverColor() {
+ const { color, size } = this.data;
+ if (isObj(color)) {
+ return this.getContext().then((context) => {
+ const LinearColor = context.createLinearGradient(size, 0, 0, 0);
+ Object.keys(color)
+ .sort((a, b) => parseFloat(a) - parseFloat(b))
+ .map((key) => LinearColor.addColorStop(parseFloat(key) / 100, color[key]));
+ this.hoverColor = LinearColor;
+ });
+ }
+ this.hoverColor = color;
+ return Promise.resolve();
+ },
+ presetCanvas(context, strokeStyle, beginAngle, endAngle, fill) {
+ const { strokeWidth, lineCap, clockwise, size } = this.data;
+ const position = size / 2;
+ const radius = position - strokeWidth / 2;
+ context.setStrokeStyle(strokeStyle);
+ context.setLineWidth(strokeWidth);
+ context.setLineCap(lineCap);
+ context.beginPath();
+ context.arc(position, position, radius, beginAngle, endAngle, !clockwise);
+ context.stroke();
+ if (fill) {
+ context.setFillStyle(fill);
+ context.fill();
+ }
+ },
+ renderLayerCircle(context) {
+ const { layerColor, fill } = this.data;
+ this.presetCanvas(context, layerColor, 0, PERIMETER, fill);
+ },
+ renderHoverCircle(context, formatValue) {
+ const { clockwise } = this.data;
+ // 结束角度
+ const progress = PERIMETER * (formatValue / 100);
+ const endAngle = clockwise
+ ? BEGIN_ANGLE + progress
+ : 3 * Math.PI - (BEGIN_ANGLE + progress);
+ this.presetCanvas(context, this.hoverColor, BEGIN_ANGLE, endAngle);
+ },
+ drawCircle(currentValue) {
+ const { size } = this.data;
+ this.getContext().then((context) => {
+ context.clearRect(0, 0, size, size);
+ this.renderLayerCircle(context);
+ const formatValue = format(currentValue);
+ if (formatValue !== 0) {
+ this.renderHoverCircle(context, formatValue);
+ }
+ context.draw();
+ });
+ },
+ reRender() {
+ // tofector 动画暂时没有想到好的解决方案
+ const { value, speed } = this.data;
+ if (speed <= 0 || speed > 1000) {
+ this.drawCircle(value);
+ return;
+ }
+ this.clearMockInterval();
+ this.currentValue = this.currentValue || 0;
+ const run = () => {
+ this.interval = setTimeout(() => {
+ if (this.currentValue !== value) {
+ if (Math.abs(this.currentValue - value) < STEP) {
+ this.currentValue = value;
+ }
+ else if (this.currentValue < value) {
+ this.currentValue += STEP;
+ }
+ else {
+ this.currentValue -= STEP;
+ }
+ this.drawCircle(this.currentValue);
+ run();
+ }
+ else {
+ this.clearMockInterval();
+ }
+ }, 1000 / speed);
+ };
+ run();
+ },
+ clearMockInterval() {
+ if (this.interval) {
+ clearTimeout(this.interval);
+ this.interval = null;
+ }
+ },
+ },
+ mounted() {
+ this.currentValue = this.data.value;
+ this.setHoverColor().then(() => {
+ this.drawCircle(this.currentValue);
+ });
+ },
+ destroyed() {
+ this.clearMockInterval();
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..52bc59fca8e6057621f0d3eb8807e1442fde3bb1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.wxml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+ {{ text }}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..220075193eda10b126bcd8ba8d812cfe813fb113
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/circle/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-circle{display:inline-block;position:relative;text-align:center}.van-circle__text{color:var(--circle-text-color,#323233);left:0;position:absolute;top:50%;transform:translateY(-50%);width:100%}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..02bb78d1e10144668a8efbc90c28b1ce0705f2ec
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.js
@@ -0,0 +1,9 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ relation: useParent('row'),
+ props: {
+ span: Number,
+ offset: Number,
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..975348b6e1a37c2e2d914a85be8a1d644cb8b49c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.wxml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..507c1cb9b8e27624f7eb018741aea72ca2df1c16
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ if (!data.gutter) {
+ return '';
+ }
+
+ return style({
+ 'padding-right': addUnit(data.gutter / 2),
+ 'padding-left': addUnit(data.gutter / 2),
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..2fa265e0ba8500c3e2147aa60943ad548373b261
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/col/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-col{box-sizing:border-box;float:left}.van-col--1{width:4.16666667%}.van-col--offset-1{margin-left:4.16666667%}.van-col--2{width:8.33333333%}.van-col--offset-2{margin-left:8.33333333%}.van-col--3{width:12.5%}.van-col--offset-3{margin-left:12.5%}.van-col--4{width:16.66666667%}.van-col--offset-4{margin-left:16.66666667%}.van-col--5{width:20.83333333%}.van-col--offset-5{margin-left:20.83333333%}.van-col--6{width:25%}.van-col--offset-6{margin-left:25%}.van-col--7{width:29.16666667%}.van-col--offset-7{margin-left:29.16666667%}.van-col--8{width:33.33333333%}.van-col--offset-8{margin-left:33.33333333%}.van-col--9{width:37.5%}.van-col--offset-9{margin-left:37.5%}.van-col--10{width:41.66666667%}.van-col--offset-10{margin-left:41.66666667%}.van-col--11{width:45.83333333%}.van-col--offset-11{margin-left:45.83333333%}.van-col--12{width:50%}.van-col--offset-12{margin-left:50%}.van-col--13{width:54.16666667%}.van-col--offset-13{margin-left:54.16666667%}.van-col--14{width:58.33333333%}.van-col--offset-14{margin-left:58.33333333%}.van-col--15{width:62.5%}.van-col--offset-15{margin-left:62.5%}.van-col--16{width:66.66666667%}.van-col--offset-16{margin-left:66.66666667%}.van-col--17{width:70.83333333%}.van-col--offset-17{margin-left:70.83333333%}.van-col--18{width:75%}.van-col--offset-18{margin-left:75%}.van-col--19{width:79.16666667%}.van-col--offset-19{margin-left:79.16666667%}.van-col--20{width:83.33333333%}.van-col--offset-20{margin-left:83.33333333%}.van-col--21{width:87.5%}.van-col--offset-21{margin-left:87.5%}.van-col--22{width:91.66666667%}.van-col--offset-22{margin-left:91.66666667%}.van-col--23{width:95.83333333%}.van-col--offset-23{margin-left:95.83333333%}.van-col--24{width:100%}.van-col--offset-24{margin-left:100%}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/animate.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/animate.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..32157b6216ccb826ef242068d0bbe27fb001bb3e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/animate.d.ts
@@ -0,0 +1,2 @@
+///
+export declare function setContentAnimate(context: WechatMiniprogram.Component.TrivialInstance, expanded: boolean, mounted: boolean): void;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/animate.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/animate.js
new file mode 100644
index 0000000000000000000000000000000000000000..f966ac598e33635829a1069b77a98bfe6821c415
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/animate.js
@@ -0,0 +1,39 @@
+import { getRect } from '../common/utils';
+function useAnimation(context, expanded, mounted, height) {
+ const animation = wx.createAnimation({
+ duration: 0,
+ timingFunction: 'ease-in-out',
+ });
+ if (expanded) {
+ if (height === 0) {
+ animation.height('auto').top(1).step();
+ }
+ else {
+ animation
+ .height(height)
+ .top(1)
+ .step({
+ duration: mounted ? 300 : 1,
+ })
+ .height('auto')
+ .step();
+ }
+ context.setData({
+ animation: animation.export(),
+ });
+ return;
+ }
+ animation.height(height).top(0).step({ duration: 1 }).height(0).step({
+ duration: 300,
+ });
+ context.setData({
+ animation: animation.export(),
+ });
+}
+export function setContentAnimate(context, expanded, mounted) {
+ getRect(context, '.van-collapse-item__content')
+ .then((rect) => rect.height)
+ .then((height) => {
+ useAnimation(context, expanded, mounted, height);
+ });
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..991d7dfc6c6666c2a1955cdb08d50629914b1e01
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.js
@@ -0,0 +1,59 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+import { setContentAnimate } from './animate';
+VantComponent({
+ classes: ['title-class', 'content-class'],
+ relation: useParent('collapse'),
+ props: {
+ name: null,
+ title: null,
+ value: null,
+ icon: String,
+ label: String,
+ disabled: Boolean,
+ clickable: Boolean,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ isLink: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ expanded: false,
+ },
+ mounted() {
+ this.updateExpanded();
+ this.mounted = true;
+ },
+ methods: {
+ updateExpanded() {
+ if (!this.parent) {
+ return;
+ }
+ const { value, accordion } = this.parent.data;
+ const { children = [] } = this.parent;
+ const { name } = this.data;
+ const index = children.indexOf(this);
+ const currentName = name == null ? index : name;
+ const expanded = accordion
+ ? value === currentName
+ : (value || []).some((name) => name === currentName);
+ if (expanded !== this.data.expanded) {
+ setContentAnimate(this, expanded, this.mounted);
+ }
+ this.setData({ index, expanded });
+ },
+ onClick() {
+ if (this.data.disabled) {
+ return;
+ }
+ const { name, expanded } = this.data;
+ const index = this.parent.children.indexOf(this);
+ const currentName = name == null ? index : name;
+ this.parent.switch(currentName, !expanded);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0e5425cdfdb74071904957ca8bcfddb70782b1b4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-cell": "../cell/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ae4cc831712ce6026707e48c9646d572c3ac8c0b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.wxml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..4a65b5a9e9f464b88d97cf037254803eac6265c0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse-item/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-collapse-item__title .van-cell__right-icon{transform:rotate(90deg);transition:transform var(--collapse-item-transition-duration,.3s)}.van-collapse-item__title--expanded .van-cell__right-icon{transform:rotate(-90deg)}.van-collapse-item__title--disabled .van-cell,.van-collapse-item__title--disabled .van-cell__right-icon{color:var(--collapse-item-title-disabled-color,#c8c9cc)!important}.van-collapse-item__title--disabled .van-cell--hover{background-color:#fff!important}.van-collapse-item__wrapper{overflow:hidden}.van-collapse-item__content{background-color:var(--collapse-item-content-background-color,#fff);color:var(--collapse-item-content-text-color,#969799);font-size:var(--collapse-item-content-font-size,13px);line-height:var(--collapse-item-content-line-height,1.5);padding:var(--collapse-item-content-padding,15px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..3616087f963afd8b203aa2dc9431f0079f8c4f83
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.js
@@ -0,0 +1,46 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('collapse-item'),
+ props: {
+ value: {
+ type: null,
+ observer: 'updateExpanded',
+ },
+ accordion: {
+ type: Boolean,
+ observer: 'updateExpanded',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ updateExpanded() {
+ this.children.forEach((child) => {
+ child.updateExpanded();
+ });
+ },
+ switch(name, expanded) {
+ const { accordion, value } = this.data;
+ const changeItem = name;
+ if (!accordion) {
+ name = expanded
+ ? (value || []).concat(name)
+ : (value || []).filter((activeName) => activeName !== name);
+ }
+ else {
+ name = expanded ? name : '';
+ }
+ if (expanded) {
+ this.$emit('open', changeItem);
+ }
+ else {
+ this.$emit('close', changeItem);
+ }
+ this.$emit('change', name);
+ this.$emit('input', name);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..fd4e171944a18874bd214effc5001a89bc38fafe
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.wxml
@@ -0,0 +1,3 @@
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..99694d603361421fe8f1acfc76a09eae443cb3aa
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/collapse/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/color.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/color.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..386f3077e23a24db2af9b4a4ad5c8f451f21aa2c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/color.d.ts
@@ -0,0 +1,7 @@
+export declare const RED = "#ee0a24";
+export declare const BLUE = "#1989fa";
+export declare const WHITE = "#fff";
+export declare const GREEN = "#07c160";
+export declare const ORANGE = "#ff976a";
+export declare const GRAY = "#323233";
+export declare const GRAY_DARK = "#969799";
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/color.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/color.js
new file mode 100644
index 0000000000000000000000000000000000000000..6b285bd6cddc616bf2fd65528217808876c5c603
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/color.js
@@ -0,0 +1,7 @@
+export const RED = '#ee0a24';
+export const BLUE = '#1989fa';
+export const WHITE = '#fff';
+export const GREEN = '#07c160';
+export const ORANGE = '#ff976a';
+export const GRAY = '#323233';
+export const GRAY_DARK = '#969799';
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/component.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/component.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..acdd7f0e56e02d2eb8984863a86ea564e8ed69a5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/component.d.ts
@@ -0,0 +1,4 @@
+///
+import { VantComponentOptions } from '../definitions/index';
+declare function VantComponent(vantOptions: VantComponentOptions): void;
+export { VantComponent };
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/component.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/component.js
new file mode 100644
index 0000000000000000000000000000000000000000..8528dc0ff775d84c41e536e5402a153fed4463f9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/component.js
@@ -0,0 +1,45 @@
+import { basic } from '../mixins/basic';
+function mapKeys(source, target, map) {
+ Object.keys(map).forEach((key) => {
+ if (source[key]) {
+ target[map[key]] = source[key];
+ }
+ });
+}
+function VantComponent(vantOptions) {
+ const options = {};
+ mapKeys(vantOptions, options, {
+ data: 'data',
+ props: 'properties',
+ mixins: 'behaviors',
+ methods: 'methods',
+ beforeCreate: 'created',
+ created: 'attached',
+ mounted: 'ready',
+ destroyed: 'detached',
+ classes: 'externalClasses',
+ });
+ // add default externalClasses
+ options.externalClasses = options.externalClasses || [];
+ options.externalClasses.push('custom-class');
+ // add default behaviors
+ options.behaviors = options.behaviors || [];
+ options.behaviors.push(basic);
+ // add relations
+ const { relation } = vantOptions;
+ if (relation) {
+ options.relations = relation.relations;
+ options.behaviors.push(relation.mixin);
+ }
+ // map field to form-field behavior
+ if (vantOptions.field) {
+ options.behaviors.push('wx://form-field');
+ }
+ // add default options
+ options.options = {
+ multipleSlots: true,
+ addGlobalClass: true,
+ };
+ Component(options);
+}
+export { VantComponent };
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..a73bb7a3ab8651d5e1cd223e562b416ee7d62ea2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/index.wxss
@@ -0,0 +1 @@
+.van-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.van-multi-ellipsis--l3{-webkit-line-clamp:3}.van-clearfix:after{clear:both;content:"";display:table}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{border:0 solid #ebedf0;bottom:-50%;box-sizing:border-box;content:" ";left:-50%;pointer-events:none;position:absolute;right:-50%;top:-50%;transform:scale(.5);transform-origin:center}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/relation.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/relation.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..4b5af0089a7b28d83ba80877b82460595f13afb7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/relation.d.ts
@@ -0,0 +1,15 @@
+///
+declare type TrivialInstance = WechatMiniprogram.Component.TrivialInstance;
+export declare function useParent(name: string, onEffect?: (this: TrivialInstance) => void): {
+ relations: {
+ [x: string]: WechatMiniprogram.Component.RelationOption;
+ };
+ mixin: string;
+};
+export declare function useChildren(name: string, onEffect?: (this: TrivialInstance, target: TrivialInstance) => void): {
+ relations: {
+ [x: string]: WechatMiniprogram.Component.RelationOption;
+ };
+ mixin: string;
+};
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/relation.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/relation.js
new file mode 100644
index 0000000000000000000000000000000000000000..04e29340dd1d2da44533c0544694a18434ec2145
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/relation.js
@@ -0,0 +1,56 @@
+export function useParent(name, onEffect) {
+ const path = `../${name}/index`;
+ return {
+ relations: {
+ [path]: {
+ type: 'ancestor',
+ linked() {
+ onEffect && onEffect.call(this);
+ },
+ linkChanged() {
+ onEffect && onEffect.call(this);
+ },
+ unlinked() {
+ onEffect && onEffect.call(this);
+ },
+ },
+ },
+ mixin: Behavior({
+ created() {
+ Object.defineProperty(this, 'parent', {
+ get: () => this.getRelationNodes(path)[0],
+ });
+ Object.defineProperty(this, 'index', {
+ // @ts-ignore
+ get: () => { var _a, _b; return (_b = (_a = this.parent) === null || _a === void 0 ? void 0 : _a.children) === null || _b === void 0 ? void 0 : _b.indexOf(this); },
+ });
+ },
+ }),
+ };
+}
+export function useChildren(name, onEffect) {
+ const path = `../${name}/index`;
+ return {
+ relations: {
+ [path]: {
+ type: 'descendant',
+ linked(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ linkChanged(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ unlinked(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ },
+ },
+ mixin: Behavior({
+ created() {
+ Object.defineProperty(this, 'children', {
+ get: () => this.getRelationNodes(path) || [],
+ });
+ },
+ }),
+ };
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/clearfix.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/clearfix.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..442246f58f624a5ad7dc994340e2deffa22e1ded
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/clearfix.wxss
@@ -0,0 +1 @@
+.van-clearfix:after{clear:both;content:"";display:table}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/ellipsis.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/ellipsis.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..ee701df0fb5b10918a51fe2c730b4e0b40a0b17f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/ellipsis.wxss
@@ -0,0 +1 @@
+.van-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.van-multi-ellipsis--l3{-webkit-line-clamp:3}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/hairline.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/hairline.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..f7c6260f5bb134f74956be9b8d3760aa0482b1e6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/hairline.wxss
@@ -0,0 +1 @@
+.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{border:0 solid #ebedf0;bottom:-50%;box-sizing:border-box;content:" ";left:-50%;pointer-events:none;position:absolute;right:-50%;top:-50%;transform:scale(.5);transform-origin:center}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/mixins/clearfix.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/mixins/clearfix.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/mixins/ellipsis.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/mixins/ellipsis.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/mixins/hairline.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/mixins/hairline.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/var.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/style/var.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/utils.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/utils.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..5332a68aed0ffcfffb6ab858ff992154f8bd13a7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/utils.d.ts
@@ -0,0 +1,13 @@
+///
+export { isDef } from './validator';
+export declare function range(num: number, min: number, max: number): number;
+export declare function nextTick(cb: (...args: any[]) => void): void;
+export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo;
+export declare function addUnit(value?: string | number): string | undefined;
+export declare function requestAnimationFrame(cb: () => void): number | WechatMiniprogram.NodesRef;
+export declare function pickExclude(obj: unknown, keys: string[]): {};
+export declare function getRect(context: WechatMiniprogram.Component.TrivialInstance, selector: string): Promise;
+export declare function getAllRect(context: WechatMiniprogram.Component.TrivialInstance, selector: string): Promise;
+export declare function groupSetData(context: WechatMiniprogram.Component.TrivialInstance, cb: () => void): void;
+export declare function toPromise(promiseLike: Promise | unknown): Promise;
+export declare function getCurrentPage(): T & WechatMiniprogram.OptionalInterface & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods & WechatMiniprogram.Page.Data & WechatMiniprogram.IAnyObject;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/utils.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/utils.js
new file mode 100644
index 0000000000000000000000000000000000000000..d06acb1411313ee214a7e33b590be351396f1c82
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/utils.js
@@ -0,0 +1,92 @@
+import { isDef, isNumber, isPlainObject, isPromise } from './validator';
+import { canIUseGroupSetData, canIUseNextTick } from './version';
+export { isDef } from './validator';
+export function range(num, min, max) {
+ return Math.min(Math.max(num, min), max);
+}
+export function nextTick(cb) {
+ if (canIUseNextTick()) {
+ wx.nextTick(cb);
+ }
+ else {
+ setTimeout(() => {
+ cb();
+ }, 1000 / 30);
+ }
+}
+let systemInfo;
+export function getSystemInfoSync() {
+ if (systemInfo == null) {
+ systemInfo = wx.getSystemInfoSync();
+ }
+ return systemInfo;
+}
+export function addUnit(value) {
+ if (!isDef(value)) {
+ return undefined;
+ }
+ value = String(value);
+ return isNumber(value) ? `${value}px` : value;
+}
+export function requestAnimationFrame(cb) {
+ const systemInfo = getSystemInfoSync();
+ if (systemInfo.platform === 'devtools') {
+ return setTimeout(() => {
+ cb();
+ }, 1000 / 30);
+ }
+ return wx
+ .createSelectorQuery()
+ .selectViewport()
+ .boundingClientRect()
+ .exec(() => {
+ cb();
+ });
+}
+export function pickExclude(obj, keys) {
+ if (!isPlainObject(obj)) {
+ return {};
+ }
+ return Object.keys(obj).reduce((prev, key) => {
+ if (!keys.includes(key)) {
+ prev[key] = obj[key];
+ }
+ return prev;
+ }, {});
+}
+export function getRect(context, selector) {
+ return new Promise((resolve) => {
+ wx.createSelectorQuery()
+ .in(context)
+ .select(selector)
+ .boundingClientRect()
+ .exec((rect = []) => resolve(rect[0]));
+ });
+}
+export function getAllRect(context, selector) {
+ return new Promise((resolve) => {
+ wx.createSelectorQuery()
+ .in(context)
+ .selectAll(selector)
+ .boundingClientRect()
+ .exec((rect = []) => resolve(rect[0]));
+ });
+}
+export function groupSetData(context, cb) {
+ if (canIUseGroupSetData()) {
+ context.groupSetData(cb);
+ }
+ else {
+ cb();
+ }
+}
+export function toPromise(promiseLike) {
+ if (isPromise(promiseLike)) {
+ return promiseLike;
+ }
+ return Promise.resolve(promiseLike);
+}
+export function getCurrentPage() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/validator.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/validator.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..152894ae7ba518b0a77ef2aee3deab38451dabd8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/validator.d.ts
@@ -0,0 +1,9 @@
+export declare function isFunction(val: unknown): val is Function;
+export declare function isPlainObject(val: unknown): val is Record;
+export declare function isPromise(val: unknown): val is Promise;
+export declare function isDef(value: unknown): boolean;
+export declare function isObj(x: unknown): x is Record;
+export declare function isNumber(value: string): boolean;
+export declare function isBoolean(value: unknown): value is boolean;
+export declare function isImageUrl(url: string): boolean;
+export declare function isVideoUrl(url: string): boolean;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/validator.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/validator.js
new file mode 100644
index 0000000000000000000000000000000000000000..f11f844bcce4936f487c0cbff8aa49baf168e64d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/validator.js
@@ -0,0 +1,31 @@
+// eslint-disable-next-line @typescript-eslint/ban-types
+export function isFunction(val) {
+ return typeof val === 'function';
+}
+export function isPlainObject(val) {
+ return val !== null && typeof val === 'object' && !Array.isArray(val);
+}
+export function isPromise(val) {
+ return isPlainObject(val) && isFunction(val.then) && isFunction(val.catch);
+}
+export function isDef(value) {
+ return value !== undefined && value !== null;
+}
+export function isObj(x) {
+ const type = typeof x;
+ return x !== null && (type === 'object' || type === 'function');
+}
+export function isNumber(value) {
+ return /^\d+(\.\d+)?$/.test(value);
+}
+export function isBoolean(value) {
+ return typeof value === 'boolean';
+}
+const IMAGE_REGEXP = /\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)/i;
+const VIDEO_REGEXP = /\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv)/i;
+export function isImageUrl(url) {
+ return IMAGE_REGEXP.test(url);
+}
+export function isVideoUrl(url) {
+ return VIDEO_REGEXP.test(url);
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/version.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/version.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..988b2264aa39f74fffa98a98be5ca17a79eccb51
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/version.d.ts
@@ -0,0 +1,7 @@
+export declare function canIUseModel(): boolean;
+export declare function canIUseFormFieldButton(): boolean;
+export declare function canIUseAnimate(): boolean;
+export declare function canIUseGroupSetData(): boolean;
+export declare function canIUseNextTick(): boolean;
+export declare function canIUseCanvas2d(): boolean;
+export declare function canIUseGetUserProfile(): boolean;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/version.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/version.js
new file mode 100644
index 0000000000000000000000000000000000000000..5407ffd6acd9726216510f76493fc89bd4358020
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/common/version.js
@@ -0,0 +1,48 @@
+import { getSystemInfoSync } from './utils';
+function compareVersion(v1, v2) {
+ v1 = v1? v1.split('.'): [];
+ v2 = v2? v2.split('.'): [];
+ const len = Math.max(v1.length, v2.length);
+ while (v1.length < len) {
+ v1.push('0');
+ }
+ while (v2.length < len) {
+ v2.push('0');
+ }
+ for (let i = 0; i < len; i++) {
+ const num1 = parseInt(v1[i], 10);
+ const num2 = parseInt(v2[i], 10);
+ if (num1 > num2) {
+ return 1;
+ }
+ if (num1 < num2) {
+ return -1;
+ }
+ }
+ return 0;
+}
+function gte(version) {
+ const system = getSystemInfoSync();
+ return compareVersion(system.SDKVersion, version) >= 0;
+}
+export function canIUseModel() {
+ return gte('2.9.3');
+}
+export function canIUseFormFieldButton() {
+ return gte('2.10.3');
+}
+export function canIUseAnimate() {
+ return gte('2.9.0');
+}
+export function canIUseGroupSetData() {
+ return gte('2.4.0');
+}
+export function canIUseNextTick() {
+ return wx.canIUse('nextTick');
+}
+export function canIUseCanvas2d() {
+ return gte('2.9.0');
+}
+export function canIUseGetUserProfile() {
+ return !!wx.getUserProfile;
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..0cb23f41310f2fdfe80493ad1c5846b62e36c762
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.js
@@ -0,0 +1,9 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ themeVars: {
+ type: Object,
+ value: {},
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..3cfb4614da0f8b3df3b9e93fd64df7b0779c4745
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.wxml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..7ca02030aaf9747fa07ea47ea402ac997c497557
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/config-provider/index.wxs
@@ -0,0 +1,29 @@
+/* eslint-disable */
+var object = require('../wxs/object.wxs');
+var style = require('../wxs/style.wxs');
+
+function kebabCase(word) {
+ var newWord = word
+ .replace(getRegExp("[A-Z]", 'g'), function (i) {
+ return '-' + i;
+ })
+ .toLowerCase()
+ .replace(getRegExp("^-"), '');
+
+ return newWord;
+}
+
+function mapThemeVarsToCSSVars(themeVars) {
+ var cssVars = {};
+ object.keys(themeVars).forEach(function (key) {
+ var cssVarsKey = '--' + kebabCase(key);
+ cssVars[cssVarsKey] = themeVars[key];
+ });
+
+ return style(cssVars);
+}
+
+module.exports = {
+ kebabCase: kebabCase,
+ mapThemeVarsToCSSVars: mapThemeVarsToCSSVars,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..da2414510b3e1b29aa60051e5320f8c9086bd830
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.js
@@ -0,0 +1,100 @@
+import { VantComponent } from '../common/component';
+import { isSameSecond, parseFormat, parseTimeData } from './utils';
+function simpleTick(fn) {
+ return setTimeout(fn, 30);
+}
+VantComponent({
+ props: {
+ useSlot: Boolean,
+ millisecond: Boolean,
+ time: {
+ type: Number,
+ observer: 'reset',
+ },
+ format: {
+ type: String,
+ value: 'HH:mm:ss',
+ },
+ autoStart: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ timeData: parseTimeData(0),
+ formattedTime: '0',
+ },
+ destroyed() {
+ clearTimeout(this.tid);
+ this.tid = null;
+ },
+ methods: {
+ // 开始
+ start() {
+ if (this.counting) {
+ return;
+ }
+ this.counting = true;
+ this.endTime = Date.now() + this.remain;
+ this.tick();
+ },
+ // 暂停
+ pause() {
+ this.counting = false;
+ clearTimeout(this.tid);
+ },
+ // 重置
+ reset() {
+ this.pause();
+ this.remain = this.data.time;
+ this.setRemain(this.remain);
+ if (this.data.autoStart) {
+ this.start();
+ }
+ },
+ tick() {
+ if (this.data.millisecond) {
+ this.microTick();
+ }
+ else {
+ this.macroTick();
+ }
+ },
+ microTick() {
+ this.tid = simpleTick(() => {
+ this.setRemain(this.getRemain());
+ if (this.remain !== 0) {
+ this.microTick();
+ }
+ });
+ },
+ macroTick() {
+ this.tid = simpleTick(() => {
+ const remain = this.getRemain();
+ if (!isSameSecond(remain, this.remain) || remain === 0) {
+ this.setRemain(remain);
+ }
+ if (this.remain !== 0) {
+ this.macroTick();
+ }
+ });
+ },
+ getRemain() {
+ return Math.max(this.endTime - Date.now(), 0);
+ },
+ setRemain(remain) {
+ this.remain = remain;
+ const timeData = parseTimeData(remain);
+ if (this.data.useSlot) {
+ this.$emit('change', timeData);
+ }
+ this.setData({
+ formattedTime: parseFormat(this.data.format, timeData),
+ });
+ if (remain === 0) {
+ this.pause();
+ this.$emit('finish');
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..e206e1677070434f2bd7d07cffb36e1365d5e476
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.wxml
@@ -0,0 +1,4 @@
+
+
+ {{ formattedTime }}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..8b957f7be7cf5128b9df57002baccbbb38575fa9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-count-down{color:var(--count-down-text-color,#323233);font-size:var(--count-down-font-size,14px);line-height:var(--count-down-line-height,20px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/utils.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/utils.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..e4a58ddfb68c1d24fda9d2780f2dfae3222d8e00
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/utils.d.ts
@@ -0,0 +1,10 @@
+export declare type TimeData = {
+ days: number;
+ hours: number;
+ minutes: number;
+ seconds: number;
+ milliseconds: number;
+};
+export declare function parseTimeData(time: number): TimeData;
+export declare function parseFormat(format: string, timeData: TimeData): string;
+export declare function isSameSecond(time1: number, time2: number): boolean;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/utils.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/utils.js
new file mode 100644
index 0000000000000000000000000000000000000000..cbdbd79d8274971211e53146e680c67341163ba0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/count-down/utils.js
@@ -0,0 +1,57 @@
+function padZero(num, targetLength = 2) {
+ let str = num + '';
+ while (str.length < targetLength) {
+ str = '0' + str;
+ }
+ return str;
+}
+const SECOND = 1000;
+const MINUTE = 60 * SECOND;
+const HOUR = 60 * MINUTE;
+const DAY = 24 * HOUR;
+export function parseTimeData(time) {
+ const days = Math.floor(time / DAY);
+ const hours = Math.floor((time % DAY) / HOUR);
+ const minutes = Math.floor((time % HOUR) / MINUTE);
+ const seconds = Math.floor((time % MINUTE) / SECOND);
+ const milliseconds = Math.floor(time % SECOND);
+ return {
+ days,
+ hours,
+ minutes,
+ seconds,
+ milliseconds,
+ };
+}
+export function parseFormat(format, timeData) {
+ const { days } = timeData;
+ let { hours, minutes, seconds, milliseconds } = timeData;
+ if (format.indexOf('DD') === -1) {
+ hours += days * 24;
+ }
+ else {
+ format = format.replace('DD', padZero(days));
+ }
+ if (format.indexOf('HH') === -1) {
+ minutes += hours * 60;
+ }
+ else {
+ format = format.replace('HH', padZero(hours));
+ }
+ if (format.indexOf('mm') === -1) {
+ seconds += minutes * 60;
+ }
+ else {
+ format = format.replace('mm', padZero(minutes));
+ }
+ if (format.indexOf('ss') === -1) {
+ milliseconds += seconds * 1000;
+ }
+ else {
+ format = format.replace('ss', padZero(seconds));
+ }
+ return format.replace('SSS', padZero(milliseconds, 3));
+}
+export function isSameSecond(time1, time2) {
+ return Math.floor(time1 / 1000) === Math.floor(time2 / 1000);
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..333417050a16398616ad9c34b1ab89cb82b4f7f8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.js
@@ -0,0 +1,295 @@
+import { VantComponent } from '../common/component';
+import { isDef } from '../common/validator';
+import { pickerProps } from '../picker/shared';
+const currentYear = new Date().getFullYear();
+function isValidDate(date) {
+ return isDef(date) && !isNaN(new Date(date).getTime());
+}
+function range(num, min, max) {
+ return Math.min(Math.max(num, min), max);
+}
+function padZero(val) {
+ return `00${val}`.slice(-2);
+}
+function times(n, iteratee) {
+ let index = -1;
+ const result = Array(n < 0 ? 0 : n);
+ while (++index < n) {
+ result[index] = iteratee(index);
+ }
+ return result;
+}
+function getTrueValue(formattedValue) {
+ if (formattedValue === undefined) {
+ formattedValue = '1';
+ }
+ while (isNaN(parseInt(formattedValue, 10))) {
+ formattedValue = formattedValue.slice(1);
+ }
+ return parseInt(formattedValue, 10);
+}
+function getMonthEndDay(year, month) {
+ return 32 - new Date(year, month - 1, 32).getDate();
+}
+const defaultFormatter = (type, value) => value;
+VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: Object.assign(Object.assign({}, pickerProps), { value: {
+ type: null,
+ observer: 'updateValue',
+ }, filter: null, type: {
+ type: String,
+ value: 'datetime',
+ observer: 'updateValue',
+ }, showToolbar: {
+ type: Boolean,
+ value: true,
+ }, formatter: {
+ type: null,
+ value: defaultFormatter,
+ }, minDate: {
+ type: Number,
+ value: new Date(currentYear - 10, 0, 1).getTime(),
+ observer: 'updateValue',
+ }, maxDate: {
+ type: Number,
+ value: new Date(currentYear + 10, 11, 31).getTime(),
+ observer: 'updateValue',
+ }, minHour: {
+ type: Number,
+ value: 0,
+ observer: 'updateValue',
+ }, maxHour: {
+ type: Number,
+ value: 23,
+ observer: 'updateValue',
+ }, minMinute: {
+ type: Number,
+ value: 0,
+ observer: 'updateValue',
+ }, maxMinute: {
+ type: Number,
+ value: 59,
+ observer: 'updateValue',
+ } }),
+ data: {
+ innerValue: Date.now(),
+ columns: [],
+ },
+ methods: {
+ updateValue() {
+ const { data } = this;
+ const val = this.correctValue(data.value);
+ const isEqual = val === data.innerValue;
+ this.updateColumnValue(val).then(() => {
+ if (!isEqual) {
+ this.$emit('input', val);
+ }
+ });
+ },
+ getPicker() {
+ if (this.picker == null) {
+ this.picker = this.selectComponent('.van-datetime-picker');
+ const { picker } = this;
+ const { setColumnValues } = picker;
+ picker.setColumnValues = (...args) => setColumnValues.apply(picker, [...args, false]);
+ }
+ return this.picker;
+ },
+ updateColumns() {
+ const { formatter = defaultFormatter } = this.data;
+ const results = this.getOriginColumns().map((column) => ({
+ values: column.values.map((value) => formatter(column.type, value)),
+ }));
+ return this.set({ columns: results });
+ },
+ getOriginColumns() {
+ const { filter } = this.data;
+ const results = this.getRanges().map(({ type, range }) => {
+ let values = times(range[1] - range[0] + 1, (index) => {
+ const value = range[0] + index;
+ return type === 'year' ? `${value}` : padZero(value);
+ });
+ if (filter) {
+ values = filter(type, values);
+ }
+ return { type, values };
+ });
+ return results;
+ },
+ getRanges() {
+ const { data } = this;
+ if (data.type === 'time') {
+ return [
+ {
+ type: 'hour',
+ range: [data.minHour, data.maxHour],
+ },
+ {
+ type: 'minute',
+ range: [data.minMinute, data.maxMinute],
+ },
+ ];
+ }
+ const { maxYear, maxDate, maxMonth, maxHour, maxMinute, } = this.getBoundary('max', data.innerValue);
+ const { minYear, minDate, minMonth, minHour, minMinute, } = this.getBoundary('min', data.innerValue);
+ const result = [
+ {
+ type: 'year',
+ range: [minYear, maxYear],
+ },
+ {
+ type: 'month',
+ range: [minMonth, maxMonth],
+ },
+ {
+ type: 'day',
+ range: [minDate, maxDate],
+ },
+ {
+ type: 'hour',
+ range: [minHour, maxHour],
+ },
+ {
+ type: 'minute',
+ range: [minMinute, maxMinute],
+ },
+ ];
+ if (data.type === 'date')
+ result.splice(3, 2);
+ if (data.type === 'year-month')
+ result.splice(2, 3);
+ return result;
+ },
+ correctValue(value) {
+ const { data } = this;
+ // validate value
+ const isDateType = data.type !== 'time';
+ if (isDateType && !isValidDate(value)) {
+ value = data.minDate;
+ }
+ else if (!isDateType && !value) {
+ const { minHour } = data;
+ value = `${padZero(minHour)}:00`;
+ }
+ // time type
+ if (!isDateType) {
+ let [hour, minute] = value.split(':');
+ hour = padZero(range(hour, data.minHour, data.maxHour));
+ minute = padZero(range(minute, data.minMinute, data.maxMinute));
+ return `${hour}:${minute}`;
+ }
+ // date type
+ value = Math.max(value, data.minDate);
+ value = Math.min(value, data.maxDate);
+ return value;
+ },
+ getBoundary(type, innerValue) {
+ const value = new Date(innerValue);
+ const boundary = new Date(this.data[`${type}Date`]);
+ const year = boundary.getFullYear();
+ let month = 1;
+ let date = 1;
+ let hour = 0;
+ let minute = 0;
+ if (type === 'max') {
+ month = 12;
+ date = getMonthEndDay(value.getFullYear(), value.getMonth() + 1);
+ hour = 23;
+ minute = 59;
+ }
+ if (value.getFullYear() === year) {
+ month = boundary.getMonth() + 1;
+ if (value.getMonth() + 1 === month) {
+ date = boundary.getDate();
+ if (value.getDate() === date) {
+ hour = boundary.getHours();
+ if (value.getHours() === hour) {
+ minute = boundary.getMinutes();
+ }
+ }
+ }
+ }
+ return {
+ [`${type}Year`]: year,
+ [`${type}Month`]: month,
+ [`${type}Date`]: date,
+ [`${type}Hour`]: hour,
+ [`${type}Minute`]: minute,
+ };
+ },
+ onCancel() {
+ this.$emit('cancel');
+ },
+ onConfirm() {
+ this.$emit('confirm', this.data.innerValue);
+ },
+ onChange() {
+ const { data } = this;
+ let value;
+ const picker = this.getPicker();
+ const originColumns = this.getOriginColumns();
+ if (data.type === 'time') {
+ const indexes = picker.getIndexes();
+ value = `${+originColumns[0].values[indexes[0]]}:${+originColumns[1]
+ .values[indexes[1]]}`;
+ }
+ else {
+ const indexes = picker.getIndexes();
+ const values = indexes.map((value, index) => originColumns[index].values[value]);
+ const year = getTrueValue(values[0]);
+ const month = getTrueValue(values[1]);
+ const maxDate = getMonthEndDay(year, month);
+ let date = getTrueValue(values[2]);
+ if (data.type === 'year-month') {
+ date = 1;
+ }
+ date = date > maxDate ? maxDate : date;
+ let hour = 0;
+ let minute = 0;
+ if (data.type === 'datetime') {
+ hour = getTrueValue(values[3]);
+ minute = getTrueValue(values[4]);
+ }
+ value = new Date(year, month - 1, date, hour, minute);
+ }
+ value = this.correctValue(value);
+ this.updateColumnValue(value).then(() => {
+ this.$emit('input', value);
+ this.$emit('change', picker);
+ });
+ },
+ updateColumnValue(value) {
+ let values = [];
+ const { type } = this.data;
+ const formatter = this.data.formatter || defaultFormatter;
+ const picker = this.getPicker();
+ if (type === 'time') {
+ const pair = value.split(':');
+ values = [formatter('hour', pair[0]), formatter('minute', pair[1])];
+ }
+ else {
+ const date = new Date(value);
+ values = [
+ formatter('year', `${date.getFullYear()}`),
+ formatter('month', padZero(date.getMonth() + 1)),
+ ];
+ if (type === 'date') {
+ values.push(formatter('day', padZero(date.getDate())));
+ }
+ if (type === 'datetime') {
+ values.push(formatter('day', padZero(date.getDate())), formatter('hour', padZero(date.getHours())), formatter('minute', padZero(date.getMinutes())));
+ }
+ }
+ return this.set({ innerValue: value })
+ .then(() => this.updateColumns())
+ .then(() => picker.setValues(values));
+ },
+ },
+ created() {
+ const innerValue = this.correctValue(this.data.value);
+ this.updateColumnValue(innerValue).then(() => {
+ this.$emit('input', innerValue);
+ });
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..a778e91cce16edbb1fd2af764415c4f8d2f0a0ea
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-picker": "../picker/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ade22024e970d0981e02ee902fcc0cc053d80ef7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.wxml
@@ -0,0 +1,16 @@
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..99694d603361421fe8f1acfc76a09eae443cb3aa
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/datetime-picker/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/definitions/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/definitions/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..a7cc750a8c22a65211ebc52ee1bd859c2280daa0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/definitions/index.d.ts
@@ -0,0 +1,27 @@
+///
+interface VantComponentInstance {
+ parent: WechatMiniprogram.Component.TrivialInstance;
+ children: WechatMiniprogram.Component.TrivialInstance[];
+ index: number;
+ $emit: (name: string, detail?: unknown, options?: WechatMiniprogram.Component.TriggerEventOption) => void;
+}
+export declare type VantComponentOptions = {
+ data?: Data;
+ field?: boolean;
+ classes?: string[];
+ mixins?: string[];
+ props?: Props;
+ relation?: {
+ relations: Record;
+ mixin: string;
+ };
+ methods?: Methods;
+ beforeCreate?: () => void;
+ created?: () => void;
+ mounted?: () => void;
+ destroyed?: () => void;
+} & ThisType, Props, Methods> & Record>;
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/definitions/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/definitions/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/definitions/index.js
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/dialog.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/dialog.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c981315be39b723d9c7c13b98f606831ab38b7b9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/dialog.d.ts
@@ -0,0 +1,50 @@
+///
+export declare type Action = 'confirm' | 'cancel' | 'overlay';
+interface DialogOptions {
+ lang?: string;
+ show?: boolean;
+ title?: string;
+ width?: string | number | null;
+ zIndex?: number;
+ theme?: string;
+ context?: WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance;
+ message?: string;
+ overlay?: boolean;
+ selector?: string;
+ ariaLabel?: string;
+ className?: string;
+ customStyle?: string;
+ transition?: string;
+ /**
+ * @deprecated use beforeClose instead
+ */
+ asyncClose?: boolean;
+ beforeClose?: null | ((action: Action) => Promise | void);
+ businessId?: number;
+ sessionFrom?: string;
+ overlayStyle?: string;
+ appParameter?: string;
+ messageAlign?: string;
+ sendMessageImg?: string;
+ showMessageCard?: boolean;
+ sendMessagePath?: string;
+ sendMessageTitle?: string;
+ confirmButtonText?: string;
+ cancelButtonText?: string;
+ showConfirmButton?: boolean;
+ showCancelButton?: boolean;
+ closeOnClickOverlay?: boolean;
+ confirmButtonOpenType?: string;
+}
+declare const Dialog: {
+ (options: DialogOptions): Promise;
+ alert(options: DialogOptions): Promise;
+ confirm(options: DialogOptions): Promise;
+ close(): void;
+ stopLoading(): void;
+ currentOptions: DialogOptions;
+ defaultOptions: DialogOptions;
+ setDefaultOptions(options: DialogOptions): void;
+ resetDefaultOptions(): void;
+};
+export default Dialog;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/dialog.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/dialog.js
new file mode 100644
index 0000000000000000000000000000000000000000..0b72feca29e5407a092f7824e28caf97a51ad0c2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/dialog.js
@@ -0,0 +1,75 @@
+let queue = [];
+const defaultOptions = {
+ show: false,
+ title: '',
+ width: null,
+ theme: 'default',
+ message: '',
+ zIndex: 100,
+ overlay: true,
+ selector: '#van-dialog',
+ className: '',
+ asyncClose: false,
+ beforeClose: null,
+ transition: 'scale',
+ customStyle: '',
+ messageAlign: '',
+ overlayStyle: '',
+ confirmButtonText: '确认',
+ cancelButtonText: '取消',
+ showConfirmButton: true,
+ showCancelButton: false,
+ closeOnClickOverlay: false,
+ confirmButtonOpenType: '',
+};
+let currentOptions = Object.assign({}, defaultOptions);
+function getContext() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+const Dialog = (options) => {
+ options = Object.assign(Object.assign({}, currentOptions), options);
+ return new Promise((resolve, reject) => {
+ const context = options.context || getContext();
+ const dialog = context.selectComponent(options.selector);
+ delete options.context;
+ delete options.selector;
+ if (dialog) {
+ dialog.setData(Object.assign({ callback: (action, instance) => {
+ action === 'confirm' ? resolve(instance) : reject(instance);
+ } }, options));
+ wx.nextTick(() => {
+ dialog.setData({ show: true });
+ });
+ queue.push(dialog);
+ }
+ else {
+ console.warn('未找到 van-dialog 节点,请确认 selector 及 context 是否正确');
+ }
+ });
+};
+Dialog.alert = (options) => Dialog(options);
+Dialog.confirm = (options) => Dialog(Object.assign({ showCancelButton: true }, options));
+Dialog.close = () => {
+ queue.forEach((dialog) => {
+ dialog.close();
+ });
+ queue = [];
+};
+Dialog.stopLoading = () => {
+ queue.forEach((dialog) => {
+ dialog.stopLoading();
+ });
+};
+Dialog.currentOptions = currentOptions;
+Dialog.defaultOptions = defaultOptions;
+Dialog.setDefaultOptions = (options) => {
+ currentOptions = Object.assign(Object.assign({}, currentOptions), options);
+ Dialog.currentOptions = currentOptions;
+};
+Dialog.resetDefaultOptions = () => {
+ currentOptions = Object.assign({}, defaultOptions);
+ Dialog.currentOptions = currentOptions;
+};
+Dialog.resetDefaultOptions();
+export default Dialog;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..6f24cf4a4cbcbc2f46d2e5ee9b0f557e09d1c1a0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.js
@@ -0,0 +1,122 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { GRAY, RED } from '../common/color';
+import { toPromise } from '../common/utils';
+VantComponent({
+ mixins: [button],
+ props: {
+ show: {
+ type: Boolean,
+ observer(show) {
+ !show && this.stopLoading();
+ },
+ },
+ title: String,
+ message: String,
+ theme: {
+ type: String,
+ value: 'default',
+ },
+ useSlot: Boolean,
+ className: String,
+ customStyle: String,
+ asyncClose: Boolean,
+ messageAlign: String,
+ beforeClose: null,
+ overlayStyle: String,
+ useTitleSlot: Boolean,
+ showCancelButton: Boolean,
+ closeOnClickOverlay: Boolean,
+ confirmButtonOpenType: String,
+ width: null,
+ zIndex: {
+ type: Number,
+ value: 2000,
+ },
+ confirmButtonText: {
+ type: String,
+ value: '确认',
+ },
+ cancelButtonText: {
+ type: String,
+ value: '取消',
+ },
+ confirmButtonColor: {
+ type: String,
+ value: RED,
+ },
+ cancelButtonColor: {
+ type: String,
+ value: GRAY,
+ },
+ showConfirmButton: {
+ type: Boolean,
+ value: true,
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ transition: {
+ type: String,
+ value: 'scale',
+ },
+ },
+ data: {
+ loading: {
+ confirm: false,
+ cancel: false,
+ },
+ callback: (() => { }),
+ },
+ methods: {
+ onConfirm() {
+ this.handleAction('confirm');
+ },
+ onCancel() {
+ this.handleAction('cancel');
+ },
+ onClickOverlay() {
+ this.close('overlay');
+ },
+ close(action) {
+ this.setData({ show: false });
+ wx.nextTick(() => {
+ this.$emit('close', action);
+ const { callback } = this.data;
+ if (callback) {
+ callback(action, this);
+ }
+ });
+ },
+ stopLoading() {
+ this.setData({
+ loading: {
+ confirm: false,
+ cancel: false,
+ },
+ });
+ },
+ handleAction(action) {
+ this.$emit(action, { dialog: this });
+ const { asyncClose, beforeClose } = this.data;
+ if (!asyncClose && !beforeClose) {
+ this.close(action);
+ return;
+ }
+ this.setData({
+ [`loading.${action}`]: true,
+ });
+ if (beforeClose) {
+ toPromise(beforeClose(action)).then((value) => {
+ if (value) {
+ this.close(action);
+ }
+ else {
+ this.stopLoading();
+ }
+ });
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..43417fc8977861fcac5d1e799f8a1c2842a4e5c7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.json
@@ -0,0 +1,9 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-popup": "../popup/index",
+ "van-button": "../button/index",
+ "van-goods-action": "../goods-action/index",
+ "van-goods-action-button": "../goods-action-button/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f49dee40b75c446148dbadd24b7376971f9d5f1d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.wxml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+ {{ cancelButtonText }}
+
+
+ {{ confirmButtonText }}
+
+
+
+
+
+ {{ cancelButtonText }}
+
+
+ {{ confirmButtonText }}
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..571861ad9dbd257a8e312d614a2370ce452a67a5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dialog/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-dialog{background-color:var(--dialog-background-color,#fff);border-radius:var(--dialog-border-radius,16px);font-size:var(--dialog-font-size,16px);overflow:hidden;top:45%!important;width:var(--dialog-width,320px)}@media (max-width:321px){.van-dialog{width:var(--dialog-small-screen-width,90%)}}.van-dialog__header{font-weight:var(--dialog-header-font-weight,500);line-height:var(--dialog-header-line-height,24px);padding-top:var(--dialog-header-padding-top,24px);text-align:center}.van-dialog__header--isolated{padding:var(--dialog-header-isolated-padding,24px 0)}.van-dialog__message{-webkit-overflow-scrolling:touch;font-size:var(--dialog-message-font-size,14px);line-height:var(--dialog-message-line-height,20px);max-height:var(--dialog-message-max-height,60vh);overflow-y:auto;padding:var(--dialog-message-padding,24px);text-align:center}.van-dialog__message-text{word-wrap:break-word}.van-dialog__message--hasTitle{color:var(--dialog-has-title-message-text-color,#646566);padding-top:var(--dialog-has-title-message-padding-top,8px)}.van-dialog__message--round-button{color:#323233;padding-bottom:16px}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__footer{display:flex}.van-dialog__footer--round-button{padding:8px 24px 16px!important;position:relative!important}.van-dialog__button{flex:1}.van-dialog__cancel,.van-dialog__confirm{border:0!important}.van-dialog-bounce-enter{opacity:0;transform:translate3d(-50%,-50%,0) scale(.7)}.van-dialog-bounce-leave-active{opacity:0;transform:translate3d(-50%,-50%,0) scale(.9)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..9596edde9c68d042913be2b36fa06bbea4cb8798
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.js
@@ -0,0 +1,12 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ dashed: Boolean,
+ hairline: Boolean,
+ contentPosition: String,
+ fontSize: String,
+ borderColor: String,
+ textColor: String,
+ customStyle: String,
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..a89ef4dbeefa01f5cd7971973aa4db6498d139f7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f6a5a457b2de3b6b00b580f35e7fa4ca51879c06
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.wxml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..215b14f4792ab551d63ee58427cfc94295091378
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ 'border-color': data.borderColor,
+ color: data.textColor,
+ 'font-size': addUnit(data.fontSize),
+ },
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e91dc447a8bb26d555f73714d0922c737a98c898
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/divider/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-divider{align-items:center;border:0 solid var(--divider-border-color,#ebedf0);color:var(--divider-text-color,#969799);display:flex;font-size:var(--divider-font-size,14px);line-height:var(--divider-line-height,24px);margin:var(--divider-margin,16px 0)}.van-divider:after,.van-divider:before{border-color:inherit;border-style:inherit;border-width:1px 0 0;box-sizing:border-box;display:block;flex:1;height:1px}.van-divider:before{content:""}.van-divider--hairline:after,.van-divider--hairline:before{transform:scaleY(.5)}.van-divider--dashed{border-style:dashed}.van-divider--center:before,.van-divider--left:before,.van-divider--right:before{margin-right:var(--divider-content-padding,16px)}.van-divider--center:after,.van-divider--left:after,.van-divider--right:after{content:"";margin-left:var(--divider-content-padding,16px)}.van-divider--left:before{max-width:var(--divider-content-left-width,10%)}.van-divider--right:after{max-width:var(--divider-content-right-width,10%)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..0b0d00f6b73fd8293bc121221037d4fa028b2265
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.js
@@ -0,0 +1,102 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ field: true,
+ relation: useParent('dropdown-menu', function () {
+ this.updateDataFromParent();
+ }),
+ props: {
+ value: {
+ type: null,
+ observer: 'rerender',
+ },
+ title: {
+ type: String,
+ observer: 'rerender',
+ },
+ disabled: Boolean,
+ titleClass: {
+ type: String,
+ observer: 'rerender',
+ },
+ options: {
+ type: Array,
+ value: [],
+ observer: 'rerender',
+ },
+ popupStyle: String,
+ },
+ data: {
+ transition: true,
+ showPopup: false,
+ showWrapper: false,
+ displayTitle: '',
+ },
+ methods: {
+ rerender() {
+ wx.nextTick(() => {
+ var _a;
+ (_a = this.parent) === null || _a === void 0 ? void 0 : _a.updateItemListData();
+ });
+ },
+ updateDataFromParent() {
+ if (this.parent) {
+ const { overlay, duration, activeColor, closeOnClickOverlay, direction, } = this.parent.data;
+ this.setData({
+ overlay,
+ duration,
+ activeColor,
+ closeOnClickOverlay,
+ direction,
+ });
+ }
+ },
+ onOpen() {
+ this.$emit('open');
+ },
+ onOpened() {
+ this.$emit('opened');
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ onClosed() {
+ this.$emit('closed');
+ this.setData({ showWrapper: false });
+ },
+ onOptionTap(event) {
+ const { option } = event.currentTarget.dataset;
+ const { value } = option;
+ const shouldEmitChange = this.data.value !== value;
+ this.setData({ showPopup: false, value });
+ this.$emit('close');
+ this.rerender();
+ if (shouldEmitChange) {
+ this.$emit('change', value);
+ }
+ },
+ toggle(show, options = {}) {
+ var _a;
+ const { showPopup } = this.data;
+ if (typeof show !== 'boolean') {
+ show = !showPopup;
+ }
+ if (show === showPopup) {
+ return;
+ }
+ this.setData({
+ transition: !options.immediate,
+ showPopup: show,
+ });
+ if (show) {
+ (_a = this.parent) === null || _a === void 0 ? void 0 : _a.getChildWrapperStyle().then((wrapperStyle) => {
+ this.setData({ wrapperStyle, showWrapper: true });
+ this.rerender();
+ });
+ }
+ else {
+ this.rerender();
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..88d540990b8eb84cabe720e54930e910490c6715
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.json
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-popup": "../popup/index",
+ "van-cell": "../cell/index",
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..dd75292f8c5ae8ecf10ba79cf5753dff37b80b9c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.wxml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..80505e9fef652fa4521aafbd10d8284971d1d4d5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-dropdown-item{left:0;overflow:hidden;position:fixed;right:0}.van-dropdown-item__option{text-align:left}.van-dropdown-item__option--active .van-dropdown-item__icon,.van-dropdown-item__option--active .van-dropdown-item__title{color:var(--dropdown-menu-option-active-color,#ee0a24)}.van-dropdown-item--up{top:0}.van-dropdown-item--down{bottom:0}.van-dropdown-item__icon{display:block;line-height:inherit}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/shared.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/shared.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..774eb4cad53d4d4ece6f25d1023770bb9277f415
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/shared.d.ts
@@ -0,0 +1,5 @@
+export interface Option {
+ text: string;
+ value: string | number;
+ icon: string;
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/shared.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/shared.js
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-item/shared.js
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..1ed1a8787ac8517611b31341ed025036583d3616
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.js
@@ -0,0 +1,112 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+import { addUnit, getRect, getSystemInfoSync } from '../common/utils';
+let ARRAY = [];
+VantComponent({
+ field: true,
+ relation: useChildren('dropdown-item', function () {
+ this.updateItemListData();
+ }),
+ props: {
+ activeColor: {
+ type: String,
+ observer: 'updateChildrenData',
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildrenData',
+ },
+ zIndex: {
+ type: Number,
+ value: 10,
+ },
+ duration: {
+ type: Number,
+ value: 200,
+ observer: 'updateChildrenData',
+ },
+ direction: {
+ type: String,
+ value: 'down',
+ observer: 'updateChildrenData',
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildrenData',
+ },
+ closeOnClickOutside: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ itemListData: [],
+ },
+ beforeCreate() {
+ const { windowHeight } = getSystemInfoSync();
+ this.windowHeight = windowHeight;
+ ARRAY.push(this);
+ },
+ destroyed() {
+ ARRAY = ARRAY.filter((item) => item !== this);
+ },
+ methods: {
+ updateItemListData() {
+ this.setData({
+ itemListData: this.children.map((child) => child.data),
+ });
+ },
+ updateChildrenData() {
+ this.children.forEach((child) => {
+ child.updateDataFromParent();
+ });
+ },
+ toggleItem(active) {
+ this.children.forEach((item, index) => {
+ const { showPopup } = item.data;
+ if (index === active) {
+ item.toggle();
+ }
+ else if (showPopup) {
+ item.toggle(false, { immediate: true });
+ }
+ });
+ },
+ close() {
+ this.children.forEach((child) => {
+ child.toggle(false, { immediate: true });
+ });
+ },
+ getChildWrapperStyle() {
+ const { zIndex, direction } = this.data;
+ return getRect(this, '.van-dropdown-menu').then((rect) => {
+ const { top = 0, bottom = 0 } = rect;
+ const offset = direction === 'down' ? bottom : this.windowHeight - top;
+ let wrapperStyle = `z-index: ${zIndex};`;
+ if (direction === 'down') {
+ wrapperStyle += `top: ${addUnit(offset)};`;
+ }
+ else {
+ wrapperStyle += `bottom: ${addUnit(offset)};`;
+ }
+ return wrapperStyle;
+ });
+ },
+ onTitleTap(event) {
+ const { index } = event.currentTarget.dataset;
+ const child = this.children[index];
+ if (!child.data.disabled) {
+ ARRAY.forEach((menuItem) => {
+ if (menuItem &&
+ menuItem.data.closeOnClickOutside &&
+ menuItem !== this) {
+ menuItem.close();
+ }
+ });
+ this.toggleItem(index);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..cfd661d1e56877a530f6556897f2d4a63034414b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.wxml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+ {{ computed.displayTitle(item) }}
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..65388549c6d2168b32ee11ac2074e095c0804fab
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.wxs
@@ -0,0 +1,16 @@
+/* eslint-disable */
+function displayTitle(item) {
+ if (item.title) {
+ return item.title;
+ }
+
+ var match = item.options.filter(function(option) {
+ return option.value === item.value;
+ });
+ var displayTitle = match.length ? match[0].text : '';
+ return displayTitle;
+}
+
+module.exports = {
+ displayTitle: displayTitle
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..daa5748c9b933a4b3a4cb9af6307514ee9131831
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/dropdown-menu/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-dropdown-menu{background-color:var(--dropdown-menu-background-color,#fff);box-shadow:var(--dropdown-menu-box-shadow,0 2px 12px hsla(210,1%,40%,.12));display:flex;height:var(--dropdown-menu-height,50px);-webkit-user-select:none;user-select:none}.van-dropdown-menu__item{align-items:center;display:flex;flex:1;justify-content:center;min-width:0}.van-dropdown-menu__item:active{opacity:.7}.van-dropdown-menu__item--disabled:active{opacity:1}.van-dropdown-menu__item--disabled .van-dropdown-menu__title{color:var(--dropdown-menu-title-disabled-text-color,#969799)}.van-dropdown-menu__title{box-sizing:border-box;color:var(--dropdown-menu-title-text-color,#323233);font-size:var(--dropdown-menu-title-font-size,15px);line-height:var(--dropdown-menu-title-line-height,18px);max-width:100%;padding:var(--dropdown-menu-title-padding,0 8px);position:relative}.van-dropdown-menu__title:after{border-color:transparent transparent currentcolor currentcolor;border-style:solid;border-width:3px;content:"";margin-top:-5px;opacity:.8;position:absolute;right:-4px;top:50%;transform:rotate(-45deg)}.van-dropdown-menu__title--active{color:var(--dropdown-menu-title-active-text-color,#ee0a24)}.van-dropdown-menu__title--down:after{margin-top:-1px;transform:rotate(135deg)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..842e1bb66b21ea227d8c51dba984a230803f53a4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.js
@@ -0,0 +1,10 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ description: String,
+ image: {
+ type: String,
+ value: 'default',
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..a89ef4dbeefa01f5cd7971973aa4db6498d139f7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..9c7b719a7249f1bf5dd67f876ccc4123b0a2d609
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.wxml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ description }}
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..9696dd47452feaefa1f178b9fd8c4da4af280cf7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.wxs
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var PRESETS = ['error', 'search', 'default', 'network'];
+
+function imageUrl(image) {
+ if (PRESETS.indexOf(image) !== -1) {
+ return 'https://img.yzcdn.cn/vant/empty-image-' + image + '.png';
+ }
+
+ return image;
+}
+
+module.exports = {
+ imageUrl: imageUrl,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..0fb74fe523f9866b0081971c82a3a8d63342c6c6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/empty/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-empty{align-items:center;box-sizing:border-box;display:flex;flex-direction:column;justify-content:center;padding:32px 0}.van-empty__image{height:160px;width:160px}.van-empty__image:empty{display:none}.van-empty__image__img{height:100%;width:100%}.van-empty__image:not(:empty)+.van-empty__image{display:none}.van-empty__description{color:#969799;font-size:14px;line-height:20px;margin-top:16px;padding:0 60px}.van-empty__description:empty,.van-empty__description:not(:empty)+.van-empty__description{display:none}.van-empty__bottom{margin-top:24px}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..35627a2b8198be5209249cf334cb15b5415e6726
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.js
@@ -0,0 +1,107 @@
+import { nextTick } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { commonProps, inputProps, textareaProps } from './props';
+VantComponent({
+ field: true,
+ classes: ['input-class', 'right-icon-class', 'label-class'],
+ props: Object.assign(Object.assign(Object.assign(Object.assign({}, commonProps), inputProps), textareaProps), { size: String, icon: String, label: String, error: Boolean, center: Boolean, isLink: Boolean, leftIcon: String, rightIcon: String, autosize: null, required: Boolean, iconClass: String, clickable: Boolean, inputAlign: String, customStyle: String, errorMessage: String, arrowDirection: String, showWordLimit: Boolean, errorMessageAlign: String, readonly: {
+ type: Boolean,
+ observer: 'setShowClear',
+ }, clearable: {
+ type: Boolean,
+ observer: 'setShowClear',
+ }, clearTrigger: {
+ type: String,
+ value: 'focus',
+ }, border: {
+ type: Boolean,
+ value: true,
+ }, titleWidth: {
+ type: String,
+ value: '6.2em',
+ }, clearIcon: {
+ type: String,
+ value: 'clear',
+ } }),
+ data: {
+ focused: false,
+ innerValue: '',
+ showClear: false,
+ },
+ created() {
+ this.value = this.data.value;
+ this.setData({ innerValue: this.value });
+ },
+ methods: {
+ onInput(event) {
+ const { value = '' } = event.detail || {};
+ this.value = value;
+ this.setShowClear();
+ this.emitChange();
+ },
+ onFocus(event) {
+ this.focused = true;
+ this.setShowClear();
+ this.$emit('focus', event.detail);
+ },
+ onBlur(event) {
+ this.focused = false;
+ this.setShowClear();
+ this.$emit('blur', event.detail);
+ },
+ onClickIcon() {
+ this.$emit('click-icon');
+ },
+ onClickInput(event) {
+ this.$emit('click-input', event.detail);
+ },
+ onClear() {
+ this.setData({ innerValue: '' });
+ this.value = '';
+ this.setShowClear();
+ nextTick(() => {
+ this.emitChange();
+ this.$emit('clear', '');
+ });
+ },
+ onConfirm(event) {
+ const { value = '' } = event.detail || {};
+ this.value = value;
+ this.setShowClear();
+ this.$emit('confirm', value);
+ },
+ setValue(value) {
+ this.value = value;
+ this.setShowClear();
+ if (value === '') {
+ this.setData({ innerValue: '' });
+ }
+ this.emitChange();
+ },
+ onLineChange(event) {
+ this.$emit('linechange', event.detail);
+ },
+ onKeyboardHeightChange(event) {
+ this.$emit('keyboardheightchange', event.detail);
+ },
+ emitChange() {
+ this.setData({ value: this.value });
+ nextTick(() => {
+ this.$emit('input', this.value);
+ this.$emit('change', this.value);
+ });
+ },
+ setShowClear() {
+ const { clearable, readonly, clearTrigger } = this.data;
+ const { focused, value } = this;
+ let showClear = false;
+ if (clearable && !readonly) {
+ const hasValue = !!value;
+ const trigger = clearTrigger === 'always' || (clearTrigger === 'focus' && focused);
+ showClear = hasValue && trigger;
+ }
+ this.setData({ showClear });
+ },
+ noop() { },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..5906c5048acd40f797098314747f67ef4e5107db
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-cell": "../cell/index",
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ec2e0ea87387128ff72f33a62d16a7fca86867e4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.wxml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ value.length >= maxlength ? maxlength : value.length }} /{{ maxlength }}
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..78575b9a87aba798b6c39d6723f84c330b4d1592
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function inputStyle(autosize) {
+ if (autosize && autosize.constructor === 'Object') {
+ return style({
+ 'min-height': addUnit(autosize.minHeight),
+ 'max-height': addUnit(autosize.maxHeight),
+ });
+ }
+
+ return '';
+}
+
+module.exports = {
+ inputStyle: inputStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..7571fe64f84d9e3d0e975aac5f3bfcad00c3de80
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-field{--cell-icon-size:var(--field-icon-size,16px)}.van-field__label{color:var(--field-label-color,#646566)}.van-field__label--disabled{color:var(--field-disabled-text-color,#c8c9cc)}.van-field__body{align-items:center;display:flex}.van-field__body--textarea{box-sizing:border-box;line-height:1.2em;min-height:var(--cell-line-height,24px);padding:3.6px 0}.van-field__control:empty+.van-field__control{display:block}.van-field__control{background-color:initial;border:0;box-sizing:border-box;color:var(--field-input-text-color,#323233);display:none;height:var(--cell-line-height,24px);line-height:inherit;margin:0;min-height:var(--cell-line-height,24px);padding:0;position:relative;resize:none;text-align:left;width:100%}.van-field__control:empty{display:none}.van-field__control--textarea{height:var(--field-text-area-min-height,18px);min-height:var(--field-text-area-min-height,18px)}.van-field__control--error{color:var(--field-input-error-text-color,#ee0a24)}.van-field__control--disabled{background-color:initial;color:var(--field-input-disabled-text-color,#c8c9cc);opacity:1}.van-field__control--center{text-align:center}.van-field__control--right{text-align:right}.van-field__control--custom{align-items:center;display:flex;min-height:var(--cell-line-height,24px)}.van-field__placeholder{color:var(--field-placeholder-text-color,#c8c9cc);left:0;pointer-events:none;position:absolute;right:0;top:0}.van-field__placeholder--error{color:var(--field-error-message-color,#ee0a24)}.van-field__icon-root{align-items:center;display:flex;min-height:var(--cell-line-height,24px)}.van-field__clear-root,.van-field__icon-container{line-height:inherit;margin-right:calc(var(--padding-xs, 8px)*-1);padding:0 var(--padding-xs,8px);vertical-align:middle}.van-field__button,.van-field__clear-root,.van-field__icon-container{flex-shrink:0}.van-field__clear-root{color:var(--field-clear-icon-color,#c8c9cc);font-size:var(--field-clear-icon-size,16px)}.van-field__icon-container{color:var(--field-icon-container-color,#969799);font-size:var(--field-icon-size,16px)}.van-field__icon-container:empty{display:none}.van-field__button{padding-left:var(--padding-xs,8px)}.van-field__button:empty{display:none}.van-field__error-message{color:var(--field-error-message-color,#ee0a24);font-size:var(--field-error-message-text-font-size,12px);text-align:left}.van-field__error-message--center{text-align:center}.van-field__error-message--right{text-align:right}.van-field__word-limit{color:var(--field-word-limit-color,#646566);font-size:var(--field-word-limit-font-size,12px);line-height:var(--field-word-limit-line-height,16px);margin-top:var(--padding-base,4px);text-align:right}.van-field__word-num{display:inline}.van-field__word-num--full{color:var(--field-word-num-full-color,#ee0a24)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/input.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/input.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..efe9a08d0521d242aa2f751df8644d8f21d520de
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/input.wxml
@@ -0,0 +1,28 @@
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/props.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/props.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..5cd130a127920f96ed4f24a02c5d240470b50772
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/props.d.ts
@@ -0,0 +1,4 @@
+///
+export declare const commonProps: WechatMiniprogram.Component.PropertyOption;
+export declare const inputProps: WechatMiniprogram.Component.PropertyOption;
+export declare const textareaProps: WechatMiniprogram.Component.PropertyOption;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/props.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/props.js
new file mode 100644
index 0000000000000000000000000000000000000000..ae405b319b5c85d7da5c3cea650669fcceb796f6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/props.js
@@ -0,0 +1,64 @@
+export const commonProps = {
+ value: {
+ type: String,
+ observer(value) {
+ if (value !== this.value) {
+ this.setData({ innerValue: value });
+ this.value = value;
+ }
+ },
+ },
+ placeholder: String,
+ placeholderStyle: String,
+ placeholderClass: String,
+ disabled: Boolean,
+ maxlength: {
+ type: Number,
+ value: -1,
+ },
+ cursorSpacing: {
+ type: Number,
+ value: 50,
+ },
+ autoFocus: Boolean,
+ focus: Boolean,
+ cursor: {
+ type: Number,
+ value: -1,
+ },
+ selectionStart: {
+ type: Number,
+ value: -1,
+ },
+ selectionEnd: {
+ type: Number,
+ value: -1,
+ },
+ adjustPosition: {
+ type: Boolean,
+ value: true,
+ },
+ holdKeyboard: Boolean,
+};
+export const inputProps = {
+ type: {
+ type: String,
+ value: 'text',
+ },
+ password: Boolean,
+ confirmType: String,
+ confirmHold: Boolean,
+ alwaysEmbed: Boolean,
+};
+export const textareaProps = {
+ autoHeight: Boolean,
+ fixed: Boolean,
+ showConfirmBar: {
+ type: Boolean,
+ value: true,
+ },
+ disableDefaultPadding: {
+ type: Boolean,
+ value: true,
+ },
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/textarea.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/textarea.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..5015a51d2a21b4716c90e3f57410a40d36b39786
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/field/textarea.wxml
@@ -0,0 +1,29 @@
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..06fa62c10eb5eb579f06908ffd03b1b875bff7f2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.js
@@ -0,0 +1,36 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+import { button } from '../mixins/button';
+import { link } from '../mixins/link';
+VantComponent({
+ mixins: [link, button],
+ relation: useParent('goods-action'),
+ props: {
+ text: String,
+ color: String,
+ loading: Boolean,
+ disabled: Boolean,
+ plain: Boolean,
+ type: {
+ type: String,
+ value: 'danger',
+ },
+ },
+ methods: {
+ onClick(event) {
+ this.$emit('click', event.detail);
+ this.jumpLink();
+ },
+ updateStyle() {
+ if (this.parent == null) {
+ return;
+ }
+ const { index } = this;
+ const { children = [] } = this.parent;
+ this.setData({
+ isFirst: index === 0,
+ isLast: index === children.length - 1,
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..b567686850ec6f95a2a40e909f5dd112d2d03b62
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../button/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..4505f212ea7df1a6656fc4f79b0d3c1f4ec90e96
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.wxml
@@ -0,0 +1,30 @@
+
+
+ {{ text }}
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..759a1d9a67889dfe37ca0866f3ee14a817925db3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-button/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{flex:1}.van-goods-action-button{--button-warning-background-color:var(--goods-action-button-warning-color,linear-gradient(to right,#ffd01e,#ff8917));--button-danger-background-color:var(--goods-action-button-danger-color,linear-gradient(to right,#ff6034,#ee0a24));--button-default-height:var(--goods-action-button-height,40px);--button-line-height:var(--goods-action-button-line-height,20px);--button-plain-background-color:var(--goods-action-button-plain-color,#fff);--button-border-width:0;display:block}.van-goods-action-button--first{--button-border-radius:999px 0 0 var(--goods-action-button-border-radius,999px);margin-left:5px}.van-goods-action-button--last{--button-border-radius:0 999px var(--goods-action-button-border-radius,999px) 0;margin-right:5px}.van-goods-action-button--first.van-goods-action-button--last{--button-border-radius:var(--goods-action-button-border-radius,999px)}.van-goods-action-button--plain{--button-border-width:1px}.van-goods-action-button__inner{font-weight:var(--font-weight-bold,500)!important;width:100%}@media (max-width:321px){.van-goods-action-button{font-size:13px}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..91bd34c933071e9467eaaa348dda1d437d774a45
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.js
@@ -0,0 +1,21 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { link } from '../mixins/link';
+VantComponent({
+ classes: ['icon-class', 'text-class'],
+ mixins: [link, button],
+ props: {
+ text: String,
+ dot: Boolean,
+ info: String,
+ icon: String,
+ disabled: Boolean,
+ loading: Boolean,
+ },
+ methods: {
+ onClick(event) {
+ this.$emit('click', event.detail);
+ this.jumpLink();
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..93bfe8abb60e11baa5ebf4aa2402203c430db0ac
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-button": "../button/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..65b7ced3db51dc3960d88b326fc601cf9316cd1e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.wxml
@@ -0,0 +1,35 @@
+
+
+
+ {{ text }}
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..6e4758d9ce36d18d59a05c62282b2f51f566b63c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action-icon/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-goods-action-icon{border:none!important;color:var(--goods-action-icon-text-color,#646566)!important;display:flex!important;flex-direction:column;font-size:var(--goods-action-icon-font-size,10px)!important;height:var(--goods-action-icon-height,50px)!important;justify-content:center!important;line-height:1!important;min-width:var(--goods-action-icon-width,48px)}.van-goods-action-icon__icon{color:var(--goods-action-icon-color,#323233);display:flex;font-size:var(--goods-action-icon-size,18px);margin:0 auto 5px}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..6b2ed745a438078098f8a8e126d550a110bb8f72
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.js
@@ -0,0 +1,15 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('goods-action-button', function () {
+ this.children.forEach((item) => {
+ item.updateStyle();
+ });
+ }),
+ props: {
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..569450c738b936a2a39785eda9778c0efa6c83c4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.wxml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..7793e77784430a1f5cc02957fa4d34e6ef0877d3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/goods-action/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-goods-action{align-items:center;background-color:var(--goods-action-background-color,#fff);bottom:0;box-sizing:initial;display:flex;height:var(--goods-action-height,50px);left:0;position:fixed;right:0}.van-goods-action--safe{padding-bottom:env(safe-area-inset-bottom)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..dbeb18a397b1589cc84565e70364f7ee6ddc0f41
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.js
@@ -0,0 +1,52 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+import { link } from '../mixins/link';
+VantComponent({
+ relation: useParent('grid'),
+ classes: ['content-class', 'icon-class', 'text-class'],
+ mixins: [link],
+ props: {
+ icon: String,
+ iconColor: String,
+ iconPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ dot: Boolean,
+ info: null,
+ badge: null,
+ text: String,
+ useSlot: Boolean,
+ },
+ data: {
+ viewStyle: '',
+ },
+ mounted() {
+ this.updateStyle();
+ },
+ methods: {
+ updateStyle() {
+ if (!this.parent) {
+ return;
+ }
+ const { data, children } = this.parent;
+ const { columnNum, border, square, gutter, clickable, center, direction, reverse, iconSize, } = data;
+ this.setData({
+ center,
+ border,
+ square,
+ gutter,
+ clickable,
+ direction,
+ reverse,
+ iconSize,
+ index: children.indexOf(this),
+ columnNum,
+ });
+ },
+ onClick() {
+ this.$emit('click');
+ this.jumpLink();
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..e95087d85e93f731de2ab89d1a7d03b441bb19a2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.wxml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ text }}
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..2cfe37d03ccc8259ffcfb761d6c901027f71cac2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.wxs
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function wrapperStyle(data) {
+ var width = 100 / data.columnNum + '%';
+
+ return style({
+ width: width,
+ 'padding-top': data.square ? width : null,
+ 'padding-right': addUnit(data.gutter),
+ 'margin-top':
+ data.index >= data.columnNum && !data.square
+ ? addUnit(data.gutter)
+ : null,
+ });
+}
+
+function contentStyle(data) {
+ return data.square
+ ? style({
+ right: addUnit(data.gutter),
+ bottom: addUnit(data.gutter),
+ height: 'auto',
+ })
+ : '';
+}
+
+module.exports = {
+ wrapperStyle: wrapperStyle,
+ contentStyle: contentStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..acaea84578df7c184b2ca30c28ba8158e7c05ce5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid-item/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-grid-item{box-sizing:border-box;float:left;position:relative}.van-grid-item--square{height:0}.van-grid-item__content{background-color:var(--grid-item-content-background-color,#fff);box-sizing:border-box;display:flex;flex-direction:column;height:100%;padding:var(--grid-item-content-padding,16px 8px)}.van-grid-item__content:after{border-width:0 1px 1px 0;z-index:1}.van-grid-item__content--surround:after{border-width:1px}.van-grid-item__content--center{align-items:center;justify-content:center}.van-grid-item__content--square{left:0;position:absolute;right:0;top:0}.van-grid-item__content--horizontal{flex-direction:row}.van-grid-item__content--horizontal .van-grid-item__text{margin:0 0 0 8px}.van-grid-item__content--reverse{flex-direction:column-reverse}.van-grid-item__content--reverse .van-grid-item__text{margin:0 0 8px}.van-grid-item__content--horizontal.van-grid-item__content--reverse{flex-direction:row-reverse}.van-grid-item__content--horizontal.van-grid-item__content--reverse .van-grid-item__text{margin:0 8px 0 0}.van-grid-item__content--clickable:active{background-color:var(--grid-item-content-active-color,#f2f3f5)}.van-grid-item__icon{align-items:center;display:flex;font-size:var(--grid-item-icon-size,26px);height:var(--grid-item-icon-size,26px)}.van-grid-item__text{word-wrap:break-word;color:var(--grid-item-text-color,#646566);font-size:var(--grid-item-text-font-size,12px)}.van-grid-item__icon+.van-grid-item__text{margin-top:8px}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..41dfa4ced63978146ad03a265bd69b1db6052cf5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.js
@@ -0,0 +1,55 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('grid-item'),
+ props: {
+ square: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ gutter: {
+ type: null,
+ value: 0,
+ observer: 'updateChildren',
+ },
+ clickable: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ columnNum: {
+ type: Number,
+ value: 4,
+ observer: 'updateChildren',
+ },
+ center: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildren',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildren',
+ },
+ direction: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ iconSize: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ reverse: {
+ type: Boolean,
+ value: false,
+ observer: 'updateChildren',
+ },
+ },
+ methods: {
+ updateChildren() {
+ this.children.forEach((child) => {
+ child.updateStyle();
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..2e4118f3583aa3193e488f7121437b4eb176af79
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.wxml
@@ -0,0 +1,8 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..cd3b1bd59a948be3912e8051298b63d48f77719b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.wxs
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'padding-left': addUnit(data.gutter),
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e347440ed3ef35ac5ad16b33aefae95a77e06802
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/grid/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-grid{box-sizing:border-box;overflow:hidden;position:relative}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..34fee338a181fbc6a1127171c6ba54328d8c72c0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.js
@@ -0,0 +1,20 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ dot: Boolean,
+ info: null,
+ size: null,
+ color: String,
+ customStyle: String,
+ classPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ name: String,
+ },
+ methods: {
+ onClick() {
+ this.$emit('click');
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ebe009c3904229ff4005710f4136b55cf57aa
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..3c701745ba48735071a00b5eae3d9c2975d4a7b6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.wxml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..45e3aa0a1f132fbf0bf922943c359b332c667413
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.wxs
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function isImage(name) {
+ return name.indexOf('/') !== -1;
+}
+
+function rootClass(data) {
+ var classes = ['custom-class'];
+
+ if (data.classPrefix != null) {
+ classes.push(data.classPrefix);
+ }
+
+ if (isImage(data.name)) {
+ classes.push('van-icon--image');
+ } else if (data.classPrefix != null) {
+ classes.push(data.classPrefix + '-' + data.name);
+ }
+
+ return classes.join(' ');
+}
+
+function rootStyle(data) {
+ return style([
+ {
+ color: data.color,
+ 'font-size': addUnit(data.size),
+ },
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ isImage: isImage,
+ rootClass: rootClass,
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..5e74802304d1c25f294fdb6c4d54dbd4f8c80cc3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/icon/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-icon{text-rendering:auto;-webkit-font-smoothing:antialiased;font:normal normal normal 14px/1 vant-icon;font-size:inherit;position:relative}.van-icon,.van-icon:before{display:inline-block}.van-icon-exchange:before{content:"\e6af"}.van-icon-eye:before{content:"\e6b0"}.van-icon-enlarge:before{content:"\e6b1"}.van-icon-expand-o:before{content:"\e6b2"}.van-icon-eye-o:before{content:"\e6b3"}.van-icon-expand:before{content:"\e6b4"}.van-icon-filter-o:before{content:"\e6b5"}.van-icon-fire:before{content:"\e6b6"}.van-icon-fail:before{content:"\e6b7"}.van-icon-failure:before{content:"\e6b8"}.van-icon-fire-o:before{content:"\e6b9"}.van-icon-flag-o:before{content:"\e6ba"}.van-icon-font:before{content:"\e6bb"}.van-icon-font-o:before{content:"\e6bc"}.van-icon-gem-o:before{content:"\e6bd"}.van-icon-flower-o:before{content:"\e6be"}.van-icon-gem:before{content:"\e6bf"}.van-icon-gift-card:before{content:"\e6c0"}.van-icon-friends:before{content:"\e6c1"}.van-icon-friends-o:before{content:"\e6c2"}.van-icon-gold-coin:before{content:"\e6c3"}.van-icon-gold-coin-o:before{content:"\e6c4"}.van-icon-good-job-o:before{content:"\e6c5"}.van-icon-gift:before{content:"\e6c6"}.van-icon-gift-o:before{content:"\e6c7"}.van-icon-gift-card-o:before{content:"\e6c8"}.van-icon-good-job:before{content:"\e6c9"}.van-icon-home-o:before{content:"\e6ca"}.van-icon-goods-collect:before{content:"\e6cb"}.van-icon-graphic:before{content:"\e6cc"}.van-icon-goods-collect-o:before{content:"\e6cd"}.van-icon-hot-o:before{content:"\e6ce"}.van-icon-info:before{content:"\e6cf"}.van-icon-hotel-o:before{content:"\e6d0"}.van-icon-info-o:before{content:"\e6d1"}.van-icon-hot-sale-o:before{content:"\e6d2"}.van-icon-hot:before{content:"\e6d3"}.van-icon-like:before{content:"\e6d4"}.van-icon-idcard:before{content:"\e6d5"}.van-icon-invitation:before{content:"\e6d6"}.van-icon-like-o:before{content:"\e6d7"}.van-icon-hot-sale:before{content:"\e6d8"}.van-icon-location-o:before{content:"\e6d9"}.van-icon-location:before{content:"\e6da"}.van-icon-label:before{content:"\e6db"}.van-icon-lock:before{content:"\e6dc"}.van-icon-label-o:before{content:"\e6dd"}.van-icon-map-marked:before{content:"\e6de"}.van-icon-logistics:before{content:"\e6df"}.van-icon-manager:before{content:"\e6e0"}.van-icon-more:before{content:"\e6e1"}.van-icon-live:before{content:"\e6e2"}.van-icon-manager-o:before{content:"\e6e3"}.van-icon-medal:before{content:"\e6e4"}.van-icon-more-o:before{content:"\e6e5"}.van-icon-music-o:before{content:"\e6e6"}.van-icon-music:before{content:"\e6e7"}.van-icon-new-arrival-o:before{content:"\e6e8"}.van-icon-medal-o:before{content:"\e6e9"}.van-icon-new-o:before{content:"\e6ea"}.van-icon-free-postage:before{content:"\e6eb"}.van-icon-newspaper-o:before{content:"\e6ec"}.van-icon-new-arrival:before{content:"\e6ed"}.van-icon-minus:before{content:"\e6ee"}.van-icon-orders-o:before{content:"\e6ef"}.van-icon-new:before{content:"\e6f0"}.van-icon-paid:before{content:"\e6f1"}.van-icon-notes-o:before{content:"\e6f2"}.van-icon-other-pay:before{content:"\e6f3"}.van-icon-pause-circle:before{content:"\e6f4"}.van-icon-pause:before{content:"\e6f5"}.van-icon-pause-circle-o:before{content:"\e6f6"}.van-icon-peer-pay:before{content:"\e6f7"}.van-icon-pending-payment:before{content:"\e6f8"}.van-icon-passed:before{content:"\e6f9"}.van-icon-plus:before{content:"\e6fa"}.van-icon-phone-circle-o:before{content:"\e6fb"}.van-icon-phone-o:before{content:"\e6fc"}.van-icon-printer:before{content:"\e6fd"}.van-icon-photo-fail:before{content:"\e6fe"}.van-icon-phone:before{content:"\e6ff"}.van-icon-photo-o:before{content:"\e700"}.van-icon-play-circle:before{content:"\e701"}.van-icon-play:before{content:"\e702"}.van-icon-phone-circle:before{content:"\e703"}.van-icon-point-gift-o:before{content:"\e704"}.van-icon-point-gift:before{content:"\e705"}.van-icon-play-circle-o:before{content:"\e706"}.van-icon-shrink:before{content:"\e707"}.van-icon-photo:before{content:"\e708"}.van-icon-qr:before{content:"\e709"}.van-icon-qr-invalid:before{content:"\e70a"}.van-icon-question-o:before{content:"\e70b"}.van-icon-revoke:before{content:"\e70c"}.van-icon-replay:before{content:"\e70d"}.van-icon-service:before{content:"\e70e"}.van-icon-question:before{content:"\e70f"}.van-icon-search:before{content:"\e710"}.van-icon-refund-o:before{content:"\e711"}.van-icon-service-o:before{content:"\e712"}.van-icon-scan:before{content:"\e713"}.van-icon-share:before{content:"\e714"}.van-icon-send-gift-o:before{content:"\e715"}.van-icon-share-o:before{content:"\e716"}.van-icon-setting:before{content:"\e717"}.van-icon-points:before{content:"\e718"}.van-icon-photograph:before{content:"\e719"}.van-icon-shop:before{content:"\e71a"}.van-icon-shop-o:before{content:"\e71b"}.van-icon-shop-collect-o:before{content:"\e71c"}.van-icon-shop-collect:before{content:"\e71d"}.van-icon-smile:before{content:"\e71e"}.van-icon-shopping-cart-o:before{content:"\e71f"}.van-icon-sign:before{content:"\e720"}.van-icon-sort:before{content:"\e721"}.van-icon-star-o:before{content:"\e722"}.van-icon-smile-comment-o:before{content:"\e723"}.van-icon-stop:before{content:"\e724"}.van-icon-stop-circle-o:before{content:"\e725"}.van-icon-smile-o:before{content:"\e726"}.van-icon-star:before{content:"\e727"}.van-icon-success:before{content:"\e728"}.van-icon-stop-circle:before{content:"\e729"}.van-icon-records:before{content:"\e72a"}.van-icon-shopping-cart:before{content:"\e72b"}.van-icon-tosend:before{content:"\e72c"}.van-icon-todo-list:before{content:"\e72d"}.van-icon-thumb-circle-o:before{content:"\e72e"}.van-icon-thumb-circle:before{content:"\e72f"}.van-icon-umbrella-circle:before{content:"\e730"}.van-icon-underway:before{content:"\e731"}.van-icon-upgrade:before{content:"\e732"}.van-icon-todo-list-o:before{content:"\e733"}.van-icon-tv-o:before{content:"\e734"}.van-icon-underway-o:before{content:"\e735"}.van-icon-user-o:before{content:"\e736"}.van-icon-vip-card-o:before{content:"\e737"}.van-icon-vip-card:before{content:"\e738"}.van-icon-send-gift:before{content:"\e739"}.van-icon-wap-home:before{content:"\e73a"}.van-icon-wap-nav:before{content:"\e73b"}.van-icon-volume-o:before{content:"\e73c"}.van-icon-video:before{content:"\e73d"}.van-icon-wap-home-o:before{content:"\e73e"}.van-icon-volume:before{content:"\e73f"}.van-icon-warning:before{content:"\e740"}.van-icon-weapp-nav:before{content:"\e741"}.van-icon-wechat-pay:before{content:"\e742"}.van-icon-warning-o:before{content:"\e743"}.van-icon-wechat:before{content:"\e744"}.van-icon-setting-o:before{content:"\e745"}.van-icon-youzan-shield:before{content:"\e746"}.van-icon-warn-o:before{content:"\e747"}.van-icon-smile-comment:before{content:"\e748"}.van-icon-user-circle-o:before{content:"\e749"}.van-icon-video-o:before{content:"\e74a"}.van-icon-add-square:before{content:"\e65c"}.van-icon-add:before{content:"\e65d"}.van-icon-arrow-down:before{content:"\e65e"}.van-icon-arrow-up:before{content:"\e65f"}.van-icon-arrow:before{content:"\e660"}.van-icon-after-sale:before{content:"\e661"}.van-icon-add-o:before{content:"\e662"}.van-icon-alipay:before{content:"\e663"}.van-icon-ascending:before{content:"\e664"}.van-icon-apps-o:before{content:"\e665"}.van-icon-aim:before{content:"\e666"}.van-icon-award:before{content:"\e667"}.van-icon-arrow-left:before{content:"\e668"}.van-icon-award-o:before{content:"\e669"}.van-icon-audio:before{content:"\e66a"}.van-icon-bag-o:before{content:"\e66b"}.van-icon-balance-list:before{content:"\e66c"}.van-icon-back-top:before{content:"\e66d"}.van-icon-bag:before{content:"\e66e"}.van-icon-balance-pay:before{content:"\e66f"}.van-icon-balance-o:before{content:"\e670"}.van-icon-bar-chart-o:before{content:"\e671"}.van-icon-bars:before{content:"\e672"}.van-icon-balance-list-o:before{content:"\e673"}.van-icon-birthday-cake-o:before{content:"\e674"}.van-icon-bookmark:before{content:"\e675"}.van-icon-bill:before{content:"\e676"}.van-icon-bell:before{content:"\e677"}.van-icon-browsing-history-o:before{content:"\e678"}.van-icon-browsing-history:before{content:"\e679"}.van-icon-bookmark-o:before{content:"\e67a"}.van-icon-bulb-o:before{content:"\e67b"}.van-icon-bullhorn-o:before{content:"\e67c"}.van-icon-bill-o:before{content:"\e67d"}.van-icon-calendar-o:before{content:"\e67e"}.van-icon-brush-o:before{content:"\e67f"}.van-icon-card:before{content:"\e680"}.van-icon-cart-o:before{content:"\e681"}.van-icon-cart-circle:before{content:"\e682"}.van-icon-cart-circle-o:before{content:"\e683"}.van-icon-cart:before{content:"\e684"}.van-icon-cash-on-deliver:before{content:"\e685"}.van-icon-cash-back-record:before{content:"\e686"}.van-icon-cashier-o:before{content:"\e687"}.van-icon-chart-trending-o:before{content:"\e688"}.van-icon-certificate:before{content:"\e689"}.van-icon-chat:before{content:"\e68a"}.van-icon-clear:before{content:"\e68b"}.van-icon-chat-o:before{content:"\e68c"}.van-icon-checked:before{content:"\e68d"}.van-icon-clock:before{content:"\e68e"}.van-icon-clock-o:before{content:"\e68f"}.van-icon-close:before{content:"\e690"}.van-icon-closed-eye:before{content:"\e691"}.van-icon-circle:before{content:"\e692"}.van-icon-cluster-o:before{content:"\e693"}.van-icon-column:before{content:"\e694"}.van-icon-comment-circle-o:before{content:"\e695"}.van-icon-cluster:before{content:"\e696"}.van-icon-comment:before{content:"\e697"}.van-icon-comment-o:before{content:"\e698"}.van-icon-comment-circle:before{content:"\e699"}.van-icon-completed:before{content:"\e69a"}.van-icon-credit-pay:before{content:"\e69b"}.van-icon-coupon:before{content:"\e69c"}.van-icon-debit-pay:before{content:"\e69d"}.van-icon-coupon-o:before{content:"\e69e"}.van-icon-contact:before{content:"\e69f"}.van-icon-descending:before{content:"\e6a0"}.van-icon-desktop-o:before{content:"\e6a1"}.van-icon-diamond-o:before{content:"\e6a2"}.van-icon-description:before{content:"\e6a3"}.van-icon-delete:before{content:"\e6a4"}.van-icon-diamond:before{content:"\e6a5"}.van-icon-delete-o:before{content:"\e6a6"}.van-icon-cross:before{content:"\e6a7"}.van-icon-edit:before{content:"\e6a8"}.van-icon-ellipsis:before{content:"\e6a9"}.van-icon-down:before{content:"\e6aa"}.van-icon-discount:before{content:"\e6ab"}.van-icon-ecard-pay:before{content:"\e6ac"}.van-icon-envelop-o:before{content:"\e6ae"}.van-icon-shield-o:before{content:"\e74b"}.van-icon-guide-o:before{content:"\e74c"}@font-face{font-display:auto;font-family:vant-icon;font-style:normal;font-weight:400;src:url(//at.alicdn.com/t/font_2553510_61agzg96wm8.woff2?t=1631948257467) format("woff2"), url(//at.alicdn.com/t/font_2553510_61agzg96wm8.woff?t=1631948257467) format("woff"), url(//at.alicdn.com/t/font_2553510_61agzg96wm8.ttf?t=1631948257467) format("truetype")}:host{align-items:center;display:inline-flex;justify-content:center}.van-icon--image{height:1em;width:1em}.van-icon__image{height:100%;width:100%}.van-icon__info{z-index:1}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..06c9dd157240dbd674da84603ab939d29f457ac4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.js
@@ -0,0 +1,60 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+VantComponent({
+ mixins: [button],
+ classes: ['custom-class', 'loading-class', 'error-class', 'image-class'],
+ props: {
+ src: {
+ type: String,
+ observer() {
+ this.setData({
+ error: false,
+ loading: true,
+ });
+ },
+ },
+ round: Boolean,
+ width: null,
+ height: null,
+ radius: null,
+ lazyLoad: Boolean,
+ useErrorSlot: Boolean,
+ useLoadingSlot: Boolean,
+ showMenuByLongpress: Boolean,
+ fit: {
+ type: String,
+ value: 'fill',
+ },
+ showError: {
+ type: Boolean,
+ value: true,
+ },
+ showLoading: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ error: false,
+ loading: true,
+ viewStyle: '',
+ },
+ methods: {
+ onLoad(event) {
+ this.setData({
+ loading: false,
+ });
+ this.$emit('load', event.detail);
+ },
+ onError(event) {
+ this.setData({
+ loading: false,
+ error: true,
+ });
+ this.$emit('error', event.detail);
+ },
+ onClick(event) {
+ this.$emit('click', event.detail);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..e00a588702da8887bbe5f8261aea5764251d14ff
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..d3092bd927962f5e9b8efecdbfd45d1fec8d1047
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.wxml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..cec14b8ba8ad2401e523469e2c7cc98c76f7e7d4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.wxs
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ width: addUnit(data.width),
+ height: addUnit(data.height),
+ 'border-radius': addUnit(data.radius),
+ },
+ data.radius ? 'overflow: hidden' : null,
+ ]);
+}
+
+var FIT_MODE_MAP = {
+ none: 'center',
+ fill: 'scaleToFill',
+ cover: 'aspectFill',
+ contain: 'aspectFit',
+ widthFix: 'widthFix',
+ heightFix: 'heightFix',
+};
+
+function mode(fit) {
+ return FIT_MODE_MAP[fit];
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ mode: mode,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..a9c6ebbbbfbbda937fc7f51e17a41ed06fb9e38d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/image/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-image{display:inline-block;position:relative}.van-image--round{border-radius:50%;overflow:hidden}.van-image--round .van-image__img{border-radius:inherit}.van-image__error,.van-image__img,.van-image__loading{display:block;height:100%;width:100%}.van-image__error,.van-image__loading{align-items:center;background-color:var(--image-placeholder-background-color,#f7f8fa);color:var(--image-placeholder-text-color,#969799);display:flex;flex-direction:column;font-size:var(--image-placeholder-font-size,14px);justify-content:center;left:0;position:absolute;top:0}.van-image__loading-icon{color:var(--image-loading-icon-color,#dcdee0);font-size:var(--image-loading-icon-size,32px)!important}.van-image__error-icon{color:var(--image-error-icon-color,#dcdee0);font-size:var(--image-error-icon-size,32px)!important}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..85265e950a6c79072f51b915dc2163dfedda7efe
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.js
@@ -0,0 +1,25 @@
+import { getRect } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ relation: useParent('index-bar'),
+ props: {
+ useSlot: Boolean,
+ index: null,
+ },
+ data: {
+ active: false,
+ wrapperStyle: '',
+ anchorStyle: '',
+ },
+ methods: {
+ scrollIntoView(scrollTop) {
+ getRect(this, '.van-index-anchor-wrapper').then((rect) => {
+ wx.pageScrollTo({
+ duration: 0,
+ scrollTop: scrollTop + rect.top - this.parent.data.stickyOffsetTop,
+ });
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..49affa7c456f035d7698b11e94f2c11294ed4c97
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.wxml
@@ -0,0 +1,14 @@
+
+
+
+
+ {{ index }}
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..4b91560bf8fae1c195d7a64c8ac71ca720b6f329
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-anchor/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-index-anchor{background-color:var(--index-anchor-background-color,transparent);color:var(--index-anchor-text-color,#323233);font-size:var(--index-anchor-font-size,14px);font-weight:var(--index-anchor-font-weight,500);line-height:var(--index-anchor-line-height,32px);padding:var(--index-anchor-padding,0 16px)}.van-index-anchor--active{background-color:var(--index-anchor-active-background-color,#fff);color:var(--index-anchor-active-text-color,#07c160);left:0;right:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..201b2e3693a0bbb5509ad6b5a1cfc6cb17491774
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.js
@@ -0,0 +1,243 @@
+import { GREEN } from '../common/color';
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+import { getRect, isDef } from '../common/utils';
+import { pageScrollMixin } from '../mixins/page-scroll';
+const indexList = () => {
+ const indexList = [];
+ const charCodeOfA = 'A'.charCodeAt(0);
+ for (let i = 0; i < 26; i++) {
+ indexList.push(String.fromCharCode(charCodeOfA + i));
+ }
+ return indexList;
+};
+VantComponent({
+ relation: useChildren('index-anchor', function () {
+ this.updateData();
+ }),
+ props: {
+ sticky: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ highlightColor: {
+ type: String,
+ value: GREEN,
+ },
+ stickyOffsetTop: {
+ type: Number,
+ value: 0,
+ },
+ indexList: {
+ type: Array,
+ value: indexList(),
+ },
+ },
+ mixins: [
+ pageScrollMixin(function (event) {
+ this.scrollTop = (event === null || event === void 0 ? void 0 : event.scrollTop) || 0;
+ this.onScroll();
+ }),
+ ],
+ data: {
+ activeAnchorIndex: null,
+ showSidebar: false,
+ },
+ created() {
+ this.scrollTop = 0;
+ },
+ methods: {
+ updateData() {
+ wx.nextTick(() => {
+ if (this.timer != null) {
+ clearTimeout(this.timer);
+ }
+ this.timer = setTimeout(() => {
+ this.setData({
+ showSidebar: !!this.children.length,
+ });
+ this.setRect().then(() => {
+ this.onScroll();
+ });
+ }, 0);
+ });
+ },
+ setRect() {
+ return Promise.all([
+ this.setAnchorsRect(),
+ this.setListRect(),
+ this.setSiderbarRect(),
+ ]);
+ },
+ setAnchorsRect() {
+ return Promise.all(this.children.map((anchor) => getRect(anchor, '.van-index-anchor-wrapper').then((rect) => {
+ Object.assign(anchor, {
+ height: rect.height,
+ top: rect.top + this.scrollTop,
+ });
+ })));
+ },
+ setListRect() {
+ return getRect(this, '.van-index-bar').then((rect) => {
+ Object.assign(this, {
+ height: rect.height,
+ top: rect.top + this.scrollTop,
+ });
+ });
+ },
+ setSiderbarRect() {
+ return getRect(this, '.van-index-bar__sidebar').then((res) => {
+ if (!isDef(res)) {
+ return;
+ }
+ this.sidebar = {
+ height: res.height,
+ top: res.top,
+ };
+ });
+ },
+ setDiffData({ target, data }) {
+ const diffData = {};
+ Object.keys(data).forEach((key) => {
+ if (target.data[key] !== data[key]) {
+ diffData[key] = data[key];
+ }
+ });
+ if (Object.keys(diffData).length) {
+ target.setData(diffData);
+ }
+ },
+ getAnchorRect(anchor) {
+ return getRect(anchor, '.van-index-anchor-wrapper').then((rect) => ({
+ height: rect.height,
+ top: rect.top,
+ }));
+ },
+ getActiveAnchorIndex() {
+ const { children, scrollTop } = this;
+ const { sticky, stickyOffsetTop } = this.data;
+ for (let i = this.children.length - 1; i >= 0; i--) {
+ const preAnchorHeight = i > 0 ? children[i - 1].height : 0;
+ const reachTop = sticky ? preAnchorHeight + stickyOffsetTop : 0;
+ if (reachTop + scrollTop >= children[i].top) {
+ return i;
+ }
+ }
+ return -1;
+ },
+ onScroll() {
+ const { children = [], scrollTop } = this;
+ if (!children.length) {
+ return;
+ }
+ const { sticky, stickyOffsetTop, zIndex, highlightColor } = this.data;
+ const active = this.getActiveAnchorIndex();
+ this.setDiffData({
+ target: this,
+ data: {
+ activeAnchorIndex: active,
+ },
+ });
+ if (sticky) {
+ let isActiveAnchorSticky = false;
+ if (active !== -1) {
+ isActiveAnchorSticky =
+ children[active].top <= stickyOffsetTop + scrollTop;
+ }
+ children.forEach((item, index) => {
+ if (index === active) {
+ let wrapperStyle = '';
+ let anchorStyle = `
+ color: ${highlightColor};
+ `;
+ if (isActiveAnchorSticky) {
+ wrapperStyle = `
+ height: ${children[index].height}px;
+ `;
+ anchorStyle = `
+ position: fixed;
+ top: ${stickyOffsetTop}px;
+ z-index: ${zIndex};
+ color: ${highlightColor};
+ `;
+ }
+ this.setDiffData({
+ target: item,
+ data: {
+ active: true,
+ anchorStyle,
+ wrapperStyle,
+ },
+ });
+ }
+ else if (index === active - 1) {
+ const currentAnchor = children[index];
+ const currentOffsetTop = currentAnchor.top;
+ const targetOffsetTop = index === children.length - 1
+ ? this.top
+ : children[index + 1].top;
+ const parentOffsetHeight = targetOffsetTop - currentOffsetTop;
+ const translateY = parentOffsetHeight - currentAnchor.height;
+ const anchorStyle = `
+ position: relative;
+ transform: translate3d(0, ${translateY}px, 0);
+ z-index: ${zIndex};
+ color: ${highlightColor};
+ `;
+ this.setDiffData({
+ target: item,
+ data: {
+ active: true,
+ anchorStyle,
+ },
+ });
+ }
+ else {
+ this.setDiffData({
+ target: item,
+ data: {
+ active: false,
+ anchorStyle: '',
+ wrapperStyle: '',
+ },
+ });
+ }
+ });
+ }
+ },
+ onClick(event) {
+ this.scrollToAnchor(event.target.dataset.index);
+ },
+ onTouchMove(event) {
+ const sidebarLength = this.children.length;
+ const touch = event.touches[0];
+ const itemHeight = this.sidebar.height / sidebarLength;
+ let index = Math.floor((touch.clientY - this.sidebar.top) / itemHeight);
+ if (index < 0) {
+ index = 0;
+ }
+ else if (index > sidebarLength - 1) {
+ index = sidebarLength - 1;
+ }
+ this.scrollToAnchor(index);
+ },
+ onTouchStop() {
+ this.scrollToAnchorIndex = null;
+ },
+ scrollToAnchor(index) {
+ if (typeof index !== 'number' || this.scrollToAnchorIndex === index) {
+ return;
+ }
+ this.scrollToAnchorIndex = index;
+ const anchor = this.children.find((item) => item.data.index === this.data.indexList[index]);
+ if (anchor) {
+ anchor.scrollIntoView(this.scrollTop);
+ this.$emit('select', anchor.data.index);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..19a59cf9d4b29e1a17e0d70fb082b0d6e4efb901
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.wxml
@@ -0,0 +1,22 @@
+
+
+
+
+
+ {{ item }}
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..85688010ef3b251a6b3f2585350b29603ff1fb87
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/index-bar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-index-bar{position:relative}.van-index-bar__sidebar{display:flex;flex-direction:column;position:fixed;right:0;text-align:center;top:50%;transform:translateY(-50%);-webkit-user-select:none;user-select:none}.van-index-bar__index{font-size:var(--index-bar-index-font-size,10px);font-weight:500;line-height:var(--index-bar-index-line-height,14px);padding:0 var(--padding-base,4px) 0 var(--padding-md,16px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..6eac8f8d4086240eaaf494cbffc65db1c057a410
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.js
@@ -0,0 +1,8 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ dot: Boolean,
+ info: null,
+ customStyle: String,
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..b39b52459903981d61ff38bd135cb7eda703df5b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.wxml
@@ -0,0 +1,7 @@
+
+
+{{ dot ? '' : info }}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..375ed5a0803873e8c1074ed87de70c280a9148c7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/info/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-info{align-items:center;background-color:var(--info-background-color,#ee0a24);border:var(--info-border-width,1px) solid #fff;border-radius:var(--info-size,16px);box-sizing:border-box;color:var(--info-color,#fff);display:inline-flex;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);font-size:var(--info-font-size,12px);font-weight:var(--info-font-weight,500);height:var(--info-size,16px);justify-content:center;min-width:var(--info-size,16px);padding:var(--info-padding,0 3px);position:absolute;right:0;top:0;transform:translate(50%,-50%);transform-origin:100%;white-space:nowrap}.van-info--dot{background-color:var(--info-dot-color,#ee0a24);border-radius:100%;height:var(--info-dot-size,8px);min-width:0;width:var(--info-dot-size,8px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..f5f96bada7d79a63bfcfe7e333cf7fd2be55aacb
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.js
@@ -0,0 +1,16 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ color: String,
+ vertical: Boolean,
+ type: {
+ type: String,
+ value: 'circular',
+ },
+ size: String,
+ textSize: String,
+ },
+ data: {
+ array12: Array.from({ length: 12 }),
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..7d4a5397bb1347c5530b6f977cb7fd1fdf29b460
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.wxml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..02a0b800c651e55938ecc3ee12d10e37b3782614
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.wxs
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function spinnerStyle(data) {
+ return style({
+ color: data.color,
+ width: addUnit(data.size),
+ height: addUnit(data.size),
+ });
+}
+
+function textStyle(data) {
+ return style({
+ 'font-size': addUnit(data.textSize),
+ });
+}
+
+module.exports = {
+ spinnerStyle: spinnerStyle,
+ textStyle: textStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..fc84e848598d1df11a8eab582d429bcf40ab8c8a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/loading/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{font-size:0;line-height:1}.van-loading{align-items:center;color:var(--loading-spinner-color,#c8c9cc);display:inline-flex;justify-content:center}.van-loading__spinner{animation:van-rotate var(--loading-spinner-animation-duration,.8s) linear infinite;box-sizing:border-box;height:var(--loading-spinner-size,30px);max-height:100%;max-width:100%;position:relative;width:var(--loading-spinner-size,30px)}.van-loading__spinner--spinner{animation-timing-function:steps(12)}.van-loading__spinner--circular{border:1px solid transparent;border-radius:100%;border-top-color:initial}.van-loading__text{color:var(--loading-text-color,#969799);font-size:var(--loading-text-font-size,14px);line-height:var(--loading-text-line-height,20px);margin-left:var(--padding-xs,8px)}.van-loading__text:empty{display:none}.van-loading--vertical{flex-direction:column}.van-loading--vertical .van-loading__text{margin:var(--padding-xs,8px) 0 0}.van-loading__dot{height:100%;left:0;position:absolute;top:0;width:100%}.van-loading__dot:before{background-color:currentColor;border-radius:40%;content:" ";display:block;height:25%;margin:0 auto;width:2px}.van-loading__dot:first-of-type{opacity:1;transform:rotate(30deg)}.van-loading__dot:nth-of-type(2){opacity:.9375;transform:rotate(60deg)}.van-loading__dot:nth-of-type(3){opacity:.875;transform:rotate(90deg)}.van-loading__dot:nth-of-type(4){opacity:.8125;transform:rotate(120deg)}.van-loading__dot:nth-of-type(5){opacity:.75;transform:rotate(150deg)}.van-loading__dot:nth-of-type(6){opacity:.6875;transform:rotate(180deg)}.van-loading__dot:nth-of-type(7){opacity:.625;transform:rotate(210deg)}.van-loading__dot:nth-of-type(8){opacity:.5625;transform:rotate(240deg)}.van-loading__dot:nth-of-type(9){opacity:.5;transform:rotate(270deg)}.van-loading__dot:nth-of-type(10){opacity:.4375;transform:rotate(300deg)}.van-loading__dot:nth-of-type(11){opacity:.375;transform:rotate(330deg)}.van-loading__dot:nth-of-type(12){opacity:.3125;transform:rotate(1turn)}@keyframes van-rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/basic.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/basic.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..b273369000f6e6bf52f7934d65fc62097909c85f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/basic.d.ts
@@ -0,0 +1 @@
+export declare const basic: string;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/basic.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/basic.js
new file mode 100644
index 0000000000000000000000000000000000000000..617cc070b0b22eb08029d6f3e8f4fcb2fd4431fb
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/basic.js
@@ -0,0 +1,11 @@
+export const basic = Behavior({
+ methods: {
+ $emit(name, detail, options) {
+ this.triggerEvent(name, detail, options);
+ },
+ set(data) {
+ this.setData(data);
+ return new Promise((resolve) => wx.nextTick(resolve));
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/button.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/button.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..b51db875930c7926639ca56610fbeb66ce84e639
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/button.d.ts
@@ -0,0 +1 @@
+export declare const button: string;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/button.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/button.js
new file mode 100644
index 0000000000000000000000000000000000000000..ac1e569732515872739a6c9ffcbf4d99ef8acc29
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/button.js
@@ -0,0 +1,41 @@
+import { canIUseGetUserProfile } from '../common/version';
+export const button = Behavior({
+ externalClasses: ['hover-class'],
+ properties: {
+ id: String,
+ lang: String,
+ businessId: Number,
+ sessionFrom: String,
+ sendMessageTitle: String,
+ sendMessagePath: String,
+ sendMessageImg: String,
+ showMessageCard: Boolean,
+ appParameter: String,
+ ariaLabel: String,
+ openType: String,
+ getUserProfileDesc: String,
+ },
+ data: {
+ canIUseGetUserProfile: canIUseGetUserProfile(),
+ },
+ methods: {
+ onGetUserInfo(event) {
+ this.triggerEvent('getuserinfo', event.detail);
+ },
+ onContact(event) {
+ this.triggerEvent('contact', event.detail);
+ },
+ onGetPhoneNumber(event) {
+ this.triggerEvent('getphonenumber', event.detail);
+ },
+ onError(event) {
+ this.triggerEvent('error', event.detail);
+ },
+ onLaunchApp(event) {
+ this.triggerEvent('launchapp', event.detail);
+ },
+ onOpenSetting(event) {
+ this.triggerEvent('opensetting', event.detail);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/link.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/link.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..d58043bc25e7d88c6982bf203ac10fd051dbf265
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/link.d.ts
@@ -0,0 +1 @@
+export declare const link: string;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/link.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/link.js
new file mode 100644
index 0000000000000000000000000000000000000000..8c274e1d04b12dcb3338029d05c1026a92879cfc
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/link.js
@@ -0,0 +1,23 @@
+export const link = Behavior({
+ properties: {
+ url: String,
+ linkType: {
+ type: String,
+ value: 'navigateTo',
+ },
+ },
+ methods: {
+ jumpLink(urlKey = 'url') {
+ const url = this.data[urlKey];
+ if (url) {
+ if (this.data.linkType === 'navigateTo' &&
+ getCurrentPages().length > 9) {
+ wx.redirectTo({ url });
+ }
+ else {
+ wx[this.data.linkType]({ url });
+ }
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/page-scroll.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/page-scroll.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..a316bb86eb414e37d50eb84ac36977ef5e1af037
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/page-scroll.d.ts
@@ -0,0 +1,5 @@
+///
+declare type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption;
+declare type Scroller = (this: WechatMiniprogram.Component.TrivialInstance, event?: IPageScrollOption) => void;
+export declare const pageScrollMixin: (scroller: Scroller) => string;
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/page-scroll.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/page-scroll.js
new file mode 100644
index 0000000000000000000000000000000000000000..a1a37f5e4649f3b4a65569bdfca40e4243de820d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/page-scroll.js
@@ -0,0 +1,33 @@
+import { getCurrentPage, isDef } from '../common/utils';
+function onPageScroll(event) {
+ const { vanPageScroller = [] } = getCurrentPage();
+ vanPageScroller.forEach((scroller) => {
+ if (typeof scroller === 'function') {
+ // @ts-ignore
+ scroller(event);
+ }
+ });
+}
+export const pageScrollMixin = (scroller) => Behavior({
+ attached() {
+ const page = getCurrentPage();
+ if (Array.isArray(page.vanPageScroller)) {
+ page.vanPageScroller.push(scroller.bind(this));
+ }
+ else {
+ page.vanPageScroller =
+ typeof page.onPageScroll === 'function'
+ ? [page.onPageScroll.bind(page), scroller.bind(this)]
+ : [scroller.bind(this)];
+ }
+ page.onPageScroll = onPageScroll;
+ },
+ detached() {
+ var _a;
+ const page = getCurrentPage();
+ if (isDef(page)) {
+ page.vanPageScroller =
+ ((_a = page.vanPageScroller) === null || _a === void 0 ? void 0 : _a.filter((item) => item !== scroller)) || [];
+ }
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/touch.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/touch.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..35ee831d9a0feb9a56a516ff5d6c12c110c0eca0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/touch.d.ts
@@ -0,0 +1 @@
+export declare const touch: string;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/touch.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/touch.js
new file mode 100644
index 0000000000000000000000000000000000000000..ecefae8e76d84bc3d93cf0d59a7e0346084ada73
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/touch.js
@@ -0,0 +1,37 @@
+// @ts-nocheck
+const MIN_DISTANCE = 10;
+function getDirection(x, y) {
+ if (x > y && x > MIN_DISTANCE) {
+ return 'horizontal';
+ }
+ if (y > x && y > MIN_DISTANCE) {
+ return 'vertical';
+ }
+ return '';
+}
+export const touch = Behavior({
+ methods: {
+ resetTouchStatus() {
+ this.direction = '';
+ this.deltaX = 0;
+ this.deltaY = 0;
+ this.offsetX = 0;
+ this.offsetY = 0;
+ },
+ touchStart(event) {
+ this.resetTouchStatus();
+ const touch = event.touches[0];
+ this.startX = touch.clientX;
+ this.startY = touch.clientY;
+ },
+ touchMove(event) {
+ const touch = event.touches[0];
+ this.deltaX = touch.clientX - this.startX;
+ this.deltaY = touch.clientY - this.startY;
+ this.offsetX = Math.abs(this.deltaX);
+ this.offsetY = Math.abs(this.deltaY);
+ this.direction =
+ this.direction || getDirection(this.offsetX, this.offsetY);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/transition.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/transition.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..dd829e5c9f88673fffac7cce28bcff9e9165a613
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/transition.d.ts
@@ -0,0 +1 @@
+export declare function transition(showDefaultValue: boolean): string;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/transition.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/transition.js
new file mode 100644
index 0000000000000000000000000000000000000000..bc7fc8eb15fbc30f6a7c5fbbbeaf89a61073d6fc
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/mixins/transition.js
@@ -0,0 +1,115 @@
+// @ts-nocheck
+import { requestAnimationFrame } from '../common/utils';
+import { isObj } from '../common/validator';
+const getClassNames = (name) => ({
+ enter: `van-${name}-enter van-${name}-enter-active enter-class enter-active-class`,
+ 'enter-to': `van-${name}-enter-to van-${name}-enter-active enter-to-class enter-active-class`,
+ leave: `van-${name}-leave van-${name}-leave-active leave-class leave-active-class`,
+ 'leave-to': `van-${name}-leave-to van-${name}-leave-active leave-to-class leave-active-class`,
+});
+export function transition(showDefaultValue) {
+ return Behavior({
+ properties: {
+ customStyle: String,
+ // @ts-ignore
+ show: {
+ type: Boolean,
+ value: showDefaultValue,
+ observer: 'observeShow',
+ },
+ // @ts-ignore
+ duration: {
+ type: null,
+ value: 300,
+ observer: 'observeDuration',
+ },
+ name: {
+ type: String,
+ value: 'fade',
+ },
+ },
+ data: {
+ type: '',
+ inited: false,
+ display: false,
+ },
+ ready() {
+ if (this.data.show === true) {
+ this.observeShow(true, false);
+ }
+ },
+ methods: {
+ observeShow(value, old) {
+ if (value === old) {
+ return;
+ }
+ value ? this.enter() : this.leave();
+ },
+ enter() {
+ const { duration, name } = this.data;
+ const classNames = getClassNames(name);
+ const currentDuration = isObj(duration) ? duration.enter : duration;
+ this.status = 'enter';
+ this.$emit('before-enter');
+ requestAnimationFrame(() => {
+ if (this.status !== 'enter') {
+ return;
+ }
+ this.$emit('enter');
+ this.setData({
+ inited: true,
+ display: true,
+ classes: classNames.enter,
+ currentDuration,
+ });
+ requestAnimationFrame(() => {
+ if (this.status !== 'enter') {
+ return;
+ }
+ this.transitionEnded = false;
+ this.setData({ classes: classNames['enter-to'] });
+ });
+ });
+ },
+ leave() {
+ if (!this.data.display) {
+ return;
+ }
+ const { duration, name } = this.data;
+ const classNames = getClassNames(name);
+ const currentDuration = isObj(duration) ? duration.leave : duration;
+ this.status = 'leave';
+ this.$emit('before-leave');
+ requestAnimationFrame(() => {
+ if (this.status !== 'leave') {
+ return;
+ }
+ this.$emit('leave');
+ this.setData({
+ classes: classNames.leave,
+ currentDuration,
+ });
+ requestAnimationFrame(() => {
+ if (this.status !== 'leave') {
+ return;
+ }
+ this.transitionEnded = false;
+ setTimeout(() => this.onTransitionEnd(), currentDuration);
+ this.setData({ classes: classNames['leave-to'] });
+ });
+ });
+ },
+ onTransitionEnd() {
+ if (this.transitionEnded) {
+ return;
+ }
+ this.transitionEnded = true;
+ this.$emit(`after-${this.status}`);
+ const { show, display } = this.data;
+ if (!show && display) {
+ this.setData({ display: false });
+ }
+ },
+ },
+ });
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..30fc5aaa687fae443c0f97e12e606cbe9d3d569d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.js
@@ -0,0 +1,65 @@
+import { VantComponent } from '../common/component';
+import { getRect, getSystemInfoSync } from '../common/utils';
+VantComponent({
+ classes: ['title-class'],
+ props: {
+ title: String,
+ fixed: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ placeholder: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ leftText: String,
+ rightText: String,
+ customStyle: String,
+ leftArrow: Boolean,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ height: 46,
+ },
+ created() {
+ const { statusBarHeight } = getSystemInfoSync();
+ this.setData({
+ statusBarHeight,
+ height: 46 + statusBarHeight,
+ });
+ },
+ mounted() {
+ this.setHeight();
+ },
+ methods: {
+ onClickLeft() {
+ this.$emit('click-left');
+ },
+ onClickRight() {
+ this.$emit('click-right');
+ },
+ setHeight() {
+ if (!this.data.fixed || !this.data.placeholder) {
+ return;
+ }
+ wx.nextTick(() => {
+ getRect(this, '.van-nav-bar').then((res) => {
+ if (res && 'height' in res) {
+ this.setData({ height: res.height });
+ }
+ });
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..b6405fd5a35bb49759e1c89813373eddde8e24ec
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.wxml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+ {{ leftText }}
+
+
+
+
+ {{ title }}
+
+
+
+ {{ rightText }}
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..55b4158d14d76e9bbcb2512beab9097d3bf4aae8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.wxs
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function barStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
+ });
+}
+
+module.exports = {
+ barStyle: barStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..94c5b449c4e4da6d08aa44a1a047e279129a2363
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/nav-bar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-nav-bar{background-color:var(--nav-bar-background-color,#fff);height:var(--nav-bar-height,46px);line-height:var(--nav-bar-height,46px);position:relative;text-align:center;-webkit-user-select:none;user-select:none}.van-nav-bar__content{height:100%;position:relative}.van-nav-bar__text{color:var(--nav-bar-text-color,#1989fa);display:inline-block;margin:0 calc(var(--padding-md, 16px)*-1);padding:0 var(--padding-md,16px);vertical-align:middle}.van-nav-bar__text--hover{background-color:#f2f3f5}.van-nav-bar__arrow{color:var(--nav-bar-icon-color,#1989fa)!important;font-size:var(--nav-bar-arrow-size,16px)!important;vertical-align:middle}.van-nav-bar__arrow+.van-nav-bar__text{margin-left:-20px;padding-left:25px}.van-nav-bar--fixed{left:0;position:fixed;top:0;width:100%}.van-nav-bar__title{color:var(--nav-bar-title-text-color,#323233);font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--font-weight-bold,500);margin:0 auto;max-width:60%}.van-nav-bar__left,.van-nav-bar__right{align-items:center;bottom:0;display:flex;font-size:var(--font-size-md,14px);position:absolute;top:0}.van-nav-bar__left{left:var(--padding-md,16px)}.van-nav-bar__right{right:var(--padding-md,16px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..ef36999686da2b87814c9148daa45640b9bef187
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.js
@@ -0,0 +1,120 @@
+import { VantComponent } from '../common/component';
+import { getRect, requestAnimationFrame } from '../common/utils';
+VantComponent({
+ props: {
+ text: {
+ type: String,
+ value: '',
+ observer: 'init',
+ },
+ mode: {
+ type: String,
+ value: '',
+ },
+ url: {
+ type: String,
+ value: '',
+ },
+ openType: {
+ type: String,
+ value: 'navigate',
+ },
+ delay: {
+ type: Number,
+ value: 1,
+ },
+ speed: {
+ type: Number,
+ value: 60,
+ observer: 'init',
+ },
+ scrollable: null,
+ leftIcon: {
+ type: String,
+ value: '',
+ },
+ color: String,
+ backgroundColor: String,
+ background: String,
+ wrapable: Boolean,
+ },
+ data: {
+ show: true,
+ },
+ created() {
+ this.resetAnimation = wx.createAnimation({
+ duration: 0,
+ timingFunction: 'linear',
+ });
+ },
+ destroyed() {
+ this.timer && clearTimeout(this.timer);
+ },
+ mounted() {
+ this.init();
+ },
+ methods: {
+ init() {
+ requestAnimationFrame(() => {
+ Promise.all([
+ getRect(this, '.van-notice-bar__content'),
+ getRect(this, '.van-notice-bar__wrap'),
+ ]).then((rects) => {
+ const [contentRect, wrapRect] = rects;
+ const { speed, scrollable, delay } = this.data;
+ if (contentRect == null ||
+ wrapRect == null ||
+ !contentRect.width ||
+ !wrapRect.width ||
+ scrollable === false) {
+ return;
+ }
+ if (scrollable || wrapRect.width < contentRect.width) {
+ const duration = ((wrapRect.width + contentRect.width) / speed) * 1000;
+ this.wrapWidth = wrapRect.width;
+ this.contentWidth = contentRect.width;
+ this.duration = duration;
+ this.animation = wx.createAnimation({
+ duration,
+ timingFunction: 'linear',
+ delay,
+ });
+ this.scroll();
+ }
+ });
+ });
+ },
+ scroll() {
+ this.timer && clearTimeout(this.timer);
+ this.timer = null;
+ this.setData({
+ animationData: this.resetAnimation
+ .translateX(this.wrapWidth)
+ .step()
+ .export(),
+ });
+ requestAnimationFrame(() => {
+ this.setData({
+ animationData: this.animation
+ .translateX(-this.contentWidth)
+ .step()
+ .export(),
+ });
+ });
+ this.timer = setTimeout(() => {
+ this.scroll();
+ }, this.duration);
+ },
+ onClickIcon(event) {
+ if (this.data.mode === 'closeable') {
+ this.timer && clearTimeout(this.timer);
+ this.timer = null;
+ this.setData({ show: false });
+ this.$emit('close', event.detail);
+ }
+ },
+ onClick(event) {
+ this.$emit('click', event);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..9f6ee24f3c28d31e5acb995b2949c15a1b360391
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.wxml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+ {{ text }}
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..11e6456f9c7334ad1af5c6c54ef6835e367b1e80
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.wxs
@@ -0,0 +1,15 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ color: data.color,
+ 'background-color': data.backgroundColor,
+ background: data.background,
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..497636cddb3f8dd380c148324d5791c5940a3175
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notice-bar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-notice-bar{align-items:center;background-color:var(--notice-bar-background-color,#fffbe8);color:var(--notice-bar-text-color,#ed6a0c);display:flex;font-size:var(--notice-bar-font-size,14px);height:var(--notice-bar-height,40px);line-height:var(--notice-bar-line-height,24px);padding:var(--notice-bar-padding,0 16px)}.van-notice-bar--withicon{padding-right:40px;position:relative}.van-notice-bar--wrapable{height:auto;padding:var(--notice-bar-wrapable-padding,8px 16px)}.van-notice-bar--wrapable .van-notice-bar__wrap{height:auto}.van-notice-bar--wrapable .van-notice-bar__content{position:relative;white-space:normal}.van-notice-bar__left-icon{align-items:center;display:flex;margin-right:4px;vertical-align:middle}.van-notice-bar__left-icon,.van-notice-bar__right-icon{font-size:var(--notice-bar-icon-size,16px);min-width:var(--notice-bar-icon-min-width,22px)}.van-notice-bar__right-icon{position:absolute;right:15px;top:10px}.van-notice-bar__wrap{flex:1;height:var(--notice-bar-line-height,24px);overflow:hidden;position:relative}.van-notice-bar__content{position:absolute;white-space:nowrap}.van-notice-bar__content.van-ellipsis{max-width:100%}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..d4aba2dcc6fd2d6bfd43b7fa83eea5c9f4caaaf1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.js
@@ -0,0 +1,65 @@
+import { VantComponent } from '../common/component';
+import { WHITE } from '../common/color';
+import { getSystemInfoSync } from '../common/utils';
+VantComponent({
+ props: {
+ message: String,
+ background: String,
+ type: {
+ type: String,
+ value: 'danger',
+ },
+ color: {
+ type: String,
+ value: WHITE,
+ },
+ duration: {
+ type: Number,
+ value: 3000,
+ },
+ zIndex: {
+ type: Number,
+ value: 110,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: false,
+ },
+ top: null,
+ },
+ data: {
+ show: false,
+ onOpened: null,
+ onClose: null,
+ onClick: null,
+ },
+ created() {
+ const { statusBarHeight } = getSystemInfoSync();
+ this.setData({ statusBarHeight });
+ },
+ methods: {
+ show() {
+ const { duration, onOpened } = this.data;
+ clearTimeout(this.timer);
+ this.setData({ show: true });
+ wx.nextTick(onOpened);
+ if (duration > 0 && duration !== Infinity) {
+ this.timer = setTimeout(() => {
+ this.hide();
+ }, duration);
+ }
+ },
+ hide() {
+ const { onClose } = this.data;
+ clearTimeout(this.timer);
+ this.setData({ show: false });
+ wx.nextTick(onClose);
+ },
+ onTap(event) {
+ const { onClick } = this.data;
+ if (onClick) {
+ onClick(event.detail);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..c14a65f6c3f924bd824f5813b33cebd96e005e1a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-transition": "../transition/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..42d913eb5d18c1214c0e238ae006ecd7de4629e3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.wxml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ {{ message }}
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..bbb94c28008eca5186f1cfbd7c50736c2f713255
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.wxs
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ top: addUnit(data.top),
+ });
+}
+
+function notifyStyle(data) {
+ return style({
+ background: data.background,
+ color: data.color,
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ notifyStyle: notifyStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..c030e9b277b36d1f27ab59208a20e3ac4864adac
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-notify{word-wrap:break-word;font-size:var(--notify-font-size,14px);line-height:var(--notify-line-height,20px);padding:var(--notify-padding,6px 15px);text-align:center}.van-notify__container{box-sizing:border-box;left:0;position:fixed;top:0;width:100%}.van-notify--primary{background-color:var(--notify-primary-background-color,#1989fa)}.van-notify--success{background-color:var(--notify-success-background-color,#07c160)}.van-notify--danger{background-color:var(--notify-danger-background-color,#ee0a24)}.van-notify--warning{background-color:var(--notify-warning-background-color,#ff976a)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/notify.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/notify.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..f6ee08f9b7ff4c7f6db6a4a2455ab465f66ce386
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/notify.d.ts
@@ -0,0 +1,20 @@
+interface NotifyOptions {
+ type?: 'primary' | 'success' | 'danger' | 'warning';
+ color?: string;
+ zIndex?: number;
+ top?: number;
+ message: string;
+ context?: any;
+ duration?: number;
+ selector?: string;
+ background?: string;
+ safeAreaInsetTop?: boolean;
+ onClick?: () => void;
+ onOpened?: () => void;
+ onClose?: () => void;
+}
+declare function Notify(options: NotifyOptions | string): any;
+declare namespace Notify {
+ var clear: (options?: NotifyOptions | undefined) => void;
+}
+export default Notify;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/notify.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/notify.js
new file mode 100644
index 0000000000000000000000000000000000000000..759b0981c859c7451eaedd9263d98cc8d9fda660
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/notify/notify.js
@@ -0,0 +1,46 @@
+import { WHITE } from '../common/color';
+const defaultOptions = {
+ selector: '#van-notify',
+ type: 'danger',
+ message: '',
+ background: '',
+ duration: 3000,
+ zIndex: 110,
+ top: 0,
+ color: WHITE,
+ safeAreaInsetTop: false,
+ onClick: () => { },
+ onOpened: () => { },
+ onClose: () => { },
+};
+function parseOptions(message) {
+ if (message == null) {
+ return {};
+ }
+ return typeof message === 'string' ? { message } : message;
+}
+function getContext() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+export default function Notify(options) {
+ options = Object.assign(Object.assign({}, defaultOptions), parseOptions(options));
+ const context = options.context || getContext();
+ const notify = context.selectComponent(options.selector);
+ delete options.context;
+ delete options.selector;
+ if (notify) {
+ notify.setData(options);
+ notify.showNotify();
+ return notify;
+ }
+ console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
+}
+Notify.clear = function (options) {
+ options = Object.assign(Object.assign({}, defaultOptions), parseOptions(options));
+ const context = options.context || getContext();
+ const notify = context.selectComponent(options.selector);
+ if (notify) {
+ notify.hide();
+ }
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..48117a0d2cb896414491c910d23abe9ef9f33b8a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.js
@@ -0,0 +1,26 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ show: Boolean,
+ customStyle: String,
+ duration: {
+ type: null,
+ value: 300,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ lockScroll: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ onClick() {
+ this.$emit('click');
+ },
+ // for prevent touchmove
+ noop() { },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..c14a65f6c3f924bd824f5813b33cebd96e005e1a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-transition": "../transition/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..92734a0c8547376e515a3c2eda14ebbd4e0d76c3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.wxml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..d1ad81ab25f782dd5edcb63183af75df497bef96
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/overlay/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-overlay{background-color:var(--overlay-background-color,rgba(0,0,0,.7));height:100%;left:0;position:fixed;top:0;width:100%}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..7b6a99a449481de8cc910ac78534940bc2ff48c9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.js
@@ -0,0 +1,9 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: ['header-class', 'footer-class'],
+ props: {
+ desc: String,
+ title: String,
+ status: String,
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0e5425cdfdb74071904957ca8bcfddb70782b1b4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-cell": "../cell/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..1843703b16bc47194f572866fd35c41c2d1c2154
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.wxml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..485edcd2dcd8850bd42232a52f0c01e24985098a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/panel/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-panel{background:var(--panel-background-color,#fff)}.van-panel__header-value{color:var(--panel-header-value-color,#ee0a24)}.van-panel__footer{padding:var(--panel-footer-padding,8px 16px)}.van-panel__footer:empty{display:none}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..abcc5208d051d7b45617ab215f98d779363f18be
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.js
@@ -0,0 +1,118 @@
+import { VantComponent } from '../common/component';
+import { range } from '../common/utils';
+import { isObj } from '../common/validator';
+const DEFAULT_DURATION = 200;
+VantComponent({
+ classes: ['active-class'],
+ props: {
+ valueKey: String,
+ className: String,
+ itemHeight: Number,
+ visibleItemCount: Number,
+ initialOptions: {
+ type: Array,
+ value: [],
+ },
+ defaultIndex: {
+ type: Number,
+ value: 0,
+ observer(value) {
+ this.setIndex(value);
+ },
+ },
+ },
+ data: {
+ startY: 0,
+ offset: 0,
+ duration: 0,
+ startOffset: 0,
+ options: [],
+ currentIndex: 0,
+ },
+ created() {
+ const { defaultIndex, initialOptions } = this.data;
+ this.set({
+ currentIndex: defaultIndex,
+ options: initialOptions,
+ }).then(() => {
+ this.setIndex(defaultIndex);
+ });
+ },
+ methods: {
+ getCount() {
+ return this.data.options.length;
+ },
+ onTouchStart(event) {
+ this.setData({
+ startY: event.touches[0].clientY,
+ startOffset: this.data.offset,
+ duration: 0,
+ });
+ },
+ onTouchMove(event) {
+ const { data } = this;
+ const deltaY = event.touches[0].clientY - data.startY;
+ this.setData({
+ offset: range(data.startOffset + deltaY, -(this.getCount() * data.itemHeight), data.itemHeight),
+ });
+ },
+ onTouchEnd() {
+ const { data } = this;
+ if (data.offset !== data.startOffset) {
+ this.setData({ duration: DEFAULT_DURATION });
+ const index = range(Math.round(-data.offset / data.itemHeight), 0, this.getCount() - 1);
+ this.setIndex(index, true);
+ }
+ },
+ onClickItem(event) {
+ const { index } = event.currentTarget.dataset;
+ this.setIndex(index, true);
+ },
+ adjustIndex(index) {
+ const { data } = this;
+ const count = this.getCount();
+ index = range(index, 0, count);
+ for (let i = index; i < count; i++) {
+ if (!this.isDisabled(data.options[i]))
+ return i;
+ }
+ for (let i = index - 1; i >= 0; i--) {
+ if (!this.isDisabled(data.options[i]))
+ return i;
+ }
+ },
+ isDisabled(option) {
+ return isObj(option) && option.disabled;
+ },
+ getOptionText(option) {
+ const { data } = this;
+ return isObj(option) && data.valueKey in option
+ ? option[data.valueKey]
+ : option;
+ },
+ setIndex(index, userAction) {
+ const { data } = this;
+ index = this.adjustIndex(index) || 0;
+ const offset = -index * data.itemHeight;
+ if (index !== data.currentIndex) {
+ return this.set({ offset, currentIndex: index }).then(() => {
+ userAction && this.$emit('change', index);
+ });
+ }
+ return this.set({ offset });
+ },
+ setValue(value) {
+ const { options } = this.data;
+ for (let i = 0; i < options.length; i++) {
+ if (this.getOptionText(options[i]) === value) {
+ return this.setIndex(i);
+ }
+ }
+ return Promise.resolve();
+ },
+ getValue() {
+ const { data } = this;
+ return data.options[data.currentIndex];
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f2c8da2be15c17d33f7fa986c9fd1edebcc4486d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.wxml
@@ -0,0 +1,23 @@
+
+
+
+
+
+ {{ computed.optionText(option, valueKey) }}
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..2d5a61172229791cf903d82e9014955615465ee8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.wxs
@@ -0,0 +1,36 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function isObj(x) {
+ var type = typeof x;
+ return x !== null && (type === 'object' || type === 'function');
+}
+
+function optionText(option, valueKey) {
+ return isObj(option) && option[valueKey] != null ? option[valueKey] : option;
+}
+
+function rootStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function wrapperStyle(data) {
+ var offset = addUnit(
+ data.offset + (data.itemHeight * (data.visibleItemCount - 1)) / 2
+ );
+
+ return style({
+ transition: 'transform ' + data.duration + 'ms',
+ 'line-height': addUnit(data.itemHeight),
+ transform: 'translate3d(0, ' + offset + ', 0)',
+ });
+}
+
+module.exports = {
+ optionText: optionText,
+ rootStyle: rootStyle,
+ wrapperStyle: wrapperStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..519a43898c3935ca275694c5dd866a97650e41bd
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker-column/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-picker-column{color:var(--picker-option-text-color,#000);font-size:var(--picker-option-font-size,16px);overflow:hidden;text-align:center}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{color:var(--picker-option-selected-text-color,#323233);font-weight:var(--font-weight-bold,500)}.van-picker-column__item--disabled{opacity:var(--picker-option-disabled-opacity,.3)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..cef057d630da54b8f5df66790631b8c1411b7a1b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.js
@@ -0,0 +1,136 @@
+import { VantComponent } from '../common/component';
+import { pickerProps } from './shared';
+VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: Object.assign(Object.assign({}, pickerProps), { valueKey: {
+ type: String,
+ value: 'text',
+ }, toolbarPosition: {
+ type: String,
+ value: 'top',
+ }, defaultIndex: {
+ type: Number,
+ value: 0,
+ }, columns: {
+ type: Array,
+ value: [],
+ observer(columns = []) {
+ this.simple = columns.length && !columns[0].values;
+ if (Array.isArray(this.children) && this.children.length) {
+ this.setColumns().catch(() => { });
+ }
+ },
+ } }),
+ beforeCreate() {
+ Object.defineProperty(this, 'children', {
+ get: () => this.selectAllComponents('.van-picker__column') || [],
+ });
+ },
+ methods: {
+ noop() { },
+ setColumns() {
+ const { data } = this;
+ const columns = this.simple ? [{ values: data.columns }] : data.columns;
+ const stack = columns.map((column, index) => this.setColumnValues(index, column.values));
+ return Promise.all(stack);
+ },
+ emit(event) {
+ const { type } = event.currentTarget.dataset;
+ if (this.simple) {
+ this.$emit(type, {
+ value: this.getColumnValue(0),
+ index: this.getColumnIndex(0),
+ });
+ }
+ else {
+ this.$emit(type, {
+ value: this.getValues(),
+ index: this.getIndexes(),
+ });
+ }
+ },
+ onChange(event) {
+ if (this.simple) {
+ this.$emit('change', {
+ picker: this,
+ value: this.getColumnValue(0),
+ index: this.getColumnIndex(0),
+ });
+ }
+ else {
+ this.$emit('change', {
+ picker: this,
+ value: this.getValues(),
+ index: event.currentTarget.dataset.index,
+ });
+ }
+ },
+ // get column instance by index
+ getColumn(index) {
+ return this.children[index];
+ },
+ // get column value by index
+ getColumnValue(index) {
+ const column = this.getColumn(index);
+ return column && column.getValue();
+ },
+ // set column value by index
+ setColumnValue(index, value) {
+ const column = this.getColumn(index);
+ if (column == null) {
+ return Promise.reject(new Error('setColumnValue: 对应列不存在'));
+ }
+ return column.setValue(value);
+ },
+ // get column option index by column index
+ getColumnIndex(columnIndex) {
+ return (this.getColumn(columnIndex) || {}).data.currentIndex;
+ },
+ // set column option index by column index
+ setColumnIndex(columnIndex, optionIndex) {
+ const column = this.getColumn(columnIndex);
+ if (column == null) {
+ return Promise.reject(new Error('setColumnIndex: 对应列不存在'));
+ }
+ return column.setIndex(optionIndex);
+ },
+ // get options of column by index
+ getColumnValues(index) {
+ return (this.children[index] || {}).data.options;
+ },
+ // set options of column by index
+ setColumnValues(index, options, needReset = true) {
+ const column = this.children[index];
+ if (column == null) {
+ return Promise.reject(new Error('setColumnValues: 对应列不存在'));
+ }
+ const isSame = JSON.stringify(column.data.options) === JSON.stringify(options);
+ if (isSame) {
+ return Promise.resolve();
+ }
+ return column.set({ options }).then(() => {
+ if (needReset) {
+ column.setIndex(0);
+ }
+ });
+ },
+ // get values of all columns
+ getValues() {
+ return this.children.map((child) => child.getValue());
+ },
+ // set values of all columns
+ setValues(values) {
+ const stack = values.map((value, index) => this.setColumnValue(index, value));
+ return Promise.all(stack);
+ },
+ // get indexes of all columns
+ getIndexes() {
+ return this.children.map((child) => child.data.currentIndex);
+ },
+ // set indexes of all columns
+ setIndexes(indexes) {
+ const stack = indexes.map((optionIndex, columnIndex) => this.setColumnIndex(columnIndex, optionIndex));
+ return Promise.all(stack);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..2fcec8991bd56bdb28b347a80db78be1a96c2822
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "picker-column": "../picker-column/index",
+ "loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..8564ccc10a43618e7b52d2e77ffed606279440dc
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.wxml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..0abbd10e71099ba4016a54259ca46f7224ab168e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.wxs
@@ -0,0 +1,42 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+var array = require('../wxs/array.wxs');
+
+function columnsStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function maskStyle(data) {
+ return style({
+ 'background-size':
+ '100% ' + addUnit((data.itemHeight * (data.visibleItemCount - 1)) / 2),
+ });
+}
+
+function frameStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight),
+ });
+}
+
+function columns(columns) {
+ if (!array.isArray(columns)) {
+ return [];
+ }
+
+ if (columns.length && !columns[0].values) {
+ return [{ values: columns }];
+ }
+
+ return columns;
+}
+
+module.exports = {
+ columnsStyle: columnsStyle,
+ frameStyle: frameStyle,
+ maskStyle: maskStyle,
+ columns: columns,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..d924abb9d178c73ca9f7654a3b3152a1ce690cdd
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-picker{-webkit-text-size-adjust:100%;background-color:var(--picker-background-color,#fff);overflow:hidden;position:relative;-webkit-user-select:none;user-select:none}.van-picker__toolbar{display:flex;height:var(--picker-toolbar-height,44px);justify-content:space-between;line-height:var(--picker-toolbar-height,44px)}.van-picker__cancel,.van-picker__confirm{font-size:var(--picker-action-font-size,14px);padding:var(--picker-action-padding,0 16px)}.van-picker__cancel--hover,.van-picker__confirm--hover{opacity:.7}.van-picker__confirm{color:var(--picker-confirm-action-color,#576b95)}.van-picker__cancel{color:var(--picker-cancel-action-color,#969799)}.van-picker__title{font-size:var(--picker-option-font-size,16px);font-weight:var(--font-weight-bold,500);max-width:50%;text-align:center}.van-picker__columns{display:flex;position:relative}.van-picker__column{flex:1 1;width:0}.van-picker__loading{align-items:center;background-color:var(--picker-loading-mask-color,hsla(0,0%,100%,.9));bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:4}.van-picker__mask{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-image:linear-gradient(180deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4)),linear-gradient(0deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4));background-position:top,bottom;background-repeat:no-repeat;height:100%;left:0;top:0;width:100%;z-index:2}.van-picker__frame,.van-picker__mask{pointer-events:none;position:absolute}.van-picker__frame{left:16px;right:16px;top:50%;transform:translateY(-50%);z-index:1}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/shared.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/shared.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c54804595ae5455df2cef97a375dbb6a106916c1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/shared.d.ts
@@ -0,0 +1,21 @@
+export declare const pickerProps: {
+ title: StringConstructor;
+ loading: BooleanConstructor;
+ showToolbar: BooleanConstructor;
+ cancelButtonText: {
+ type: StringConstructor;
+ value: string;
+ };
+ confirmButtonText: {
+ type: StringConstructor;
+ value: string;
+ };
+ visibleItemCount: {
+ type: NumberConstructor;
+ value: number;
+ };
+ itemHeight: {
+ type: NumberConstructor;
+ value: number;
+ };
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/shared.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/shared.js
new file mode 100644
index 0000000000000000000000000000000000000000..5f21f322b71317577c7308c539e2b2204908524f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/shared.js
@@ -0,0 +1,21 @@
+export const pickerProps = {
+ title: String,
+ loading: Boolean,
+ showToolbar: Boolean,
+ cancelButtonText: {
+ type: String,
+ value: '取消',
+ },
+ confirmButtonText: {
+ type: String,
+ value: '确认',
+ },
+ visibleItemCount: {
+ type: Number,
+ value: 6,
+ },
+ itemHeight: {
+ type: Number,
+ value: 44,
+ },
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/toolbar.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/toolbar.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..414f61200741b6e928bb5628267daa1d6675aadc
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/picker/toolbar.wxml
@@ -0,0 +1,23 @@
+
+
+ {{ cancelButtonText }}
+
+ {{
+ title
+ }}
+
+ {{ confirmButtonText }}
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..9c5ef8685c18fe1eedcdaae9371987ad5cab648e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.js
@@ -0,0 +1,89 @@
+import { VantComponent } from '../common/component';
+import { transition } from '../mixins/transition';
+VantComponent({
+ classes: [
+ 'enter-class',
+ 'enter-active-class',
+ 'enter-to-class',
+ 'leave-class',
+ 'leave-active-class',
+ 'leave-to-class',
+ 'close-icon-class',
+ ],
+ mixins: [transition(false)],
+ props: {
+ round: Boolean,
+ closeable: Boolean,
+ customStyle: String,
+ overlayStyle: String,
+ transition: {
+ type: String,
+ observer: 'observeClass',
+ },
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeIcon: {
+ type: String,
+ value: 'cross',
+ },
+ closeIconPosition: {
+ type: String,
+ value: 'top-right',
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ position: {
+ type: String,
+ value: 'center',
+ observer: 'observeClass',
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: false,
+ },
+ lockScroll: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ created() {
+ this.observeClass();
+ },
+ methods: {
+ onClickCloseIcon() {
+ this.$emit('close');
+ },
+ onClickOverlay() {
+ this.$emit('click-overlay');
+ if (this.data.closeOnClickOverlay) {
+ this.$emit('close');
+ }
+ },
+ observeClass() {
+ const { transition, position, duration } = this.data;
+ const updateData = {
+ name: transition || position,
+ };
+ if (transition === 'none') {
+ updateData.duration = 0;
+ this.originDuration = duration;
+ }
+ else if (this.originDuration != null) {
+ updateData.duration = this.originDuration;
+ }
+ this.setData(updateData);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..88a6eab2a3d39616b3407376f926947017857a80
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-overlay": "../overlay/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ea7d696b92f37ab5ad17fdf79a36578393389429
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.wxml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..8d59f245a079a1839571f35f95f6bb95c50241f2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function popupStyle(data) {
+ return style([
+ {
+ 'z-index': data.zIndex,
+ '-webkit-transition-duration': data.currentDuration + 'ms',
+ 'transition-duration': data.currentDuration + 'ms',
+ },
+ data.display ? null : 'display: none',
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ popupStyle: popupStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..a840541a24c2f72ccfa6b5de451bf96c3d7e2913
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/popup/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-popup{-webkit-overflow-scrolling:touch;animation:ease both;background-color:var(--popup-background-color,#fff);box-sizing:border-box;max-height:100%;overflow-y:auto;position:fixed;transition-timing-function:ease}.van-popup--center{left:50%;top:50%;transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:var(--popup-round-border-radius,16px)}.van-popup--top{left:0;top:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--right{right:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0}.van-popup--left{left:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0}.van-popup--bottom.van-popup--safe{padding-bottom:env(safe-area-inset-bottom)}.van-popup--safeTop{padding-top:env(safe-area-inset-top)}.van-popup__close-icon{color:var(--popup-close-icon-color,#969799);font-size:var(--popup-close-icon-size,18px);position:absolute;z-index:var(--popup-close-icon-z-index,1)}.van-popup__close-icon--top-left{left:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--top-right{right:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-left{bottom:var(--popup-close-icon-margin,16px);left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-right{bottom:var(--popup-close-icon-margin,16px);right:var(--popup-close-icon-margin,16px)}.van-popup__close-icon:active{opacity:.6}.van-scale-enter-active,.van-scale-leave-active{transition-property:opacity,transform}.van-scale-enter,.van-scale-leave-to{opacity:0;transform:translate3d(-50%,-50%,0) scale(.7)}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-center-enter-active,.van-center-leave-active{transition-property:opacity}.van-center-enter,.van-center-leave-to{opacity:0}.van-bottom-enter-active,.van-bottom-leave-active,.van-left-enter-active,.van-left-leave-active,.van-right-enter-active,.van-right-leave-active,.van-top-enter-active,.van-top-leave-active{transition-property:transform}.van-bottom-enter,.van-bottom-leave-to{transform:translate3d(0,100%,0)}.van-top-enter,.van-top-leave-to{transform:translate3d(0,-100%,0)}.van-left-enter,.van-left-leave-to{transform:translate3d(-100%,-50%,0)}.van-right-enter,.van-right-leave-to{transform:translate3d(100%,-50%,0)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..0780c4336dacbd3c5bd942215998c7a400249acd
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.js
@@ -0,0 +1,51 @@
+import { VantComponent } from '../common/component';
+import { BLUE } from '../common/color';
+import { getRect } from '../common/utils';
+VantComponent({
+ props: {
+ inactive: Boolean,
+ percentage: {
+ type: Number,
+ observer: 'setLeft',
+ },
+ pivotText: String,
+ pivotColor: String,
+ trackColor: String,
+ showPivot: {
+ type: Boolean,
+ value: true,
+ },
+ color: {
+ type: String,
+ value: BLUE,
+ },
+ textColor: {
+ type: String,
+ value: '#fff',
+ },
+ strokeWidth: {
+ type: null,
+ value: 4,
+ },
+ },
+ data: {
+ right: 0,
+ },
+ mounted() {
+ this.setLeft();
+ },
+ methods: {
+ setLeft() {
+ Promise.all([
+ getRect(this, '.van-progress'),
+ getRect(this, '.van-progress__pivot'),
+ ]).then(([portion, pivot]) => {
+ if (portion && pivot) {
+ this.setData({
+ right: (pivot.width * (this.data.percentage - 100)) / 100,
+ });
+ }
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..e81514d05fdce662ca1f2bff2d72841acbf7c08d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.wxml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {{ computed.pivotText(pivotText, percentage) }}
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..5b1e8e6bc0440be40af8e27c86b5fcf509d0437f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.wxs
@@ -0,0 +1,36 @@
+/* eslint-disable */
+var utils = require('../wxs/utils.wxs');
+var style = require('../wxs/style.wxs');
+
+function pivotText(pivotText, percentage) {
+ return pivotText || percentage + '%';
+}
+
+function rootStyle(data) {
+ return style({
+ 'height': data.strokeWidth ? utils.addUnit(data.strokeWidth) : '',
+ 'background': data.trackColor,
+ });
+}
+
+function portionStyle(data) {
+ return style({
+ background: data.inactive ? '#cacaca' : data.color,
+ width: data.percentage ? data.percentage + '%' : '',
+ });
+}
+
+function pivotStyle(data) {
+ return style({
+ color: data.textColor,
+ right: data.right + 'px',
+ background: data.pivotColor ? data.pivotColor : data.inactive ? '#cacaca' : data.color,
+ });
+}
+
+module.exports = {
+ pivotText: pivotText,
+ rootStyle: rootStyle,
+ portionStyle: portionStyle,
+ pivotStyle: pivotStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..a08972a0eb98967dbf24b10a6bdbd24f27206474
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/progress/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-progress{background:var(--progress-background-color,#ebedf0);border-radius:var(--progress-height,4px);height:var(--progress-height,4px);position:relative}.van-progress__portion{background:var(--progress-color,#1989fa);border-radius:inherit;height:100%;left:0;position:absolute}.van-progress__pivot{background-color:var(--progress-pivot-background-color,#1989fa);border-radius:1em;box-sizing:border-box;color:var(--progress-pivot-text-color,#fff);font-size:var(--progress-pivot-font-size,10px);line-height:var(--progress-pivot-line-height,1.6);min-width:3.6em;padding:var(--progress-pivot-padding,0 5px);position:absolute;text-align:center;top:50%;transform:translateY(-50%);word-break:keep-all}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..2846fdd8459c182ff0ec6ffb905a6329e439acbd
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.js
@@ -0,0 +1,22 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ field: true,
+ relation: useChildren('radio'),
+ props: {
+ value: {
+ type: null,
+ observer: 'updateChildren',
+ },
+ direction: String,
+ disabled: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ },
+ methods: {
+ updateChildren() {
+ this.children.forEach((child) => child.updateFromParent());
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..0ab17afcda065ea624494668ed23f2d3f65a1235
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.wxml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..4e3b5d416c536dd73e3ea0f70f1f4a89d59f7f9e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio-group/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-radio-group--horizontal{display:flex;flex-wrap:wrap}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..9eb125861b709464a95a9ca8c556ae918261fb8e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.js
@@ -0,0 +1,66 @@
+import { canIUseModel } from '../common/version';
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ field: true,
+ relation: useParent('radio-group', function () {
+ this.updateFromParent();
+ }),
+ classes: ['icon-class', 'label-class'],
+ props: {
+ name: null,
+ value: null,
+ disabled: Boolean,
+ useIconSlot: Boolean,
+ checkedColor: String,
+ labelPosition: {
+ type: String,
+ value: 'right',
+ },
+ labelDisabled: Boolean,
+ shape: {
+ type: String,
+ value: 'round',
+ },
+ iconSize: {
+ type: null,
+ value: 20,
+ },
+ },
+ data: {
+ direction: '',
+ parentDisabled: false,
+ },
+ methods: {
+ updateFromParent() {
+ if (!this.parent) {
+ return;
+ }
+ const { value, disabled: parentDisabled, direction } = this.parent.data;
+ this.setData({
+ value,
+ direction,
+ parentDisabled,
+ });
+ },
+ emitChange(value) {
+ const instance = this.parent || this;
+ instance.$emit('input', value);
+ instance.$emit('change', value);
+ if (canIUseModel()) {
+ instance.setData({ value });
+ }
+ },
+ onChange() {
+ if (!this.data.disabled && !this.data.parentDisabled) {
+ this.emitChange(this.data.name);
+ }
+ },
+ onClickLabel() {
+ const { disabled, parentDisabled, labelDisabled, name } = this.data;
+ if (!(disabled || parentDisabled) && !labelDisabled) {
+ this.emitChange(name);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..5f898c0b05df277b6f97a30513f2bf4b60236603
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.wxml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..a428aad9549512578b9b82e023204b3de593804e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.wxs
@@ -0,0 +1,33 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function iconStyle(data) {
+ var styles = {
+ 'font-size': addUnit(data.iconSize),
+ };
+
+ if (
+ data.checkedColor &&
+ !(data.disabled || data.parentDisabled) &&
+ data.value === data.name
+ ) {
+ styles['border-color'] = data.checkedColor;
+ styles['background-color'] = data.checkedColor;
+ }
+
+ return style(styles);
+}
+
+function iconCustomStyle(data) {
+ return style({
+ 'line-height': addUnit(data.iconSize),
+ 'font-size': '.8em',
+ display: 'block',
+ });
+}
+
+module.exports = {
+ iconStyle: iconStyle,
+ iconCustomStyle: iconCustomStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..257b0c79ee4900e15762b886657952d2df6e6145
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/radio/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-radio{align-items:center;display:flex;overflow:hidden;-webkit-user-select:none;user-select:none}.van-radio__icon-wrap{flex:none}.van-radio--horizontal{margin-right:var(--padding-sm,12px)}.van-radio__icon{align-items:center;border:1px solid var(--radio-border-color,#c8c9cc);box-sizing:border-box;color:transparent;display:flex;font-size:var(--radio-size,20px);height:1em;justify-content:center;text-align:center;transition-duration:var(--radio-transition-duration,.2s);transition-property:color,border-color,background-color;width:1em}.van-radio__icon--round{border-radius:100%}.van-radio__icon--checked{background-color:var(--radio-checked-icon-color,#1989fa);border-color:var(--radio-checked-icon-color,#1989fa);color:#fff}.van-radio__icon--disabled{background-color:var(--radio-disabled-background-color,#ebedf0);border-color:var(--radio-disabled-icon-color,#c8c9cc)}.van-radio__icon--disabled.van-radio__icon--checked{color:var(--radio-disabled-icon-color,#c8c9cc)}.van-radio__label{word-wrap:break-word;color:var(--radio-label-color,#323233);line-height:var(--radio-size,20px);padding-left:var(--radio-label-margin,10px)}.van-radio__label--left{float:left;margin:0 var(--radio-label-margin,10px) 0 0}.van-radio__label--disabled{color:var(--radio-disabled-label-color,#c8c9cc)}.van-radio__label:empty{margin:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..23b73450378a361d488997c5ea5ed139cab01b71
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.js
@@ -0,0 +1,78 @@
+import { getAllRect } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { canIUseModel } from '../common/version';
+VantComponent({
+ field: true,
+ classes: ['icon-class'],
+ props: {
+ value: {
+ type: Number,
+ observer(value) {
+ if (value !== this.data.innerValue) {
+ this.setData({ innerValue: value });
+ }
+ },
+ },
+ readonly: Boolean,
+ disabled: Boolean,
+ allowHalf: Boolean,
+ size: null,
+ icon: {
+ type: String,
+ value: 'star',
+ },
+ voidIcon: {
+ type: String,
+ value: 'star-o',
+ },
+ color: String,
+ voidColor: String,
+ disabledColor: String,
+ count: {
+ type: Number,
+ value: 5,
+ observer(value) {
+ this.setData({ innerCountArray: Array.from({ length: value }) });
+ },
+ },
+ gutter: null,
+ touchable: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ innerValue: 0,
+ innerCountArray: Array.from({ length: 5 }),
+ },
+ methods: {
+ onSelect(event) {
+ const { data } = this;
+ const { score } = event.currentTarget.dataset;
+ if (!data.disabled && !data.readonly) {
+ this.setData({ innerValue: score + 1 });
+ if (canIUseModel()) {
+ this.setData({ value: score + 1 });
+ }
+ wx.nextTick(() => {
+ this.$emit('input', score + 1);
+ this.$emit('change', score + 1);
+ });
+ }
+ },
+ onTouchMove(event) {
+ const { touchable } = this.data;
+ if (!touchable)
+ return;
+ const { clientX } = event.touches[0];
+ getAllRect(this, '.van-rate__icon').then((list) => {
+ const target = list
+ .sort((cur, next) => cur.dataset.score - next.dataset.score)
+ .find((item) => clientX >= item.left && clientX <= item.right);
+ if (target != null) {
+ this.onSelect(Object.assign(Object.assign({}, event), { currentTarget: target }));
+ }
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..049714c4f376bfeba484913371d00c29b4505a79
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.wxml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e2a517ecbd74c9125d5958b488a7bc1775a3ab0c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/rate/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-rate{display:inline-flex;-webkit-user-select:none;user-select:none}.van-rate__item{padding:0 var(--rate-horizontal-padding,2px);position:relative}.van-rate__item:not(:last-child){padding-right:var(--rate-icon-gutter,4px)}.van-rate__icon{color:var(--rate-icon-void-color,#c8c9cc);display:block;font-size:var(--rate-icon-size,20px);height:1em}.van-rate__icon--half{left:var(--rate-horizontal-padding,2px);overflow:hidden;position:absolute;top:0;width:.5em}.van-rate__icon--full,.van-rate__icon--half{color:var(--rate-icon-full-color,#ee0a24)}.van-rate__icon--disabled{color:var(--rate-icon-disabled-color,#c8c9cc)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..cc844f84748bbd85ff0e691b51ca2931432dadda
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.js
@@ -0,0 +1,23 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('col', function (target) {
+ const { gutter } = this.data;
+ if (gutter) {
+ target.setData({ gutter });
+ }
+ }),
+ props: {
+ gutter: {
+ type: Number,
+ observer: 'setGutter',
+ },
+ },
+ methods: {
+ setGutter() {
+ this.children.forEach((col) => {
+ col.setData(this.data);
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..69a4359b16010c1ef2e251ae5ee9533885171db4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.wxml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..f5c5958748e6ce3e5a4d97fe7c23f2d3175ea403
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ if (!data.gutter) {
+ return '';
+ }
+
+ return style({
+ 'margin-right': addUnit(-data.gutter / 2),
+ 'margin-left': addUnit(-data.gutter / 2),
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..bb8946bbc42c070396fc25ed202efaa6887213cf
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/row/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-row:after{clear:both;content:"";display:table}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..d6f4bfaf2f7168fa9012b65c316ef72034dcf0b4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.js
@@ -0,0 +1,89 @@
+import { VantComponent } from '../common/component';
+import { canIUseModel } from '../common/version';
+VantComponent({
+ field: true,
+ classes: ['field-class', 'input-class', 'cancel-class'],
+ props: {
+ label: String,
+ focus: Boolean,
+ error: Boolean,
+ disabled: Boolean,
+ readonly: Boolean,
+ inputAlign: String,
+ showAction: Boolean,
+ useActionSlot: Boolean,
+ useLeftIconSlot: Boolean,
+ useRightIconSlot: Boolean,
+ leftIcon: {
+ type: String,
+ value: 'search',
+ },
+ rightIcon: String,
+ placeholder: String,
+ placeholderStyle: String,
+ actionText: {
+ type: String,
+ value: '取消',
+ },
+ background: {
+ type: String,
+ value: '#ffffff',
+ },
+ maxlength: {
+ type: Number,
+ value: -1,
+ },
+ shape: {
+ type: String,
+ value: 'square',
+ },
+ clearable: {
+ type: Boolean,
+ value: true,
+ },
+ clearTrigger: {
+ type: String,
+ value: 'focus',
+ },
+ clearIcon: {
+ type: String,
+ value: 'clear',
+ },
+ },
+ methods: {
+ onChange(event) {
+ if (canIUseModel()) {
+ this.setData({ value: event.detail });
+ }
+ this.$emit('change', event.detail);
+ },
+ onCancel() {
+ /**
+ * 修复修改输入框值时,输入框失焦和赋值同时触发,赋值失效
+ * https://github.com/youzan/@vant/weapp/issues/1768
+ */
+ setTimeout(() => {
+ if (canIUseModel()) {
+ this.setData({ value: '' });
+ }
+ this.$emit('cancel');
+ this.$emit('change', '');
+ }, 200);
+ },
+ onSearch(event) {
+ this.$emit('search', event.detail);
+ },
+ onFocus(event) {
+ this.$emit('focus', event.detail);
+ },
+ onBlur(event) {
+ this.$emit('blur', event.detail);
+ },
+ onClear(event) {
+ this.$emit('clear', event.detail);
+ },
+ onClickInput(event) {
+ this.$emit('click-input', event.detail);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..b4cfe918beacb1fe29d9c7bc488a9fc44968fcf1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-field": "../field/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..0068cfe716d00d4c81bc4fed57ab64cf7c896528
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.wxml
@@ -0,0 +1,53 @@
+
+
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
+
+
+ {{ actionText }}
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..212f7aa42c0f5c222d8d7a7c8e76507f17e6d2cb
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/search/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-search{align-items:center;box-sizing:border-box;display:flex;padding:var(--search-padding,10px 12px)}.van-search__content{background-color:var(--search-background-color,#f7f8fa);border-radius:2px;display:flex;flex:1;padding-left:var(--padding-sm,12px)}.van-search__content--round{border-radius:999px}.van-search__label{color:var(--search-label-color,#323233);font-size:var(--search-label-font-size,14px);line-height:var(--search-input-height,34px);padding:var(--search-label-padding,0 5px)}.van-search__field{flex:1}.van-search__field__left-icon{color:var(--search-left-icon-color,#969799)}.van-search--withaction{padding-right:0}.van-search__action{color:var(--search-action-text-color,#323233);font-size:var(--search-action-font-size,14px);line-height:var(--search-input-height,34px);padding:var(--search-action-padding,0 8px)}.van-search__action--hover{background-color:#f2f3f5}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..a6ce016ca1a56522cd4a2b8e2b845e3612259e38
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.js
@@ -0,0 +1,55 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ // whether to show popup
+ show: Boolean,
+ // overlay custom style
+ overlayStyle: String,
+ // z-index
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ title: String,
+ cancelText: {
+ type: String,
+ value: '取消',
+ },
+ description: String,
+ options: {
+ type: Array,
+ value: [],
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ duration: {
+ type: null,
+ value: 300,
+ },
+ },
+ methods: {
+ onClickOverlay() {
+ this.$emit('click-overlay');
+ },
+ onCancel() {
+ this.onClose();
+ this.$emit('cancel');
+ },
+ onSelect(event) {
+ this.$emit('select', event.detail);
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..15a7c2243dcbd380b0aa0b9416f608cafb90f7b5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-popup": "../popup/index",
+ "options": "./options"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..cefc3af44403c541579e60613262117abe524ab0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.wxml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+
+ {{ description }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..2149ee9e43a28f022ab22429a82488c7aed8d2b4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.wxs
@@ -0,0 +1,12 @@
+/* eslint-disable */
+function isMulti(options) {
+ if (options == null || options[0] == null) {
+ return false;
+ }
+
+ return "Array" === options.constructor && "Array" === options[0].constructor;
+}
+
+module.exports = {
+ isMulti: isMulti
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e8d8dae0ec8c40691b14dc6981949d9210db7250
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-share-sheet__header{padding:12px 16px 4px;text-align:center}.van-share-sheet__title{color:#323233;font-size:14px;font-weight:400;line-height:20px;margin-top:8px}.van-share-sheet__title:empty,.van-share-sheet__title:not(:empty)+.van-share-sheet__title{display:none}.van-share-sheet__description{color:#969799;display:block;font-size:12px;line-height:16px;margin-top:8px}.van-share-sheet__description:empty,.van-share-sheet__description:not(:empty)+.van-share-sheet__description{display:none}.van-share-sheet__cancel{background:#fff;border:none;box-sizing:initial;display:block;font-size:16px;height:auto;line-height:48px;padding:0;text-align:center;width:100%}.van-share-sheet__cancel:before{background-color:#f7f8fa;content:" ";display:block;height:8px}.van-share-sheet__cancel:after{display:none}.van-share-sheet__cancel:active{background-color:#f2f3f5}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.js
new file mode 100644
index 0000000000000000000000000000000000000000..5a29ad74edb3388408de0aa8ac631b965fdc2925
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.js
@@ -0,0 +1,14 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ options: Array,
+ showBorder: Boolean,
+ },
+ methods: {
+ onSelect(event) {
+ const { index } = event.currentTarget.dataset;
+ const option = this.data.options[index];
+ this.$emit('select', Object.assign(Object.assign({}, option), { index }));
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..cad68377251e99662ab45cf854e01eb2751ad0d4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.wxml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {{ item.name }}
+
+ {{ item.description }}
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..a116d32410dc830029ffad845d74c8764d6a8b96
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.wxs
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var PRESET_ICONS = ['qq', 'link', 'weibo', 'wechat', 'poster', 'qrcode', 'weapp-qrcode', 'wechat-moments'];
+
+function getIconURL(icon) {
+ if (PRESET_ICONS.indexOf(icon) !== -1) {
+ return 'https://img.yzcdn.cn/vant/share-sheet-' + icon + '.png';
+ }
+
+ return icon;
+}
+
+module.exports = {
+ getIconURL: getIconURL,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..b7f545564aa149c21e0e412ac0c9ab8708552af4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/share-sheet/options.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-share-sheet__options{-webkit-overflow-scrolling:touch;display:flex;overflow-x:auto;overflow-y:visible;padding:16px 0 16px 8px;position:relative}.van-share-sheet__options--border:before{border-top:1px solid #ebedf0;box-sizing:border-box;content:" ";left:16px;pointer-events:none;position:absolute;right:0;top:0;transform:scaleY(.5);transform-origin:center}.van-share-sheet__options::-webkit-scrollbar{height:0}.van-share-sheet__option{align-items:center;display:flex;flex-direction:column;-webkit-user-select:none;user-select:none}.van-share-sheet__option:active{opacity:.7}.van-share-sheet__button{background-color:initial;border:0;height:auto;line-height:inherit;padding:0}.van-share-sheet__button:after{border:0}.van-share-sheet__icon{height:48px;margin:0 16px;width:48px}.van-share-sheet__name{color:#646566;font-size:12px;margin-top:8px;padding:0 4px}.van-share-sheet__option-description{color:#c8c9cc;font-size:12px;padding:0 4px}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..63ea57d2e896d64657ca9f4f56d78e7c7dff681e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.js
@@ -0,0 +1,29 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ classes: ['active-class', 'disabled-class'],
+ relation: useParent('sidebar'),
+ props: {
+ dot: Boolean,
+ badge: null,
+ info: null,
+ title: String,
+ disabled: Boolean,
+ },
+ methods: {
+ onClick() {
+ const { parent } = this;
+ if (!parent || this.data.disabled) {
+ return;
+ }
+ const index = parent.children.indexOf(this);
+ parent.setActive(index).then(() => {
+ this.$emit('click', index);
+ parent.$emit('change', index);
+ });
+ },
+ setActive(selected) {
+ return this.setData({ selected });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ebe009c3904229ff4005710f4136b55cf57aa
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..c5c08a6269a93b5bf5cf484e71759bb9dda6f07a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.wxml
@@ -0,0 +1,18 @@
+
+
+
+
+
+ {{ title }}
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..f1ce42199294e93df80cf5143824a04b4cdb8044
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar-item/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sidebar-item{background-color:var(--sidebar-background-color,#f7f8fa);border-left:3px solid transparent;box-sizing:border-box;color:var(--sidebar-text-color,#323233);display:block;font-size:var(--sidebar-font-size,14px);line-height:var(--sidebar-line-height,20px);overflow:hidden;padding:var(--sidebar-padding,20px 12px 20px 8px);-webkit-user-select:none;user-select:none}.van-sidebar-item__text{display:inline-block;position:relative;word-break:break-all}.van-sidebar-item--hover:not(.van-sidebar-item--disabled){background-color:var(--sidebar-active-color,#f2f3f5)}.van-sidebar-item:after{border-bottom-width:1px}.van-sidebar-item--selected{border-color:var(--sidebar-selected-border-color,#ee0a24);color:var(--sidebar-selected-text-color,#323233);font-weight:var(--sidebar-selected-font-weight,500)}.van-sidebar-item--selected:after{border-right-width:1px}.van-sidebar-item--selected,.van-sidebar-item--selected.van-sidebar-item--hover{background-color:var(--sidebar-selected-background-color,#fff)}.van-sidebar-item--disabled{color:var(--sidebar-disabled-text-color,#c8c9cc)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..d763e06d3de9ec4c5f1e53957e768a990d5ecf35
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.js
@@ -0,0 +1,34 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('sidebar-item', function () {
+ this.setActive(this.data.activeKey);
+ }),
+ props: {
+ activeKey: {
+ type: Number,
+ value: 0,
+ observer: 'setActive',
+ },
+ },
+ beforeCreate() {
+ this.currentActive = -1;
+ },
+ methods: {
+ setActive(activeKey) {
+ const { children, currentActive } = this;
+ if (!children.length) {
+ return Promise.resolve();
+ }
+ this.currentActive = activeKey;
+ const stack = [];
+ if (currentActive !== activeKey && children[currentActive]) {
+ stack.push(children[currentActive].setActive(false));
+ }
+ if (children[activeKey]) {
+ stack.push(children[activeKey].setActive(true));
+ }
+ return Promise.all(stack);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..96b11c718ee3d34e79a90c18b2a16be06259a1da
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.wxml
@@ -0,0 +1,3 @@
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..5a2d44fab00cbcfecf3910ea8e945bb8ad3fc185
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sidebar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sidebar{width:var(--sidebar-width,80px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..33b1141c2c179b0b31a76f259b1d6e5e59f2374e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.js
@@ -0,0 +1,46 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: ['avatar-class', 'title-class', 'row-class'],
+ props: {
+ row: {
+ type: Number,
+ value: 0,
+ observer(value) {
+ this.setData({ rowArray: Array.from({ length: value }) });
+ },
+ },
+ title: Boolean,
+ avatar: Boolean,
+ loading: {
+ type: Boolean,
+ value: true,
+ },
+ animate: {
+ type: Boolean,
+ value: true,
+ },
+ avatarSize: {
+ type: String,
+ value: '32px',
+ },
+ avatarShape: {
+ type: String,
+ value: 'round',
+ },
+ titleWidth: {
+ type: String,
+ value: '40%',
+ },
+ rowWidth: {
+ type: null,
+ value: '100%',
+ observer(val) {
+ this.setData({ isArray: val instanceof Array });
+ },
+ },
+ },
+ data: {
+ isArray: false,
+ rowArray: [],
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..a89ef4dbeefa01f5cd7971973aa4db6498d139f7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..058e2efd1795f88f123873eec84f917902317145
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.wxml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..d59a5edf62a40c63decd38e397314c46a11f5b6c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/skeleton/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-skeleton{box-sizing:border-box;display:flex;padding:var(--skeleton-padding,0 16px);width:100%}.van-skeleton__avatar{background-color:var(--skeleton-avatar-background-color,#f2f3f5);flex-shrink:0;margin-right:var(--padding-md,16px)}.van-skeleton__avatar--round{border-radius:100%}.van-skeleton__content{flex:1}.van-skeleton__avatar+.van-skeleton__content{padding-top:var(--padding-xs,8px)}.van-skeleton__row,.van-skeleton__title{background-color:var(--skeleton-row-background-color,#f2f3f5);height:var(--skeleton-row-height,16px)}.van-skeleton__title{margin:0}.van-skeleton__row:not(:first-child){margin-top:var(--skeleton-row-margin-top,12px)}.van-skeleton__title+.van-skeleton__row{margin-top:20px}.van-skeleton--animate{animation:van-skeleton-blink 1.2s ease-in-out infinite}@keyframes van-skeleton-blink{50%{opacity:.6}}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..2c9b12312a28f15c379bd71d0c3acbfd7e8d6dc1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.js
@@ -0,0 +1,191 @@
+import { VantComponent } from '../common/component';
+import { touch } from '../mixins/touch';
+import { canIUseModel } from '../common/version';
+import { getRect, addUnit } from '../common/utils';
+VantComponent({
+ mixins: [touch],
+ props: {
+ range: Boolean,
+ disabled: Boolean,
+ useButtonSlot: Boolean,
+ activeColor: String,
+ inactiveColor: String,
+ max: {
+ type: Number,
+ value: 100,
+ },
+ min: {
+ type: Number,
+ value: 0,
+ },
+ step: {
+ type: Number,
+ value: 1,
+ },
+ value: {
+ type: null,
+ value: 0,
+ observer(val) {
+ if (val !== this.value) {
+ this.updateValue(val);
+ }
+ },
+ },
+ vertical: Boolean,
+ barHeight: null,
+ },
+ created() {
+ this.updateValue(this.data.value);
+ },
+ methods: {
+ onTouchStart(event) {
+ if (this.data.disabled)
+ return;
+ const { index } = event.currentTarget.dataset;
+ if (typeof index === 'number') {
+ this.buttonIndex = index;
+ }
+ this.touchStart(event);
+ this.startValue = this.format(this.value);
+ this.newValue = this.value;
+ if (this.isRange(this.newValue)) {
+ this.startValue = this.newValue.map((val) => this.format(val));
+ }
+ else {
+ this.startValue = this.format(this.newValue);
+ }
+ this.dragStatus = 'start';
+ },
+ onTouchMove(event) {
+ if (this.data.disabled)
+ return;
+ if (this.dragStatus === 'start') {
+ this.$emit('drag-start');
+ }
+ this.touchMove(event);
+ this.dragStatus = 'draging';
+ getRect(this, '.van-slider').then((rect) => {
+ const { vertical } = this.data;
+ const delta = vertical ? this.deltaY : this.deltaX;
+ const total = vertical ? rect.height : rect.width;
+ const diff = (delta / total) * this.getRange();
+ if (this.isRange(this.startValue)) {
+ this.newValue[this.buttonIndex] =
+ this.startValue[this.buttonIndex] + diff;
+ }
+ else {
+ this.newValue = this.startValue + diff;
+ }
+ this.updateValue(this.newValue, false, true);
+ });
+ },
+ onTouchEnd() {
+ if (this.data.disabled)
+ return;
+ if (this.dragStatus === 'draging') {
+ this.updateValue(this.newValue, true);
+ this.$emit('drag-end');
+ }
+ },
+ onClick(event) {
+ if (this.data.disabled)
+ return;
+ const { min } = this.data;
+ getRect(this, '.van-slider').then((rect) => {
+ const { vertical } = this.data;
+ const touch = event.touches[0];
+ const delta = vertical
+ ? touch.clientY - rect.top
+ : touch.clientX - rect.left;
+ const total = vertical ? rect.height : rect.width;
+ const value = Number(min) + (delta / total) * this.getRange();
+ if (this.isRange(this.value)) {
+ const [left, right] = this.value;
+ const middle = (left + right) / 2;
+ if (value <= middle) {
+ this.updateValue([value, right], true);
+ }
+ else {
+ this.updateValue([left, value], true);
+ }
+ }
+ else {
+ this.updateValue(value, true);
+ }
+ });
+ },
+ isRange(val) {
+ const { range } = this.data;
+ return range && Array.isArray(val);
+ },
+ handleOverlap(value) {
+ if (value[0] > value[1]) {
+ return value.slice(0).reverse();
+ }
+ return value;
+ },
+ updateValue(value, end, drag) {
+ if (this.isRange(value)) {
+ value = this.handleOverlap(value).map((val) => this.format(val));
+ }
+ else {
+ value = this.format(value);
+ }
+ this.value = value;
+ const { vertical } = this.data;
+ const mainAxis = vertical ? 'height' : 'width';
+ this.setData({
+ wrapperStyle: `
+ background: ${this.data.inactiveColor || ''};
+ ${vertical ? 'width' : 'height'}: ${addUnit(this.data.barHeight) || ''};
+ `,
+ barStyle: `
+ ${mainAxis}: ${this.calcMainAxis()};
+ left: ${vertical ? 0 : this.calcOffset()};
+ top: ${vertical ? this.calcOffset() : 0};
+ ${drag ? 'transition: none;' : ''}
+ `,
+ });
+ if (drag) {
+ this.$emit('drag', { value });
+ }
+ if (end) {
+ this.$emit('change', value);
+ }
+ if ((drag || end) && canIUseModel()) {
+ this.setData({ value });
+ }
+ },
+ getScope() {
+ return Number(this.data.max) - Number(this.data.min);
+ },
+ getRange() {
+ const { max, min } = this.data;
+ return max - min;
+ },
+ // 计算选中条的长度百分比
+ calcMainAxis() {
+ const { value } = this;
+ const { min } = this.data;
+ const scope = this.getScope();
+ if (this.isRange(value)) {
+ return `${((value[1] - value[0]) * 100) / scope}%`;
+ }
+ return `${((value - Number(min)) * 100) / scope}%`;
+ },
+ // 计算选中条的开始位置的偏移量
+ calcOffset() {
+ const { value } = this;
+ const { min } = this.data;
+ const scope = this.getScope();
+ if (this.isRange(value)) {
+ return `${((value[0] - Number(min)) * 100) / scope}%`;
+ }
+ return '0%';
+ },
+ format(value) {
+ const { max, min, step } = this.data;
+ return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..7c0184f7632d0fcbdca8b7f548acca021d65fcdc
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.wxml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..7c43e6e538d88540791c53a17acdd75de03d6f2d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.wxs
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function barStyle(barHeight, activeColor) {
+ return style({
+ height: addUnit(barHeight),
+ background: activeColor,
+ });
+}
+
+module.exports = {
+ barStyle: barStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..d1587dea689da1f5241eac523f8a67565b31c23b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/slider/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-slider{background-color:var(--slider-inactive-background-color,#ebedf0);border-radius:999px;height:var(--slider-bar-height,2px);position:relative}.van-slider:before{bottom:calc(var(--padding-xs, 8px)*-1);content:"";left:0;position:absolute;right:0;top:calc(var(--padding-xs, 8px)*-1)}.van-slider__bar{background-color:var(--slider-active-background-color,#1989fa);border-radius:inherit;height:100%;position:relative;transition:all .2s;width:100%}.van-slider__button{background-color:var(--slider-button-background-color,#fff);border-radius:var(--slider-button-border-radius,50%);box-shadow:var(--slider-button-box-shadow,0 1px 2px rgba(0,0,0,.5));height:var(--slider-button-height,24px);width:var(--slider-button-width,24px)}.van-slider__button-wrapper,.van-slider__button-wrapper-right{position:absolute;right:0;top:50%;transform:translate3d(50%,-50%,0)}.van-slider__button-wrapper-left{left:0;position:absolute;top:50%;transform:translate3d(-50%,-50%,0)}.van-slider--disabled{opacity:var(--slider-disabled-opacity,.5)}.van-slider--vertical{display:inline-block;height:100%;width:var(--slider-bar-height,2px)}.van-slider--vertical .van-slider__button-wrapper,.van-slider--vertical .van-slider__button-wrapper-right{bottom:0;right:50%;top:auto;transform:translate3d(50%,50%,0)}.van-slider--vertical .van-slider__button-wrapper-left{left:auto;right:50%;top:0;transform:translate3d(50%,-50%,0)}.van-slider--vertical:before{bottom:0;left:-8px;right:-8px;top:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..c54ea719b8b1d1ef935c7125fb4d3b0e1640a8cf
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.js
@@ -0,0 +1,184 @@
+import { VantComponent } from '../common/component';
+import { isDef } from '../common/validator';
+const LONG_PRESS_START_TIME = 600;
+const LONG_PRESS_INTERVAL = 200;
+// add num and avoid float number
+function add(num1, num2) {
+ const cardinal = Math.pow(10, 10);
+ return Math.round((num1 + num2) * cardinal) / cardinal;
+}
+function equal(value1, value2) {
+ return String(value1) === String(value2);
+}
+VantComponent({
+ field: true,
+ classes: ['input-class', 'plus-class', 'minus-class'],
+ props: {
+ value: {
+ type: null,
+ observer: 'observeValue',
+ },
+ integer: {
+ type: Boolean,
+ observer: 'check',
+ },
+ disabled: Boolean,
+ inputWidth: String,
+ buttonSize: String,
+ asyncChange: Boolean,
+ disableInput: Boolean,
+ decimalLength: {
+ type: Number,
+ value: null,
+ observer: 'check',
+ },
+ min: {
+ type: null,
+ value: 1,
+ observer: 'check',
+ },
+ max: {
+ type: null,
+ value: Number.MAX_SAFE_INTEGER,
+ observer: 'check',
+ },
+ step: {
+ type: null,
+ value: 1,
+ },
+ showPlus: {
+ type: Boolean,
+ value: true,
+ },
+ showMinus: {
+ type: Boolean,
+ value: true,
+ },
+ disablePlus: Boolean,
+ disableMinus: Boolean,
+ longPress: {
+ type: Boolean,
+ value: true,
+ },
+ theme: String,
+ },
+ data: {
+ currentValue: '',
+ },
+ created() {
+ this.setData({
+ currentValue: this.format(this.data.value),
+ });
+ },
+ methods: {
+ observeValue() {
+ const { value, currentValue } = this.data;
+ if (!equal(value, currentValue)) {
+ this.setData({ currentValue: this.format(value) });
+ }
+ },
+ check() {
+ const val = this.format(this.data.currentValue);
+ if (!equal(val, this.data.currentValue)) {
+ this.setData({ currentValue: val });
+ }
+ },
+ isDisabled(type) {
+ const { disabled, disablePlus, disableMinus, currentValue, max, min, } = this.data;
+ if (type === 'plus') {
+ return disabled || disablePlus || currentValue >= max;
+ }
+ return disabled || disableMinus || currentValue <= min;
+ },
+ onFocus(event) {
+ this.$emit('focus', event.detail);
+ },
+ onBlur(event) {
+ const value = this.format(event.detail.value);
+ this.emitChange(value);
+ this.$emit('blur', Object.assign(Object.assign({}, event.detail), { value }));
+ },
+ // filter illegal characters
+ filter(value) {
+ value = String(value).replace(/[^0-9.-]/g, '');
+ if (this.data.integer && value.indexOf('.') !== -1) {
+ value = value.split('.')[0];
+ }
+ return value;
+ },
+ // limit value range
+ format(value) {
+ value = this.filter(value);
+ // format range
+ value = value === '' ? 0 : +value;
+ value = Math.max(Math.min(this.data.max, value), this.data.min);
+ // format decimal
+ if (isDef(this.data.decimalLength)) {
+ value = value.toFixed(this.data.decimalLength);
+ }
+ return value;
+ },
+ onInput(event) {
+ const { value = '' } = event.detail || {};
+ // allow input to be empty
+ if (value === '') {
+ return;
+ }
+ let formatted = this.filter(value);
+ // limit max decimal length
+ if (isDef(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
+ const pair = formatted.split('.');
+ formatted = `${pair[0]}.${pair[1].slice(0, this.data.decimalLength)}`;
+ }
+ this.emitChange(formatted);
+ },
+ emitChange(value) {
+ if (!this.data.asyncChange) {
+ this.setData({ currentValue: value });
+ }
+ this.$emit('change', value);
+ },
+ onChange() {
+ const { type } = this;
+ if (this.isDisabled(type)) {
+ this.$emit('overlimit', type);
+ return;
+ }
+ const diff = type === 'minus' ? -this.data.step : +this.data.step;
+ const value = this.format(add(+this.data.currentValue, diff));
+ this.emitChange(value);
+ this.$emit(type);
+ },
+ longPressStep() {
+ this.longPressTimer = setTimeout(() => {
+ this.onChange();
+ this.longPressStep();
+ }, LONG_PRESS_INTERVAL);
+ },
+ onTap(event) {
+ const { type } = event.currentTarget.dataset;
+ this.type = type;
+ this.onChange();
+ },
+ onTouchStart(event) {
+ if (!this.data.longPress) {
+ return;
+ }
+ clearTimeout(this.longPressTimer);
+ const { type } = event.currentTarget.dataset;
+ this.type = type;
+ this.isLongPress = false;
+ this.longPressTimer = setTimeout(() => {
+ this.isLongPress = true;
+ this.onChange();
+ this.longPressStep();
+ }, LONG_PRESS_START_TIME);
+ },
+ onTouchEnd() {
+ if (!this.data.longPress) {
+ return;
+ }
+ clearTimeout(this.longPressTimer);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..8172d15ce848338e0a6a9df4c6ed6bc964733583
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.wxml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..a13e818bffddcd11afb49185715c19fa4c07c091
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.wxs
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function buttonStyle(data) {
+ return style({
+ width: addUnit(data.buttonSize),
+ height: addUnit(data.buttonSize),
+ });
+}
+
+function inputStyle(data) {
+ return style({
+ width: addUnit(data.inputWidth),
+ height: addUnit(data.buttonSize),
+ });
+}
+
+module.exports = {
+ buttonStyle: buttonStyle,
+ inputStyle: inputStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..2561a7e917b2fcbe38e0e773a0790a3dba505bb1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/stepper/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-stepper{font-size:0}.van-stepper__minus,.van-stepper__plus{background-color:var(--stepper-background-color,#f2f3f5);border:0;box-sizing:border-box;color:var(--stepper-button-icon-color,#323233);display:inline-block;height:var(--stepper-input-height,28px);margin:1px;padding:var(--padding-base,4px);position:relative;vertical-align:middle;width:var(--stepper-input-height,28px)}.van-stepper__minus:before,.van-stepper__plus:before{height:1px;width:9px}.van-stepper__minus:after,.van-stepper__plus:after{height:9px;width:1px}.van-stepper__minus:empty.van-stepper__minus:after,.van-stepper__minus:empty.van-stepper__minus:before,.van-stepper__minus:empty.van-stepper__plus:after,.van-stepper__minus:empty.van-stepper__plus:before,.van-stepper__plus:empty.van-stepper__minus:after,.van-stepper__plus:empty.van-stepper__minus:before,.van-stepper__plus:empty.van-stepper__plus:after,.van-stepper__plus:empty.van-stepper__plus:before{background-color:currentColor;bottom:0;content:"";left:0;margin:auto;position:absolute;right:0;top:0}.van-stepper__minus--hover,.van-stepper__plus--hover{background-color:var(--stepper-active-color,#e8e8e8)}.van-stepper__minus--disabled,.van-stepper__plus--disabled{color:var(--stepper-button-disabled-icon-color,#c8c9cc)}.van-stepper__minus--disabled,.van-stepper__minus--disabled.van-stepper__minus--hover,.van-stepper__minus--disabled.van-stepper__plus--hover,.van-stepper__plus--disabled,.van-stepper__plus--disabled.van-stepper__minus--hover,.van-stepper__plus--disabled.van-stepper__plus--hover{background-color:var(--stepper-button-disabled-color,#f7f8fa)}.van-stepper__minus{border-radius:var(--stepper-border-radius,var(--stepper-border-radius,4px)) 0 0 var(--stepper-border-radius,var(--stepper-border-radius,4px))}.van-stepper__minus:after{display:none}.van-stepper__plus{border-radius:0 var(--stepper-border-radius,var(--stepper-border-radius,4px)) var(--stepper-border-radius,var(--stepper-border-radius,4px)) 0}.van-stepper--round .van-stepper__input{background-color:initial!important}.van-stepper--round .van-stepper__minus,.van-stepper--round .van-stepper__plus{border-radius:100%}.van-stepper--round .van-stepper__minus:active,.van-stepper--round .van-stepper__plus:active{opacity:.7}.van-stepper--round .van-stepper__minus--disabled,.van-stepper--round .van-stepper__minus--disabled:active,.van-stepper--round .van-stepper__plus--disabled,.van-stepper--round .van-stepper__plus--disabled:active{opacity:.3}.van-stepper--round .van-stepper__plus{background-color:#ee0a24;color:#fff}.van-stepper--round .van-stepper__minus{background-color:#fff;border:1px solid #ee0a24;color:#ee0a24}.van-stepper__input{-webkit-appearance:none;background-color:var(--stepper-background-color,#f2f3f5);border:0;border-radius:0;border-width:1px 0;box-sizing:border-box;color:var(--stepper-input-text-color,#323233);display:inline-block;font-size:var(--stepper-input-font-size,14px);height:var(--stepper-input-height,28px);margin:1px;min-height:0;padding:1px;text-align:center;vertical-align:middle;width:var(--stepper-input-width,32px)}.van-stepper__input--disabled{background-color:var(--stepper-input-disabled-background-color,#f2f3f5);color:var(--stepper-input-disabled-text-color,#c8c9cc)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index-status.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index-status.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..5713a5ed858b81ce845ebc52b0ff41510ac6a5c1
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index-status.wxs
@@ -0,0 +1,12 @@
+
+function get(index, active) {
+ if (index < active) {
+ return 'finish';
+ } else if (index === active) {
+ return 'process';
+ }
+
+ return 'inactive';
+}
+
+module.exports = get;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..b47be76e4d1b36f89a4374df2e4e7c273ba524dc
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.js
@@ -0,0 +1,33 @@
+import { VantComponent } from '../common/component';
+import { GREEN, GRAY_DARK } from '../common/color';
+VantComponent({
+ classes: ['desc-class'],
+ props: {
+ icon: String,
+ steps: Array,
+ active: Number,
+ direction: {
+ type: String,
+ value: 'horizontal',
+ },
+ activeColor: {
+ type: String,
+ value: GREEN,
+ },
+ inactiveColor: {
+ type: String,
+ value: GRAY_DARK,
+ },
+ activeIcon: {
+ type: String,
+ value: 'checked',
+ },
+ inactiveIcon: String,
+ },
+ methods: {
+ onClick(event) {
+ const { index } = event.currentTarget.dataset;
+ this.$emit('click-step', index);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..6180b4173e54ca9720c45d8710e798c2b9584531
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.wxml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+ {{ item.text }}
+ {{ item.desc }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+function get(index, active) {
+ if (index < active) {
+ return 'finish';
+ } else if (index === active) {
+ return 'process';
+ }
+
+ return 'inactive';
+}
+
+module.exports = get;
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..48b7665df42aab43642e6fccd33fc0e38ac3f0f6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/steps/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-steps{background-color:var(--steps-background-color,#fff);overflow:hidden}.van-steps--horizontal{padding:10px}.van-steps--horizontal .van-step__wrapper{display:flex;overflow:hidden;position:relative}.van-steps--vertical{padding-left:10px}.van-steps--vertical .van-step__wrapper{padding:0 0 0 20px}.van-step{color:var(--step-text-color,#969799);flex:1;font-size:var(--step-font-size,14px);position:relative}.van-step--finish{color:var(--step-finish-text-color,#323233)}.van-step__circle{background-color:var(--step-circle-color,#969799);border-radius:50%;height:var(--step-circle-size,5px);width:var(--step-circle-size,5px)}.van-step--horizontal{padding-bottom:14px}.van-step--horizontal:first-child .van-step__title{transform:none}.van-step--horizontal:first-child .van-step__circle-container{padding:0 8px 0 0;transform:translate3d(0,50%,0)}.van-step--horizontal:last-child{position:absolute;right:0;width:auto}.van-step--horizontal:last-child .van-step__title{text-align:right;transform:none}.van-step--horizontal:last-child .van-step__circle-container{padding:0 0 0 8px;right:0;transform:translate3d(0,50%,0)}.van-step--horizontal .van-step__circle-container{background-color:#fff;bottom:6px;padding:0 var(--padding-xs,8px);position:absolute;transform:translate3d(-50%,50%,0);z-index:1}.van-step--horizontal .van-step__title{display:inline-block;font-size:var(--step-horizontal-title-font-size,12px);transform:translate3d(-50%,0,0)}.van-step--horizontal .van-step__line{background-color:var(--step-line-color,#ebedf0);bottom:6px;height:1px;left:0;position:absolute;right:0;transform:translate3d(0,50%,0)}.van-step--horizontal.van-step--process{color:var(--step-process-text-color,#323233)}.van-step--horizontal.van-step--process .van-step__icon{display:block;font-size:var(--step-icon-size,12px);line-height:1}.van-step--vertical{line-height:18px;padding:10px 10px 10px 0}.van-step--vertical:after{border-bottom-width:1px}.van-step--vertical:last-child:after{border-bottom-width:none}.van-step--vertical:first-child:before{background-color:#fff;content:"";height:20px;left:-15px;position:absolute;top:0;width:1px;z-index:1}.van-step--vertical .van-step__circle,.van-step--vertical .van-step__icon,.van-step--vertical .van-step__line{left:-14px;position:absolute;top:19px;transform:translate3d(-50%,-50%,0);z-index:2}.van-step--vertical .van-step__icon{font-size:var(--step-icon-size,12px);line-height:1}.van-step--vertical .van-step__line{background-color:var(--step-line-color,#ebedf0);height:100%;transform:translate3d(-50%,0,0);width:1px;z-index:1}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..e1ae6dfa120b139009f6555c4efd89a257fb0471
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.js
@@ -0,0 +1,118 @@
+import { getRect } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { isDef } from '../common/validator';
+import { pageScrollMixin } from '../mixins/page-scroll';
+const ROOT_ELEMENT = '.van-sticky';
+VantComponent({
+ props: {
+ zIndex: {
+ type: Number,
+ value: 99,
+ },
+ offsetTop: {
+ type: Number,
+ value: 0,
+ observer: 'onScroll',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'onScroll',
+ },
+ container: {
+ type: null,
+ observer: 'onScroll',
+ },
+ scrollTop: {
+ type: null,
+ observer(val) {
+ this.onScroll({ scrollTop: val });
+ },
+ },
+ },
+ mixins: [
+ pageScrollMixin(function (event) {
+ if (this.data.scrollTop != null) {
+ return;
+ }
+ this.onScroll(event);
+ }),
+ ],
+ data: {
+ height: 0,
+ fixed: false,
+ transform: 0,
+ },
+ mounted() {
+ this.onScroll();
+ },
+ methods: {
+ onScroll({ scrollTop } = {}) {
+ const { container, offsetTop, disabled } = this.data;
+ if (disabled) {
+ this.setDataAfterDiff({
+ fixed: false,
+ transform: 0,
+ });
+ return;
+ }
+ this.scrollTop = scrollTop || this.scrollTop;
+ if (typeof container === 'function') {
+ Promise.all([
+ getRect(this, ROOT_ELEMENT),
+ this.getContainerRect(),
+ ]).then(([root, container]) => {
+ if (offsetTop + root.height > container.height + container.top) {
+ this.setDataAfterDiff({
+ fixed: false,
+ transform: container.height - root.height,
+ });
+ }
+ else if (offsetTop >= root.top) {
+ this.setDataAfterDiff({
+ fixed: true,
+ height: root.height,
+ transform: 0,
+ });
+ }
+ else {
+ this.setDataAfterDiff({ fixed: false, transform: 0 });
+ }
+ });
+ return;
+ }
+ getRect(this, ROOT_ELEMENT).then((root) => {
+ if (!isDef(root)) {
+ return;
+ }
+ if (offsetTop >= root.top) {
+ this.setDataAfterDiff({ fixed: true, height: root.height });
+ this.transform = 0;
+ }
+ else {
+ this.setDataAfterDiff({ fixed: false });
+ }
+ });
+ },
+ setDataAfterDiff(data) {
+ wx.nextTick(() => {
+ const diff = Object.keys(data).reduce((prev, key) => {
+ if (data[key] !== this.data[key]) {
+ prev[key] = data[key];
+ }
+ return prev;
+ }, {});
+ if (Object.keys(diff).length > 0) {
+ this.setData(diff);
+ }
+ this.$emit('scroll', {
+ scrollTop: this.scrollTop,
+ isFixed: data.fixed || this.data.fixed,
+ });
+ });
+ },
+ getContainerRect() {
+ const nodesRef = this.data.container();
+ return new Promise((resolve) => nodesRef.boundingClientRect(resolve).exec());
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..15e9f4a8ae6ebd01ceffa4fc8e6323b0010f7154
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.wxml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..be99d8931eb610212aa0ee50e053792fede6fb5b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.wxs
@@ -0,0 +1,25 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function wrapStyle(data) {
+ return style({
+ transform: data.transform
+ ? 'translate3d(0, ' + data.transform + 'px, 0)'
+ : '',
+ top: data.fixed ? addUnit(data.offsetTop) : '',
+ 'z-index': data.zIndex,
+ });
+}
+
+function containerStyle(data) {
+ return style({
+ height: data.fixed ? addUnit(data.height) : '',
+ 'z-index': data.zIndex,
+ });
+}
+
+module.exports = {
+ wrapStyle: wrapStyle,
+ containerStyle: containerStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..34d76aab295ab3e2094801473d98d9f5db0cbaa8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/sticky/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sticky{position:relative}.van-sticky-wrap--fixed{left:0;position:fixed;right:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..decf4596dcb79eabcb3f9275551a6c998a970794
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.js
@@ -0,0 +1,56 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: ['bar-class', 'price-class', 'button-class'],
+ props: {
+ tip: {
+ type: null,
+ observer: 'updateTip',
+ },
+ tipIcon: String,
+ type: Number,
+ price: {
+ type: null,
+ observer: 'updatePrice',
+ },
+ label: String,
+ loading: Boolean,
+ disabled: Boolean,
+ buttonText: String,
+ currency: {
+ type: String,
+ value: '¥',
+ },
+ buttonType: {
+ type: String,
+ value: 'danger',
+ },
+ decimalLength: {
+ type: Number,
+ value: 2,
+ observer: 'updatePrice',
+ },
+ suffixLabel: String,
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ updatePrice() {
+ const { price, decimalLength } = this.data;
+ const priceStrArr = typeof price === 'number' &&
+ (price / 100).toFixed(decimalLength).split('.');
+ this.setData({
+ hasPrice: typeof price === 'number',
+ integerStr: priceStrArr && priceStrArr[0],
+ decimalStr: decimalLength && priceStrArr ? `.${priceStrArr[1]}` : '',
+ });
+ },
+ updateTip() {
+ this.setData({ hasTip: typeof this.data.tip === 'string' });
+ },
+ onSubmit(event) {
+ this.$emit('submit', event.detail);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..bda9b8d338609dd3ae9b10a6dc46a6f649d52b17
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../button/index",
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..a56dd46ce8c81a4b76275e8f128ae8a108b93ac8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.wxml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+ {{ tip }}
+
+
+
+
+
+
+
+ {{ label || '合计:' }}
+
+ {{ currency }}
+ {{ integerStr }} {{decimalStr}}
+
+ {{ suffixLabel }}
+
+
+ {{ loading ? '' : buttonText }}
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..8379a30608217c05e96cfc56b10a4ef34bb67e48
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/submit-bar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-submit-bar{background-color:var(--submit-bar-background-color,#fff);bottom:0;left:0;position:fixed;-webkit-user-select:none;user-select:none;width:100%;z-index:var(--submit-bar-z-index,100)}.van-submit-bar__tip{background-color:var(--submit-bar-tip-background-color,#fff7cc);color:var(--submit-bar-tip-color,#f56723);font-size:var(--submit-bar-tip-font-size,12px);line-height:var(--submit-bar-tip-line-height,1.5);padding:var(--submit-bar-tip-padding,10px)}.van-submit-bar__tip:empty{display:none}.van-submit-bar__tip-icon{margin-right:4px;vertical-align:middle}.van-submit-bar__tip-text{display:inline;vertical-align:middle}.van-submit-bar__bar{align-items:center;background-color:var(--submit-bar-background-color,#fff);display:flex;font-size:var(--submit-bar-text-font-size,14px);height:var(--submit-bar-height,50px);justify-content:flex-end;padding:var(--submit-bar-padding,0 16px)}.van-submit-bar__safe{height:constant(safe-area-inset-bottom);height:env(safe-area-inset-bottom)}.van-submit-bar__text{color:var(--submit-bar-text-color,#323233);flex:1;font-weight:var(--font-weight-bold,500);padding-right:var(--padding-sm,12px);text-align:right}.van-submit-bar__price{color:var(--submit-bar-price-color,#ee0a24);font-size:var(--submit-bar-price-font-size,12px);font-weight:var(--font-weight-bold,500)}.van-submit-bar__price-integer{font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif;font-size:20px}.van-submit-bar__currency{font-size:var(--submit-bar-currency-font-size,12px)}.van-submit-bar__suffix-label{margin-left:5px}.van-submit-bar__button{--button-default-height:var(--submit-bar-button-height,40px)!important;--button-line-height:var(--submit-bar-button-height,40px)!important;font-weight:var(--font-weight-bold,500);width:var(--submit-bar-button-width,110px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..501088f5d071e3e2aa3ac09d518c024734fdb0ad
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.js
@@ -0,0 +1,133 @@
+import { VantComponent } from '../common/component';
+import { touch } from '../mixins/touch';
+import { range } from '../common/utils';
+const THRESHOLD = 0.3;
+let ARRAY = [];
+VantComponent({
+ props: {
+ disabled: Boolean,
+ leftWidth: {
+ type: Number,
+ value: 0,
+ observer(leftWidth = 0) {
+ if (this.offset > 0) {
+ this.swipeMove(leftWidth);
+ }
+ },
+ },
+ rightWidth: {
+ type: Number,
+ value: 0,
+ observer(rightWidth = 0) {
+ if (this.offset < 0) {
+ this.swipeMove(-rightWidth);
+ }
+ },
+ },
+ asyncClose: Boolean,
+ name: {
+ type: null,
+ value: '',
+ },
+ },
+ mixins: [touch],
+ data: {
+ catchMove: false,
+ wrapperStyle: '',
+ },
+ created() {
+ this.offset = 0;
+ ARRAY.push(this);
+ },
+ destroyed() {
+ ARRAY = ARRAY.filter((item) => item !== this);
+ },
+ methods: {
+ open(position) {
+ const { leftWidth, rightWidth } = this.data;
+ const offset = position === 'left' ? leftWidth : -rightWidth;
+ this.swipeMove(offset);
+ this.$emit('open', {
+ position,
+ name: this.data.name,
+ });
+ },
+ close() {
+ this.swipeMove(0);
+ },
+ swipeMove(offset = 0) {
+ this.offset = range(offset, -this.data.rightWidth, this.data.leftWidth);
+ const transform = `translate3d(${this.offset}px, 0, 0)`;
+ const transition = this.dragging
+ ? 'none'
+ : 'transform .6s cubic-bezier(0.18, 0.89, 0.32, 1)';
+ this.setData({
+ wrapperStyle: `
+ -webkit-transform: ${transform};
+ -webkit-transition: ${transition};
+ transform: ${transform};
+ transition: ${transition};
+ `,
+ });
+ },
+ swipeLeaveTransition() {
+ const { leftWidth, rightWidth } = this.data;
+ const { offset } = this;
+ if (rightWidth > 0 && -offset > rightWidth * THRESHOLD) {
+ this.open('right');
+ }
+ else if (leftWidth > 0 && offset > leftWidth * THRESHOLD) {
+ this.open('left');
+ }
+ else {
+ this.swipeMove(0);
+ }
+ this.setData({ catchMove: false });
+ },
+ startDrag(event) {
+ if (this.data.disabled) {
+ return;
+ }
+ this.startOffset = this.offset;
+ this.touchStart(event);
+ },
+ noop() { },
+ onDrag(event) {
+ if (this.data.disabled) {
+ return;
+ }
+ this.touchMove(event);
+ if (this.direction !== 'horizontal') {
+ return;
+ }
+ this.dragging = true;
+ ARRAY.filter((item) => item !== this && item.offset !== 0).forEach((item) => item.close());
+ this.setData({ catchMove: true });
+ this.swipeMove(this.startOffset + this.deltaX);
+ },
+ endDrag() {
+ if (this.data.disabled) {
+ return;
+ }
+ this.dragging = false;
+ this.swipeLeaveTransition();
+ },
+ onClick(event) {
+ const { key: position = 'outside' } = event.currentTarget.dataset;
+ this.$emit('click', position);
+ if (!this.offset) {
+ return;
+ }
+ if (this.data.asyncClose) {
+ this.$emit('close', {
+ position,
+ instance: this,
+ name: this.data.name,
+ });
+ }
+ else {
+ this.swipeMove(0);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..3f7f7260895d329b8b21a85239a95e084d7ae125
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.wxml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..3a265bf671176ff93f3a0b29d5d4bde15a28b7d4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/swipe-cell/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-swipe-cell{overflow:hidden;position:relative}.van-swipe-cell__left,.van-swipe-cell__right{height:100%;position:absolute;top:0}.van-swipe-cell__left{left:0;transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;transform:translate3d(100%,0,0)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..4cad09c9bbfe2b48513471f54b98ec1fcc94e742
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.js
@@ -0,0 +1,36 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ field: true,
+ classes: ['node-class'],
+ props: {
+ checked: null,
+ loading: Boolean,
+ disabled: Boolean,
+ activeColor: String,
+ inactiveColor: String,
+ size: {
+ type: String,
+ value: '30',
+ },
+ activeValue: {
+ type: null,
+ value: true,
+ },
+ inactiveValue: {
+ type: null,
+ value: false,
+ },
+ },
+ methods: {
+ onClick() {
+ const { activeValue, inactiveValue, disabled, loading } = this.data;
+ if (disabled || loading) {
+ return;
+ }
+ const checked = this.data.checked === activeValue;
+ const value = checked ? inactiveValue : activeValue;
+ this.$emit('input', value);
+ this.$emit('change', value);
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..01077f5dafe4ea3780999933518963b8b6551d8d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..d45829bde48f9bc164249e1a47ec2ee6bdd1634b
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.wxml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..1fb6530c54b8877603a7f1136f2b0035c56f3a42
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.wxs
@@ -0,0 +1,26 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ var currentColor = data.checked ? data.activeColor : data.inactiveColor;
+
+ return style({
+ 'font-size': addUnit(data.size),
+ 'background-color': currentColor,
+ });
+}
+
+var BLUE = '#1989fa';
+var GRAY_DARK = '#969799';
+
+function loadingColor(data) {
+ return data.checked
+ ? data.activeColor || BLUE
+ : data.inactiveColor || GRAY_DARK;
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ loadingColor: loadingColor,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..35929de107181639e00170266f7127615607f4ca
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/switch/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-switch{background-color:var(--switch-background-color,#fff);border:var(--switch-border,1px solid rgba(0,0,0,.1));border-radius:var(--switch-node-size,1em);box-sizing:initial;display:inline-block;height:var(--switch-height,1em);position:relative;transition:background-color var(--switch-transition-duration,.3s);width:var(--switch-width,2em)}.van-switch__node{background-color:var(--switch-node-background-color,#fff);border-radius:100%;box-shadow:var(--switch-node-box-shadow,0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05));height:var(--switch-node-size,1em);left:0;position:absolute;top:0;transition:var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05);width:var(--switch-node-size,1em);z-index:var(--switch-node-z-index,1)}.van-switch__loading{height:50%;left:25%;position:absolute!important;top:25%;width:50%}.van-switch--on{background-color:var(--switch-on-background-color,#1989fa)}.van-switch--on .van-switch__node{transform:translateX(calc(var(--switch-width, 2em) - var(--switch-node-size, 1em)))}.van-switch--disabled{opacity:var(--switch-disabled-opacity,.4)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..9ada62e0c4466170483cb9b5197543fb8b11c2d4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.js
@@ -0,0 +1,56 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ relation: useParent('tabs'),
+ props: {
+ dot: {
+ type: Boolean,
+ observer: 'update',
+ },
+ info: {
+ type: null,
+ observer: 'update',
+ },
+ title: {
+ type: String,
+ observer: 'update',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'update',
+ },
+ titleStyle: {
+ type: String,
+ observer: 'update',
+ },
+ name: {
+ type: null,
+ value: '',
+ },
+ },
+ data: {
+ active: false,
+ },
+ methods: {
+ getComputedName() {
+ if (this.data.name !== '') {
+ return this.data.name;
+ }
+ return this.index;
+ },
+ updateRender(active, parent) {
+ const { data: parentData } = parent;
+ this.inited = this.inited || active;
+ this.setData({
+ active,
+ shouldRender: this.inited || !parentData.lazyRender,
+ shouldShow: active || parentData.animated,
+ });
+ },
+ update() {
+ if (this.parent) {
+ this.parent.updateTabs();
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f5e99f2145b12c53b3c91150d9bb742ece67d0d9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.wxml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..1c90c88c604bb5676d7a3f90b816c840814cab8f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tab/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{box-sizing:border-box;flex-shrink:0;width:100%}.van-tab__pane{-webkit-overflow-scrolling:touch;box-sizing:border-box;overflow-y:auto}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..4154399ed9956df52f23ac4f2a42cdde3367d8e4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.js
@@ -0,0 +1,56 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ props: {
+ info: null,
+ name: null,
+ icon: String,
+ dot: Boolean,
+ iconPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ },
+ relation: useParent('tabbar'),
+ data: {
+ active: false,
+ activeColor: '',
+ inactiveColor: '',
+ },
+ methods: {
+ onClick() {
+ const { parent } = this;
+ if (parent) {
+ const index = parent.children.indexOf(this);
+ const active = this.data.name || index;
+ if (active !== this.data.active) {
+ parent.$emit('change', active);
+ }
+ }
+ this.$emit('click');
+ },
+ updateFromParent() {
+ const { parent } = this;
+ if (!parent) {
+ return;
+ }
+ const index = parent.children.indexOf(this);
+ const parentData = parent.data;
+ const { data } = this;
+ const active = (data.name || index) === parentData.active;
+ const patch = {};
+ if (active !== data.active) {
+ patch.active = active;
+ }
+ if (parentData.activeColor !== data.activeColor) {
+ patch.activeColor = parentData.activeColor;
+ }
+ if (parentData.inactiveColor !== data.inactiveColor) {
+ patch.inactiveColor = parentData.inactiveColor;
+ }
+ if (Object.keys(patch).length > 0) {
+ this.setData(patch);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..16f174c55fee5e53021a59136c62bc968295a379
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-info": "../info/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..524728f34a4f907e1726abc059d760c1d178da95
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.wxml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..21ee224a8a553ce735590b1f9c5ac560c000a7d2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar-item/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{flex:1}.van-tabbar-item{align-items:center;color:var(--tabbar-item-text-color,#646566);display:flex;flex-direction:column;font-size:var(--tabbar-item-font-size,12px);height:100%;justify-content:center;line-height:var(--tabbar-item-line-height,1)}.van-tabbar-item__icon{font-size:var(--tabbar-item-icon-size,22px);margin-bottom:var(--tabbar-item-margin-bottom,4px);position:relative}.van-tabbar-item__icon__inner{display:block;min-width:1em}.van-tabbar-item--active{color:var(--tabbar-item-active-color,#1989fa)}.van-tabbar-item__info{margin-top:2px}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..05a39d6e3cff67136404aadd3b7a492d01705bed
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.js
@@ -0,0 +1,65 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+import { getRect } from '../common/utils';
+VantComponent({
+ relation: useChildren('tabbar-item', function () {
+ this.updateChildren();
+ }),
+ props: {
+ active: {
+ type: null,
+ observer: 'updateChildren',
+ },
+ activeColor: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ inactiveColor: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ fixed: {
+ type: Boolean,
+ value: true,
+ observer: 'setHeight',
+ },
+ placeholder: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ height: 50,
+ },
+ methods: {
+ updateChildren() {
+ const { children } = this;
+ if (!Array.isArray(children) || !children.length) {
+ return;
+ }
+ children.forEach((child) => child.updateFromParent());
+ },
+ setHeight() {
+ if (!this.data.fixed || !this.data.placeholder) {
+ return;
+ }
+ wx.nextTick(() => {
+ getRect(this, '.van-tabbar').then((res) => {
+ this.setData({ height: res.height });
+ });
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..43bb11111d4cf459dcab0beee536960c863608f2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.wxml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..42b6c1e984da98b30269b9cd6f780c42d3e88778
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabbar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tabbar{background-color:var(--tabbar-background-color,#fff);box-sizing:initial;display:flex;height:var(--tabbar-height,50px);width:100%}.van-tabbar--fixed{bottom:0;left:0;position:fixed}.van-tabbar--safe{padding-bottom:env(safe-area-inset-bottom)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..c2395be1a53b589f6729d13ad87dbbce3a89b258
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.js
@@ -0,0 +1,269 @@
+import { VantComponent } from '../common/component';
+import { touch } from '../mixins/touch';
+import { getAllRect, getRect, groupSetData, nextTick, requestAnimationFrame, } from '../common/utils';
+import { isDef } from '../common/validator';
+import { useChildren } from '../common/relation';
+VantComponent({
+ mixins: [touch],
+ classes: ['nav-class', 'tab-class', 'tab-active-class', 'line-class'],
+ relation: useChildren('tab', function () {
+ this.updateTabs();
+ }),
+ props: {
+ sticky: Boolean,
+ border: Boolean,
+ swipeable: Boolean,
+ titleActiveColor: String,
+ titleInactiveColor: String,
+ color: String,
+ animated: {
+ type: Boolean,
+ observer() {
+ this.children.forEach((child, index) => child.updateRender(index === this.data.currentIndex, this));
+ },
+ },
+ lineWidth: {
+ type: null,
+ value: 40,
+ observer: 'resize',
+ },
+ lineHeight: {
+ type: null,
+ value: -1,
+ },
+ active: {
+ type: null,
+ value: 0,
+ observer(name) {
+ if (name !== this.getCurrentName()) {
+ this.setCurrentIndexByName(name);
+ }
+ },
+ },
+ type: {
+ type: String,
+ value: 'line',
+ },
+ ellipsis: {
+ type: Boolean,
+ value: true,
+ },
+ duration: {
+ type: Number,
+ value: 0.3,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ swipeThreshold: {
+ type: Number,
+ value: 5,
+ observer(value) {
+ this.setData({
+ scrollable: this.children.length > value || !this.data.ellipsis,
+ });
+ },
+ },
+ offsetTop: {
+ type: Number,
+ value: 0,
+ },
+ lazyRender: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ tabs: [],
+ scrollLeft: 0,
+ scrollable: false,
+ currentIndex: 0,
+ container: null,
+ skipTransition: true,
+ scrollWithAnimation: false,
+ lineOffsetLeft: 0,
+ },
+ mounted() {
+ requestAnimationFrame(() => {
+ this.swiping = true;
+ this.setData({
+ container: () => this.createSelectorQuery().select('.van-tabs'),
+ });
+ this.resize();
+ this.scrollIntoView();
+ });
+ },
+ methods: {
+ updateTabs() {
+ const { children = [], data } = this;
+ this.setData({
+ tabs: children.map((child) => child.data),
+ scrollable: this.children.length > data.swipeThreshold || !data.ellipsis,
+ });
+ this.setCurrentIndexByName(data.active || this.getCurrentName());
+ },
+ trigger(eventName, child) {
+ const { currentIndex } = this.data;
+ const currentChild = child || this.children[currentIndex];
+ if (!isDef(currentChild)) {
+ return;
+ }
+ this.$emit(eventName, {
+ index: currentChild.index,
+ name: currentChild.getComputedName(),
+ title: currentChild.data.title,
+ });
+ },
+ onTap(event) {
+ const { index } = event.currentTarget.dataset;
+ const child = this.children[index];
+ if (child.data.disabled) {
+ this.trigger('disabled', child);
+ }
+ else {
+ this.setCurrentIndex(index);
+ nextTick(() => {
+ this.trigger('click');
+ });
+ }
+ },
+ // correct the index of active tab
+ setCurrentIndexByName(name) {
+ const { children = [] } = this;
+ const matched = children.filter((child) => child.getComputedName() === name);
+ if (matched.length) {
+ this.setCurrentIndex(matched[0].index);
+ }
+ },
+ setCurrentIndex(currentIndex) {
+ const { data, children = [] } = this;
+ if (!isDef(currentIndex) ||
+ currentIndex >= children.length ||
+ currentIndex < 0) {
+ return;
+ }
+ groupSetData(this, () => {
+ children.forEach((item, index) => {
+ const active = index === currentIndex;
+ if (active !== item.data.active || !item.inited) {
+ item.updateRender(active, this);
+ }
+ });
+ });
+ if (currentIndex === data.currentIndex) {
+ return;
+ }
+ const shouldEmitChange = data.currentIndex !== null;
+ this.setData({ currentIndex });
+ requestAnimationFrame(() => {
+ this.resize();
+ this.scrollIntoView();
+ });
+ nextTick(() => {
+ this.trigger('input');
+ if (shouldEmitChange) {
+ this.trigger('change');
+ }
+ });
+ },
+ getCurrentName() {
+ const activeTab = this.children[this.data.currentIndex];
+ if (activeTab) {
+ return activeTab.getComputedName();
+ }
+ },
+ resize() {
+ if (this.data.type !== 'line') {
+ return;
+ }
+ const { currentIndex, ellipsis, skipTransition } = this.data;
+ Promise.all([
+ getAllRect(this, '.van-tab'),
+ getRect(this, '.van-tabs__line'),
+ ]).then(([rects = [], lineRect]) => {
+ const rect = rects[currentIndex];
+ if (rect == null) {
+ return;
+ }
+ let lineOffsetLeft = rects
+ .slice(0, currentIndex)
+ .reduce((prev, curr) => prev + curr.width, 0);
+ lineOffsetLeft +=
+ (rect.width - lineRect.width) / 2 + (ellipsis ? 0 : 8);
+ this.setData({ lineOffsetLeft });
+ this.swiping = true;
+ if (skipTransition) {
+ nextTick(() => {
+ this.setData({ skipTransition: false });
+ });
+ }
+ });
+ },
+ // scroll active tab into view
+ scrollIntoView() {
+ const { currentIndex, scrollable, scrollWithAnimation } = this.data;
+ if (!scrollable) {
+ return;
+ }
+ Promise.all([
+ getAllRect(this, '.van-tab'),
+ getRect(this, '.van-tabs__nav'),
+ ]).then(([tabRects, navRect]) => {
+ const tabRect = tabRects[currentIndex];
+ const offsetLeft = tabRects
+ .slice(0, currentIndex)
+ .reduce((prev, curr) => prev + curr.width, 0);
+ this.setData({
+ scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2,
+ });
+ if (!scrollWithAnimation) {
+ nextTick(() => {
+ this.setData({ scrollWithAnimation: true });
+ });
+ }
+ });
+ },
+ onTouchScroll(event) {
+ this.$emit('scroll', event.detail);
+ },
+ onTouchStart(event) {
+ if (!this.data.swipeable)
+ return;
+ this.touchStart(event);
+ },
+ onTouchMove(event) {
+ if (!this.data.swipeable || !this.swiping)
+ return;
+ this.touchMove(event);
+ },
+ // watch swipe touch end
+ onTouchEnd() {
+ if (!this.data.swipeable || !this.swiping)
+ return;
+ const { direction, deltaX, offsetX } = this;
+ const minSwipeDistance = 50;
+ if (direction === 'horizontal' && offsetX >= minSwipeDistance) {
+ const index = this.getAvaiableTab(deltaX);
+ if (index !== -1) {
+ this.setCurrentIndex(index);
+ }
+ }
+ this.swiping = false;
+ },
+ getAvaiableTab(direction) {
+ const { tabs, currentIndex } = this.data;
+ const step = direction > 0 ? -1 : 1;
+ for (let i = step; currentIndex + i < tabs.length && currentIndex + i >= 0; i += step) {
+ const index = currentIndex + i;
+ if (index >= 0 &&
+ index < tabs.length &&
+ tabs[index] &&
+ !tabs[index].disabled) {
+ return index;
+ }
+ }
+ return -1;
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..19c0bc3a0830569890b895d1da038f64f981879c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/index",
+ "van-sticky": "../sticky/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f76dd63f21095144408ccd5ba48d177e6033e8bb
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.wxml
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..a027c7b9c35d21d2e7420a9562bac7caf3acdf75
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.wxs
@@ -0,0 +1,82 @@
+/* eslint-disable */
+var utils = require('../wxs/utils.wxs');
+var style = require('../wxs/style.wxs');
+
+function tabClass(active, ellipsis) {
+ var classes = ['tab-class'];
+
+ if (active) {
+ classes.push('tab-active-class');
+ }
+
+ if (ellipsis) {
+ classes.push('van-ellipsis');
+ }
+
+ return classes.join(' ');
+}
+
+function tabStyle(data) {
+ var titleColor = data.active
+ ? data.titleActiveColor
+ : data.titleInactiveColor;
+
+ var ellipsis = data.scrollable && data.ellipsis;
+
+ // card theme color
+ if (data.type === 'card') {
+ return style({
+ 'border-color': data.color,
+ 'background-color': !data.disabled && data.active ? data.color : null,
+ color: titleColor || (!data.disabled && !data.active ? data.color : null),
+ 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null,
+ });
+ }
+
+ return style({
+ color: titleColor,
+ 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null,
+ });
+}
+
+function navStyle(color, type) {
+ return style({
+ 'border-color': type === 'card' && color ? color : null,
+ });
+}
+
+function trackStyle(data) {
+ if (!data.animated) {
+ return '';
+ }
+
+ return style({
+ left: -100 * data.currentIndex + '%',
+ 'transition-duration': data.duration + 's',
+ '-webkit-transition-duration': data.duration + 's',
+ });
+}
+
+function lineStyle(data) {
+ return style({
+ width: utils.addUnit(data.lineWidth),
+ transform: 'translateX(' + data.lineOffsetLeft + 'px)',
+ '-webkit-transform': 'translateX(' + data.lineOffsetLeft + 'px)',
+ 'background-color': data.color,
+ height: data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null,
+ 'border-radius':
+ data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null,
+ 'transition-duration': !data.skipTransition ? data.duration + 's' : null,
+ '-webkit-transition-duration': !data.skipTransition
+ ? data.duration + 's'
+ : null,
+ });
+}
+
+module.exports = {
+ tabClass: tabClass,
+ tabStyle: tabStyle,
+ trackStyle: trackStyle,
+ lineStyle: lineStyle,
+ navStyle: navStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..bb592c3a96efdb50b1f6b2407703f6bd2f9780a0
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tabs/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tabs{-webkit-tap-highlight-color:transparent;position:relative}.van-tabs__wrap{display:flex;overflow:hidden}.van-tabs__wrap--scrollable .van-tab{flex:0 0 22%}.van-tabs__wrap--scrollable .van-tab--complete{flex:1 0 auto!important;padding:0 12px}.van-tabs__wrap--scrollable .van-tabs__nav--complete{padding-left:8px;padding-right:8px}.van-tabs__scroll{background-color:var(--tabs-nav-background-color,#fff)}.van-tabs__scroll--line{box-sizing:initial;height:calc(100% + 15px)}.van-tabs__scroll--card{border:1px solid var(--tabs-default-color,#ee0a24);border-radius:2px;box-sizing:border-box;margin:0 var(--padding-md,16px);width:calc(100% - var(--padding-md, 16px)*2)}.van-tabs__scroll::-webkit-scrollbar{display:none}.van-tabs__nav{display:flex;position:relative;-webkit-user-select:none;user-select:none}.van-tabs__nav--card{box-sizing:border-box;height:var(--tabs-card-height,30px)}.van-tabs__nav--card .van-tab{border-right:1px solid var(--tabs-default-color,#ee0a24);color:var(--tabs-default-color,#ee0a24);line-height:calc(var(--tabs-card-height, 30px) - 2px)}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{background-color:var(--tabs-default-color,#ee0a24);color:#fff}.van-tabs__nav--card .van-tab--disabled{color:var(--tab-disabled-text-color,#c8c9cc)}.van-tabs__line{background-color:var(--tabs-bottom-bar-color,#ee0a24);border-radius:var(--tabs-bottom-bar-height,3px);bottom:0;height:var(--tabs-bottom-bar-height,3px);left:0;position:absolute;z-index:1}.van-tabs__track{height:100%;position:relative;width:100%}.van-tabs__track--animated{display:flex;transition-property:left}.van-tabs__content{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:var(--tabs-line-height,44px)}.van-tabs--card .van-tabs__wrap{height:var(--tabs-card-height,30px)}.van-tab{box-sizing:border-box;color:var(--tab-text-color,#646566);cursor:pointer;flex:1;font-size:var(--tab-font-size,14px);line-height:var(--tabs-line-height,44px);min-width:0;padding:0 5px;position:relative;text-align:center}.van-tab--active{color:var(--tab-active-text-color,#323233);font-weight:var(--font-weight-bold,500)}.van-tab--disabled{color:var(--tab-disabled-text-color,#c8c9cc)}.van-tab__title__info{display:inline-block;position:relative!important;top:-1px!important;transform:translateX(0)!important}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..9704ef01f473eca2825d6c46c291001a60932215
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.js
@@ -0,0 +1,21 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ size: String,
+ mark: Boolean,
+ color: String,
+ plain: Boolean,
+ round: Boolean,
+ textColor: String,
+ type: {
+ type: String,
+ value: 'default',
+ },
+ closeable: Boolean,
+ },
+ methods: {
+ onClose() {
+ this.$emit('close');
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..59352dddde79329fc3ec90921a821b781ba0e631
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.wxml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..12d1668ec5f8df1f0cace309484bdb7c4a9377d4
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.wxs
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'background-color': data.plain ? '' : data.color,
+ color: data.textColor || data.plain ? data.textColor || data.color : '',
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..0f0cbae9d89743a1dd7b06e97e34db84744199dd
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tag/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tag{align-items:center;border-radius:var(--tag-border-radius,2px);color:var(--tag-text-color,#fff);display:inline-flex;font-size:var(--tag-font-size,12px);line-height:var(--tag-line-height,16px);padding:var(--tag-padding,0 4px);position:relative}.van-tag--default{background-color:var(--tag-default-color,#969799)}.van-tag--default.van-tag--plain{color:var(--tag-default-color,#969799)}.van-tag--danger{background-color:var(--tag-danger-color,#ee0a24)}.van-tag--danger.van-tag--plain{color:var(--tag-danger-color,#ee0a24)}.van-tag--primary{background-color:var(--tag-primary-color,#1989fa)}.van-tag--primary.van-tag--plain{color:var(--tag-primary-color,#1989fa)}.van-tag--success{background-color:var(--tag-success-color,#07c160)}.van-tag--success.van-tag--plain{color:var(--tag-success-color,#07c160)}.van-tag--warning{background-color:var(--tag-warning-color,#ff976a)}.van-tag--warning.van-tag--plain{color:var(--tag-warning-color,#ff976a)}.van-tag--plain{background-color:var(--tag-plain-background-color,#fff)}.van-tag--plain:before{border:1px solid;border-radius:inherit;bottom:0;content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.van-tag--medium{padding:var(--tag-medium-padding,2px 6px)}.van-tag--large{border-radius:var(--tag-large-border-radius,4px);font-size:var(--tag-large-font-size,14px);padding:var(--tag-large-padding,4px 8px)}.van-tag--mark{border-radius:0 var(--tag-round-border-radius,var(--tag-round-border-radius,999px)) var(--tag-round-border-radius,var(--tag-round-border-radius,999px)) 0}.van-tag--mark:after{content:"";display:block;width:2px}.van-tag--round{border-radius:var(--tag-round-border-radius,999px)}.van-tag__close{margin-left:2px;min-width:1em}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..414e746ac3068a74519e73a505058d2505039ecd
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.js
@@ -0,0 +1,29 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ show: Boolean,
+ mask: Boolean,
+ message: String,
+ forbidClick: Boolean,
+ zIndex: {
+ type: Number,
+ value: 1000,
+ },
+ type: {
+ type: String,
+ value: 'text',
+ },
+ loadingType: {
+ type: String,
+ value: 'circular',
+ },
+ position: {
+ type: String,
+ value: 'middle',
+ },
+ },
+ methods: {
+ // for prevent touchmove
+ noop() { },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..9b1b78c4aa37d522149a65979bb4f4786ecbf2ed
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.json
@@ -0,0 +1,9 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index",
+ "van-overlay": "../overlay/index",
+ "van-transition": "../transition/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f5c4f732c498e5e8d8e2469e0dd8000caa2624f3
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.wxml
@@ -0,0 +1,36 @@
+
+
+
+
+ {{ message }}
+
+
+
+
+
+
+
+
+ {{ message }}
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..3b7a34ef58c9623d587c4abaa20b403bce9cf7e7
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-toast{word-wrap:break-word;align-items:center;background-color:var(--toast-background-color,rgba(0,0,0,.7));border-radius:var(--toast-border-radius,8px);box-sizing:initial;color:var(--toast-text-color,#fff);display:flex;flex-direction:column;font-size:var(--toast-font-size,14px);justify-content:center;line-height:var(--toast-line-height,20px);white-space:pre-wrap}.van-toast__container{left:50%;max-width:var(--toast-max-width,70%);position:fixed;top:50%;transform:translate(-50%,-50%);width:-webkit-fit-content;width:fit-content}.van-toast--text{min-width:var(--toast-text-min-width,96px);padding:var(--toast-text-padding,8px 12px)}.van-toast--icon{min-height:var(--toast-default-min-height,88px);padding:var(--toast-default-padding,16px);width:var(--toast-default-width,88px)}.van-toast--icon .van-toast__icon{font-size:var(--toast-icon-size,36px)}.van-toast--icon .van-toast__text{padding-top:8px}.van-toast__loading{margin:10px 0}.van-toast--top{transform:translateY(-30vh)}.van-toast--bottom{transform:translateY(30vh)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/toast.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/toast.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..db3f40e6845b60070eaa20caaa46513657d0b1fa
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/toast.d.ts
@@ -0,0 +1,26 @@
+///
+declare type ToastMessage = string | number;
+interface ToastOptions {
+ show?: boolean;
+ type?: string;
+ mask?: boolean;
+ zIndex?: number;
+ context?: WechatMiniprogram.Component.TrivialInstance | WechatMiniprogram.Page.TrivialInstance;
+ position?: string;
+ duration?: number;
+ selector?: string;
+ forbidClick?: boolean;
+ loadingType?: string;
+ message?: ToastMessage;
+ onClose?: () => void;
+}
+declare function Toast(toastOptions: ToastOptions | ToastMessage): WechatMiniprogram.Component.TrivialInstance | undefined;
+declare namespace Toast {
+ var loading: (options: ToastMessage | ToastOptions) => WechatMiniprogram.Component.TrivialInstance | undefined;
+ var success: (options: ToastMessage | ToastOptions) => WechatMiniprogram.Component.TrivialInstance | undefined;
+ var fail: (options: ToastMessage | ToastOptions) => WechatMiniprogram.Component.TrivialInstance | undefined;
+ var clear: () => void;
+ var setDefaultOptions: (options: ToastOptions) => void;
+ var resetDefaultOptions: () => void;
+}
+export default Toast;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/toast.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/toast.js
new file mode 100644
index 0000000000000000000000000000000000000000..10775f313d7adbfaad1e4fa79ee0480cba6e9895
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/toast/toast.js
@@ -0,0 +1,66 @@
+import { isObj } from '../common/validator';
+const defaultOptions = {
+ type: 'text',
+ mask: false,
+ message: '',
+ show: true,
+ zIndex: 1000,
+ duration: 2000,
+ position: 'middle',
+ forbidClick: false,
+ loadingType: 'circular',
+ selector: '#van-toast',
+};
+let queue = [];
+let currentOptions = Object.assign({}, defaultOptions);
+function parseOptions(message) {
+ return isObj(message) ? message : { message };
+}
+function getContext() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+function Toast(toastOptions) {
+ const options = Object.assign(Object.assign({}, currentOptions), parseOptions(toastOptions));
+ const context = options.context || getContext();
+ const toast = context.selectComponent(options.selector);
+ if (!toast) {
+ console.warn('未找到 van-toast 节点,请确认 selector 及 context 是否正确');
+ return;
+ }
+ delete options.context;
+ delete options.selector;
+ toast.clear = () => {
+ toast.setData({ show: false });
+ if (options.onClose) {
+ options.onClose();
+ }
+ };
+ queue.push(toast);
+ toast.setData(options);
+ clearTimeout(toast.timer);
+ if (options.duration != null && options.duration > 0) {
+ toast.timer = setTimeout(() => {
+ toast.clear();
+ queue = queue.filter((item) => item !== toast);
+ }, options.duration);
+ }
+ return toast;
+}
+const createMethod = (type) => (options) => Toast(Object.assign({ type }, parseOptions(options)));
+Toast.loading = createMethod('loading');
+Toast.success = createMethod('success');
+Toast.fail = createMethod('fail');
+Toast.clear = () => {
+ queue.forEach((toast) => {
+ toast.clear();
+ });
+ queue = [];
+};
+Toast.setDefaultOptions = (options) => {
+ Object.assign(currentOptions, options);
+};
+Toast.resetDefaultOptions = () => {
+ currentOptions = Object.assign({}, defaultOptions);
+};
+export default Toast;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..59bb9842eadc2dd43d9bb773ad86d7213c15b437
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.js
@@ -0,0 +1,13 @@
+import { VantComponent } from '../common/component';
+import { transition } from '../mixins/transition';
+VantComponent({
+ classes: [
+ 'enter-class',
+ 'enter-active-class',
+ 'enter-to-class',
+ 'leave-class',
+ 'leave-active-class',
+ 'leave-to-class',
+ ],
+ mixins: [transition(true)],
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..2743785269f449afd81c15737578ecef0ecdda0d
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.wxml
@@ -0,0 +1,10 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..e0babf62aa21eb45959cfbb9b70009b1895179c9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.wxs
@@ -0,0 +1,17 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ '-webkit-transition-duration': data.currentDuration + 'ms',
+ 'transition-duration': data.currentDuration + 'ms',
+ },
+ data.display ? null : 'display: none',
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..3a3d37fb04edd3f86a57795e585b4398124b26cf
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/transition/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-transition{transition-timing-function:ease}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-fade-down-enter-active,.van-fade-down-leave-active,.van-fade-left-enter-active,.van-fade-left-leave-active,.van-fade-right-enter-active,.van-fade-right-leave-active,.van-fade-up-enter-active,.van-fade-up-leave-active{transition-property:opacity,transform}.van-fade-up-enter,.van-fade-up-leave-to{opacity:0;transform:translate3d(0,100%,0)}.van-fade-down-enter,.van-fade-down-leave-to{opacity:0;transform:translate3d(0,-100%,0)}.van-fade-left-enter,.van-fade-left-leave-to{opacity:0;transform:translate3d(-100%,0,0)}.van-fade-right-enter,.van-fade-right-leave-to{opacity:0;transform:translate3d(100%,0,0)}.van-slide-down-enter-active,.van-slide-down-leave-active,.van-slide-left-enter-active,.van-slide-left-leave-active,.van-slide-right-enter-active,.van-slide-right-leave-active,.van-slide-up-enter-active,.van-slide-up-leave-active{transition-property:transform}.van-slide-up-enter,.van-slide-up-leave-to{transform:translate3d(0,100%,0)}.van-slide-down-enter,.van-slide-down-leave-to{transform:translate3d(0,-100%,0)}.van-slide-left-enter,.van-slide-left-leave-to{transform:translate3d(-100%,0,0)}.van-slide-right-enter,.van-slide-right-leave-to{transform:translate3d(100%,0,0)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..a850ed6ebffef89b93031ad6b85961a7721165c5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.js
@@ -0,0 +1,68 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: [
+ 'main-item-class',
+ 'content-item-class',
+ 'main-active-class',
+ 'content-active-class',
+ 'main-disabled-class',
+ 'content-disabled-class',
+ ],
+ props: {
+ items: {
+ type: Array,
+ observer: 'updateSubItems',
+ },
+ activeId: null,
+ mainActiveIndex: {
+ type: Number,
+ value: 0,
+ observer: 'updateSubItems',
+ },
+ height: {
+ type: null,
+ value: 300,
+ },
+ max: {
+ type: Number,
+ value: Infinity,
+ },
+ selectedIcon: {
+ type: String,
+ value: 'success',
+ },
+ },
+ data: {
+ subItems: [],
+ },
+ methods: {
+ // 当一个子项被选择时
+ onSelectItem(event) {
+ const { item } = event.currentTarget.dataset;
+ const isArray = Array.isArray(this.data.activeId);
+ // 判断有没有超出右侧选择的最大数
+ const isOverMax = isArray && this.data.activeId.length >= this.data.max;
+ // 判断该项有没有被选中, 如果有被选中,则忽视是否超出的条件
+ const isSelected = isArray
+ ? this.data.activeId.indexOf(item.id) > -1
+ : this.data.activeId === item.id;
+ if (!item.disabled && (!isOverMax || isSelected)) {
+ this.$emit('click-item', item);
+ }
+ },
+ // 当一个导航被点击时
+ onClickNav(event) {
+ const index = event.detail;
+ const item = this.data.items[index];
+ if (!item.disabled) {
+ this.$emit('click-nav', { index });
+ }
+ },
+ // 更新子项列表
+ updateSubItems() {
+ const { items, mainActiveIndex } = this.data;
+ const { children = [] } = items[mainActiveIndex] || {};
+ this.setData({ subItems: children });
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..42991a2ad544f292b23eb72b2a95fa823349daed
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.json
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-sidebar": "../sidebar/index",
+ "van-sidebar-item": "../sidebar-item/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..2663e528d3b619155478ef4a8487c29812131c35
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.wxml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..b1cbb39b2d01d296acee604ad0135aed8234cdc5
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.wxs
@@ -0,0 +1,12 @@
+/* eslint-disable */
+var array = require('../wxs/array.wxs');
+
+function isActive (activeList, itemId) {
+ if (array.isArray(activeList)) {
+ return activeList.indexOf(itemId) > -1;
+ }
+
+ return activeList === itemId;
+}
+
+module.exports.isActive = isActive;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..5bef0ac777529d4875c5ecfd20232cce9c795b86
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/tree-select/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tree-select{display:flex;font-size:var(--tree-select-font-size,14px);position:relative;-webkit-user-select:none;user-select:none}.van-tree-select__nav{--sidebar-padding:12px 8px 12px 12px;background-color:var(--tree-select-nav-background-color,#f7f8fa);flex:1}.van-tree-select__nav__inner{height:100%;width:100%!important}.van-tree-select__content{background-color:var(--tree-select-content-background-color,#fff);flex:2}.van-tree-select__item{font-weight:700;line-height:var(--tree-select-item-height,44px);padding:0 32px 0 var(--padding-md,16px);position:relative}.van-tree-select__item--active{color:var(--tree-select-item-active-color,#ee0a24)}.van-tree-select__item--disabled{color:var(--tree-select-item-disabled-color,#c8c9cc)}.van-tree-select__selected{position:absolute;right:var(--padding-md,16px);top:50%;transform:translateY(-50%)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..ba4b1b462452e0378d7360fba686feb665dba0ce
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.js
@@ -0,0 +1,155 @@
+import { VantComponent } from '../common/component';
+import { isImageFile, chooseFile, isVideoFile } from './utils';
+import { chooseImageProps, chooseVideoProps } from './shared';
+import { isBoolean, isPromise } from '../common/validator';
+VantComponent({
+ props: Object.assign(Object.assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
+ type: null,
+ value: 80,
+ }, name: {
+ type: null,
+ value: '',
+ }, accept: {
+ type: String,
+ value: 'image',
+ }, fileList: {
+ type: Array,
+ value: [],
+ observer: 'formatFileList',
+ }, maxSize: {
+ type: Number,
+ value: Number.MAX_VALUE,
+ }, maxCount: {
+ type: Number,
+ value: 100,
+ }, deletable: {
+ type: Boolean,
+ value: true,
+ }, showUpload: {
+ type: Boolean,
+ value: true,
+ }, previewImage: {
+ type: Boolean,
+ value: true,
+ }, previewFullImage: {
+ type: Boolean,
+ value: true,
+ }, imageFit: {
+ type: String,
+ value: 'scaleToFill',
+ }, uploadIcon: {
+ type: String,
+ value: 'photograph',
+ } }, chooseImageProps), chooseVideoProps),
+ data: {
+ lists: [],
+ isInCount: true,
+ },
+ methods: {
+ formatFileList() {
+ const { fileList = [], maxCount } = this.data;
+ const lists = fileList.map((item) => (Object.assign(Object.assign({}, item), { isImage: isImageFile(item), isVideo: isVideoFile(item), deletable: isBoolean(item.deletable) ? item.deletable : true })));
+ this.setData({ lists, isInCount: lists.length < maxCount });
+ },
+ getDetail(index) {
+ return {
+ name: this.data.name,
+ index: index == null ? this.data.fileList.length : index,
+ };
+ },
+ startUpload() {
+ const { maxCount, multiple, lists, disabled } = this.data;
+ if (disabled)
+ return;
+ chooseFile(Object.assign(Object.assign({}, this.data), { maxCount: maxCount - lists.length }))
+ .then((res) => {
+ this.onBeforeRead(multiple ? res : res[0]);
+ })
+ .catch((error) => {
+ this.$emit('error', error);
+ });
+ },
+ onBeforeRead(file) {
+ const { beforeRead, useBeforeRead } = this.data;
+ let res = true;
+ if (typeof beforeRead === 'function') {
+ res = beforeRead(file, this.getDetail());
+ }
+ if (useBeforeRead) {
+ res = new Promise((resolve, reject) => {
+ this.$emit('before-read', Object.assign(Object.assign({ file }, this.getDetail()), { callback: (ok) => {
+ ok ? resolve() : reject();
+ } }));
+ });
+ }
+ if (!res) {
+ return;
+ }
+ if (isPromise(res)) {
+ res.then((data) => this.onAfterRead(data || file));
+ }
+ else {
+ this.onAfterRead(file);
+ }
+ },
+ onAfterRead(file) {
+ const { maxSize, afterRead } = this.data;
+ const oversize = Array.isArray(file)
+ ? file.some((item) => item.size > maxSize)
+ : file.size > maxSize;
+ if (oversize) {
+ this.$emit('oversize', Object.assign({ file }, this.getDetail()));
+ return;
+ }
+ if (typeof afterRead === 'function') {
+ afterRead(file, this.getDetail());
+ }
+ this.$emit('after-read', Object.assign({ file }, this.getDetail()));
+ },
+ deleteItem(event) {
+ const { index } = event.currentTarget.dataset;
+ this.$emit('delete', Object.assign(Object.assign({}, this.getDetail(index)), { file: this.data.fileList[index] }));
+ },
+ onPreviewImage(event) {
+ if (!this.data.previewFullImage)
+ return;
+ const { index } = event.currentTarget.dataset;
+ const { lists } = this.data;
+ const item = lists[index];
+ wx.previewImage({
+ urls: lists.filter((item) => isImageFile(item)).map((item) => item.url),
+ current: item.url,
+ fail() {
+ wx.showToast({ title: '预览图片失败', icon: 'none' });
+ },
+ });
+ },
+ onPreviewVideo(event) {
+ if (!this.data.previewFullImage)
+ return;
+ const { index } = event.currentTarget.dataset;
+ const { lists } = this.data;
+ wx.previewMedia({
+ sources: lists
+ .filter((item) => isVideoFile(item))
+ .map((item) => (Object.assign(Object.assign({}, item), { type: 'video' }))),
+ current: index,
+ fail() {
+ wx.showToast({ title: '预览视频失败', icon: 'none' });
+ },
+ });
+ },
+ onPreviewFile(event) {
+ const { index } = event.currentTarget.dataset;
+ wx.openDocument({
+ filePath: this.data.lists[index].url,
+ showMenu: true,
+ });
+ },
+ onClickPreview(event) {
+ const { index } = event.currentTarget.dataset;
+ const item = this.data.lists[index];
+ this.$emit('click-preview', Object.assign(Object.assign({}, item), this.getDetail(index)));
+ },
+ },
+});
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.json b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..e00a588702da8887bbe5f8261aea5764251d14ff
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.wxml b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..50fb0c89255d9c26ed9bd746ce093282221c5eb2
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.wxml
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name || item.url }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ uploadText }}
+
+
+
+
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..257c7804646f7c791b7b868ff1e16f7980234a32
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.wxs
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function sizeStyle(data) {
+ return style({
+ width: addUnit(data.previewSize),
+ height: addUnit(data.previewSize),
+ });
+}
+
+module.exports = {
+ sizeStyle: sizeStyle,
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.wxss b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..11f86962321d93b3eb7255db630c87c712c058ba
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-uploader{display:inline-block;position:relative}.van-uploader__wrapper{display:flex;flex-wrap:wrap}.van-uploader__slot:empty{display:none}.van-uploader__slot:not(:empty)+.van-uploader__upload{display:none!important}.van-uploader__upload{align-items:center;background-color:var(--uploader-upload-background-color,#f7f8fa);box-sizing:border-box;display:flex;flex-direction:column;height:var(--uploader-size,80px);justify-content:center;margin:0 8px 8px 0;position:relative;width:var(--uploader-size,80px)}.van-uploader__upload:active{background-color:var(--uploader-upload-active-color,#f2f3f5)}.van-uploader__upload-icon{color:var(--uploader-icon-color,#dcdee0);font-size:var(--uploader-icon-size,24px)}.van-uploader__upload-text{color:var(--uploader-text-color,#969799);font-size:var(--uploader-text-font-size,12px);margin-top:var(--padding-xs,8px)}.van-uploader__upload--disabled{opacity:var(--uploader-disabled-opacity,.5)}.van-uploader__preview{cursor:pointer;margin:0 8px 8px 0;position:relative}.van-uploader__preview-image{display:block;height:var(--uploader-size,80px);overflow:hidden;width:var(--uploader-size,80px)}.van-uploader__preview-delete,.van-uploader__preview-delete:after{height:var(--uploader-delete-icon-size,14px);position:absolute;right:0;top:0;width:var(--uploader-delete-icon-size,14px)}.van-uploader__preview-delete:after{background-color:var(--uploader-delete-background-color,rgba(0,0,0,.7));border-radius:0 0 0 12px;content:""}.van-uploader__preview-delete-icon{color:var(--uploader-delete-color,#fff);font-size:var(--uploader-delete-icon-size,14px);position:absolute;right:0;top:0;transform:scale(.7) translate(10%,-10%);z-index:1}.van-uploader__file{align-items:center;background-color:var(--uploader-file-background-color,#f7f8fa);display:flex;flex-direction:column;height:var(--uploader-size,80px);justify-content:center;width:var(--uploader-size,80px)}.van-uploader__file-icon{color:var(--uploader-file-icon-color,#646566);font-size:var(--uploader-file-icon-size,20px)}.van-uploader__file-name{box-sizing:border-box;color:var(--uploader-file-name-text-color,#646566);font-size:var(--uploader-file-name-font-size,12px);margin-top:var(--uploader-file-name-margin-top,8px);padding:var(--uploader-file-name-padding,0 4px);text-align:center;width:100%}.van-uploader__mask{align-items:center;background-color:var(--uploader-mask-background-color,rgba(50,50,51,.88));bottom:0;color:#fff;display:flex;flex-direction:column;justify-content:center;left:0;position:absolute;right:0;top:0}.van-uploader__mask-icon{font-size:var(--uploader-mask-icon-size,22px)}.van-uploader__mask-message{font-size:var(--uploader-mask-message-font-size,12px);line-height:var(--uploader-mask-message-line-height,14px);margin-top:6px;padding:0 var(--padding-base,4px)}.van-uploader__loading{color:var(--uploader-loading-icon-color,#fff)!important;height:var(--uploader-loading-icon-size,22px);width:var(--uploader-loading-icon-size,22px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/shared.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/shared.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..85d50348774eea6fbb196f62969cd4823763539a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/shared.d.ts
@@ -0,0 +1,28 @@
+export declare const chooseImageProps: {
+ sizeType: {
+ type: ArrayConstructor;
+ value: string[];
+ };
+ capture: {
+ type: ArrayConstructor;
+ value: string[];
+ };
+};
+export declare const chooseVideoProps: {
+ capture: {
+ type: ArrayConstructor;
+ value: string[];
+ };
+ compressed: {
+ type: BooleanConstructor;
+ value: boolean;
+ };
+ maxDuration: {
+ type: NumberConstructor;
+ value: number;
+ };
+ camera: {
+ type: StringConstructor;
+ value: string;
+ };
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/shared.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/shared.js
new file mode 100644
index 0000000000000000000000000000000000000000..c12861c4fa5ea75eed7d98c74c30bcd5162f6a5c
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/shared.js
@@ -0,0 +1,30 @@
+// props for choose image
+export const chooseImageProps = {
+ sizeType: {
+ type: Array,
+ value: ['original', 'compressed'],
+ },
+ capture: {
+ type: Array,
+ value: ['album', 'camera'],
+ },
+};
+// props for choose video
+export const chooseVideoProps = {
+ capture: {
+ type: Array,
+ value: ['album', 'camera'],
+ },
+ compressed: {
+ type: Boolean,
+ value: true,
+ },
+ maxDuration: {
+ type: Number,
+ value: 60,
+ },
+ camera: {
+ type: String,
+ value: 'back',
+ },
+};
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/utils.d.ts b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/utils.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..d5c9ab7f44b1c49f315bf7a96eb71d0ef17cc503
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/utils.d.ts
@@ -0,0 +1,22 @@
+export interface File {
+ url: string;
+ size?: number;
+ name?: string;
+ type: string;
+ duration?: number;
+ time?: number;
+ isImage?: boolean;
+ isVideo?: boolean;
+}
+export declare function isImageFile(item: File): boolean;
+export declare function isVideoFile(item: File): boolean;
+export declare function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount, }: {
+ accept: any;
+ multiple: any;
+ capture: any;
+ compressed: any;
+ maxDuration: any;
+ sizeType: any;
+ camera: any;
+ maxCount: any;
+}): Promise;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/utils.js b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/utils.js
new file mode 100644
index 0000000000000000000000000000000000000000..b77f7078375cf29d9eb2e4335a9d34bacbc4ea0f
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/uploader/utils.js
@@ -0,0 +1,84 @@
+import { pickExclude } from '../common/utils';
+import { isImageUrl, isVideoUrl } from '../common/validator';
+export function isImageFile(item) {
+ if (item.isImage != null) {
+ return item.isImage;
+ }
+ if (item.type) {
+ return item.type === 'image';
+ }
+ if (item.url) {
+ return isImageUrl(item.url);
+ }
+ return false;
+}
+export function isVideoFile(item) {
+ if (item.isVideo != null) {
+ return item.isVideo;
+ }
+ if (item.type) {
+ return item.type === 'video';
+ }
+ if (item.url) {
+ return isVideoUrl(item.url);
+ }
+ return false;
+}
+function formatImage(res) {
+ return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['path'])), { type: 'image', url: item.path, thumb: item.path })));
+}
+function formatVideo(res) {
+ return [
+ Object.assign(Object.assign({}, pickExclude(res, ['tempFilePath', 'thumbTempFilePath', 'errMsg'])), { type: 'video', url: res.tempFilePath, thumb: res.thumbTempFilePath }),
+ ];
+}
+function formatMedia(res) {
+ return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), { type: res.type, url: item.tempFilePath, thumb: res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath })));
+}
+function formatFile(res) {
+ return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['path'])), { url: item.path })));
+}
+export function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount, }) {
+ return new Promise((resolve, reject) => {
+ switch (accept) {
+ case 'image':
+ wx.chooseImage({
+ count: multiple ? Math.min(maxCount, 9) : 1,
+ sourceType: capture,
+ sizeType,
+ success: (res) => resolve(formatImage(res)),
+ fail: reject,
+ });
+ break;
+ case 'media':
+ wx.chooseMedia({
+ count: multiple ? Math.min(maxCount, 9) : 1,
+ sourceType: capture,
+ maxDuration,
+ sizeType,
+ camera,
+ success: (res) => resolve(formatMedia(res)),
+ fail: reject,
+ });
+ break;
+ case 'video':
+ wx.chooseVideo({
+ sourceType: capture,
+ compressed,
+ maxDuration,
+ camera,
+ success: (res) => resolve(formatVideo(res)),
+ fail: reject,
+ });
+ break;
+ default:
+ wx.chooseMessageFile({
+ count: multiple ? maxCount : 1,
+ type: accept,
+ success: (res) => resolve(formatFile(res)),
+ fail: reject,
+ });
+ break;
+ }
+ });
+}
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/add-unit.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/add-unit.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..4f33462f3871d45d56dcd06d0975f913b67a57bb
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/add-unit.wxs
@@ -0,0 +1,12 @@
+/* eslint-disable */
+var REGEXP = getRegExp('^-?\d+(\.\d+)?$');
+
+function addUnit(value) {
+ if (value == null) {
+ return undefined;
+ }
+
+ return REGEXP.test('' + value) ? value + 'px' : value;
+}
+
+module.exports = addUnit;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/array.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/array.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..78324168632b3bf57915e33ba5b55c983afac321
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/array.wxs
@@ -0,0 +1,5 @@
+function isArray(array) {
+ return array && (array.constructor === 'Array' || (typeof Array !== 'undefined' && Array.isArray(array)));
+}
+
+module.exports.isArray = isArray;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/bem.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/bem.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..1efa129ee835ccb888a8b935d3ad6e9f1c834900
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/bem.wxs
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var array = require('./array.wxs');
+var object = require('./object.wxs');
+var PREFIX = 'van-';
+
+function join(name, mods) {
+ name = PREFIX + name;
+ mods = mods.map(function(mod) {
+ return name + '--' + mod;
+ });
+ mods.unshift(name);
+ return mods.join(' ');
+}
+
+function traversing(mods, conf) {
+ if (!conf) {
+ return;
+ }
+
+ if (typeof conf === 'string' || typeof conf === 'number') {
+ mods.push(conf);
+ } else if (array.isArray(conf)) {
+ conf.forEach(function(item) {
+ traversing(mods, item);
+ });
+ } else if (typeof conf === 'object') {
+ object.keys(conf).forEach(function(key) {
+ conf[key] && mods.push(key);
+ });
+ }
+}
+
+function bem(name, conf) {
+ var mods = [];
+ traversing(mods, conf);
+ return join(name, mods);
+}
+
+module.exports = bem;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/memoize.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/memoize.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..8f7f46dd23ee6ae7caaf6ac2e95c88b5c15bf835
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/memoize.wxs
@@ -0,0 +1,55 @@
+/**
+ * Simple memoize
+ * wxs doesn't support fn.apply, so this memoize only support up to 2 args
+ */
+/* eslint-disable */
+
+function isPrimitive(value) {
+ var type = typeof value;
+ return (
+ type === 'boolean' ||
+ type === 'number' ||
+ type === 'string' ||
+ type === 'undefined' ||
+ value === null
+ );
+}
+
+// mock simple fn.call in wxs
+function call(fn, args) {
+ if (args.length === 2) {
+ return fn(args[0], args[1]);
+ }
+
+ if (args.length === 1) {
+ return fn(args[0]);
+ }
+
+ return fn();
+}
+
+function serializer(args) {
+ if (args.length === 1 && isPrimitive(args[0])) {
+ return args[0];
+ }
+ var obj = {};
+ for (var i = 0; i < args.length; i++) {
+ obj['key' + i] = args[i];
+ }
+ return JSON.stringify(obj);
+}
+
+function memoize(fn) {
+ var cache = {};
+
+ return function() {
+ var key = serializer(arguments);
+ if (cache[key] === undefined) {
+ cache[key] = call(fn, arguments);
+ }
+
+ return cache[key];
+ };
+}
+
+module.exports = memoize;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/object.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/object.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..e07710776c19c994e4859a30777741e51058c0f9
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/object.wxs
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var REGEXP = getRegExp('{|}|"', 'g');
+
+function keys(obj) {
+ return JSON.stringify(obj)
+ .replace(REGEXP, '')
+ .split(',')
+ .map(function(item) {
+ return item.split(':')[0];
+ });
+}
+
+module.exports.keys = keys;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/style.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/style.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..d88ca7c96fd4eeaad5786183be8ed2ba7faaac0a
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/style.wxs
@@ -0,0 +1,42 @@
+/* eslint-disable */
+var object = require('./object.wxs');
+var array = require('./array.wxs');
+
+function kebabCase(word) {
+ var newWord = word
+ .replace(getRegExp("[A-Z]", 'g'), function (i) {
+ return '-' + i;
+ })
+ .toLowerCase()
+
+ return newWord;
+}
+
+function style(styles) {
+ if (array.isArray(styles)) {
+ return styles
+ .filter(function (item) {
+ return item != null && item !== '';
+ })
+ .map(function (item) {
+ return style(item);
+ })
+ .join(';');
+ }
+
+ if ('Object' === styles.constructor) {
+ return object
+ .keys(styles)
+ .filter(function (key) {
+ return styles[key] != null && styles[key] !== '';
+ })
+ .map(function (key) {
+ return [kebabCase(key), [styles[key]]].join(':');
+ })
+ .join(';');
+ }
+
+ return styles;
+}
+
+module.exports = style;
diff --git a/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/utils.wxs b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/utils.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..f66d33a4270856b51af6d7f0c36cc8d82bfb27f8
--- /dev/null
+++ b/litemall-wx_uni/unpackage/dist/dev/mp-weixin/wxcomponents/vant-weapp/wxs/utils.wxs
@@ -0,0 +1,10 @@
+/* eslint-disable */
+var bem = require('./bem.wxs');
+var memoize = require('./memoize.wxs');
+var addUnit = require('./add-unit.wxs');
+
+module.exports = {
+ bem: memoize(bem),
+ memoize: memoize,
+ addUnit: addUnit
+};
diff --git a/litemall-wx_uni/utils/area.js b/litemall-wx_uni/utils/area.js
new file mode 100644
index 0000000000000000000000000000000000000000..5b9a13a2407fa6b43ca4d5c9052523b16df7949b
--- /dev/null
+++ b/litemall-wx_uni/utils/area.js
@@ -0,0 +1,3294 @@
+var areaList = {
+ province_list: {
+ 110000: '北京市',
+ 120000: '天津市',
+ 130000: '河北省',
+ 140000: '山西省',
+ 150000: '内蒙古自治区',
+ 210000: '辽宁省',
+ 220000: '吉林省',
+ 230000: '黑龙江省',
+ 310000: '上海市',
+ 320000: '江苏省',
+ 330000: '浙江省',
+ 340000: '安徽省',
+ 350000: '福建省',
+ 360000: '江西省',
+ 370000: '山东省',
+ 410000: '河南省',
+ 420000: '湖北省',
+ 430000: '湖南省',
+ 440000: '广东省',
+ 450000: '广西壮族自治区',
+ 460000: '海南省',
+ 500000: '重庆市',
+ 510000: '四川省',
+ 520000: '贵州省',
+ 530000: '云南省',
+ 540000: '西藏自治区',
+ 610000: '陕西省',
+ 620000: '甘肃省',
+ 630000: '青海省',
+ 640000: '宁夏回族自治区',
+ 650000: '新疆维吾尔自治区'
+ },
+ city_list: {
+ 110100: '市辖区',
+ 120100: '市辖区',
+ 130100: '石家庄市',
+ 130200: '唐山市',
+ 130300: '秦皇岛市',
+ 130400: '邯郸市',
+ 130500: '邢台市',
+ 130600: '保定市',
+ 130700: '张家口市',
+ 130800: '承德市',
+ 130900: '沧州市',
+ 131000: '廊坊市',
+ 131100: '衡水市',
+ 139000: '省直辖县级行政区划',
+ 140100: '太原市',
+ 140200: '大同市',
+ 140300: '阳泉市',
+ 140400: '长治市',
+ 140500: '晋城市',
+ 140600: '朔州市',
+ 140700: '晋中市',
+ 140800: '运城市',
+ 140900: '忻州市',
+ 141000: '临汾市',
+ 141100: '吕梁市',
+ 150100: '呼和浩特市',
+ 150200: '包头市',
+ 150300: '乌海市',
+ 150400: '赤峰市',
+ 150500: '通辽市',
+ 150600: '鄂尔多斯市',
+ 150700: '呼伦贝尔市',
+ 150800: '巴彦淖尔市',
+ 150900: '乌兰察布市',
+ 152200: '兴安盟',
+ 152500: '锡林郭勒盟',
+ 152900: '阿拉善盟',
+ 210100: '沈阳市',
+ 210200: '大连市',
+ 210300: '鞍山市',
+ 210400: '抚顺市',
+ 210500: '本溪市',
+ 210600: '丹东市',
+ 210700: '锦州市',
+ 210800: '营口市',
+ 210900: '阜新市',
+ 211000: '辽阳市',
+ 211100: '盘锦市',
+ 211200: '铁岭市',
+ 211300: '朝阳市',
+ 211400: '葫芦岛市',
+ 220100: '长春市',
+ 220200: '吉林市',
+ 220300: '四平市',
+ 220400: '辽源市',
+ 220500: '通化市',
+ 220600: '白山市',
+ 220700: '松原市',
+ 220800: '白城市',
+ 222400: '延边朝鲜族自治州',
+ 230100: '哈尔滨市',
+ 230200: '齐齐哈尔市',
+ 230300: '鸡西市',
+ 230400: '鹤岗市',
+ 230500: '双鸭山市',
+ 230600: '大庆市',
+ 230700: '伊春市',
+ 230800: '佳木斯市',
+ 230900: '七台河市',
+ 231000: '牡丹江市',
+ 231100: '黑河市',
+ 231200: '绥化市',
+ 232700: '大兴安岭地区',
+ 310100: '市辖区',
+ 320100: '南京市',
+ 320200: '无锡市',
+ 320300: '徐州市',
+ 320400: '常州市',
+ 320500: '苏州市',
+ 320600: '南通市',
+ 320700: '连云港市',
+ 320800: '淮安市',
+ 320900: '盐城市',
+ 321000: '扬州市',
+ 321100: '镇江市',
+ 321200: '泰州市',
+ 321300: '宿迁市',
+ 330100: '杭州市',
+ 330200: '宁波市',
+ 330300: '温州市',
+ 330400: '嘉兴市',
+ 330500: '湖州市',
+ 330600: '绍兴市',
+ 330700: '金华市',
+ 330800: '衢州市',
+ 330900: '舟山市',
+ 331000: '台州市',
+ 331100: '丽水市',
+ 340100: '合肥市',
+ 340200: '芜湖市',
+ 340300: '蚌埠市',
+ 340400: '淮南市',
+ 340500: '马鞍山市',
+ 340600: '淮北市',
+ 340700: '铜陵市',
+ 340800: '安庆市',
+ 341000: '黄山市',
+ 341100: '滁州市',
+ 341200: '阜阳市',
+ 341300: '宿州市',
+ 341500: '六安市',
+ 341600: '亳州市',
+ 341700: '池州市',
+ 341800: '宣城市',
+ 350100: '福州市',
+ 350200: '厦门市',
+ 350300: '莆田市',
+ 350400: '三明市',
+ 350500: '泉州市',
+ 350600: '漳州市',
+ 350700: '南平市',
+ 350800: '龙岩市',
+ 350900: '宁德市',
+ 360100: '南昌市',
+ 360200: '景德镇市',
+ 360300: '萍乡市',
+ 360400: '九江市',
+ 360500: '新余市',
+ 360600: '鹰潭市',
+ 360700: '赣州市',
+ 360800: '吉安市',
+ 360900: '宜春市',
+ 361000: '抚州市',
+ 361100: '上饶市',
+ 370100: '济南市',
+ 370200: '青岛市',
+ 370300: '淄博市',
+ 370400: '枣庄市',
+ 370500: '东营市',
+ 370600: '烟台市',
+ 370700: '潍坊市',
+ 370800: '济宁市',
+ 370900: '泰安市',
+ 371000: '威海市',
+ 371100: '日照市',
+ 371200: '莱芜市',
+ 371300: '临沂市',
+ 371400: '德州市',
+ 371500: '聊城市',
+ 371600: '滨州市',
+ 371700: '菏泽市',
+ 410100: '郑州市',
+ 410200: '开封市',
+ 410300: '洛阳市',
+ 410400: '平顶山市',
+ 410500: '安阳市',
+ 410600: '鹤壁市',
+ 410700: '新乡市',
+ 410800: '焦作市',
+ 410900: '濮阳市',
+ 411000: '许昌市',
+ 411100: '漯河市',
+ 411200: '三门峡市',
+ 411300: '南阳市',
+ 411400: '商丘市',
+ 411500: '信阳市',
+ 411600: '周口市',
+ 411700: '驻马店市',
+ 419000: '省直辖县级行政区划',
+ 420100: '武汉市',
+ 420200: '黄石市',
+ 420300: '十堰市',
+ 420500: '宜昌市',
+ 420600: '襄阳市',
+ 420700: '鄂州市',
+ 420800: '荆门市',
+ 420900: '孝感市',
+ 421000: '荆州市',
+ 421100: '黄冈市',
+ 421200: '咸宁市',
+ 421300: '随州市',
+ 422800: '恩施土家族苗族自治州',
+ 429000: '省直辖县级行政区划',
+ 430100: '长沙市',
+ 430200: '株洲市',
+ 430300: '湘潭市',
+ 430400: '衡阳市',
+ 430500: '邵阳市',
+ 430600: '岳阳市',
+ 430700: '常德市',
+ 430800: '张家界市',
+ 430900: '益阳市',
+ 431000: '郴州市',
+ 431100: '永州市',
+ 431200: '怀化市',
+ 431300: '娄底市',
+ 433100: '湘西土家族苗族自治州',
+ 440100: '广州市',
+ 440200: '韶关市',
+ 440300: '深圳市',
+ 440400: '珠海市',
+ 440500: '汕头市',
+ 440600: '佛山市',
+ 440700: '江门市',
+ 440800: '湛江市',
+ 440900: '茂名市',
+ 441200: '肇庆市',
+ 441300: '惠州市',
+ 441400: '梅州市',
+ 441500: '汕尾市',
+ 441600: '河源市',
+ 441700: '阳江市',
+ 441800: '清远市',
+ 441900: '东莞市',
+ 442000: '中山市',
+ 445100: '潮州市',
+ 445200: '揭阳市',
+ 445300: '云浮市',
+ 450100: '南宁市',
+ 450200: '柳州市',
+ 450300: '桂林市',
+ 450400: '梧州市',
+ 450500: '北海市',
+ 450600: '防城港市',
+ 450700: '钦州市',
+ 450800: '贵港市',
+ 450900: '玉林市',
+ 451000: '百色市',
+ 451100: '贺州市',
+ 451200: '河池市',
+ 451300: '来宾市',
+ 451400: '崇左市',
+ 460100: '海口市',
+ 460200: '三亚市',
+ 460300: '三沙市',
+ 460400: '儋州市',
+ 469000: '省直辖县级行政区划',
+ 500100: '市辖区',
+ 500200: '县',
+ 510100: '成都市',
+ 510300: '自贡市',
+ 510400: '攀枝花市',
+ 510500: '泸州市',
+ 510600: '德阳市',
+ 510700: '绵阳市',
+ 510800: '广元市',
+ 510900: '遂宁市',
+ 511000: '内江市',
+ 511100: '乐山市',
+ 511300: '南充市',
+ 511400: '眉山市',
+ 511500: '宜宾市',
+ 511600: '广安市',
+ 511700: '达州市',
+ 511800: '雅安市',
+ 511900: '巴中市',
+ 512000: '资阳市',
+ 513200: '阿坝藏族羌族自治州',
+ 513300: '甘孜藏族自治州',
+ 513400: '凉山彝族自治州',
+ 520100: '贵阳市',
+ 520200: '六盘水市',
+ 520300: '遵义市',
+ 520400: '安顺市',
+ 520500: '毕节市',
+ 520600: '铜仁市',
+ 522300: '黔西南布依族苗族自治州',
+ 522600: '黔东南苗族侗族自治州',
+ 522700: '黔南布依族苗族自治州',
+ 530100: '昆明市',
+ 530300: '曲靖市',
+ 530400: '玉溪市',
+ 530500: '保山市',
+ 530600: '昭通市',
+ 530700: '丽江市',
+ 530800: '普洱市',
+ 530900: '临沧市',
+ 532300: '楚雄彝族自治州',
+ 532500: '红河哈尼族彝族自治州',
+ 532600: '文山壮族苗族自治州',
+ 532800: '西双版纳傣族自治州',
+ 532900: '大理白族自治州',
+ 533100: '德宏傣族景颇族自治州',
+ 533300: '怒江傈僳族自治州',
+ 533400: '迪庆藏族自治州',
+ 540100: '拉萨市',
+ 540200: '日喀则市',
+ 540300: '昌都市',
+ 540400: '林芝市',
+ 540500: '山南市',
+ 542400: '那曲地区',
+ 542500: '阿里地区',
+ 610100: '西安市',
+ 610200: '铜川市',
+ 610300: '宝鸡市',
+ 610400: '咸阳市',
+ 610500: '渭南市',
+ 610600: '延安市',
+ 610700: '汉中市',
+ 610800: '榆林市',
+ 610900: '安康市',
+ 611000: '商洛市',
+ 620100: '兰州市',
+ 620200: '嘉峪关市',
+ 620300: '金昌市',
+ 620400: '白银市',
+ 620500: '天水市',
+ 620600: '武威市',
+ 620700: '张掖市',
+ 620800: '平凉市',
+ 620900: '酒泉市',
+ 621000: '庆阳市',
+ 621100: '定西市',
+ 621200: '陇南市',
+ 622900: '临夏回族自治州',
+ 623000: '甘南藏族自治州',
+ 630100: '西宁市',
+ 630200: '海东市',
+ 632200: '海北藏族自治州',
+ 632300: '黄南藏族自治州',
+ 632500: '海南藏族自治州',
+ 632600: '果洛藏族自治州',
+ 632700: '玉树藏族自治州',
+ 632800: '海西蒙古族藏族自治州',
+ 640100: '银川市',
+ 640200: '石嘴山市',
+ 640300: '吴忠市',
+ 640400: '固原市',
+ 640500: '中卫市',
+ 650100: '乌鲁木齐市',
+ 650200: '克拉玛依市',
+ 650400: '吐鲁番市',
+ 650500: '哈密市',
+ 652300: '昌吉回族自治州',
+ 652700: '博尔塔拉蒙古自治州',
+ 652800: '巴音郭楞蒙古自治州',
+ 652900: '阿克苏地区',
+ 653000: '克孜勒苏柯尔克孜自治州',
+ 653100: '喀什地区',
+ 653200: '和田地区',
+ 654000: '伊犁哈萨克自治州',
+ 654200: '塔城地区',
+ 654300: '阿勒泰地区',
+ 659000: '自治区直辖县级行政区划'
+ },
+ county_list: {
+ 110101: '东城区',
+ 110102: '西城区',
+ 110105: '朝阳区',
+ 110106: '丰台区',
+ 110107: '石景山区',
+ 110108: '海淀区',
+ 110109: '门头沟区',
+ 110111: '房山区',
+ 110112: '通州区',
+ 110113: '顺义区',
+ 110114: '昌平区',
+ 110115: '大兴区',
+ 110116: '怀柔区',
+ 110117: '平谷区',
+ 110118: '密云区',
+ 110119: '延庆区',
+ 120101: '和平区',
+ 120102: '河东区',
+ 120103: '河西区',
+ 120104: '南开区',
+ 120105: '河北区',
+ 120106: '红桥区',
+ 120110: '东丽区',
+ 120111: '西青区',
+ 120112: '津南区',
+ 120113: '北辰区',
+ 120114: '武清区',
+ 120115: '宝坻区',
+ 120116: '滨海新区',
+ 120117: '宁河区',
+ 120118: '静海区',
+ 120119: '蓟州区',
+ 130102: '长安区',
+ 130104: '桥西区',
+ 130105: '新华区',
+ 130107: '井陉矿区',
+ 130108: '裕华区',
+ 130109: '藁城区',
+ 130110: '鹿泉区',
+ 130111: '栾城区',
+ 130121: '井陉县',
+ 130123: '正定县',
+ 130125: '行唐县',
+ 130126: '灵寿县',
+ 130127: '高邑县',
+ 130128: '深泽县',
+ 130129: '赞皇县',
+ 130130: '无极县',
+ 130131: '平山县',
+ 130132: '元氏县',
+ 130133: '赵县',
+ 130183: '晋州市',
+ 130184: '新乐市',
+ 130202: '路南区',
+ 130203: '路北区',
+ 130204: '古冶区',
+ 130205: '开平区',
+ 130207: '丰南区',
+ 130208: '丰润区',
+ 130209: '曹妃甸区',
+ 130223: '滦县',
+ 130224: '滦南县',
+ 130225: '乐亭县',
+ 130227: '迁西县',
+ 130229: '玉田县',
+ 130281: '遵化市',
+ 130283: '迁安市',
+ 130302: '海港区',
+ 130303: '山海关区',
+ 130304: '北戴河区',
+ 130306: '抚宁区',
+ 130321: '青龙满族自治县',
+ 130322: '昌黎县',
+ 130324: '卢龙县',
+ 130402: '邯山区',
+ 130403: '丛台区',
+ 130404: '复兴区',
+ 130406: '峰峰矿区',
+ 130421: '邯郸县',
+ 130423: '临漳县',
+ 130424: '成安县',
+ 130425: '大名县',
+ 130426: '涉县',
+ 130427: '磁县',
+ 130428: '肥乡县',
+ 130429: '永年县',
+ 130430: '邱县',
+ 130431: '鸡泽县',
+ 130432: '广平县',
+ 130433: '馆陶县',
+ 130434: '魏县',
+ 130435: '曲周县',
+ 130481: '武安市',
+ 130502: '桥东区',
+ 130503: '桥西区',
+ 130521: '邢台县',
+ 130522: '临城县',
+ 130523: '内丘县',
+ 130524: '柏乡县',
+ 130525: '隆尧县',
+ 130526: '任县',
+ 130527: '南和县',
+ 130528: '宁晋县',
+ 130529: '巨鹿县',
+ 130530: '新河县',
+ 130531: '广宗县',
+ 130532: '平乡县',
+ 130533: '威县',
+ 130534: '清河县',
+ 130535: '临西县',
+ 130581: '南宫市',
+ 130582: '沙河市',
+ 130602: '竞秀区',
+ 130606: '莲池区',
+ 130607: '满城区',
+ 130608: '清苑区',
+ 130609: '徐水区',
+ 130623: '涞水县',
+ 130624: '阜平县',
+ 130626: '定兴县',
+ 130627: '唐县',
+ 130628: '高阳县',
+ 130629: '容城县',
+ 130630: '涞源县',
+ 130631: '望都县',
+ 130632: '安新县',
+ 130633: '易县',
+ 130634: '曲阳县',
+ 130635: '蠡县',
+ 130636: '顺平县',
+ 130637: '博野县',
+ 130638: '雄县',
+ 130681: '涿州市',
+ 130683: '安国市',
+ 130684: '高碑店市',
+ 130702: '桥东区',
+ 130703: '桥西区',
+ 130705: '宣化区',
+ 130706: '下花园区',
+ 130708: '万全区',
+ 130709: '崇礼区',
+ 130722: '张北县',
+ 130723: '康保县',
+ 130724: '沽源县',
+ 130725: '尚义县',
+ 130726: '蔚县',
+ 130727: '阳原县',
+ 130728: '怀安县',
+ 130730: '怀来县',
+ 130731: '涿鹿县',
+ 130732: '赤城县',
+ 130802: '双桥区',
+ 130803: '双滦区',
+ 130804: '鹰手营子矿区',
+ 130821: '承德县',
+ 130822: '兴隆县',
+ 130823: '平泉县',
+ 130824: '滦平县',
+ 130825: '隆化县',
+ 130826: '丰宁满族自治县',
+ 130827: '宽城满族自治县',
+ 130828: '围场满族蒙古族自治县',
+ 130902: '新华区',
+ 130903: '运河区',
+ 130921: '沧县',
+ 130922: '青县',
+ 130923: '东光县',
+ 130924: '海兴县',
+ 130925: '盐山县',
+ 130926: '肃宁县',
+ 130927: '南皮县',
+ 130928: '吴桥县',
+ 130929: '献县',
+ 130930: '孟村回族自治县',
+ 130981: '泊头市',
+ 130982: '任丘市',
+ 130983: '黄骅市',
+ 130984: '河间市',
+ 131002: '安次区',
+ 131003: '广阳区',
+ 131022: '固安县',
+ 131023: '永清县',
+ 131024: '香河县',
+ 131025: '大城县',
+ 131026: '文安县',
+ 131028: '大厂回族自治县',
+ 131081: '霸州市',
+ 131082: '三河市',
+ 131102: '桃城区',
+ 131103: '冀州区',
+ 131121: '枣强县',
+ 131122: '武邑县',
+ 131123: '武强县',
+ 131124: '饶阳县',
+ 131125: '安平县',
+ 131126: '故城县',
+ 131127: '景县',
+ 131128: '阜城县',
+ 131182: '深州市',
+ 139001: '定州市',
+ 139002: '辛集市',
+ 140105: '小店区',
+ 140106: '迎泽区',
+ 140107: '杏花岭区',
+ 140108: '尖草坪区',
+ 140109: '万柏林区',
+ 140110: '晋源区',
+ 140121: '清徐县',
+ 140122: '阳曲县',
+ 140123: '娄烦县',
+ 140181: '古交市',
+ 140202: '城区',
+ 140203: '矿区',
+ 140211: '南郊区',
+ 140212: '新荣区',
+ 140221: '阳高县',
+ 140222: '天镇县',
+ 140223: '广灵县',
+ 140224: '灵丘县',
+ 140225: '浑源县',
+ 140226: '左云县',
+ 140227: '大同县',
+ 140302: '城区',
+ 140303: '矿区',
+ 140311: '郊区',
+ 140321: '平定县',
+ 140322: '盂县',
+ 140402: '城区',
+ 140411: '郊区',
+ 140421: '长治县',
+ 140423: '襄垣县',
+ 140424: '屯留县',
+ 140425: '平顺县',
+ 140426: '黎城县',
+ 140427: '壶关县',
+ 140428: '长子县',
+ 140429: '武乡县',
+ 140430: '沁县',
+ 140431: '沁源县',
+ 140481: '潞城市',
+ 140502: '城区',
+ 140521: '沁水县',
+ 140522: '阳城县',
+ 140524: '陵川县',
+ 140525: '泽州县',
+ 140581: '高平市',
+ 140602: '朔城区',
+ 140603: '平鲁区',
+ 140621: '山阴县',
+ 140622: '应县',
+ 140623: '右玉县',
+ 140624: '怀仁县',
+ 140702: '榆次区',
+ 140721: '榆社县',
+ 140722: '左权县',
+ 140723: '和顺县',
+ 140724: '昔阳县',
+ 140725: '寿阳县',
+ 140726: '太谷县',
+ 140727: '祁县',
+ 140728: '平遥县',
+ 140729: '灵石县',
+ 140781: '介休市',
+ 140802: '盐湖区',
+ 140821: '临猗县',
+ 140822: '万荣县',
+ 140823: '闻喜县',
+ 140824: '稷山县',
+ 140825: '新绛县',
+ 140826: '绛县',
+ 140827: '垣曲县',
+ 140828: '夏县',
+ 140829: '平陆县',
+ 140830: '芮城县',
+ 140881: '永济市',
+ 140882: '河津市',
+ 140902: '忻府区',
+ 140921: '定襄县',
+ 140922: '五台县',
+ 140923: '代县',
+ 140924: '繁峙县',
+ 140925: '宁武县',
+ 140926: '静乐县',
+ 140927: '神池县',
+ 140928: '五寨县',
+ 140929: '岢岚县',
+ 140930: '河曲县',
+ 140931: '保德县',
+ 140932: '偏关县',
+ 140981: '原平市',
+ 141002: '尧都区',
+ 141021: '曲沃县',
+ 141022: '翼城县',
+ 141023: '襄汾县',
+ 141024: '洪洞县',
+ 141025: '古县',
+ 141026: '安泽县',
+ 141027: '浮山县',
+ 141028: '吉县',
+ 141029: '乡宁县',
+ 141030: '大宁县',
+ 141031: '隰县',
+ 141032: '永和县',
+ 141033: '蒲县',
+ 141034: '汾西县',
+ 141081: '侯马市',
+ 141082: '霍州市',
+ 141102: '离石区',
+ 141121: '文水县',
+ 141122: '交城县',
+ 141123: '兴县',
+ 141124: '临县',
+ 141125: '柳林县',
+ 141126: '石楼县',
+ 141127: '岚县',
+ 141128: '方山县',
+ 141129: '中阳县',
+ 141130: '交口县',
+ 141181: '孝义市',
+ 141182: '汾阳市',
+ 150102: '新城区',
+ 150103: '回民区',
+ 150104: '玉泉区',
+ 150105: '赛罕区',
+ 150121: '土默特左旗',
+ 150122: '托克托县',
+ 150123: '和林格尔县',
+ 150124: '清水河县',
+ 150125: '武川县',
+ 150202: '东河区',
+ 150203: '昆都仑区',
+ 150204: '青山区',
+ 150205: '石拐区',
+ 150206: '白云鄂博矿区',
+ 150207: '九原区',
+ 150221: '土默特右旗',
+ 150222: '固阳县',
+ 150223: '达尔罕茂明安联合旗',
+ 150302: '海勃湾区',
+ 150303: '海南区',
+ 150304: '乌达区',
+ 150402: '红山区',
+ 150403: '元宝山区',
+ 150404: '松山区',
+ 150421: '阿鲁科尔沁旗',
+ 150422: '巴林左旗',
+ 150423: '巴林右旗',
+ 150424: '林西县',
+ 150425: '克什克腾旗',
+ 150426: '翁牛特旗',
+ 150428: '喀喇沁旗',
+ 150429: '宁城县',
+ 150430: '敖汉旗',
+ 150502: '科尔沁区',
+ 150521: '科尔沁左翼中旗',
+ 150522: '科尔沁左翼后旗',
+ 150523: '开鲁县',
+ 150524: '库伦旗',
+ 150525: '奈曼旗',
+ 150526: '扎鲁特旗',
+ 150581: '霍林郭勒市',
+ 150602: '东胜区',
+ 150603: '康巴什区',
+ 150621: '达拉特旗',
+ 150622: '准格尔旗',
+ 150623: '鄂托克前旗',
+ 150624: '鄂托克旗',
+ 150625: '杭锦旗',
+ 150626: '乌审旗',
+ 150627: '伊金霍洛旗',
+ 150702: '海拉尔区',
+ 150703: '扎赉诺尔区',
+ 150721: '阿荣旗',
+ 150722: '莫力达瓦达斡尔族自治旗',
+ 150723: '鄂伦春自治旗',
+ 150724: '鄂温克族自治旗',
+ 150725: '陈巴尔虎旗',
+ 150726: '新巴尔虎左旗',
+ 150727: '新巴尔虎右旗',
+ 150781: '满洲里市',
+ 150782: '牙克石市',
+ 150783: '扎兰屯市',
+ 150784: '额尔古纳市',
+ 150785: '根河市',
+ 150802: '临河区',
+ 150821: '五原县',
+ 150822: '磴口县',
+ 150823: '乌拉特前旗',
+ 150824: '乌拉特中旗',
+ 150825: '乌拉特后旗',
+ 150826: '杭锦后旗',
+ 150902: '集宁区',
+ 150921: '卓资县',
+ 150922: '化德县',
+ 150923: '商都县',
+ 150924: '兴和县',
+ 150925: '凉城县',
+ 150926: '察哈尔右翼前旗',
+ 150927: '察哈尔右翼中旗',
+ 150928: '察哈尔右翼后旗',
+ 150929: '四子王旗',
+ 150981: '丰镇市',
+ 152201: '乌兰浩特市',
+ 152202: '阿尔山市',
+ 152221: '科尔沁右翼前旗',
+ 152222: '科尔沁右翼中旗',
+ 152223: '扎赉特旗',
+ 152224: '突泉县',
+ 152501: '二连浩特市',
+ 152502: '锡林浩特市',
+ 152522: '阿巴嘎旗',
+ 152523: '苏尼特左旗',
+ 152524: '苏尼特右旗',
+ 152525: '东乌珠穆沁旗',
+ 152526: '西乌珠穆沁旗',
+ 152527: '太仆寺旗',
+ 152528: '镶黄旗',
+ 152529: '正镶白旗',
+ 152530: '正蓝旗',
+ 152531: '多伦县',
+ 152921: '阿拉善左旗',
+ 152922: '阿拉善右旗',
+ 152923: '额济纳旗',
+ 210102: '和平区',
+ 210103: '沈河区',
+ 210104: '大东区',
+ 210105: '皇姑区',
+ 210106: '铁西区',
+ 210111: '苏家屯区',
+ 210112: '浑南区',
+ 210113: '沈北新区',
+ 210114: '于洪区',
+ 210115: '辽中区',
+ 210123: '康平县',
+ 210124: '法库县',
+ 210181: '新民市',
+ 210202: '中山区',
+ 210203: '西岗区',
+ 210204: '沙河口区',
+ 210211: '甘井子区',
+ 210212: '旅顺口区',
+ 210213: '金州区',
+ 210214: '普兰店区',
+ 210224: '长海县',
+ 210281: '瓦房店市',
+ 210283: '庄河市',
+ 210302: '铁东区',
+ 210303: '铁西区',
+ 210304: '立山区',
+ 210311: '千山区',
+ 210321: '台安县',
+ 210323: '岫岩满族自治县',
+ 210381: '海城市',
+ 210402: '新抚区',
+ 210403: '东洲区',
+ 210404: '望花区',
+ 210411: '顺城区',
+ 210421: '抚顺县',
+ 210422: '新宾满族自治县',
+ 210423: '清原满族自治县',
+ 210502: '平山区',
+ 210503: '溪湖区',
+ 210504: '明山区',
+ 210505: '南芬区',
+ 210521: '本溪满族自治县',
+ 210522: '桓仁满族自治县',
+ 210602: '元宝区',
+ 210603: '振兴区',
+ 210604: '振安区',
+ 210624: '宽甸满族自治县',
+ 210681: '东港市',
+ 210682: '凤城市',
+ 210702: '古塔区',
+ 210703: '凌河区',
+ 210711: '太和区',
+ 210726: '黑山县',
+ 210727: '义县',
+ 210781: '凌海市',
+ 210782: '北镇市',
+ 210802: '站前区',
+ 210803: '西市区',
+ 210804: '鲅鱼圈区',
+ 210811: '老边区',
+ 210881: '盖州市',
+ 210882: '大石桥市',
+ 210902: '海州区',
+ 210903: '新邱区',
+ 210904: '太平区',
+ 210905: '清河门区',
+ 210911: '细河区',
+ 210921: '阜新蒙古族自治县',
+ 210922: '彰武县',
+ 211002: '白塔区',
+ 211003: '文圣区',
+ 211004: '宏伟区',
+ 211005: '弓长岭区',
+ 211011: '太子河区',
+ 211021: '辽阳县',
+ 211081: '灯塔市',
+ 211102: '双台子区',
+ 211103: '兴隆台区',
+ 211104: '大洼区',
+ 211122: '盘山县',
+ 211202: '银州区',
+ 211204: '清河区',
+ 211221: '铁岭县',
+ 211223: '西丰县',
+ 211224: '昌图县',
+ 211281: '调兵山市',
+ 211282: '开原市',
+ 211302: '双塔区',
+ 211303: '龙城区',
+ 211321: '朝阳县',
+ 211322: '建平县',
+ 211324: '喀喇沁左翼蒙古族自治县',
+ 211381: '北票市',
+ 211382: '凌源市',
+ 211402: '连山区',
+ 211403: '龙港区',
+ 211404: '南票区',
+ 211421: '绥中县',
+ 211422: '建昌县',
+ 211481: '兴城市',
+ 220102: '南关区',
+ 220103: '宽城区',
+ 220104: '朝阳区',
+ 220105: '二道区',
+ 220106: '绿园区',
+ 220112: '双阳区',
+ 220113: '九台区',
+ 220122: '农安县',
+ 220182: '榆树市',
+ 220183: '德惠市',
+ 220202: '昌邑区',
+ 220203: '龙潭区',
+ 220204: '船营区',
+ 220211: '丰满区',
+ 220221: '永吉县',
+ 220281: '蛟河市',
+ 220282: '桦甸市',
+ 220283: '舒兰市',
+ 220284: '磐石市',
+ 220302: '铁西区',
+ 220303: '铁东区',
+ 220322: '梨树县',
+ 220323: '伊通满族自治县',
+ 220381: '公主岭市',
+ 220382: '双辽市',
+ 220402: '龙山区',
+ 220403: '西安区',
+ 220421: '东丰县',
+ 220422: '东辽县',
+ 220502: '东昌区',
+ 220503: '二道江区',
+ 220521: '通化县',
+ 220523: '辉南县',
+ 220524: '柳河县',
+ 220581: '梅河口市',
+ 220582: '集安市',
+ 220602: '浑江区',
+ 220605: '江源区',
+ 220621: '抚松县',
+ 220622: '靖宇县',
+ 220623: '长白朝鲜族自治县',
+ 220681: '临江市',
+ 220702: '宁江区',
+ 220721: '前郭尔罗斯蒙古族自治县',
+ 220722: '长岭县',
+ 220723: '乾安县',
+ 220781: '扶余市',
+ 220802: '洮北区',
+ 220821: '镇赉县',
+ 220822: '通榆县',
+ 220881: '洮南市',
+ 220882: '大安市',
+ 222401: '延吉市',
+ 222402: '图们市',
+ 222403: '敦化市',
+ 222404: '珲春市',
+ 222405: '龙井市',
+ 222406: '和龙市',
+ 222424: '汪清县',
+ 222426: '安图县',
+ 230102: '道里区',
+ 230103: '南岗区',
+ 230104: '道外区',
+ 230108: '平房区',
+ 230109: '松北区',
+ 230110: '香坊区',
+ 230111: '呼兰区',
+ 230112: '阿城区',
+ 230113: '双城区',
+ 230123: '依兰县',
+ 230124: '方正县',
+ 230125: '宾县',
+ 230126: '巴彦县',
+ 230127: '木兰县',
+ 230128: '通河县',
+ 230129: '延寿县',
+ 230183: '尚志市',
+ 230184: '五常市',
+ 230202: '龙沙区',
+ 230203: '建华区',
+ 230204: '铁锋区',
+ 230205: '昂昂溪区',
+ 230206: '富拉尔基区',
+ 230207: '碾子山区',
+ 230208: '梅里斯达斡尔族区',
+ 230221: '龙江县',
+ 230223: '依安县',
+ 230224: '泰来县',
+ 230225: '甘南县',
+ 230227: '富裕县',
+ 230229: '克山县',
+ 230230: '克东县',
+ 230231: '拜泉县',
+ 230281: '讷河市',
+ 230302: '鸡冠区',
+ 230303: '恒山区',
+ 230304: '滴道区',
+ 230305: '梨树区',
+ 230306: '城子河区',
+ 230307: '麻山区',
+ 230321: '鸡东县',
+ 230381: '虎林市',
+ 230382: '密山市',
+ 230402: '向阳区',
+ 230403: '工农区',
+ 230404: '南山区',
+ 230405: '兴安区',
+ 230406: '东山区',
+ 230407: '兴山区',
+ 230421: '萝北县',
+ 230422: '绥滨县',
+ 230502: '尖山区',
+ 230503: '岭东区',
+ 230505: '四方台区',
+ 230506: '宝山区',
+ 230521: '集贤县',
+ 230522: '友谊县',
+ 230523: '宝清县',
+ 230524: '饶河县',
+ 230602: '萨尔图区',
+ 230603: '龙凤区',
+ 230604: '让胡路区',
+ 230605: '红岗区',
+ 230606: '大同区',
+ 230621: '肇州县',
+ 230622: '肇源县',
+ 230623: '林甸县',
+ 230624: '杜尔伯特蒙古族自治县',
+ 230702: '伊春区',
+ 230703: '南岔区',
+ 230704: '友好区',
+ 230705: '西林区',
+ 230706: '翠峦区',
+ 230707: '新青区',
+ 230708: '美溪区',
+ 230709: '金山屯区',
+ 230710: '五营区',
+ 230711: '乌马河区',
+ 230712: '汤旺河区',
+ 230713: '带岭区',
+ 230714: '乌伊岭区',
+ 230715: '红星区',
+ 230716: '上甘岭区',
+ 230722: '嘉荫县',
+ 230781: '铁力市',
+ 230803: '向阳区',
+ 230804: '前进区',
+ 230805: '东风区',
+ 230811: '郊区',
+ 230822: '桦南县',
+ 230826: '桦川县',
+ 230828: '汤原县',
+ 230881: '同江市',
+ 230882: '富锦市',
+ 230883: '抚远市',
+ 230902: '新兴区',
+ 230903: '桃山区',
+ 230904: '茄子河区',
+ 230921: '勃利县',
+ 231002: '东安区',
+ 231003: '阳明区',
+ 231004: '爱民区',
+ 231005: '西安区',
+ 231025: '林口县',
+ 231081: '绥芬河市',
+ 231083: '海林市',
+ 231084: '宁安市',
+ 231085: '穆棱市',
+ 231086: '东宁市',
+ 231102: '爱辉区',
+ 231121: '嫩江县',
+ 231123: '逊克县',
+ 231124: '孙吴县',
+ 231181: '北安市',
+ 231182: '五大连池市',
+ 231202: '北林区',
+ 231221: '望奎县',
+ 231222: '兰西县',
+ 231223: '青冈县',
+ 231224: '庆安县',
+ 231225: '明水县',
+ 231226: '绥棱县',
+ 231281: '安达市',
+ 231282: '肇东市',
+ 231283: '海伦市',
+ 232721: '呼玛县',
+ 232722: '塔河县',
+ 232723: '漠河县',
+ 310101: '黄浦区',
+ 310104: '徐汇区',
+ 310105: '长宁区',
+ 310106: '静安区',
+ 310107: '普陀区',
+ 310109: '虹口区',
+ 310110: '杨浦区',
+ 310112: '闵行区',
+ 310113: '宝山区',
+ 310114: '嘉定区',
+ 310115: '浦东新区',
+ 310116: '金山区',
+ 310117: '松江区',
+ 310118: '青浦区',
+ 310120: '奉贤区',
+ 310151: '崇明区',
+ 320102: '玄武区',
+ 320104: '秦淮区',
+ 320105: '建邺区',
+ 320106: '鼓楼区',
+ 320111: '浦口区',
+ 320113: '栖霞区',
+ 320114: '雨花台区',
+ 320115: '江宁区',
+ 320116: '六合区',
+ 320117: '溧水区',
+ 320118: '高淳区',
+ 320205: '锡山区',
+ 320206: '惠山区',
+ 320211: '滨湖区',
+ 320213: '梁溪区',
+ 320214: '新吴区',
+ 320281: '江阴市',
+ 320282: '宜兴市',
+ 320302: '鼓楼区',
+ 320303: '云龙区',
+ 320305: '贾汪区',
+ 320311: '泉山区',
+ 320312: '铜山区',
+ 320321: '丰县',
+ 320322: '沛县',
+ 320324: '睢宁县',
+ 320381: '新沂市',
+ 320382: '邳州市',
+ 320402: '天宁区',
+ 320404: '钟楼区',
+ 320411: '新北区',
+ 320412: '武进区',
+ 320413: '金坛区',
+ 320481: '溧阳市',
+ 320505: '虎丘区',
+ 320506: '吴中区',
+ 320507: '相城区',
+ 320508: '姑苏区',
+ 320509: '吴江区',
+ 320581: '常熟市',
+ 320582: '张家港市',
+ 320583: '昆山市',
+ 320585: '太仓市',
+ 320602: '崇川区',
+ 320611: '港闸区',
+ 320612: '通州区',
+ 320621: '海安县',
+ 320623: '如东县',
+ 320681: '启东市',
+ 320682: '如皋市',
+ 320684: '海门市',
+ 320703: '连云区',
+ 320706: '海州区',
+ 320707: '赣榆区',
+ 320722: '东海县',
+ 320723: '灌云县',
+ 320724: '灌南县',
+ 320803: '淮安区',
+ 320804: '淮阴区',
+ 320812: '清江浦区',
+ 320813: '洪泽区',
+ 320826: '涟水县',
+ 320830: '盱眙县',
+ 320831: '金湖县',
+ 320902: '亭湖区',
+ 320903: '盐都区',
+ 320904: '大丰区',
+ 320921: '响水县',
+ 320922: '滨海县',
+ 320923: '阜宁县',
+ 320924: '射阳县',
+ 320925: '建湖县',
+ 320981: '东台市',
+ 321002: '广陵区',
+ 321003: '邗江区',
+ 321012: '江都区',
+ 321023: '宝应县',
+ 321081: '仪征市',
+ 321084: '高邮市',
+ 321102: '京口区',
+ 321111: '润州区',
+ 321112: '丹徒区',
+ 321181: '丹阳市',
+ 321182: '扬中市',
+ 321183: '句容市',
+ 321202: '海陵区',
+ 321203: '高港区',
+ 321204: '姜堰区',
+ 321281: '兴化市',
+ 321282: '靖江市',
+ 321283: '泰兴市',
+ 321302: '宿城区',
+ 321311: '宿豫区',
+ 321322: '沭阳县',
+ 321323: '泗阳县',
+ 321324: '泗洪县',
+ 330102: '上城区',
+ 330103: '下城区',
+ 330104: '江干区',
+ 330105: '拱墅区',
+ 330106: '西湖区',
+ 330108: '滨江区',
+ 330109: '萧山区',
+ 330110: '余杭区',
+ 330111: '富阳区',
+ 330122: '桐庐县',
+ 330127: '淳安县',
+ 330182: '建德市',
+ 330185: '临安市',
+ 330203: '海曙区',
+ 330204: '江东区',
+ 330205: '江北区',
+ 330206: '北仑区',
+ 330211: '镇海区',
+ 330212: '鄞州区',
+ 330225: '象山县',
+ 330226: '宁海县',
+ 330281: '余姚市',
+ 330282: '慈溪市',
+ 330283: '奉化市',
+ 330302: '鹿城区',
+ 330303: '龙湾区',
+ 330304: '瓯海区',
+ 330305: '洞头区',
+ 330324: '永嘉县',
+ 330326: '平阳县',
+ 330327: '苍南县',
+ 330328: '文成县',
+ 330329: '泰顺县',
+ 330381: '瑞安市',
+ 330382: '乐清市',
+ 330402: '南湖区',
+ 330411: '秀洲区',
+ 330421: '嘉善县',
+ 330424: '海盐县',
+ 330481: '海宁市',
+ 330482: '平湖市',
+ 330483: '桐乡市',
+ 330502: '吴兴区',
+ 330503: '南浔区',
+ 330521: '德清县',
+ 330522: '长兴县',
+ 330523: '安吉县',
+ 330602: '越城区',
+ 330603: '柯桥区',
+ 330604: '上虞区',
+ 330624: '新昌县',
+ 330681: '诸暨市',
+ 330683: '嵊州市',
+ 330702: '婺城区',
+ 330703: '金东区',
+ 330723: '武义县',
+ 330726: '浦江县',
+ 330727: '磐安县',
+ 330781: '兰溪市',
+ 330782: '义乌市',
+ 330783: '东阳市',
+ 330784: '永康市',
+ 330802: '柯城区',
+ 330803: '衢江区',
+ 330822: '常山县',
+ 330824: '开化县',
+ 330825: '龙游县',
+ 330881: '江山市',
+ 330902: '定海区',
+ 330903: '普陀区',
+ 330921: '岱山县',
+ 330922: '嵊泗县',
+ 331002: '椒江区',
+ 331003: '黄岩区',
+ 331004: '路桥区',
+ 331021: '玉环县',
+ 331022: '三门县',
+ 331023: '天台县',
+ 331024: '仙居县',
+ 331081: '温岭市',
+ 331082: '临海市',
+ 331102: '莲都区',
+ 331121: '青田县',
+ 331122: '缙云县',
+ 331123: '遂昌县',
+ 331124: '松阳县',
+ 331125: '云和县',
+ 331126: '庆元县',
+ 331127: '景宁畲族自治县',
+ 331181: '龙泉市',
+ 340102: '瑶海区',
+ 340103: '庐阳区',
+ 340104: '蜀山区',
+ 340111: '包河区',
+ 340121: '长丰县',
+ 340122: '肥东县',
+ 340123: '肥西县',
+ 340124: '庐江县',
+ 340181: '巢湖市',
+ 340202: '镜湖区',
+ 340203: '弋江区',
+ 340207: '鸠江区',
+ 340208: '三山区',
+ 340221: '芜湖县',
+ 340222: '繁昌县',
+ 340223: '南陵县',
+ 340225: '无为县',
+ 340302: '龙子湖区',
+ 340303: '蚌山区',
+ 340304: '禹会区',
+ 340311: '淮上区',
+ 340321: '怀远县',
+ 340322: '五河县',
+ 340323: '固镇县',
+ 340402: '大通区',
+ 340403: '田家庵区',
+ 340404: '谢家集区',
+ 340405: '八公山区',
+ 340406: '潘集区',
+ 340421: '凤台县',
+ 340422: '寿县',
+ 340503: '花山区',
+ 340504: '雨山区',
+ 340506: '博望区',
+ 340521: '当涂县',
+ 340522: '含山县',
+ 340523: '和县',
+ 340602: '杜集区',
+ 340603: '相山区',
+ 340604: '烈山区',
+ 340621: '濉溪县',
+ 340705: '铜官区',
+ 340706: '义安区',
+ 340711: '郊区',
+ 340722: '枞阳县',
+ 340802: '迎江区',
+ 340803: '大观区',
+ 340811: '宜秀区',
+ 340822: '怀宁县',
+ 340824: '潜山县',
+ 340825: '太湖县',
+ 340826: '宿松县',
+ 340827: '望江县',
+ 340828: '岳西县',
+ 340881: '桐城市',
+ 341002: '屯溪区',
+ 341003: '黄山区',
+ 341004: '徽州区',
+ 341021: '歙县',
+ 341022: '休宁县',
+ 341023: '黟县',
+ 341024: '祁门县',
+ 341102: '琅琊区',
+ 341103: '南谯区',
+ 341122: '来安县',
+ 341124: '全椒县',
+ 341125: '定远县',
+ 341126: '凤阳县',
+ 341181: '天长市',
+ 341182: '明光市',
+ 341202: '颍州区',
+ 341203: '颍东区',
+ 341204: '颍泉区',
+ 341221: '临泉县',
+ 341222: '太和县',
+ 341225: '阜南县',
+ 341226: '颍上县',
+ 341282: '界首市',
+ 341302: '埇桥区',
+ 341321: '砀山县',
+ 341322: '萧县',
+ 341323: '灵璧县',
+ 341324: '泗县',
+ 341502: '金安区',
+ 341503: '裕安区',
+ 341504: '叶集区',
+ 341522: '霍邱县',
+ 341523: '舒城县',
+ 341524: '金寨县',
+ 341525: '霍山县',
+ 341602: '谯城区',
+ 341621: '涡阳县',
+ 341622: '蒙城县',
+ 341623: '利辛县',
+ 341702: '贵池区',
+ 341721: '东至县',
+ 341722: '石台县',
+ 341723: '青阳县',
+ 341802: '宣州区',
+ 341821: '郎溪县',
+ 341822: '广德县',
+ 341823: '泾县',
+ 341824: '绩溪县',
+ 341825: '旌德县',
+ 341881: '宁国市',
+ 350102: '鼓楼区',
+ 350103: '台江区',
+ 350104: '仓山区',
+ 350105: '马尾区',
+ 350111: '晋安区',
+ 350121: '闽侯县',
+ 350122: '连江县',
+ 350123: '罗源县',
+ 350124: '闽清县',
+ 350125: '永泰县',
+ 350128: '平潭县',
+ 350181: '福清市',
+ 350182: '长乐市',
+ 350203: '思明区',
+ 350205: '海沧区',
+ 350206: '湖里区',
+ 350211: '集美区',
+ 350212: '同安区',
+ 350213: '翔安区',
+ 350302: '城厢区',
+ 350303: '涵江区',
+ 350304: '荔城区',
+ 350305: '秀屿区',
+ 350322: '仙游县',
+ 350402: '梅列区',
+ 350403: '三元区',
+ 350421: '明溪县',
+ 350423: '清流县',
+ 350424: '宁化县',
+ 350425: '大田县',
+ 350426: '尤溪县',
+ 350427: '沙县',
+ 350428: '将乐县',
+ 350429: '泰宁县',
+ 350430: '建宁县',
+ 350481: '永安市',
+ 350502: '鲤城区',
+ 350503: '丰泽区',
+ 350504: '洛江区',
+ 350505: '泉港区',
+ 350521: '惠安县',
+ 350524: '安溪县',
+ 350525: '永春县',
+ 350526: '德化县',
+ 350527: '金门县',
+ 350581: '石狮市',
+ 350582: '晋江市',
+ 350583: '南安市',
+ 350602: '芗城区',
+ 350603: '龙文区',
+ 350622: '云霄县',
+ 350623: '漳浦县',
+ 350624: '诏安县',
+ 350625: '长泰县',
+ 350626: '东山县',
+ 350627: '南靖县',
+ 350628: '平和县',
+ 350629: '华安县',
+ 350681: '龙海市',
+ 350702: '延平区',
+ 350703: '建阳区',
+ 350721: '顺昌县',
+ 350722: '浦城县',
+ 350723: '光泽县',
+ 350724: '松溪县',
+ 350725: '政和县',
+ 350781: '邵武市',
+ 350782: '武夷山市',
+ 350783: '建瓯市',
+ 350802: '新罗区',
+ 350803: '永定区',
+ 350821: '长汀县',
+ 350823: '上杭县',
+ 350824: '武平县',
+ 350825: '连城县',
+ 350881: '漳平市',
+ 350902: '蕉城区',
+ 350921: '霞浦县',
+ 350922: '古田县',
+ 350923: '屏南县',
+ 350924: '寿宁县',
+ 350925: '周宁县',
+ 350926: '柘荣县',
+ 350981: '福安市',
+ 350982: '福鼎市',
+ 360102: '东湖区',
+ 360103: '西湖区',
+ 360104: '青云谱区',
+ 360105: '湾里区',
+ 360111: '青山湖区',
+ 360112: '新建区',
+ 360121: '南昌县',
+ 360123: '安义县',
+ 360124: '进贤县',
+ 360202: '昌江区',
+ 360203: '珠山区',
+ 360222: '浮梁县',
+ 360281: '乐平市',
+ 360302: '安源区',
+ 360313: '湘东区',
+ 360321: '莲花县',
+ 360322: '上栗县',
+ 360323: '芦溪县',
+ 360402: '濂溪区',
+ 360403: '浔阳区',
+ 360421: '九江县',
+ 360423: '武宁县',
+ 360424: '修水县',
+ 360425: '永修县',
+ 360426: '德安县',
+ 360428: '都昌县',
+ 360429: '湖口县',
+ 360430: '彭泽县',
+ 360481: '瑞昌市',
+ 360482: '共青城市',
+ 360483: '庐山市',
+ 360502: '渝水区',
+ 360521: '分宜县',
+ 360602: '月湖区',
+ 360622: '余江县',
+ 360681: '贵溪市',
+ 360702: '章贡区',
+ 360703: '南康区',
+ 360721: '赣县',
+ 360722: '信丰县',
+ 360723: '大余县',
+ 360724: '上犹县',
+ 360725: '崇义县',
+ 360726: '安远县',
+ 360727: '龙南县',
+ 360728: '定南县',
+ 360729: '全南县',
+ 360730: '宁都县',
+ 360731: '于都县',
+ 360732: '兴国县',
+ 360733: '会昌县',
+ 360734: '寻乌县',
+ 360735: '石城县',
+ 360781: '瑞金市',
+ 360802: '吉州区',
+ 360803: '青原区',
+ 360821: '吉安县',
+ 360822: '吉水县',
+ 360823: '峡江县',
+ 360824: '新干县',
+ 360825: '永丰县',
+ 360826: '泰和县',
+ 360827: '遂川县',
+ 360828: '万安县',
+ 360829: '安福县',
+ 360830: '永新县',
+ 360881: '井冈山市',
+ 360902: '袁州区',
+ 360921: '奉新县',
+ 360922: '万载县',
+ 360923: '上高县',
+ 360924: '宜丰县',
+ 360925: '靖安县',
+ 360926: '铜鼓县',
+ 360981: '丰城市',
+ 360982: '樟树市',
+ 360983: '高安市',
+ 361002: '临川区',
+ 361021: '南城县',
+ 361022: '黎川县',
+ 361023: '南丰县',
+ 361024: '崇仁县',
+ 361025: '乐安县',
+ 361026: '宜黄县',
+ 361027: '金溪县',
+ 361028: '资溪县',
+ 361029: '东乡县',
+ 361030: '广昌县',
+ 361102: '信州区',
+ 361103: '广丰区',
+ 361121: '上饶县',
+ 361123: '玉山县',
+ 361124: '铅山县',
+ 361125: '横峰县',
+ 361126: '弋阳县',
+ 361127: '余干县',
+ 361128: '鄱阳县',
+ 361129: '万年县',
+ 361130: '婺源县',
+ 361181: '德兴市',
+ 370102: '历下区',
+ 370103: '市中区',
+ 370104: '槐荫区',
+ 370105: '天桥区',
+ 370112: '历城区',
+ 370113: '长清区',
+ 370124: '平阴县',
+ 370125: '济阳县',
+ 370126: '商河县',
+ 370181: '章丘市',
+ 370202: '市南区',
+ 370203: '市北区',
+ 370211: '黄岛区',
+ 370212: '崂山区',
+ 370213: '李沧区',
+ 370214: '城阳区',
+ 370281: '胶州市',
+ 370282: '即墨市',
+ 370283: '平度市',
+ 370285: '莱西市',
+ 370302: '淄川区',
+ 370303: '张店区',
+ 370304: '博山区',
+ 370305: '临淄区',
+ 370306: '周村区',
+ 370321: '桓台县',
+ 370322: '高青县',
+ 370323: '沂源县',
+ 370402: '市中区',
+ 370403: '薛城区',
+ 370404: '峄城区',
+ 370405: '台儿庄区',
+ 370406: '山亭区',
+ 370481: '滕州市',
+ 370502: '东营区',
+ 370503: '河口区',
+ 370505: '垦利区',
+ 370522: '利津县',
+ 370523: '广饶县',
+ 370602: '芝罘区',
+ 370611: '福山区',
+ 370612: '牟平区',
+ 370613: '莱山区',
+ 370634: '长岛县',
+ 370681: '龙口市',
+ 370682: '莱阳市',
+ 370683: '莱州市',
+ 370684: '蓬莱市',
+ 370685: '招远市',
+ 370686: '栖霞市',
+ 370687: '海阳市',
+ 370702: '潍城区',
+ 370703: '寒亭区',
+ 370704: '坊子区',
+ 370705: '奎文区',
+ 370724: '临朐县',
+ 370725: '昌乐县',
+ 370781: '青州市',
+ 370782: '诸城市',
+ 370783: '寿光市',
+ 370784: '安丘市',
+ 370785: '高密市',
+ 370786: '昌邑市',
+ 370811: '任城区',
+ 370812: '兖州区',
+ 370826: '微山县',
+ 370827: '鱼台县',
+ 370828: '金乡县',
+ 370829: '嘉祥县',
+ 370830: '汶上县',
+ 370831: '泗水县',
+ 370832: '梁山县',
+ 370881: '曲阜市',
+ 370883: '邹城市',
+ 370902: '泰山区',
+ 370911: '岱岳区',
+ 370921: '宁阳县',
+ 370923: '东平县',
+ 370982: '新泰市',
+ 370983: '肥城市',
+ 371002: '环翠区',
+ 371003: '文登区',
+ 371082: '荣成市',
+ 371083: '乳山市',
+ 371102: '东港区',
+ 371103: '岚山区',
+ 371121: '五莲县',
+ 371122: '莒县',
+ 371202: '莱城区',
+ 371203: '钢城区',
+ 371302: '兰山区',
+ 371311: '罗庄区',
+ 371312: '河东区',
+ 371321: '沂南县',
+ 371322: '郯城县',
+ 371323: '沂水县',
+ 371324: '兰陵县',
+ 371325: '费县',
+ 371326: '平邑县',
+ 371327: '莒南县',
+ 371328: '蒙阴县',
+ 371329: '临沭县',
+ 371402: '德城区',
+ 371403: '陵城区',
+ 371422: '宁津县',
+ 371423: '庆云县',
+ 371424: '临邑县',
+ 371425: '齐河县',
+ 371426: '平原县',
+ 371427: '夏津县',
+ 371428: '武城县',
+ 371481: '乐陵市',
+ 371482: '禹城市',
+ 371502: '东昌府区',
+ 371521: '阳谷县',
+ 371522: '莘县',
+ 371523: '茌平县',
+ 371524: '东阿县',
+ 371525: '冠县',
+ 371526: '高唐县',
+ 371581: '临清市',
+ 371602: '滨城区',
+ 371603: '沾化区',
+ 371621: '惠民县',
+ 371622: '阳信县',
+ 371623: '无棣县',
+ 371625: '博兴县',
+ 371626: '邹平县',
+ 371702: '牡丹区',
+ 371703: '定陶区',
+ 371721: '曹县',
+ 371722: '单县',
+ 371723: '成武县',
+ 371724: '巨野县',
+ 371725: '郓城县',
+ 371726: '鄄城县',
+ 371728: '东明县',
+ 410102: '中原区',
+ 410103: '二七区',
+ 410104: '管城回族区',
+ 410105: '金水区',
+ 410106: '上街区',
+ 410108: '惠济区',
+ 410122: '中牟县',
+ 410181: '巩义市',
+ 410182: '荥阳市',
+ 410183: '新密市',
+ 410184: '新郑市',
+ 410185: '登封市',
+ 410202: '龙亭区',
+ 410203: '顺河回族区',
+ 410204: '鼓楼区',
+ 410205: '禹王台区',
+ 410211: '金明区',
+ 410212: '祥符区',
+ 410221: '杞县',
+ 410222: '通许县',
+ 410223: '尉氏县',
+ 410225: '兰考县',
+ 410302: '老城区',
+ 410303: '西工区',
+ 410304: '瀍河回族区',
+ 410305: '涧西区',
+ 410306: '吉利区',
+ 410311: '洛龙区',
+ 410322: '孟津县',
+ 410323: '新安县',
+ 410324: '栾川县',
+ 410325: '嵩县',
+ 410326: '汝阳县',
+ 410327: '宜阳县',
+ 410328: '洛宁县',
+ 410329: '伊川县',
+ 410381: '偃师市',
+ 410402: '新华区',
+ 410403: '卫东区',
+ 410404: '石龙区',
+ 410411: '湛河区',
+ 410421: '宝丰县',
+ 410422: '叶县',
+ 410423: '鲁山县',
+ 410425: '郏县',
+ 410481: '舞钢市',
+ 410482: '汝州市',
+ 410502: '文峰区',
+ 410503: '北关区',
+ 410505: '殷都区',
+ 410506: '龙安区',
+ 410522: '安阳县',
+ 410523: '汤阴县',
+ 410526: '滑县',
+ 410527: '内黄县',
+ 410581: '林州市',
+ 410602: '鹤山区',
+ 410603: '山城区',
+ 410611: '淇滨区',
+ 410621: '浚县',
+ 410622: '淇县',
+ 410702: '红旗区',
+ 410703: '卫滨区',
+ 410704: '凤泉区',
+ 410711: '牧野区',
+ 410721: '新乡县',
+ 410724: '获嘉县',
+ 410725: '原阳县',
+ 410726: '延津县',
+ 410727: '封丘县',
+ 410728: '长垣县',
+ 410781: '卫辉市',
+ 410782: '辉县市',
+ 410802: '解放区',
+ 410803: '中站区',
+ 410804: '马村区',
+ 410811: '山阳区',
+ 410821: '修武县',
+ 410822: '博爱县',
+ 410823: '武陟县',
+ 410825: '温县',
+ 410882: '沁阳市',
+ 410883: '孟州市',
+ 410902: '华龙区',
+ 410922: '清丰县',
+ 410923: '南乐县',
+ 410926: '范县',
+ 410927: '台前县',
+ 410928: '濮阳县',
+ 411002: '魏都区',
+ 411023: '许昌县',
+ 411024: '鄢陵县',
+ 411025: '襄城县',
+ 411081: '禹州市',
+ 411082: '长葛市',
+ 411102: '源汇区',
+ 411103: '郾城区',
+ 411104: '召陵区',
+ 411121: '舞阳县',
+ 411122: '临颍县',
+ 411202: '湖滨区',
+ 411203: '陕州区',
+ 411221: '渑池县',
+ 411224: '卢氏县',
+ 411281: '义马市',
+ 411282: '灵宝市',
+ 411302: '宛城区',
+ 411303: '卧龙区',
+ 411321: '南召县',
+ 411322: '方城县',
+ 411323: '西峡县',
+ 411324: '镇平县',
+ 411325: '内乡县',
+ 411326: '淅川县',
+ 411327: '社旗县',
+ 411328: '唐河县',
+ 411329: '新野县',
+ 411330: '桐柏县',
+ 411381: '邓州市',
+ 411402: '梁园区',
+ 411403: '睢阳区',
+ 411421: '民权县',
+ 411422: '睢县',
+ 411423: '宁陵县',
+ 411424: '柘城县',
+ 411425: '虞城县',
+ 411426: '夏邑县',
+ 411481: '永城市',
+ 411502: '浉河区',
+ 411503: '平桥区',
+ 411521: '罗山县',
+ 411522: '光山县',
+ 411523: '新县',
+ 411524: '商城县',
+ 411525: '固始县',
+ 411526: '潢川县',
+ 411527: '淮滨县',
+ 411528: '息县',
+ 411602: '川汇区',
+ 411621: '扶沟县',
+ 411622: '西华县',
+ 411623: '商水县',
+ 411624: '沈丘县',
+ 411625: '郸城县',
+ 411626: '淮阳县',
+ 411627: '太康县',
+ 411628: '鹿邑县',
+ 411681: '项城市',
+ 411702: '驿城区',
+ 411721: '西平县',
+ 411722: '上蔡县',
+ 411723: '平舆县',
+ 411724: '正阳县',
+ 411725: '确山县',
+ 411726: '泌阳县',
+ 411727: '汝南县',
+ 411728: '遂平县',
+ 411729: '新蔡县',
+ 419001: '济源市',
+ 420102: '江岸区',
+ 420103: '江汉区',
+ 420104: '硚口区',
+ 420105: '汉阳区',
+ 420106: '武昌区',
+ 420107: '青山区',
+ 420111: '洪山区',
+ 420112: '东西湖区',
+ 420113: '汉南区',
+ 420114: '蔡甸区',
+ 420115: '江夏区',
+ 420116: '黄陂区',
+ 420117: '新洲区',
+ 420202: '黄石港区',
+ 420203: '西塞山区',
+ 420204: '下陆区',
+ 420205: '铁山区',
+ 420222: '阳新县',
+ 420281: '大冶市',
+ 420302: '茅箭区',
+ 420303: '张湾区',
+ 420304: '郧阳区',
+ 420322: '郧西县',
+ 420323: '竹山县',
+ 420324: '竹溪县',
+ 420325: '房县',
+ 420381: '丹江口市',
+ 420502: '西陵区',
+ 420503: '伍家岗区',
+ 420504: '点军区',
+ 420505: '猇亭区',
+ 420506: '夷陵区',
+ 420525: '远安县',
+ 420526: '兴山县',
+ 420527: '秭归县',
+ 420528: '长阳土家族自治县',
+ 420529: '五峰土家族自治县',
+ 420581: '宜都市',
+ 420582: '当阳市',
+ 420583: '枝江市',
+ 420602: '襄城区',
+ 420606: '樊城区',
+ 420607: '襄州区',
+ 420624: '南漳县',
+ 420625: '谷城县',
+ 420626: '保康县',
+ 420682: '老河口市',
+ 420683: '枣阳市',
+ 420684: '宜城市',
+ 420702: '梁子湖区',
+ 420703: '华容区',
+ 420704: '鄂城区',
+ 420802: '东宝区',
+ 420804: '掇刀区',
+ 420821: '京山县',
+ 420822: '沙洋县',
+ 420881: '钟祥市',
+ 420902: '孝南区',
+ 420921: '孝昌县',
+ 420922: '大悟县',
+ 420923: '云梦县',
+ 420981: '应城市',
+ 420982: '安陆市',
+ 420984: '汉川市',
+ 421002: '沙市区',
+ 421003: '荆州区',
+ 421022: '公安县',
+ 421023: '监利县',
+ 421024: '江陵县',
+ 421081: '石首市',
+ 421083: '洪湖市',
+ 421087: '松滋市',
+ 421102: '黄州区',
+ 421121: '团风县',
+ 421122: '红安县',
+ 421123: '罗田县',
+ 421124: '英山县',
+ 421125: '浠水县',
+ 421126: '蕲春县',
+ 421127: '黄梅县',
+ 421181: '麻城市',
+ 421182: '武穴市',
+ 421202: '咸安区',
+ 421221: '嘉鱼县',
+ 421222: '通城县',
+ 421223: '崇阳县',
+ 421224: '通山县',
+ 421281: '赤壁市',
+ 421303: '曾都区',
+ 421321: '随县',
+ 421381: '广水市',
+ 422801: '恩施市',
+ 422802: '利川市',
+ 422822: '建始县',
+ 422823: '巴东县',
+ 422825: '宣恩县',
+ 422826: '咸丰县',
+ 422827: '来凤县',
+ 422828: '鹤峰县',
+ 429004: '仙桃市',
+ 429005: '潜江市',
+ 429006: '天门市',
+ 429021: '神农架林区',
+ 430102: '芙蓉区',
+ 430103: '天心区',
+ 430104: '岳麓区',
+ 430105: '开福区',
+ 430111: '雨花区',
+ 430112: '望城区',
+ 430121: '长沙县',
+ 430124: '宁乡县',
+ 430181: '浏阳市',
+ 430202: '荷塘区',
+ 430203: '芦淞区',
+ 430204: '石峰区',
+ 430211: '天元区',
+ 430221: '株洲县',
+ 430223: '攸县',
+ 430224: '茶陵县',
+ 430225: '炎陵县',
+ 430281: '醴陵市',
+ 430302: '雨湖区',
+ 430304: '岳塘区',
+ 430321: '湘潭县',
+ 430381: '湘乡市',
+ 430382: '韶山市',
+ 430405: '珠晖区',
+ 430406: '雁峰区',
+ 430407: '石鼓区',
+ 430408: '蒸湘区',
+ 430412: '南岳区',
+ 430421: '衡阳县',
+ 430422: '衡南县',
+ 430423: '衡山县',
+ 430424: '衡东县',
+ 430426: '祁东县',
+ 430481: '耒阳市',
+ 430482: '常宁市',
+ 430502: '双清区',
+ 430503: '大祥区',
+ 430511: '北塔区',
+ 430521: '邵东县',
+ 430522: '新邵县',
+ 430523: '邵阳县',
+ 430524: '隆回县',
+ 430525: '洞口县',
+ 430527: '绥宁县',
+ 430528: '新宁县',
+ 430529: '城步苗族自治县',
+ 430581: '武冈市',
+ 430602: '岳阳楼区',
+ 430603: '云溪区',
+ 430611: '君山区',
+ 430621: '岳阳县',
+ 430623: '华容县',
+ 430624: '湘阴县',
+ 430626: '平江县',
+ 430681: '汨罗市',
+ 430682: '临湘市',
+ 430702: '武陵区',
+ 430703: '鼎城区',
+ 430721: '安乡县',
+ 430722: '汉寿县',
+ 430723: '澧县',
+ 430724: '临澧县',
+ 430725: '桃源县',
+ 430726: '石门县',
+ 430781: '津市市',
+ 430802: '永定区',
+ 430811: '武陵源区',
+ 430821: '慈利县',
+ 430822: '桑植县',
+ 430902: '资阳区',
+ 430903: '赫山区',
+ 430921: '南县',
+ 430922: '桃江县',
+ 430923: '安化县',
+ 430981: '沅江市',
+ 431002: '北湖区',
+ 431003: '苏仙区',
+ 431021: '桂阳县',
+ 431022: '宜章县',
+ 431023: '永兴县',
+ 431024: '嘉禾县',
+ 431025: '临武县',
+ 431026: '汝城县',
+ 431027: '桂东县',
+ 431028: '安仁县',
+ 431081: '资兴市',
+ 431102: '零陵区',
+ 431103: '冷水滩区',
+ 431121: '祁阳县',
+ 431122: '东安县',
+ 431123: '双牌县',
+ 431124: '道县',
+ 431125: '江永县',
+ 431126: '宁远县',
+ 431127: '蓝山县',
+ 431128: '新田县',
+ 431129: '江华瑶族自治县',
+ 431202: '鹤城区',
+ 431221: '中方县',
+ 431222: '沅陵县',
+ 431223: '辰溪县',
+ 431224: '溆浦县',
+ 431225: '会同县',
+ 431226: '麻阳苗族自治县',
+ 431227: '新晃侗族自治县',
+ 431228: '芷江侗族自治县',
+ 431229: '靖州苗族侗族自治县',
+ 431230: '通道侗族自治县',
+ 431281: '洪江市',
+ 431302: '娄星区',
+ 431321: '双峰县',
+ 431322: '新化县',
+ 431381: '冷水江市',
+ 431382: '涟源市',
+ 433101: '吉首市',
+ 433122: '泸溪县',
+ 433123: '凤凰县',
+ 433124: '花垣县',
+ 433125: '保靖县',
+ 433126: '古丈县',
+ 433127: '永顺县',
+ 433130: '龙山县',
+ 440103: '荔湾区',
+ 440104: '越秀区',
+ 440105: '海珠区',
+ 440106: '天河区',
+ 440111: '白云区',
+ 440112: '黄埔区',
+ 440113: '番禺区',
+ 440114: '花都区',
+ 440115: '南沙区',
+ 440117: '从化区',
+ 440118: '增城区',
+ 440203: '武江区',
+ 440204: '浈江区',
+ 440205: '曲江区',
+ 440222: '始兴县',
+ 440224: '仁化县',
+ 440229: '翁源县',
+ 440232: '乳源瑶族自治县',
+ 440233: '新丰县',
+ 440281: '乐昌市',
+ 440282: '南雄市',
+ 440303: '罗湖区',
+ 440304: '福田区',
+ 440305: '南山区',
+ 440306: '宝安区',
+ 440307: '龙岗区',
+ 440308: '盐田区',
+ 440402: '香洲区',
+ 440403: '斗门区',
+ 440404: '金湾区',
+ 440507: '龙湖区',
+ 440511: '金平区',
+ 440512: '濠江区',
+ 440513: '潮阳区',
+ 440514: '潮南区',
+ 440515: '澄海区',
+ 440523: '南澳县',
+ 440604: '禅城区',
+ 440605: '南海区',
+ 440606: '顺德区',
+ 440607: '三水区',
+ 440608: '高明区',
+ 440703: '蓬江区',
+ 440704: '江海区',
+ 440705: '新会区',
+ 440781: '台山市',
+ 440783: '开平市',
+ 440784: '鹤山市',
+ 440785: '恩平市',
+ 440802: '赤坎区',
+ 440803: '霞山区',
+ 440804: '坡头区',
+ 440811: '麻章区',
+ 440823: '遂溪县',
+ 440825: '徐闻县',
+ 440881: '廉江市',
+ 440882: '雷州市',
+ 440883: '吴川市',
+ 440902: '茂南区',
+ 440904: '电白区',
+ 440981: '高州市',
+ 440982: '化州市',
+ 440983: '信宜市',
+ 441202: '端州区',
+ 441203: '鼎湖区',
+ 441204: '高要区',
+ 441223: '广宁县',
+ 441224: '怀集县',
+ 441225: '封开县',
+ 441226: '德庆县',
+ 441284: '四会市',
+ 441302: '惠城区',
+ 441303: '惠阳区',
+ 441322: '博罗县',
+ 441323: '惠东县',
+ 441324: '龙门县',
+ 441402: '梅江区',
+ 441403: '梅县区',
+ 441422: '大埔县',
+ 441423: '丰顺县',
+ 441424: '五华县',
+ 441426: '平远县',
+ 441427: '蕉岭县',
+ 441481: '兴宁市',
+ 441502: '城区',
+ 441521: '海丰县',
+ 441523: '陆河县',
+ 441581: '陆丰市',
+ 441602: '源城区',
+ 441621: '紫金县',
+ 441622: '龙川县',
+ 441623: '连平县',
+ 441624: '和平县',
+ 441625: '东源县',
+ 441702: '江城区',
+ 441704: '阳东区',
+ 441721: '阳西县',
+ 441781: '阳春市',
+ 441802: '清城区',
+ 441803: '清新区',
+ 441821: '佛冈县',
+ 441823: '阳山县',
+ 441825: '连山壮族瑶族自治县',
+ 441826: '连南瑶族自治县',
+ 441881: '英德市',
+ 441882: '连州市',
+ 441900: '东莞市',
+ 442000: '中山市',
+ 445102: '湘桥区',
+ 445103: '潮安区',
+ 445122: '饶平县',
+ 445202: '榕城区',
+ 445203: '揭东区',
+ 445222: '揭西县',
+ 445224: '惠来县',
+ 445281: '普宁市',
+ 445302: '云城区',
+ 445303: '云安区',
+ 445321: '新兴县',
+ 445322: '郁南县',
+ 445381: '罗定市',
+ 450102: '兴宁区',
+ 450103: '青秀区',
+ 450105: '江南区',
+ 450107: '西乡塘区',
+ 450108: '良庆区',
+ 450109: '邕宁区',
+ 450110: '武鸣区',
+ 450123: '隆安县',
+ 450124: '马山县',
+ 450125: '上林县',
+ 450126: '宾阳县',
+ 450127: '横县',
+ 450202: '城中区',
+ 450203: '鱼峰区',
+ 450204: '柳南区',
+ 450205: '柳北区',
+ 450206: '柳江区',
+ 450222: '柳城县',
+ 450223: '鹿寨县',
+ 450224: '融安县',
+ 450225: '融水苗族自治县',
+ 450226: '三江侗族自治县',
+ 450302: '秀峰区',
+ 450303: '叠彩区',
+ 450304: '象山区',
+ 450305: '七星区',
+ 450311: '雁山区',
+ 450312: '临桂区',
+ 450321: '阳朔县',
+ 450323: '灵川县',
+ 450324: '全州县',
+ 450325: '兴安县',
+ 450326: '永福县',
+ 450327: '灌阳县',
+ 450328: '龙胜各族自治县',
+ 450329: '资源县',
+ 450330: '平乐县',
+ 450331: '荔浦县',
+ 450332: '恭城瑶族自治县',
+ 450403: '万秀区',
+ 450405: '长洲区',
+ 450406: '龙圩区',
+ 450421: '苍梧县',
+ 450422: '藤县',
+ 450423: '蒙山县',
+ 450481: '岑溪市',
+ 450502: '海城区',
+ 450503: '银海区',
+ 450512: '铁山港区',
+ 450521: '合浦县',
+ 450602: '港口区',
+ 450603: '防城区',
+ 450621: '上思县',
+ 450681: '东兴市',
+ 450702: '钦南区',
+ 450703: '钦北区',
+ 450721: '灵山县',
+ 450722: '浦北县',
+ 450802: '港北区',
+ 450803: '港南区',
+ 450804: '覃塘区',
+ 450821: '平南县',
+ 450881: '桂平市',
+ 450902: '玉州区',
+ 450903: '福绵区',
+ 450921: '容县',
+ 450922: '陆川县',
+ 450923: '博白县',
+ 450924: '兴业县',
+ 450981: '北流市',
+ 451002: '右江区',
+ 451021: '田阳县',
+ 451022: '田东县',
+ 451023: '平果县',
+ 451024: '德保县',
+ 451026: '那坡县',
+ 451027: '凌云县',
+ 451028: '乐业县',
+ 451029: '田林县',
+ 451030: '西林县',
+ 451031: '隆林各族自治县',
+ 451081: '靖西市',
+ 451102: '八步区',
+ 451103: '平桂区',
+ 451121: '昭平县',
+ 451122: '钟山县',
+ 451123: '富川瑶族自治县',
+ 451202: '金城江区',
+ 451221: '南丹县',
+ 451222: '天峨县',
+ 451223: '凤山县',
+ 451224: '东兰县',
+ 451225: '罗城仫佬族自治县',
+ 451226: '环江毛南族自治县',
+ 451227: '巴马瑶族自治县',
+ 451228: '都安瑶族自治县',
+ 451229: '大化瑶族自治县',
+ 451281: '宜州市',
+ 451302: '兴宾区',
+ 451321: '忻城县',
+ 451322: '象州县',
+ 451323: '武宣县',
+ 451324: '金秀瑶族自治县',
+ 451381: '合山市',
+ 451402: '江州区',
+ 451421: '扶绥县',
+ 451422: '宁明县',
+ 451423: '龙州县',
+ 451424: '大新县',
+ 451425: '天等县',
+ 451481: '凭祥市',
+ 460105: '秀英区',
+ 460106: '龙华区',
+ 460107: '琼山区',
+ 460108: '美兰区',
+ 460201: '市辖区',
+ 460202: '海棠区',
+ 460203: '吉阳区',
+ 460204: '天涯区',
+ 460205: '崖州区',
+ 460321: '西沙群岛',
+ 460322: '南沙群岛',
+ 460323: '中沙群岛的岛礁及其海域',
+ 460400: '儋州市',
+ 469001: '五指山市',
+ 469002: '琼海市',
+ 469005: '文昌市',
+ 469006: '万宁市',
+ 469007: '东方市',
+ 469021: '定安县',
+ 469022: '屯昌县',
+ 469023: '澄迈县',
+ 469024: '临高县',
+ 469025: '白沙黎族自治县',
+ 469026: '昌江黎族自治县',
+ 469027: '乐东黎族自治县',
+ 469028: '陵水黎族自治县',
+ 469029: '保亭黎族苗族自治县',
+ 469030: '琼中黎族苗族自治县',
+ 500101: '万州区',
+ 500102: '涪陵区',
+ 500103: '渝中区',
+ 500104: '大渡口区',
+ 500105: '江北区',
+ 500106: '沙坪坝区',
+ 500107: '九龙坡区',
+ 500108: '南岸区',
+ 500109: '北碚区',
+ 500110: '綦江区',
+ 500111: '大足区',
+ 500112: '渝北区',
+ 500113: '巴南区',
+ 500114: '黔江区',
+ 500115: '长寿区',
+ 500116: '江津区',
+ 500117: '合川区',
+ 500118: '永川区',
+ 500119: '南川区',
+ 500120: '璧山区',
+ 500151: '铜梁区',
+ 500152: '潼南区',
+ 500153: '荣昌区',
+ 500154: '开州区',
+ 500228: '梁平县',
+ 500229: '城口县',
+ 500230: '丰都县',
+ 500231: '垫江县',
+ 500232: '武隆县',
+ 500233: '忠县',
+ 500235: '云阳县',
+ 500236: '奉节县',
+ 500237: '巫山县',
+ 500238: '巫溪县',
+ 500240: '石柱土家族自治县',
+ 500241: '秀山土家族苗族自治县',
+ 500242: '酉阳土家族苗族自治县',
+ 500243: '彭水苗族土家族自治县',
+ 510104: '锦江区',
+ 510105: '青羊区',
+ 510106: '金牛区',
+ 510107: '武侯区',
+ 510108: '成华区',
+ 510112: '龙泉驿区',
+ 510113: '青白江区',
+ 510114: '新都区',
+ 510115: '温江区',
+ 510116: '双流区',
+ 510121: '金堂县',
+ 510124: '郫县',
+ 510129: '大邑县',
+ 510131: '蒲江县',
+ 510132: '新津县',
+ 510181: '都江堰市',
+ 510182: '彭州市',
+ 510183: '邛崃市',
+ 510184: '崇州市',
+ 510185: '简阳市',
+ 510302: '自流井区',
+ 510303: '贡井区',
+ 510304: '大安区',
+ 510311: '沿滩区',
+ 510321: '荣县',
+ 510322: '富顺县',
+ 510402: '东区',
+ 510403: '西区',
+ 510411: '仁和区',
+ 510421: '米易县',
+ 510422: '盐边县',
+ 510502: '江阳区',
+ 510503: '纳溪区',
+ 510504: '龙马潭区',
+ 510521: '泸县',
+ 510522: '合江县',
+ 510524: '叙永县',
+ 510525: '古蔺县',
+ 510603: '旌阳区',
+ 510623: '中江县',
+ 510626: '罗江县',
+ 510681: '广汉市',
+ 510682: '什邡市',
+ 510683: '绵竹市',
+ 510703: '涪城区',
+ 510704: '游仙区',
+ 510705: '安州区',
+ 510722: '三台县',
+ 510723: '盐亭县',
+ 510725: '梓潼县',
+ 510726: '北川羌族自治县',
+ 510727: '平武县',
+ 510781: '江油市',
+ 510802: '利州区',
+ 510811: '昭化区',
+ 510812: '朝天区',
+ 510821: '旺苍县',
+ 510822: '青川县',
+ 510823: '剑阁县',
+ 510824: '苍溪县',
+ 510903: '船山区',
+ 510904: '安居区',
+ 510921: '蓬溪县',
+ 510922: '射洪县',
+ 510923: '大英县',
+ 511002: '市中区',
+ 511011: '东兴区',
+ 511024: '威远县',
+ 511025: '资中县',
+ 511028: '隆昌县',
+ 511102: '市中区',
+ 511111: '沙湾区',
+ 511112: '五通桥区',
+ 511113: '金口河区',
+ 511123: '犍为县',
+ 511124: '井研县',
+ 511126: '夹江县',
+ 511129: '沐川县',
+ 511132: '峨边彝族自治县',
+ 511133: '马边彝族自治县',
+ 511181: '峨眉山市',
+ 511302: '顺庆区',
+ 511303: '高坪区',
+ 511304: '嘉陵区',
+ 511321: '南部县',
+ 511322: '营山县',
+ 511323: '蓬安县',
+ 511324: '仪陇县',
+ 511325: '西充县',
+ 511381: '阆中市',
+ 511402: '东坡区',
+ 511403: '彭山区',
+ 511421: '仁寿县',
+ 511423: '洪雅县',
+ 511424: '丹棱县',
+ 511425: '青神县',
+ 511502: '翠屏区',
+ 511503: '南溪区',
+ 511521: '宜宾县',
+ 511523: '江安县',
+ 511524: '长宁县',
+ 511525: '高县',
+ 511526: '珙县',
+ 511527: '筠连县',
+ 511528: '兴文县',
+ 511529: '屏山县',
+ 511602: '广安区',
+ 511603: '前锋区',
+ 511621: '岳池县',
+ 511622: '武胜县',
+ 511623: '邻水县',
+ 511681: '华蓥市',
+ 511702: '通川区',
+ 511703: '达川区',
+ 511722: '宣汉县',
+ 511723: '开江县',
+ 511724: '大竹县',
+ 511725: '渠县',
+ 511781: '万源市',
+ 511802: '雨城区',
+ 511803: '名山区',
+ 511822: '荥经县',
+ 511823: '汉源县',
+ 511824: '石棉县',
+ 511825: '天全县',
+ 511826: '芦山县',
+ 511827: '宝兴县',
+ 511902: '巴州区',
+ 511903: '恩阳区',
+ 511921: '通江县',
+ 511922: '南江县',
+ 511923: '平昌县',
+ 512002: '雁江区',
+ 512021: '安岳县',
+ 512022: '乐至县',
+ 513201: '马尔康市',
+ 513221: '汶川县',
+ 513222: '理县',
+ 513223: '茂县',
+ 513224: '松潘县',
+ 513225: '九寨沟县',
+ 513226: '金川县',
+ 513227: '小金县',
+ 513228: '黑水县',
+ 513230: '壤塘县',
+ 513231: '阿坝县',
+ 513232: '若尔盖县',
+ 513233: '红原县',
+ 513301: '康定市',
+ 513322: '泸定县',
+ 513323: '丹巴县',
+ 513324: '九龙县',
+ 513325: '雅江县',
+ 513326: '道孚县',
+ 513327: '炉霍县',
+ 513328: '甘孜县',
+ 513329: '新龙县',
+ 513330: '德格县',
+ 513331: '白玉县',
+ 513332: '石渠县',
+ 513333: '色达县',
+ 513334: '理塘县',
+ 513335: '巴塘县',
+ 513336: '乡城县',
+ 513337: '稻城县',
+ 513338: '得荣县',
+ 513401: '西昌市',
+ 513422: '木里藏族自治县',
+ 513423: '盐源县',
+ 513424: '德昌县',
+ 513425: '会理县',
+ 513426: '会东县',
+ 513427: '宁南县',
+ 513428: '普格县',
+ 513429: '布拖县',
+ 513430: '金阳县',
+ 513431: '昭觉县',
+ 513432: '喜德县',
+ 513433: '冕宁县',
+ 513434: '越西县',
+ 513435: '甘洛县',
+ 513436: '美姑县',
+ 513437: '雷波县',
+ 520102: '南明区',
+ 520103: '云岩区',
+ 520111: '花溪区',
+ 520112: '乌当区',
+ 520113: '白云区',
+ 520115: '观山湖区',
+ 520121: '开阳县',
+ 520122: '息烽县',
+ 520123: '修文县',
+ 520181: '清镇市',
+ 520201: '钟山区',
+ 520203: '六枝特区',
+ 520221: '水城县',
+ 520222: '盘县',
+ 520302: '红花岗区',
+ 520303: '汇川区',
+ 520304: '播州区',
+ 520322: '桐梓县',
+ 520323: '绥阳县',
+ 520324: '正安县',
+ 520325: '道真仡佬族苗族自治县',
+ 520326: '务川仡佬族苗族自治县',
+ 520327: '凤冈县',
+ 520328: '湄潭县',
+ 520329: '余庆县',
+ 520330: '习水县',
+ 520381: '赤水市',
+ 520382: '仁怀市',
+ 520402: '西秀区',
+ 520403: '平坝区',
+ 520422: '普定县',
+ 520423: '镇宁布依族苗族自治县',
+ 520424: '关岭布依族苗族自治县',
+ 520425: '紫云苗族布依族自治县',
+ 520502: '七星关区',
+ 520521: '大方县',
+ 520522: '黔西县',
+ 520523: '金沙县',
+ 520524: '织金县',
+ 520525: '纳雍县',
+ 520526: '威宁彝族回族苗族自治县',
+ 520527: '赫章县',
+ 520602: '碧江区',
+ 520603: '万山区',
+ 520621: '江口县',
+ 520622: '玉屏侗族自治县',
+ 520623: '石阡县',
+ 520624: '思南县',
+ 520625: '印江土家族苗族自治县',
+ 520626: '德江县',
+ 520627: '沿河土家族自治县',
+ 520628: '松桃苗族自治县',
+ 522301: '兴义市',
+ 522322: '兴仁县',
+ 522323: '普安县',
+ 522324: '晴隆县',
+ 522325: '贞丰县',
+ 522326: '望谟县',
+ 522327: '册亨县',
+ 522328: '安龙县',
+ 522601: '凯里市',
+ 522622: '黄平县',
+ 522623: '施秉县',
+ 522624: '三穗县',
+ 522625: '镇远县',
+ 522626: '岑巩县',
+ 522627: '天柱县',
+ 522628: '锦屏县',
+ 522629: '剑河县',
+ 522630: '台江县',
+ 522631: '黎平县',
+ 522632: '榕江县',
+ 522633: '从江县',
+ 522634: '雷山县',
+ 522635: '麻江县',
+ 522636: '丹寨县',
+ 522701: '都匀市',
+ 522702: '福泉市',
+ 522722: '荔波县',
+ 522723: '贵定县',
+ 522725: '瓮安县',
+ 522726: '独山县',
+ 522727: '平塘县',
+ 522728: '罗甸县',
+ 522729: '长顺县',
+ 522730: '龙里县',
+ 522731: '惠水县',
+ 522732: '三都水族自治县',
+ 530102: '五华区',
+ 530103: '盘龙区',
+ 530111: '官渡区',
+ 530112: '西山区',
+ 530113: '东川区',
+ 530114: '呈贡区',
+ 530122: '晋宁县',
+ 530124: '富民县',
+ 530125: '宜良县',
+ 530126: '石林彝族自治县',
+ 530127: '嵩明县',
+ 530128: '禄劝彝族苗族自治县',
+ 530129: '寻甸回族彝族自治县',
+ 530181: '安宁市',
+ 530302: '麒麟区',
+ 530303: '沾益区',
+ 530321: '马龙县',
+ 530322: '陆良县',
+ 530323: '师宗县',
+ 530324: '罗平县',
+ 530325: '富源县',
+ 530326: '会泽县',
+ 530381: '宣威市',
+ 530402: '红塔区',
+ 530403: '江川区',
+ 530422: '澄江县',
+ 530423: '通海县',
+ 530424: '华宁县',
+ 530425: '易门县',
+ 530426: '峨山彝族自治县',
+ 530427: '新平彝族傣族自治县',
+ 530428: '元江哈尼族彝族傣族自治县',
+ 530502: '隆阳区',
+ 530521: '施甸县',
+ 530523: '龙陵县',
+ 530524: '昌宁县',
+ 530581: '腾冲市',
+ 530602: '昭阳区',
+ 530621: '鲁甸县',
+ 530622: '巧家县',
+ 530623: '盐津县',
+ 530624: '大关县',
+ 530625: '永善县',
+ 530626: '绥江县',
+ 530627: '镇雄县',
+ 530628: '彝良县',
+ 530629: '威信县',
+ 530630: '水富县',
+ 530702: '古城区',
+ 530721: '玉龙纳西族自治县',
+ 530722: '永胜县',
+ 530723: '华坪县',
+ 530724: '宁蒗彝族自治县',
+ 530802: '思茅区',
+ 530821: '宁洱哈尼族彝族自治县',
+ 530822: '墨江哈尼族自治县',
+ 530823: '景东彝族自治县',
+ 530824: '景谷傣族彝族自治县',
+ 530825: '镇沅彝族哈尼族拉祜族自治县',
+ 530826: '江城哈尼族彝族自治县',
+ 530827: '孟连傣族拉祜族佤族自治县',
+ 530828: '澜沧拉祜族自治县',
+ 530829: '西盟佤族自治县',
+ 530902: '临翔区',
+ 530921: '凤庆县',
+ 530922: '云县',
+ 530923: '永德县',
+ 530924: '镇康县',
+ 530925: '双江拉祜族佤族布朗族傣族自治县',
+ 530926: '耿马傣族佤族自治县',
+ 530927: '沧源佤族自治县',
+ 532301: '楚雄市',
+ 532322: '双柏县',
+ 532323: '牟定县',
+ 532324: '南华县',
+ 532325: '姚安县',
+ 532326: '大姚县',
+ 532327: '永仁县',
+ 532328: '元谋县',
+ 532329: '武定县',
+ 532331: '禄丰县',
+ 532501: '个旧市',
+ 532502: '开远市',
+ 532503: '蒙自市',
+ 532504: '弥勒市',
+ 532523: '屏边苗族自治县',
+ 532524: '建水县',
+ 532525: '石屏县',
+ 532527: '泸西县',
+ 532528: '元阳县',
+ 532529: '红河县',
+ 532530: '金平苗族瑶族傣族自治县',
+ 532531: '绿春县',
+ 532532: '河口瑶族自治县',
+ 532601: '文山市',
+ 532622: '砚山县',
+ 532623: '西畴县',
+ 532624: '麻栗坡县',
+ 532625: '马关县',
+ 532626: '丘北县',
+ 532627: '广南县',
+ 532628: '富宁县',
+ 532801: '景洪市',
+ 532822: '勐海县',
+ 532823: '勐腊县',
+ 532901: '大理市',
+ 532922: '漾濞彝族自治县',
+ 532923: '祥云县',
+ 532924: '宾川县',
+ 532925: '弥渡县',
+ 532926: '南涧彝族自治县',
+ 532927: '巍山彝族回族自治县',
+ 532928: '永平县',
+ 532929: '云龙县',
+ 532930: '洱源县',
+ 532931: '剑川县',
+ 532932: '鹤庆县',
+ 533102: '瑞丽市',
+ 533103: '芒市',
+ 533122: '梁河县',
+ 533123: '盈江县',
+ 533124: '陇川县',
+ 533301: '泸水市',
+ 533323: '福贡县',
+ 533324: '贡山独龙族怒族自治县',
+ 533325: '兰坪白族普米族自治县',
+ 533401: '香格里拉市',
+ 533422: '德钦县',
+ 533423: '维西傈僳族自治县',
+ 540102: '城关区',
+ 540103: '堆龙德庆区',
+ 540121: '林周县',
+ 540122: '当雄县',
+ 540123: '尼木县',
+ 540124: '曲水县',
+ 540126: '达孜县',
+ 540127: '墨竹工卡县',
+ 540202: '桑珠孜区',
+ 540221: '南木林县',
+ 540222: '江孜县',
+ 540223: '定日县',
+ 540224: '萨迦县',
+ 540225: '拉孜县',
+ 540226: '昂仁县',
+ 540227: '谢通门县',
+ 540228: '白朗县',
+ 540229: '仁布县',
+ 540230: '康马县',
+ 540231: '定结县',
+ 540232: '仲巴县',
+ 540233: '亚东县',
+ 540234: '吉隆县',
+ 540235: '聂拉木县',
+ 540236: '萨嘎县',
+ 540237: '岗巴县',
+ 540302: '卡若区',
+ 540321: '江达县',
+ 540322: '贡觉县',
+ 540323: '类乌齐县',
+ 540324: '丁青县',
+ 540325: '察雅县',
+ 540326: '八宿县',
+ 540327: '左贡县',
+ 540328: '芒康县',
+ 540329: '洛隆县',
+ 540330: '边坝县',
+ 540402: '巴宜区',
+ 540421: '工布江达县',
+ 540422: '米林县',
+ 540423: '墨脱县',
+ 540424: '波密县',
+ 540425: '察隅县',
+ 540426: '朗县',
+ 540502: '乃东区',
+ 540521: '扎囊县',
+ 540522: '贡嘎县',
+ 540523: '桑日县',
+ 540524: '琼结县',
+ 540525: '曲松县',
+ 540526: '措美县',
+ 540527: '洛扎县',
+ 540528: '加查县',
+ 540529: '隆子县',
+ 540530: '错那县',
+ 540531: '浪卡子县',
+ 542421: '那曲县',
+ 542422: '嘉黎县',
+ 542423: '比如县',
+ 542424: '聂荣县',
+ 542425: '安多县',
+ 542426: '申扎县',
+ 542427: '索县',
+ 542428: '班戈县',
+ 542429: '巴青县',
+ 542430: '尼玛县',
+ 542431: '双湖县',
+ 542521: '普兰县',
+ 542522: '札达县',
+ 542523: '噶尔县',
+ 542524: '日土县',
+ 542525: '革吉县',
+ 542526: '改则县',
+ 542527: '措勤县',
+ 610102: '新城区',
+ 610103: '碑林区',
+ 610104: '莲湖区',
+ 610111: '灞桥区',
+ 610112: '未央区',
+ 610113: '雁塔区',
+ 610114: '阎良区',
+ 610115: '临潼区',
+ 610116: '长安区',
+ 610117: '高陵区',
+ 610122: '蓝田县',
+ 610124: '周至县',
+ 610125: '户县',
+ 610202: '王益区',
+ 610203: '印台区',
+ 610204: '耀州区',
+ 610222: '宜君县',
+ 610302: '渭滨区',
+ 610303: '金台区',
+ 610304: '陈仓区',
+ 610322: '凤翔县',
+ 610323: '岐山县',
+ 610324: '扶风县',
+ 610326: '眉县',
+ 610327: '陇县',
+ 610328: '千阳县',
+ 610329: '麟游县',
+ 610330: '凤县',
+ 610331: '太白县',
+ 610402: '秦都区',
+ 610403: '杨陵区',
+ 610404: '渭城区',
+ 610422: '三原县',
+ 610423: '泾阳县',
+ 610424: '乾县',
+ 610425: '礼泉县',
+ 610426: '永寿县',
+ 610427: '彬县',
+ 610428: '长武县',
+ 610429: '旬邑县',
+ 610430: '淳化县',
+ 610431: '武功县',
+ 610481: '兴平市',
+ 610502: '临渭区',
+ 610503: '华州区',
+ 610522: '潼关县',
+ 610523: '大荔县',
+ 610524: '合阳县',
+ 610525: '澄城县',
+ 610526: '蒲城县',
+ 610527: '白水县',
+ 610528: '富平县',
+ 610581: '韩城市',
+ 610582: '华阴市',
+ 610602: '宝塔区',
+ 610603: '安塞区',
+ 610621: '延长县',
+ 610622: '延川县',
+ 610623: '子长县',
+ 610625: '志丹县',
+ 610626: '吴起县',
+ 610627: '甘泉县',
+ 610628: '富县',
+ 610629: '洛川县',
+ 610630: '宜川县',
+ 610631: '黄龙县',
+ 610632: '黄陵县',
+ 610702: '汉台区',
+ 610721: '南郑县',
+ 610722: '城固县',
+ 610723: '洋县',
+ 610724: '西乡县',
+ 610725: '勉县',
+ 610726: '宁强县',
+ 610727: '略阳县',
+ 610728: '镇巴县',
+ 610729: '留坝县',
+ 610730: '佛坪县',
+ 610802: '榆阳区',
+ 610803: '横山区',
+ 610821: '神木县',
+ 610822: '府谷县',
+ 610824: '靖边县',
+ 610825: '定边县',
+ 610826: '绥德县',
+ 610827: '米脂县',
+ 610828: '佳县',
+ 610829: '吴堡县',
+ 610830: '清涧县',
+ 610831: '子洲县',
+ 610902: '汉滨区',
+ 610921: '汉阴县',
+ 610922: '石泉县',
+ 610923: '宁陕县',
+ 610924: '紫阳县',
+ 610925: '岚皋县',
+ 610926: '平利县',
+ 610927: '镇坪县',
+ 610928: '旬阳县',
+ 610929: '白河县',
+ 611002: '商州区',
+ 611021: '洛南县',
+ 611022: '丹凤县',
+ 611023: '商南县',
+ 611024: '山阳县',
+ 611025: '镇安县',
+ 611026: '柞水县',
+ 620102: '城关区',
+ 620103: '七里河区',
+ 620104: '西固区',
+ 620105: '安宁区',
+ 620111: '红古区',
+ 620121: '永登县',
+ 620122: '皋兰县',
+ 620123: '榆中县',
+ 620201: '嘉峪关市',
+ 620302: '金川区',
+ 620321: '永昌县',
+ 620402: '白银区',
+ 620403: '平川区',
+ 620421: '靖远县',
+ 620422: '会宁县',
+ 620423: '景泰县',
+ 620502: '秦州区',
+ 620503: '麦积区',
+ 620521: '清水县',
+ 620522: '秦安县',
+ 620523: '甘谷县',
+ 620524: '武山县',
+ 620525: '张家川回族自治县',
+ 620602: '凉州区',
+ 620621: '民勤县',
+ 620622: '古浪县',
+ 620623: '天祝藏族自治县',
+ 620702: '甘州区',
+ 620721: '肃南裕固族自治县',
+ 620722: '民乐县',
+ 620723: '临泽县',
+ 620724: '高台县',
+ 620725: '山丹县',
+ 620802: '崆峒区',
+ 620821: '泾川县',
+ 620822: '灵台县',
+ 620823: '崇信县',
+ 620824: '华亭县',
+ 620825: '庄浪县',
+ 620826: '静宁县',
+ 620902: '肃州区',
+ 620921: '金塔县',
+ 620922: '瓜州县',
+ 620923: '肃北蒙古族自治县',
+ 620924: '阿克塞哈萨克族自治县',
+ 620981: '玉门市',
+ 620982: '敦煌市',
+ 621002: '西峰区',
+ 621021: '庆城县',
+ 621022: '环县',
+ 621023: '华池县',
+ 621024: '合水县',
+ 621025: '正宁县',
+ 621026: '宁县',
+ 621027: '镇原县',
+ 621102: '安定区',
+ 621121: '通渭县',
+ 621122: '陇西县',
+ 621123: '渭源县',
+ 621124: '临洮县',
+ 621125: '漳县',
+ 621126: '岷县',
+ 621202: '武都区',
+ 621221: '成县',
+ 621222: '文县',
+ 621223: '宕昌县',
+ 621224: '康县',
+ 621225: '西和县',
+ 621226: '礼县',
+ 621227: '徽县',
+ 621228: '两当县',
+ 622901: '临夏市',
+ 622921: '临夏县',
+ 622922: '康乐县',
+ 622923: '永靖县',
+ 622924: '广河县',
+ 622925: '和政县',
+ 622926: '东乡族自治县',
+ 622927: '积石山保安族东乡族撒拉族自治县',
+ 623001: '合作市',
+ 623021: '临潭县',
+ 623022: '卓尼县',
+ 623023: '舟曲县',
+ 623024: '迭部县',
+ 623025: '玛曲县',
+ 623026: '碌曲县',
+ 623027: '夏河县',
+ 630102: '城东区',
+ 630103: '城中区',
+ 630104: '城西区',
+ 630105: '城北区',
+ 630121: '大通回族土族自治县',
+ 630122: '湟中县',
+ 630123: '湟源县',
+ 630202: '乐都区',
+ 630203: '平安区',
+ 630222: '民和回族土族自治县',
+ 630223: '互助土族自治县',
+ 630224: '化隆回族自治县',
+ 630225: '循化撒拉族自治县',
+ 632221: '门源回族自治县',
+ 632222: '祁连县',
+ 632223: '海晏县',
+ 632224: '刚察县',
+ 632321: '同仁县',
+ 632322: '尖扎县',
+ 632323: '泽库县',
+ 632324: '河南蒙古族自治县',
+ 632521: '共和县',
+ 632522: '同德县',
+ 632523: '贵德县',
+ 632524: '兴海县',
+ 632525: '贵南县',
+ 632621: '玛沁县',
+ 632622: '班玛县',
+ 632623: '甘德县',
+ 632624: '达日县',
+ 632625: '久治县',
+ 632626: '玛多县',
+ 632701: '玉树市',
+ 632722: '杂多县',
+ 632723: '称多县',
+ 632724: '治多县',
+ 632725: '囊谦县',
+ 632726: '曲麻莱县',
+ 632801: '格尔木市',
+ 632802: '德令哈市',
+ 632821: '乌兰县',
+ 632822: '都兰县',
+ 632823: '天峻县',
+ 640104: '兴庆区',
+ 640105: '西夏区',
+ 640106: '金凤区',
+ 640121: '永宁县',
+ 640122: '贺兰县',
+ 640181: '灵武市',
+ 640202: '大武口区',
+ 640205: '惠农区',
+ 640221: '平罗县',
+ 640302: '利通区',
+ 640303: '红寺堡区',
+ 640323: '盐池县',
+ 640324: '同心县',
+ 640381: '青铜峡市',
+ 640402: '原州区',
+ 640422: '西吉县',
+ 640423: '隆德县',
+ 640424: '泾源县',
+ 640425: '彭阳县',
+ 640502: '沙坡头区',
+ 640521: '中宁县',
+ 640522: '海原县',
+ 650102: '天山区',
+ 650103: '沙依巴克区',
+ 650104: '新市区',
+ 650105: '水磨沟区',
+ 650106: '头屯河区',
+ 650107: '达坂城区',
+ 650109: '米东区',
+ 650121: '乌鲁木齐县',
+ 650202: '独山子区',
+ 650203: '克拉玛依区',
+ 650204: '白碱滩区',
+ 650205: '乌尔禾区',
+ 650402: '高昌区',
+ 650421: '鄯善县',
+ 650422: '托克逊县',
+ 650502: '伊州区',
+ 650521: '巴里坤哈萨克自治县',
+ 650522: '伊吾县',
+ 652301: '昌吉市',
+ 652302: '阜康市',
+ 652323: '呼图壁县',
+ 652324: '玛纳斯县',
+ 652325: '奇台县',
+ 652327: '吉木萨尔县',
+ 652328: '木垒哈萨克自治县',
+ 652701: '博乐市',
+ 652702: '阿拉山口市',
+ 652722: '精河县',
+ 652723: '温泉县',
+ 652801: '库尔勒市',
+ 652822: '轮台县',
+ 652823: '尉犁县',
+ 652824: '若羌县',
+ 652825: '且末县',
+ 652826: '焉耆回族自治县',
+ 652827: '和静县',
+ 652828: '和硕县',
+ 652829: '博湖县',
+ 652901: '阿克苏市',
+ 652922: '温宿县',
+ 652923: '库车县',
+ 652924: '沙雅县',
+ 652925: '新和县',
+ 652926: '拜城县',
+ 652927: '乌什县',
+ 652928: '阿瓦提县',
+ 652929: '柯坪县',
+ 653001: '阿图什市',
+ 653022: '阿克陶县',
+ 653023: '阿合奇县',
+ 653024: '乌恰县',
+ 653101: '喀什市',
+ 653121: '疏附县',
+ 653122: '疏勒县',
+ 653123: '英吉沙县',
+ 653124: '泽普县',
+ 653125: '莎车县',
+ 653126: '叶城县',
+ 653127: '麦盖提县',
+ 653128: '岳普湖县',
+ 653129: '伽师县',
+ 653130: '巴楚县',
+ 653131: '塔什库尔干塔吉克自治县',
+ 653201: '和田市',
+ 653221: '和田县',
+ 653222: '墨玉县',
+ 653223: '皮山县',
+ 653224: '洛浦县',
+ 653225: '策勒县',
+ 653226: '于田县',
+ 653227: '民丰县',
+ 654002: '伊宁市',
+ 654003: '奎屯市',
+ 654004: '霍尔果斯市',
+ 654021: '伊宁县',
+ 654022: '察布查尔锡伯自治县',
+ 654023: '霍城县',
+ 654024: '巩留县',
+ 654025: '新源县',
+ 654026: '昭苏县',
+ 654027: '特克斯县',
+ 654028: '尼勒克县',
+ 654201: '塔城市',
+ 654202: '乌苏市',
+ 654221: '额敏县',
+ 654223: '沙湾县',
+ 654224: '托里县',
+ 654225: '裕民县',
+ 654226: '和布克赛尔蒙古自治县',
+ 654301: '阿勒泰市',
+ 654321: '布尔津县',
+ 654322: '富蕴县',
+ 654323: '福海县',
+ 654324: '哈巴河县',
+ 654325: '青河县',
+ 654326: '吉木乃县',
+ 659001: '石河子市',
+ 659002: '阿拉尔市',
+ 659003: '图木舒克市',
+ 659004: '五家渠市',
+ 659006: '铁门关市'
+ }
+};
+
+function getConfig(type) {
+ return (areaList && areaList[`${type}_list`]) || {};
+}
+
+function getList(type, code) {
+ let result = [];
+
+ if (type !== 'province' && !code) {
+ return result;
+ }
+
+ const list = getConfig(type);
+ result = Object.keys(list).map((code) => ({
+ code,
+ name: list[code]
+ }));
+
+ if (code) {
+ // oversea code
+ if (code[0] === '9' && type === 'city') {
+ code = '9';
+ }
+
+ result = result.filter((item) => item.code.indexOf(code) === 0);
+ }
+
+ return result;
+} // get index by code
+
+function getIndex(type, code) {
+ let compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6;
+ const list = getList(type, code.slice(0, compareNum - 2)); // oversea code
+
+ if (code[0] === '9' && type === 'province') {
+ compareNum = 1;
+ }
+
+ code = code.slice(0, compareNum);
+
+ for (let i = 0; i < list.length; i++) {
+ if (list[i].code.slice(0, compareNum) === code) {
+ return i;
+ }
+ }
+
+ return 0;
+} // 参考 https://github.com/youzan/vant-weapp/blob/dev/packages/area/index.ts
+// 定义数据出口
+
+module.exports = {
+ areaList: areaList,
+ getList: getList,
+ getIndex: getIndex
+};
diff --git a/litemall-wx_uni/utils/check.js b/litemall-wx_uni/utils/check.js
new file mode 100644
index 0000000000000000000000000000000000000000..004099c9eeb38ec609eb9506a4202dbce04320a0
--- /dev/null
+++ b/litemall-wx_uni/utils/check.js
@@ -0,0 +1,13 @@
+function isValidPhone(str) {
+ var myreg = /^[1][3,4,5,7,8][0-9]{9}$/;
+
+ if (!myreg.test(str)) {
+ return false;
+ } else {
+ return true;
+ }
+}
+
+module.exports = {
+ isValidPhone
+};
diff --git a/litemall-wx_uni/utils/user.js b/litemall-wx_uni/utils/user.js
new file mode 100644
index 0000000000000000000000000000000000000000..f26e5e31886c440e74c81db41894d041f59fab5e
--- /dev/null
+++ b/litemall-wx_uni/utils/user.js
@@ -0,0 +1,102 @@
+/**
+ * 用户相关服务
+ */
+const util = require('@/utils/util.js');
+
+const api = require('@/config/api.js');
+/**
+ * Promise封装wx.checkSession
+ */
+
+function checkSession() {
+ return new Promise(function (resolve, reject) {
+ uni.checkSession({
+ success: function () {
+ resolve(true);
+ },
+ fail: function () {
+ reject(false);
+ }
+ });
+ });
+}
+/**
+ * Promise封装wx.login
+ */
+
+function login() {
+ return new Promise(function (resolve, reject) {
+ uni.login({
+ success: function (res) {
+ if (res.code) {
+ resolve(res);
+ } else {
+ reject(res);
+ }
+ },
+ fail: function (err) {
+ reject(err);
+ }
+ });
+ });
+}
+/**
+ * 调用微信登录
+ */
+
+function loginByWeixin(userInfo) {
+ return new Promise(function (resolve, reject) {
+ return login()
+ .then((res) => {
+ //登录远程服务器
+ util.request(
+ api.AuthLoginByWeixin,
+ {
+ code: res.code,
+ userInfo: userInfo
+ },
+ 'POST'
+ )
+ .then((res) => {
+ if (res.errno === 0) {
+ //存储用户信息
+ uni.setStorageSync('userInfo', res.data.userInfo);
+ uni.setStorageSync('token', res.data.token);
+ resolve(res);
+ } else {
+ reject(res);
+ }
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ })
+ .catch((err) => {
+ reject(err);
+ });
+ });
+}
+/**
+ * 判断用户是否登录
+ */
+
+function checkLogin() {
+ return new Promise(function (resolve, reject) {
+ if (uni.getStorageSync('userInfo') && uni.getStorageSync('token')) {
+ checkSession()
+ .then(() => {
+ resolve(true);
+ })
+ .catch(() => {
+ reject(false);
+ });
+ } else {
+ reject(false);
+ }
+ });
+}
+
+module.exports = {
+ loginByWeixin,
+ checkLogin
+};
diff --git a/litemall-wx_uni/utils/util.js b/litemall-wx_uni/utils/util.js
new file mode 100644
index 0000000000000000000000000000000000000000..7905091c02195596c822c36906624a066ab95f00
--- /dev/null
+++ b/litemall-wx_uni/utils/util.js
@@ -0,0 +1,87 @@
+var api = require('@/config/api.js');
+
+var app = getApp();
+
+function formatTime(date) {
+ var year = date.getFullYear();
+ var month = date.getMonth() + 1;
+ var day = date.getDate();
+ var hour = date.getHours();
+ var minute = date.getMinutes();
+ var second = date.getSeconds();
+ return [year, month, day].map(formatNumber).join('-') + ' ' + [hour, minute, second].map(formatNumber).join(':');
+}
+
+function formatNumber(n) {
+ n = n.toString();
+ return n[1] ? n : '0' + n;
+}
+/**
+ * 封封微信的的request
+ */
+
+function request(url, data = {}, method = 'GET') {
+ return new Promise(function (resolve, reject) {
+ uni.request({
+ url: url,
+ data: data,
+ method: method,
+ header: {
+ 'Content-Type': 'application/json',
+ 'X-Litemall-Token': uni.getStorageSync('token')
+ },
+ success: function (res) {
+ if (res.statusCode == 200) {
+ if (res.data.errno == 501) {
+ // 清除登录相关内容
+ try {
+ uni.removeStorageSync('userInfo');
+ uni.removeStorageSync('token');
+ } catch (e) {
+ // Do something when catch error
+ } // 切换到登录页面
+
+ uni.navigateTo({
+ url: '/pages/auth/login/login'
+ });
+ } else {
+ resolve(res.data);
+ }
+ } else {
+ reject(res.errMsg);
+ }
+ },
+ fail: function (err) {
+ reject(err);
+ }
+ });
+ });
+}
+
+function redirect(url) {
+ //判断页面是否需要登录
+ if (false) {
+ uni.redirectTo({
+ url: '/pages/auth/login/login'
+ });
+ return false;
+ } else {
+ uni.redirectTo({
+ url: url
+ });
+ }
+}
+
+function showErrorToast(msg) {
+ uni.showToast({
+ title: msg,
+ image: '/static/images/icon_error.png'
+ });
+}
+
+module.exports = {
+ formatTime,
+ request,
+ redirect,
+ showErrorToast
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..58e866d9588843db4c961c8ca4112b8da7124a14
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.js
@@ -0,0 +1,70 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+VantComponent({
+ mixins: [button],
+ props: {
+ show: Boolean,
+ title: String,
+ cancelText: String,
+ description: String,
+ round: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ actions: {
+ type: Array,
+ value: [],
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickAction: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ onSelect(event) {
+ const { index } = event.currentTarget.dataset;
+ const { actions, closeOnClickAction, canIUseGetUserProfile } = this.data;
+ const item = actions[index];
+ if (item) {
+ this.$emit('select', item);
+ if (closeOnClickAction) {
+ this.onClose();
+ }
+ if (item.openType === 'getUserInfo' && canIUseGetUserProfile) {
+ wx.getUserProfile({
+ desc: item.getUserProfileDesc || ' ',
+ complete: (userProfile) => {
+ this.$emit('getuserinfo', userProfile);
+ },
+ });
+ }
+ }
+ },
+ onCancel() {
+ this.$emit('cancel');
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ onClickOverlay() {
+ this.$emit('click-overlay');
+ this.onClose();
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..19bf98915f6b60674e153fca262fc9e6dd595ea1
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.json
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-popup": "../popup/index",
+ "van-loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..25f15aa746278a369d42f5c8e86ecb849fae8526
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.vue
@@ -0,0 +1,111 @@
+
+
+
+ {{ title }}
+
+
+
+ {{ description }}
+
+
+
+
+
+
+
+
+
+ {{ cancelText }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..b04cc3a3dc36fcf8f7521be7b84ee7cc2aca70cb
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.wxml
@@ -0,0 +1,69 @@
+
+
+
+
+ {{ title }}
+
+
+
+ {{ description }}
+
+
+
+
+
+
+
+
+
+ {{ cancelText }}
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..eedd361b0d219dfb80f6dda0658baf34a40de83b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/action-sheet/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-action-sheet{color:var(--action-sheet-item-text-color,#323233);max-height:var(--action-sheet-max-height,90%)!important}.van-action-sheet__cancel,.van-action-sheet__item{background-color:var(--action-sheet-item-background,#fff);font-size:var(--action-sheet-item-font-size,16px);line-height:var(--action-sheet-item-line-height,22px);padding:14px 16px;text-align:center}.van-action-sheet__cancel--hover,.van-action-sheet__item--hover{background-color:#f2f3f5}.van-action-sheet__cancel:after,.van-action-sheet__item:after{border-width:0}.van-action-sheet__cancel{color:var(--action-sheet-cancel-text-color,#646566)}.van-action-sheet__gap{background-color:var(--action-sheet-cancel-padding-color,#f7f8fa);display:block;height:var(--action-sheet-cancel-padding-top,8px)}.van-action-sheet__item--disabled{color:var(--action-sheet-item-disabled-text-color,#c8c9cc)}.van-action-sheet__item--disabled.van-action-sheet__item--hover{background-color:var(--action-sheet-item-background,#fff)}.van-action-sheet__subname{color:var(--action-sheet-subname-color,#969799);font-size:var(--action-sheet-subname-font-size,12px);line-height:var(--action-sheet-subname-line-height,20px);margin-top:var(--padding-xs,8px)}.van-action-sheet__header{font-size:var(--action-sheet-header-font-size,16px);font-weight:var(--font-weight-bold,500);line-height:var(--action-sheet-header-height,48px);text-align:center}.van-action-sheet__description{color:var(--action-sheet-description-color,#969799);font-size:var(--action-sheet-description-font-size,14px);line-height:var(--action-sheet-description-line-height,20px);padding:20px var(--padding-md,16px);text-align:center}.van-action-sheet__close{color:var(--action-sheet-close-icon-color,#c8c9cc);font-size:var(--action-sheet-close-icon-size,22px)!important;line-height:inherit!important;padding:var(--action-sheet-close-icon-padding,0 16px);position:absolute!important;right:0;top:0}.van-action-sheet__loading{display:flex!important}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/area/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/area/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..2a7c79b1722a309955eb59459196b511c6ae316b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.js
@@ -0,0 +1,217 @@
+import { VantComponent } from '../common/component';
+import { pickerProps } from '../picker/shared';
+import { requestAnimationFrame } from '../common/utils';
+const EMPTY_CODE = '000000';
+VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: Object.assign(Object.assign({}, pickerProps), { value: {
+ type: String,
+ observer(value) {
+ this.code = value;
+ this.setValues();
+ },
+ }, areaList: {
+ type: Object,
+ value: {},
+ observer: 'setValues',
+ }, columnsNum: {
+ type: null,
+ value: 3,
+ }, columnsPlaceholder: {
+ type: Array,
+ observer(val) {
+ this.setData({
+ typeToColumnsPlaceholder: {
+ province: val[0] || '',
+ city: val[1] || '',
+ county: val[2] || '',
+ },
+ });
+ },
+ } }),
+ data: {
+ columns: [{ values: [] }, { values: [] }, { values: [] }],
+ typeToColumnsPlaceholder: {},
+ },
+ mounted() {
+ requestAnimationFrame(() => {
+ this.setValues();
+ });
+ },
+ methods: {
+ getPicker() {
+ if (this.picker == null) {
+ this.picker = this.selectComponent('.van-area__picker');
+ }
+ return this.picker;
+ },
+ onCancel(event) {
+ this.emit('cancel', event.detail);
+ },
+ onConfirm(event) {
+ const { index } = event.detail;
+ let { value } = event.detail;
+ value = this.parseValues(value);
+ this.emit('confirm', { value, index });
+ },
+ emit(type, detail) {
+ detail.values = detail.value;
+ delete detail.value;
+ this.$emit(type, detail);
+ },
+ parseValues(values) {
+ const { columnsPlaceholder } = this.data;
+ return values.map((value, index) => {
+ if (value &&
+ (!value.code || value.name === columnsPlaceholder[index])) {
+ return Object.assign(Object.assign({}, value), { code: '', name: '' });
+ }
+ return value;
+ });
+ },
+ onChange(event) {
+ var _a;
+ const { index, picker, value } = event.detail;
+ this.code = value[index].code;
+ (_a = this.setValues()) === null || _a === void 0 ? void 0 : _a.then(() => {
+ this.$emit('change', {
+ picker,
+ values: this.parseValues(picker.getValues()),
+ index,
+ });
+ });
+ },
+ getConfig(type) {
+ const { areaList } = this.data;
+ return (areaList && areaList[`${type}_list`]) || {};
+ },
+ getList(type, code) {
+ if (type !== 'province' && !code) {
+ return [];
+ }
+ const { typeToColumnsPlaceholder } = this.data;
+ const list = this.getConfig(type);
+ let result = Object.keys(list).map((code) => ({
+ code,
+ name: list[code],
+ }));
+ if (code != null) {
+ // oversea code
+ if (code[0] === '9' && type === 'city') {
+ code = '9';
+ }
+ result = result.filter((item) => item.code.indexOf(code) === 0);
+ }
+ if (typeToColumnsPlaceholder[type] && result.length) {
+ // set columns placeholder
+ const codeFill = type === 'province'
+ ? ''
+ : type === 'city'
+ ? EMPTY_CODE.slice(2, 4)
+ : EMPTY_CODE.slice(4, 6);
+ result.unshift({
+ code: `${code}${codeFill}`,
+ name: typeToColumnsPlaceholder[type],
+ });
+ }
+ return result;
+ },
+ getIndex(type, code) {
+ let compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6;
+ const list = this.getList(type, code.slice(0, compareNum - 2));
+ // oversea code
+ if (code[0] === '9' && type === 'province') {
+ compareNum = 1;
+ }
+ code = code.slice(0, compareNum);
+ for (let i = 0; i < list.length; i++) {
+ if (list[i].code.slice(0, compareNum) === code) {
+ return i;
+ }
+ }
+ return 0;
+ },
+ setValues() {
+ const picker = this.getPicker();
+ if (!picker) {
+ return;
+ }
+ let code = this.code || this.getDefaultCode();
+ const provinceList = this.getList('province');
+ const cityList = this.getList('city', code.slice(0, 2));
+ const stack = [];
+ const indexes = [];
+ const { columnsNum } = this.data;
+ if (columnsNum >= 1) {
+ stack.push(picker.setColumnValues(0, provinceList, false));
+ indexes.push(this.getIndex('province', code));
+ }
+ if (columnsNum >= 2) {
+ stack.push(picker.setColumnValues(1, cityList, false));
+ indexes.push(this.getIndex('city', code));
+ if (cityList.length && code.slice(2, 4) === '00') {
+ [{ code }] = cityList;
+ }
+ }
+ if (columnsNum === 3) {
+ stack.push(picker.setColumnValues(2, this.getList('county', code.slice(0, 4)), false));
+ indexes.push(this.getIndex('county', code));
+ }
+ return Promise.all(stack)
+ .catch(() => { })
+ .then(() => picker.setIndexes(indexes))
+ .catch(() => { });
+ },
+ getDefaultCode() {
+ const { columnsPlaceholder } = this.data;
+ if (columnsPlaceholder.length) {
+ return EMPTY_CODE;
+ }
+ const countyCodes = Object.keys(this.getConfig('county'));
+ if (countyCodes[0]) {
+ return countyCodes[0];
+ }
+ const cityCodes = Object.keys(this.getConfig('city'));
+ if (cityCodes[0]) {
+ return cityCodes[0];
+ }
+ return '';
+ },
+ getValues() {
+ const picker = this.getPicker();
+ if (!picker) {
+ return [];
+ }
+ return this.parseValues(picker.getValues().filter((value) => !!value));
+ },
+ getDetail() {
+ const values = this.getValues();
+ const area = {
+ code: '',
+ country: '',
+ province: '',
+ city: '',
+ county: '',
+ };
+ if (!values.length) {
+ return area;
+ }
+ const names = values.map((item) => item.name);
+ area.code = values[values.length - 1].code;
+ if (area.code[0] === '9') {
+ area.country = names[1] || '';
+ area.province = names[2] || '';
+ }
+ else {
+ area.province = names[0] || '';
+ area.city = names[1] || '';
+ area.county = names[2] || '';
+ }
+ return area;
+ },
+ reset(code) {
+ this.code = code || '';
+ return this.setValues();
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/area/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..a778e91cce16edbb1fd2af764415c4f8d2f0a0ea
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-picker": "../picker/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/area/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..8f9e114d26d8d2df6c1c487ece6fd20f3e51bc31
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.vue
@@ -0,0 +1,231 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/area/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f7dc51f53e9dc7fd462c4b314068ee160331ebce
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.wxml
@@ -0,0 +1,20 @@
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/area/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..07723c11af98212d0c454d9fbacabe9e6963e838
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.wxs
@@ -0,0 +1,8 @@
+/* eslint-disable */
+function displayColumns(columns, columnsNum) {
+ return columns.slice(0, +columnsNum);
+}
+
+module.exports = {
+ displayColumns: displayColumns,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/area/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..99694d603361421fe8f1acfc76a09eae443cb3aa
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/area/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/button/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/button/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..0e3c134e662096b5aad37ccc02aa9986bfce388f
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.js
@@ -0,0 +1,64 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { canIUseFormFieldButton } from '../common/version';
+const mixins = [button];
+if (canIUseFormFieldButton()) {
+ mixins.push('wx://form-field-button');
+}
+VantComponent({
+ mixins,
+ classes: ['hover-class', 'loading-class'],
+ data: {
+ baseStyle: '',
+ },
+ props: {
+ formType: String,
+ icon: String,
+ classPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ plain: Boolean,
+ block: Boolean,
+ round: Boolean,
+ square: Boolean,
+ loading: Boolean,
+ hairline: Boolean,
+ disabled: Boolean,
+ loadingText: String,
+ customStyle: String,
+ loadingType: {
+ type: String,
+ value: 'circular',
+ },
+ type: {
+ type: String,
+ value: 'default',
+ },
+ dataset: null,
+ size: {
+ type: String,
+ value: 'normal',
+ },
+ loadingSize: {
+ type: String,
+ value: '20px',
+ },
+ color: String,
+ },
+ methods: {
+ onClick(event) {
+ this.$emit('click', event);
+ const { canIUseGetUserProfile, openType, getUserProfileDesc, lang, } = this.data;
+ if (openType === 'getUserInfo' && canIUseGetUserProfile) {
+ wx.getUserProfile({
+ desc: getUserProfileDesc || ' ',
+ lang: lang || 'en',
+ complete: (userProfile) => {
+ this.$emit('getuserinfo', userProfile);
+ },
+ });
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/button/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..e00a588702da8887bbe5f8261aea5764251d14ff
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/button/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..2a73e66f1e5f7e6196f131221a950b1394201560
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.vue
@@ -0,0 +1,92 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/button/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..80348459c7719aa56f1a086cd62fe050edc2f0a3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.wxml
@@ -0,0 +1,53 @@
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/button/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..8b649fe18d9444424b6b4c87737790d5bdd0b800
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.wxs
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ if (!data.color) {
+ return data.customStyle;
+ }
+
+ var properties = {
+ color: data.plain ? data.color : '#fff',
+ background: data.plain ? null : data.color,
+ };
+
+ // hide border when color is linear-gradient
+ if (data.color.indexOf('gradient') !== -1) {
+ properties.border = 0;
+ } else {
+ properties['border-color'] = data.color;
+ }
+
+ return style([properties, data.customStyle]);
+}
+
+function loadingColor(data) {
+ if (data.plain) {
+ return data.color ? data.color : '#c9c9c9';
+ }
+
+ if (data.type === 'default') {
+ return '#c9c9c9';
+ }
+
+ return '#fff';
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ loadingColor: loadingColor,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/button/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..bd8bb5af1975c91fae9992811e7b4fe47b790495
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/button/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-button{-webkit-text-size-adjust:100%;align-items:center;-webkit-appearance:none;border-radius:var(--button-border-radius,2px);box-sizing:border-box;display:inline-flex;font-size:var(--button-default-font-size,16px);height:var(--button-default-height,44px);justify-content:center;line-height:var(--button-line-height,20px);padding:0;position:relative;text-align:center;transition:opacity .2s;vertical-align:middle}.van-button:before{background-color:#000;border:inherit;border-color:#000;border-radius:inherit;content:" ";height:100%;left:50%;opacity:0;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%}.van-button:after{border-width:0}.van-button--active:before{opacity:.15}.van-button--unclickable:after{display:none}.van-button--default{background:var(--button-default-background-color,#fff);border:var(--button-border-width,1px) solid var(--button-default-border-color,#ebedf0);color:var(--button-default-color,#323233)}.van-button--primary{background:var(--button-primary-background-color,#07c160);border:var(--button-border-width,1px) solid var(--button-primary-border-color,#07c160);color:var(--button-primary-color,#fff)}.van-button--info{background:var(--button-info-background-color,#1989fa);border:var(--button-border-width,1px) solid var(--button-info-border-color,#1989fa);color:var(--button-info-color,#fff)}.van-button--danger{background:var(--button-danger-background-color,#ee0a24);border:var(--button-border-width,1px) solid var(--button-danger-border-color,#ee0a24);color:var(--button-danger-color,#fff)}.van-button--warning{background:var(--button-warning-background-color,#ff976a);border:var(--button-border-width,1px) solid var(--button-warning-border-color,#ff976a);color:var(--button-warning-color,#fff)}.van-button--plain{background:var(--button-plain-background-color,#fff)}.van-button--plain.van-button--primary{color:var(--button-primary-background-color,#07c160)}.van-button--plain.van-button--info{color:var(--button-info-background-color,#1989fa)}.van-button--plain.van-button--danger{color:var(--button-danger-background-color,#ee0a24)}.van-button--plain.van-button--warning{color:var(--button-warning-background-color,#ff976a)}.van-button--large{height:var(--button-large-height,50px);width:100%}.van-button--normal{font-size:var(--button-normal-font-size,14px);padding:0 15px}.van-button--small{font-size:var(--button-small-font-size,12px);height:var(--button-small-height,30px);min-width:var(--button-small-min-width,60px);padding:0 var(--padding-xs,8px)}.van-button--mini{display:inline-block;font-size:var(--button-mini-font-size,10px);height:var(--button-mini-height,22px);min-width:var(--button-mini-min-width,50px)}.van-button--mini+.van-button--mini{margin-left:5px}.van-button--block{display:flex;width:100%}.van-button--round{border-radius:var(--button-round-border-radius,999px)}.van-button--square{border-radius:0}.van-button--disabled{opacity:var(--button-disabled-opacity,.5)}.van-button__text{display:inline}.van-button__icon+.van-button__text:not(:empty),.van-button__loading-text{margin-left:4px}.van-button__icon{line-height:inherit!important;min-width:1em;vertical-align:top}.van-button--hairline{border-width:0;padding-top:1px}.van-button--hairline:after{border-color:inherit;border-radius:calc(var(--button-border-radius, 2px)*2);border-width:1px}.van-button--hairline.van-button--round:after{border-radius:var(--button-round-border-radius,999px)}.van-button--hairline.van-button--square:after{border-radius:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/calendar.vue b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/calendar.vue
new file mode 100644
index 0000000000000000000000000000000000000000..458f35f4a29c9c204c8737648d7768e3683f6095
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/calendar.vue
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{
+ computed.getButtonDisabled(type, currentDate)
+ ? confirmDisabledText
+ : confirmText
+ }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/calendar.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/calendar.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..808f739ef23e8f74c4b86eff510222b1c354fc5b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/calendar.wxml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{
+ computed.getButtonDisabled(type, currentDate)
+ ? confirmDisabledText
+ : confirmText
+ }}
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..8fb3682d36afd4b63a30d29719e19522441a05e7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.js
@@ -0,0 +1,37 @@
+import { VantComponent } from '../../../common/component';
+VantComponent({
+ props: {
+ title: {
+ type: String,
+ value: '日期选择',
+ },
+ subtitle: String,
+ showTitle: Boolean,
+ showSubtitle: Boolean,
+ firstDayOfWeek: {
+ type: Number,
+ observer: 'initWeekDay',
+ },
+ },
+ data: {
+ weekdays: [],
+ },
+ created() {
+ this.initWeekDay();
+ },
+ methods: {
+ initWeekDay() {
+ const defaultWeeks = ['日', '一', '二', '三', '四', '五', '六'];
+ const firstDayOfWeek = this.data.firstDayOfWeek || 0;
+ this.setData({
+ weekdays: [
+ ...defaultWeeks.slice(firstDayOfWeek, 7),
+ ...defaultWeeks.slice(0, firstDayOfWeek),
+ ],
+ });
+ },
+ onClickSubtitle(event) {
+ this.$emit('click-subtitle', event);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..8d98f95ac58bb4918a176512f1996798caa39994
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.vue
@@ -0,0 +1,64 @@
+
+
+
+
+ {{ title }}
+
+
+
+ {{ subtitle }}
+
+
+
+
+ {{ item }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..7e56c83e1d880957f007b5bde1e4677fa42fdbeb
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.wxml
@@ -0,0 +1,16 @@
+
+
+
+ {{ title }}
+
+
+
+ {{ subtitle }}
+
+
+
+
+ {{ item }}
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..272537efc4cc1767b455b8d592596707c6b887a5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/header/index.wxss
@@ -0,0 +1 @@
+@import '../../../common/index.wxss';.van-calendar__header{box-shadow:var(--calendar-header-box-shadow,0 2px 10px hsla(220,1%,50%,.16));flex-shrink:0}.van-calendar__header-subtitle,.van-calendar__header-title{font-weight:var(--font-weight-bold,500);height:var(--calendar-header-title-height,44px);line-height:var(--calendar-header-title-height,44px);text-align:center}.van-calendar__header-title+.van-calendar__header-title,.van-calendar__header-title:empty{display:none}.van-calendar__header-title:empty+.van-calendar__header-title{display:block!important}.van-calendar__weekdays{display:flex}.van-calendar__weekday{flex:1;font-size:var(--calendar-weekdays-font-size,12px);line-height:var(--calendar-weekdays-height,30px);text-align:center}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..3ccf85a6761697f3ad570029fb5783e829a02ae3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.d.ts
@@ -0,0 +1,6 @@
+export interface Day {
+ date: Date;
+ type: string;
+ text: number;
+ bottomInfo?: string;
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..d04c0fe282f19af6584ebcd29d946886d69e8664
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.js
@@ -0,0 +1,154 @@
+import { VantComponent } from '../../../common/component';
+import { getMonthEndDay, compareDay, getPrevDay, getNextDay, } from '../../utils';
+VantComponent({
+ props: {
+ date: {
+ type: null,
+ observer: 'setDays',
+ },
+ type: {
+ type: String,
+ observer: 'setDays',
+ },
+ color: String,
+ minDate: {
+ type: null,
+ observer: 'setDays',
+ },
+ maxDate: {
+ type: null,
+ observer: 'setDays',
+ },
+ showMark: Boolean,
+ rowHeight: null,
+ formatter: {
+ type: null,
+ observer: 'setDays',
+ },
+ currentDate: {
+ type: null,
+ observer: 'setDays',
+ },
+ firstDayOfWeek: {
+ type: Number,
+ observer: 'setDays',
+ },
+ allowSameDay: Boolean,
+ showSubtitle: Boolean,
+ showMonthTitle: Boolean,
+ },
+ data: {
+ visible: true,
+ days: [],
+ },
+ methods: {
+ onClick(event) {
+ const { index } = event.currentTarget.dataset;
+ const item = this.data.days[index];
+ if (item.type !== 'disabled') {
+ this.$emit('click', item);
+ }
+ },
+ setDays() {
+ const days = [];
+ const startDate = new Date(this.data.date);
+ const year = startDate.getFullYear();
+ const month = startDate.getMonth();
+ const totalDay = getMonthEndDay(startDate.getFullYear(), startDate.getMonth() + 1);
+ for (let day = 1; day <= totalDay; day++) {
+ const date = new Date(year, month, day);
+ const type = this.getDayType(date);
+ let config = {
+ date,
+ type,
+ text: day,
+ bottomInfo: this.getBottomInfo(type),
+ };
+ if (this.data.formatter) {
+ config = this.data.formatter(config);
+ }
+ days.push(config);
+ }
+ this.setData({ days });
+ },
+ getMultipleDayType(day) {
+ const { currentDate } = this.data;
+ if (!Array.isArray(currentDate)) {
+ return '';
+ }
+ const isSelected = (date) => currentDate.some((item) => compareDay(item, date) === 0);
+ if (isSelected(day)) {
+ const prevDay = getPrevDay(day);
+ const nextDay = getNextDay(day);
+ const prevSelected = isSelected(prevDay);
+ const nextSelected = isSelected(nextDay);
+ if (prevSelected && nextSelected) {
+ return 'multiple-middle';
+ }
+ if (prevSelected) {
+ return 'end';
+ }
+ return nextSelected ? 'start' : 'multiple-selected';
+ }
+ return '';
+ },
+ getRangeDayType(day) {
+ const { currentDate, allowSameDay } = this.data;
+ if (!Array.isArray(currentDate)) {
+ return '';
+ }
+ const [startDay, endDay] = currentDate;
+ if (!startDay) {
+ return '';
+ }
+ const compareToStart = compareDay(day, startDay);
+ if (!endDay) {
+ return compareToStart === 0 ? 'start' : '';
+ }
+ const compareToEnd = compareDay(day, endDay);
+ if (compareToStart === 0 && compareToEnd === 0 && allowSameDay) {
+ return 'start-end';
+ }
+ if (compareToStart === 0) {
+ return 'start';
+ }
+ if (compareToEnd === 0) {
+ return 'end';
+ }
+ if (compareToStart > 0 && compareToEnd < 0) {
+ return 'middle';
+ }
+ return '';
+ },
+ getDayType(day) {
+ const { type, minDate, maxDate, currentDate } = this.data;
+ if (compareDay(day, minDate) < 0 || compareDay(day, maxDate) > 0) {
+ return 'disabled';
+ }
+ if (type === 'single') {
+ return compareDay(day, currentDate) === 0 ? 'selected' : '';
+ }
+ if (type === 'multiple') {
+ return this.getMultipleDayType(day);
+ }
+ /* istanbul ignore else */
+ if (type === 'range') {
+ return this.getRangeDayType(day);
+ }
+ return '';
+ },
+ getBottomInfo(type) {
+ if (this.data.type === 'range') {
+ if (type === 'start') {
+ return '开始';
+ }
+ if (type === 'end') {
+ return '结束';
+ }
+ if (type === 'start-end') {
+ return '开始/结束';
+ }
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..2666da58e18dbb6c45d6a0ca2a134a3700109a82
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.vue
@@ -0,0 +1,194 @@
+
+
+
+ {{ computed.formatMonthTitle(date) }}
+
+
+
+
+ {{ computed.getMark(date) }}
+
+
+
+
+ {{ item.topInfo }}
+ {{ item.text }}
+
+ {{ item.bottomInfo }}
+
+
+
+
+ {{ item.topInfo }}
+ {{ item.text }}
+
+ {{ item.bottomInfo }}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..4a2c47c9eceebdb51a1feafb82081dcee9bb9971
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.wxml
@@ -0,0 +1,39 @@
+
+
+
+
+
+ {{ computed.formatMonthTitle(date) }}
+
+
+
+
+ {{ computed.getMark(date) }}
+
+
+
+
+ {{ item.topInfo }}
+ {{ item.text }}
+
+ {{ item.bottomInfo }}
+
+
+
+
+ {{ item.topInfo }}
+ {{ item.text }}
+
+ {{ item.bottomInfo }}
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..55e45a5720ef50bd9b29c7a270f53d7b5ecaf9e3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.wxs
@@ -0,0 +1,71 @@
+/* eslint-disable */
+var utils = require('../../utils.wxs');
+
+function getMark(date) {
+ return getDate(date).getMonth() + 1;
+}
+
+var ROW_HEIGHT = 64;
+
+function getDayStyle(type, index, date, rowHeight, color, firstDayOfWeek) {
+ var style = [];
+ var current = getDate(date).getDay() || 7;
+ var offset = current < firstDayOfWeek ? (7 - firstDayOfWeek + current) :
+ current === 7 && firstDayOfWeek === 0 ? 0 :
+ (current - firstDayOfWeek);
+
+ if (index === 0) {
+ style.push(['margin-left', (100 * offset) / 7 + '%']);
+ }
+
+ if (rowHeight !== ROW_HEIGHT) {
+ style.push(['height', rowHeight + 'px']);
+ }
+
+ if (color) {
+ if (
+ type === 'start' ||
+ type === 'end' ||
+ type === 'start-end' ||
+ type === 'multiple-selected' ||
+ type === 'multiple-middle'
+ ) {
+ style.push(['background', color]);
+ } else if (type === 'middle') {
+ style.push(['color', color]);
+ }
+ }
+
+ return style
+ .map(function(item) {
+ return item.join(':');
+ })
+ .join(';');
+}
+
+function formatMonthTitle(date) {
+ date = getDate(date);
+ return date.getFullYear() + '年' + (date.getMonth() + 1) + '月';
+}
+
+function getMonthStyle(visible, date, rowHeight) {
+ if (!visible) {
+ date = getDate(date);
+
+ var totalDay = utils.getMonthEndDay(
+ date.getFullYear(),
+ date.getMonth() + 1
+ );
+ var offset = getDate(date).getDay();
+ var padding = Math.ceil((totalDay + offset) / 7) * rowHeight;
+
+ return 'padding-bottom:' + padding + 'px';
+ }
+}
+
+module.exports = {
+ getMark: getMark,
+ getDayStyle: getDayStyle,
+ formatMonthTitle: formatMonthTitle,
+ getMonthStyle: getMonthStyle
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..9aee73d814173862ed8d3b5d1e1e9307df4ab5cf
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/components/month/index.wxss
@@ -0,0 +1 @@
+@import '../../../common/index.wxss';.van-calendar{background-color:var(--calendar-background-color,#fff);display:flex;flex-direction:column;height:100%}.van-calendar__month-title{font-size:var(--calendar-month-title-font-size,14px);font-weight:var(--font-weight-bold,500);height:var(--calendar-header-title-height,44px);line-height:var(--calendar-header-title-height,44px);text-align:center}.van-calendar__days{display:flex;flex-wrap:wrap;position:relative;-webkit-user-select:none;user-select:none}.van-calendar__month-mark{color:var(--calendar-month-mark-color,rgba(242,243,245,.8));font-size:var(--calendar-month-mark-font-size,160px);left:50%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:0}.van-calendar__day,.van-calendar__selected-day{align-items:center;display:flex;justify-content:center;text-align:center}.van-calendar__day{font-size:var(--calendar-day-font-size,16px);height:var(--calendar-day-height,64px);position:relative;width:14.285%}.van-calendar__day--end,.van-calendar__day--multiple-middle,.van-calendar__day--multiple-selected,.van-calendar__day--start,.van-calendar__day--start-end{background-color:var(--calendar-range-edge-background-color,#ee0a24);color:var(--calendar-range-edge-color,#fff)}.van-calendar__day--start{border-radius:4px 0 0 4px}.van-calendar__day--end{border-radius:0 4px 4px 0}.van-calendar__day--multiple-selected,.van-calendar__day--start-end{border-radius:4px}.van-calendar__day--middle{color:var(--calendar-range-middle-color,#ee0a24)}.van-calendar__day--middle:after{background-color:currentColor;bottom:0;content:"";left:0;opacity:var(--calendar-range-middle-background-opacity,.1);position:absolute;right:0;top:0}.van-calendar__day--disabled{color:var(--calendar-day-disabled-color,#c8c9cc);cursor:default}.van-calendar__bottom-info,.van-calendar__top-info{font-size:var(--calendar-info-font-size,10px);left:0;line-height:var(--calendar-info-line-height,14px);position:absolute;right:0}@media (max-width:350px){.van-calendar__bottom-info,.van-calendar__top-info{font-size:9px}}.van-calendar__top-info{top:6px}.van-calendar__bottom-info{bottom:6px}.van-calendar__selected-day{background-color:var(--calendar-selected-day-background-color,#ee0a24);border-radius:4px;color:var(--calendar-selected-day-color,#fff);height:var(--calendar-selected-day-size,54px);width:var(--calendar-selected-day-size,54px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..3b7b45400621edad7b56390ce90abf0c34a32938
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.js
@@ -0,0 +1,337 @@
+import { VantComponent } from '../common/component';
+import { ROW_HEIGHT, getPrevDay, getNextDay, getToday, compareDay, copyDates, calcDateNum, formatMonthTitle, compareMonth, getMonths, getDayByOffset, } from './utils';
+import Toast from '../toast/toast';
+import { requestAnimationFrame } from '../common/utils';
+const initialMinDate = getToday().getTime();
+const initialMaxDate = (() => {
+ const now = getToday();
+ return new Date(now.getFullYear(), now.getMonth() + 6, now.getDate()).getTime();
+})();
+const getTime = (date) => date instanceof Date ? date.getTime() : date;
+VantComponent({
+ props: {
+ title: {
+ type: String,
+ value: '日期选择',
+ },
+ color: String,
+ show: {
+ type: Boolean,
+ observer(val) {
+ if (val) {
+ this.initRect();
+ this.scrollIntoView();
+ }
+ },
+ },
+ formatter: null,
+ confirmText: {
+ type: String,
+ value: '确定',
+ },
+ confirmDisabledText: {
+ type: String,
+ value: '确定',
+ },
+ rangePrompt: String,
+ showRangePrompt: {
+ type: Boolean,
+ value: true,
+ },
+ defaultDate: {
+ type: null,
+ observer(val) {
+ this.setData({ currentDate: val });
+ this.scrollIntoView();
+ },
+ },
+ allowSameDay: Boolean,
+ type: {
+ type: String,
+ value: 'single',
+ observer: 'reset',
+ },
+ minDate: {
+ type: Number,
+ value: initialMinDate,
+ },
+ maxDate: {
+ type: Number,
+ value: initialMaxDate,
+ },
+ position: {
+ type: String,
+ value: 'bottom',
+ },
+ rowHeight: {
+ type: null,
+ value: ROW_HEIGHT,
+ },
+ round: {
+ type: Boolean,
+ value: true,
+ },
+ poppable: {
+ type: Boolean,
+ value: true,
+ },
+ showMark: {
+ type: Boolean,
+ value: true,
+ },
+ showTitle: {
+ type: Boolean,
+ value: true,
+ },
+ showConfirm: {
+ type: Boolean,
+ value: true,
+ },
+ showSubtitle: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ maxRange: {
+ type: null,
+ value: null,
+ },
+ firstDayOfWeek: {
+ type: Number,
+ value: 0,
+ },
+ readonly: Boolean,
+ },
+ data: {
+ subtitle: '',
+ currentDate: null,
+ scrollIntoView: '',
+ },
+ created() {
+ this.setData({
+ currentDate: this.getInitialDate(this.data.defaultDate),
+ });
+ },
+ mounted() {
+ if (this.data.show || !this.data.poppable) {
+ this.initRect();
+ this.scrollIntoView();
+ }
+ },
+ methods: {
+ reset() {
+ this.setData({ currentDate: this.getInitialDate() });
+ this.scrollIntoView();
+ },
+ initRect() {
+ if (this.contentObserver != null) {
+ this.contentObserver.disconnect();
+ }
+ const contentObserver = this.createIntersectionObserver({
+ thresholds: [0, 0.1, 0.9, 1],
+ observeAll: true,
+ });
+ this.contentObserver = contentObserver;
+ contentObserver.relativeTo('.van-calendar__body');
+ contentObserver.observe('.month', (res) => {
+ if (res.boundingClientRect.top <= res.relativeRect.top) {
+ // @ts-ignore
+ this.setData({ subtitle: formatMonthTitle(res.dataset.date) });
+ }
+ });
+ },
+ limitDateRange(date, minDate = null, maxDate = null) {
+ minDate = minDate || this.data.minDate;
+ maxDate = maxDate || this.data.maxDate;
+ if (compareDay(date, minDate) === -1) {
+ return minDate;
+ }
+ if (compareDay(date, maxDate) === 1) {
+ return maxDate;
+ }
+ return date;
+ },
+ getInitialDate(defaultDate = null) {
+ const { type, minDate, maxDate } = this.data;
+ const now = getToday().getTime();
+ if (type === 'range') {
+ if (!Array.isArray(defaultDate)) {
+ defaultDate = [];
+ }
+ const [startDay, endDay] = defaultDate || [];
+ const start = this.limitDateRange(startDay || now, minDate, getPrevDay(new Date(maxDate)).getTime());
+ const end = this.limitDateRange(endDay || now, getNextDay(new Date(minDate)).getTime());
+ return [start, end];
+ }
+ if (type === 'multiple') {
+ if (Array.isArray(defaultDate)) {
+ return defaultDate.map((date) => this.limitDateRange(date));
+ }
+ return [this.limitDateRange(now)];
+ }
+ if (!defaultDate || Array.isArray(defaultDate)) {
+ defaultDate = now;
+ }
+ return this.limitDateRange(defaultDate);
+ },
+ scrollIntoView() {
+ requestAnimationFrame(() => {
+ const { currentDate, type, show, poppable, minDate, maxDate } = this.data;
+ // @ts-ignore
+ const targetDate = type === 'single' ? currentDate : currentDate[0];
+ const displayed = show || !poppable;
+ if (!targetDate || !displayed) {
+ return;
+ }
+ const months = getMonths(minDate, maxDate);
+ months.some((month, index) => {
+ if (compareMonth(month, targetDate) === 0) {
+ this.setData({ scrollIntoView: `month${index}` });
+ return true;
+ }
+ return false;
+ });
+ });
+ },
+ onOpen() {
+ this.$emit('open');
+ },
+ onOpened() {
+ this.$emit('opened');
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ onClosed() {
+ this.$emit('closed');
+ },
+ onClickDay(event) {
+ if (this.data.readonly) {
+ return;
+ }
+ let { date } = event.detail;
+ const { type, currentDate, allowSameDay } = this.data;
+ if (type === 'range') {
+ // @ts-ignore
+ const [startDay, endDay] = currentDate;
+ if (startDay && !endDay) {
+ const compareToStart = compareDay(date, startDay);
+ if (compareToStart === 1) {
+ const { days } = this.selectComponent('.month').data;
+ days.some((day, index) => {
+ const isDisabled = day.type === 'disabled' &&
+ getTime(startDay) < getTime(day.date) &&
+ getTime(day.date) < getTime(date);
+ if (isDisabled) {
+ ({ date } = days[index - 1]);
+ }
+ return isDisabled;
+ });
+ this.select([startDay, date], true);
+ }
+ else if (compareToStart === -1) {
+ this.select([date, null]);
+ }
+ else if (allowSameDay) {
+ this.select([date, date]);
+ }
+ }
+ else {
+ this.select([date, null]);
+ }
+ }
+ else if (type === 'multiple') {
+ let selectedIndex;
+ // @ts-ignore
+ const selected = currentDate.some((dateItem, index) => {
+ const equal = compareDay(dateItem, date) === 0;
+ if (equal) {
+ selectedIndex = index;
+ }
+ return equal;
+ });
+ if (selected) {
+ // @ts-ignore
+ const cancelDate = currentDate.splice(selectedIndex, 1);
+ this.setData({ currentDate });
+ this.unselect(cancelDate);
+ }
+ else {
+ // @ts-ignore
+ this.select([...currentDate, date]);
+ }
+ }
+ else {
+ this.select(date, true);
+ }
+ },
+ unselect(dateArray) {
+ const date = dateArray[0];
+ if (date) {
+ this.$emit('unselect', copyDates(date));
+ }
+ },
+ select(date, complete) {
+ if (complete && this.data.type === 'range') {
+ const valid = this.checkRange(date);
+ if (!valid) {
+ // auto selected to max range if showConfirm
+ if (this.data.showConfirm) {
+ this.emit([
+ date[0],
+ getDayByOffset(date[0], this.data.maxRange - 1),
+ ]);
+ }
+ else {
+ this.emit(date);
+ }
+ return;
+ }
+ }
+ this.emit(date);
+ if (complete && !this.data.showConfirm) {
+ this.onConfirm();
+ }
+ },
+ emit(date) {
+ this.setData({
+ currentDate: Array.isArray(date) ? date.map(getTime) : getTime(date),
+ });
+ this.$emit('select', copyDates(date));
+ },
+ checkRange(date) {
+ const { maxRange, rangePrompt, showRangePrompt } = this.data;
+ if (maxRange && calcDateNum(date) > maxRange) {
+ if (showRangePrompt) {
+ Toast({
+ context: this,
+ message: rangePrompt || `选择天数不能超过 ${maxRange} 天`,
+ });
+ }
+ this.$emit('over-range');
+ return false;
+ }
+ return true;
+ },
+ onConfirm() {
+ if (this.data.type === 'range' &&
+ !this.checkRange(this.data.currentDate)) {
+ return;
+ }
+ wx.nextTick(() => {
+ // @ts-ignore
+ this.$emit('confirm', copyDates(this.data.currentDate));
+ });
+ },
+ onClickSubtitle(event) {
+ this.$emit('click-subtitle', event);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..397d5aea19a5301358cd2dfc4b0e9a1879fe5b6f
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.json
@@ -0,0 +1,10 @@
+{
+ "component": true,
+ "usingComponents": {
+ "header": "./components/header/index",
+ "month": "./components/month/index",
+ "van-button": "../button/index",
+ "van-popup": "../popup/index",
+ "van-toast": "../toast/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..40f5183560603a657bb64c0ff0378c8f68948a83
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.vue
@@ -0,0 +1,365 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..bc8bcfd60180b5a3343ba95f6d45cdbbe4eed6c0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.wxml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..2c04be10f07bb4614ede2e80d3935191635d3831
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.wxs
@@ -0,0 +1,37 @@
+/* eslint-disable */
+var utils = require('./utils.wxs');
+
+function getMonths(minDate, maxDate) {
+ var months = [];
+ var cursor = getDate(minDate);
+
+ cursor.setDate(1);
+
+ do {
+ months.push(cursor.getTime());
+ cursor.setMonth(cursor.getMonth() + 1);
+ } while (utils.compareMonth(cursor, getDate(maxDate)) !== 1);
+
+ return months;
+}
+
+function getButtonDisabled(type, currentDate) {
+ if (currentDate == null) {
+ return true;
+ }
+
+ if (type === 'range') {
+ return !currentDate[0] || !currentDate[1];
+ }
+
+ if (type === 'multiple') {
+ return !currentDate.length;
+ }
+
+ return !currentDate;
+}
+
+module.exports = {
+ getMonths: getMonths,
+ getButtonDisabled: getButtonDisabled
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..05df518268f0a8ef331d634f8329cceb1d69134a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-calendar{background-color:var(--calendar-background-color,#fff);display:flex;flex-direction:column;height:var(--calendar-height,100%)}.van-calendar__close-icon{top:11px}.van-calendar__popup--bottom,.van-calendar__popup--top{height:var(--calendar-popup-height,80%)}.van-calendar__popup--left,.van-calendar__popup--right{height:100%}.van-calendar__body{-webkit-overflow-scrolling:touch;flex:1;overflow:auto}.van-calendar__footer{flex-shrink:0;padding:0 var(--padding-md,16px)}.van-calendar__footer--safe-area-inset-bottom{padding-bottom:env(safe-area-inset-bottom)}.van-calendar__footer+.van-calendar__footer,.van-calendar__footer:empty{display:none}.van-calendar__footer:empty+.van-calendar__footer{display:block!important}.van-calendar__confirm{height:var(--calendar-confirm-button-height,36px)!important;line-height:var(--calendar-confirm-button-line-height,34px)!important;margin:var(--calendar-confirm-button-margin,7px 0)!important}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/utils.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/utils.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..eb710c0928344cb626a1ee18f5795cfa5f8e4c39
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/utils.d.ts
@@ -0,0 +1,12 @@
+export declare const ROW_HEIGHT = 64;
+export declare function formatMonthTitle(date: Date): string;
+export declare function compareMonth(date1: Date | number, date2: Date | number): 1 | -1 | 0;
+export declare function compareDay(day1: Date | number, day2: Date | number): 1 | -1 | 0;
+export declare function getDayByOffset(date: Date, offset: number): Date;
+export declare function getPrevDay(date: Date): Date;
+export declare function getNextDay(date: Date): Date;
+export declare function getToday(): Date;
+export declare function calcDateNum(date: [Date, Date]): number;
+export declare function copyDates(dates: Date | Date[]): Date | Date[];
+export declare function getMonthEndDay(year: number, month: number): number;
+export declare function getMonths(minDate: number, maxDate: number): number[];
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/utils.js b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/utils.js
new file mode 100644
index 0000000000000000000000000000000000000000..83d6971db6fc7c3bcd1105ac3ad67b6ff91d77d2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/utils.js
@@ -0,0 +1,83 @@
+export const ROW_HEIGHT = 64;
+export function formatMonthTitle(date) {
+ if (!(date instanceof Date)) {
+ date = new Date(date);
+ }
+ return `${date.getFullYear()}年${date.getMonth() + 1}月`;
+}
+export function compareMonth(date1, date2) {
+ if (!(date1 instanceof Date)) {
+ date1 = new Date(date1);
+ }
+ if (!(date2 instanceof Date)) {
+ date2 = new Date(date2);
+ }
+ const year1 = date1.getFullYear();
+ const year2 = date2.getFullYear();
+ const month1 = date1.getMonth();
+ const month2 = date2.getMonth();
+ if (year1 === year2) {
+ return month1 === month2 ? 0 : month1 > month2 ? 1 : -1;
+ }
+ return year1 > year2 ? 1 : -1;
+}
+export function compareDay(day1, day2) {
+ if (!(day1 instanceof Date)) {
+ day1 = new Date(day1);
+ }
+ if (!(day2 instanceof Date)) {
+ day2 = new Date(day2);
+ }
+ const compareMonthResult = compareMonth(day1, day2);
+ if (compareMonthResult === 0) {
+ const date1 = day1.getDate();
+ const date2 = day2.getDate();
+ return date1 === date2 ? 0 : date1 > date2 ? 1 : -1;
+ }
+ return compareMonthResult;
+}
+export function getDayByOffset(date, offset) {
+ date = new Date(date);
+ date.setDate(date.getDate() + offset);
+ return date;
+}
+export function getPrevDay(date) {
+ return getDayByOffset(date, -1);
+}
+export function getNextDay(date) {
+ return getDayByOffset(date, 1);
+}
+export function getToday() {
+ const today = new Date();
+ today.setHours(0, 0, 0, 0);
+ return today;
+}
+export function calcDateNum(date) {
+ const day1 = new Date(date[0]).getTime();
+ const day2 = new Date(date[1]).getTime();
+ return (day2 - day1) / (1000 * 60 * 60 * 24) + 1;
+}
+export function copyDates(dates) {
+ if (Array.isArray(dates)) {
+ return dates.map((date) => {
+ if (date === null) {
+ return date;
+ }
+ return new Date(date);
+ });
+ }
+ return new Date(dates);
+}
+export function getMonthEndDay(year, month) {
+ return 32 - new Date(year, month - 1, 32).getDate();
+}
+export function getMonths(minDate, maxDate) {
+ const months = [];
+ const cursor = new Date(minDate);
+ cursor.setDate(1);
+ do {
+ months.push(cursor.getTime());
+ cursor.setMonth(cursor.getMonth() + 1);
+ } while (compareMonth(cursor, maxDate) !== 1);
+ return months;
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/calendar/utils.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/utils.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..e57f6b32befa9e3bc9f925189eb29c9b49e0a9af
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/calendar/utils.wxs
@@ -0,0 +1,25 @@
+/* eslint-disable */
+function getMonthEndDay(year, month) {
+ return 32 - getDate(year, month - 1, 32).getDate();
+}
+
+function compareMonth(date1, date2) {
+ date1 = getDate(date1);
+ date2 = getDate(date2);
+
+ var year1 = date1.getFullYear();
+ var year2 = date2.getFullYear();
+ var month1 = date1.getMonth();
+ var month2 = date2.getMonth();
+
+ if (year1 === year2) {
+ return month1 === month2 ? 0 : month1 > month2 ? 1 : -1;
+ }
+
+ return year1 > year2 ? 1 : -1;
+}
+
+module.exports = {
+ getMonthEndDay: getMonthEndDay,
+ compareMonth: compareMonth
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/card/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/card/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..5bbd21274ca22eefd7ff6d8937bf2fa31f5284f6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.js
@@ -0,0 +1,49 @@
+import { link } from '../mixins/link';
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: [
+ 'num-class',
+ 'desc-class',
+ 'thumb-class',
+ 'title-class',
+ 'price-class',
+ 'origin-price-class',
+ ],
+ mixins: [link],
+ props: {
+ tag: String,
+ num: String,
+ desc: String,
+ thumb: String,
+ title: String,
+ price: {
+ type: String,
+ observer: 'updatePrice',
+ },
+ centered: Boolean,
+ lazyLoad: Boolean,
+ thumbLink: String,
+ originPrice: String,
+ thumbMode: {
+ type: String,
+ value: 'aspectFit',
+ },
+ currency: {
+ type: String,
+ value: '¥',
+ },
+ },
+ methods: {
+ updatePrice() {
+ const { price } = this.data;
+ const priceArr = price.toString().split('.');
+ this.setData({
+ integerStr: priceArr[0],
+ decimalStr: priceArr[1] ? `.${priceArr[1]}` : '',
+ });
+ },
+ onClickThumb() {
+ this.jumpLink('thumbLink');
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/card/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..e917407692d20b91dbe066e7e198db5e93ae474a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-tag": "../tag/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/card/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..542d051fb2adb22d9f221d0170d5ea37ac81a0a6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.vue
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+ {{ tag }}
+
+
+
+
+
+
+ {{ title }}
+
+
+ {{ desc }}
+
+
+
+
+
+
+
+
+ {{ currency }}
+ {{ integerStr }}
+ {{ decimalStr }}
+
+
+ {{ currency }} {{ originPrice }}
+
+ x {{ num }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/card/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..62173e4a0de699496f5a9745bfdd8161d0a5f02e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.wxml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+ {{ tag }}
+
+
+
+
+
+
+ {{ title }}
+
+
+ {{ desc }}
+
+
+
+
+
+
+
+
+ {{ currency }}
+ {{ integerStr }}
+ {{ decimalStr }}
+
+
+ {{ currency }} {{ originPrice }}
+
+ x {{ num }}
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/card/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..0f4d7c5b9d1b4c8a900e883d864ac7070e656cda
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/card/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-card{background-color:var(--card-background-color,#fafafa);box-sizing:border-box;color:var(--card-text-color,#323233);font-size:var(--card-font-size,12px);padding:var(--card-padding,8px 16px);position:relative}.van-card__header{display:flex}.van-card__header--center{align-items:center;justify-content:center}.van-card__thumb{flex:none;height:var(--card-thumb-size,88px);margin-right:var(--padding-xs,8px);position:relative;width:var(--card-thumb-size,88px)}.van-card__thumb:empty{display:none}.van-card__img{border-radius:8px;height:100%;width:100%}.van-card__content{display:flex;flex:1;flex-direction:column;justify-content:space-between;min-height:var(--card-thumb-size,88px);min-width:0;position:relative}.van-card__content--center{justify-content:center}.van-card__desc,.van-card__title{word-wrap:break-word}.van-card__title{font-weight:700;line-height:var(--card-title-line-height,16px)}.van-card__desc{color:var(--card-desc-color,#646566);line-height:var(--card-desc-line-height,20px)}.van-card__bottom{line-height:20px}.van-card__price{color:var(--card-price-color,#ee0a24);display:inline-block;font-size:var(--card-price-font-size,12px);font-weight:700}.van-card__price-integer{font-size:var(--card-price-integer-font-size,16px)}.van-card__price-decimal,.van-card__price-integer{font-family:var(--card-price-font-family,Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif)}.van-card__origin-price{color:var(--card-origin-price-color,#646566);display:inline-block;font-size:var(--card-origin-price-font-size,10px);margin-left:5px;text-decoration:line-through}.van-card__num{float:right}.van-card__tag{left:0;position:absolute!important;top:2px}.van-card__footer{flex:none;text-align:right;width:100%}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..170760f71f60798693ca32cd3747dab2b110f8c1
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.js
@@ -0,0 +1,11 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ title: String,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ inset: Boolean,
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..805dbddb3305bd5ea6b1c9bc0c2fcdfa13d97af5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.vue
@@ -0,0 +1,28 @@
+
+
+ {{ title }}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..311e064aaa3ae97363acdbf7c52e5ebbe007a19a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.wxml
@@ -0,0 +1,11 @@
+
+
+
+ {{ title }}
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..08b252f94aab45f67f5e0d3bd9975d2524aff1b3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell-group/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-cell-group--inset{border-radius:var(--cell-group-inset-border-radius,8px);margin:var(--cell-group-inset-padding,0 16px);overflow:hidden}.van-cell-group__title{color:var(--cell-group-title-color,#969799);font-size:var(--cell-group-title-font-size,14px);line-height:var(--cell-group-title-line-height,16px);padding:var(--cell-group-title-padding,16px 16px 8px)}.van-cell-group__title--inset{padding:var(--cell-group-inset-title-padding,16px 16px 8px 32px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..35548b99faba36625a6244c08f77489076eebb0b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.js
@@ -0,0 +1,38 @@
+import { link } from '../mixins/link';
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: [
+ 'title-class',
+ 'label-class',
+ 'value-class',
+ 'right-icon-class',
+ 'hover-class',
+ ],
+ mixins: [link],
+ props: {
+ title: null,
+ value: null,
+ icon: String,
+ size: String,
+ label: String,
+ center: Boolean,
+ isLink: Boolean,
+ required: Boolean,
+ clickable: Boolean,
+ titleWidth: String,
+ customStyle: String,
+ arrowDirection: String,
+ useLabelSlot: Boolean,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ titleStyle: String,
+ },
+ methods: {
+ onClick(event) {
+ this.$emit('click', event.detail);
+ this.jumpLink();
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..7b4c4ea212c9344e1cb4e853aa04640d0866ffa2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.vue
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+ {{ label }}
+
+
+
+
+ {{ value }}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..8387c3c8cc6dff136f1adccf52b473af88dce8d2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.wxml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+ {{ label }}
+
+
+
+
+ {{ value }}
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..e3500c4343687b5618af3dec95496cef26f53ed4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.wxs
@@ -0,0 +1,17 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function titleStyle(data) {
+ return style([
+ {
+ 'max-width': addUnit(data.titleWidth),
+ 'min-width': addUnit(data.titleWidth),
+ },
+ data.titleStyle,
+ ]);
+}
+
+module.exports = {
+ titleStyle: titleStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..1802f8e8ac7b20d636f0bb2b37a4dab9f57ef1e0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/cell/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-cell{background-color:var(--cell-background-color,#fff);box-sizing:border-box;color:var(--cell-text-color,#323233);display:flex;font-size:var(--cell-font-size,14px);line-height:var(--cell-line-height,24px);padding:var(--cell-vertical-padding,10px) var(--cell-horizontal-padding,16px);position:relative;width:100%}.van-cell:after{border-bottom:1px solid #ebedf0;bottom:0;box-sizing:border-box;content:" ";left:16px;pointer-events:none;position:absolute;right:16px;transform:scaleY(.5);transform-origin:center}.van-cell--borderless:after{display:none}.van-cell-group{background-color:var(--cell-background-color,#fff)}.van-cell__label{color:var(--cell-label-color,#969799);font-size:var(--cell-label-font-size,12px);line-height:var(--cell-label-line-height,18px);margin-top:var(--cell-label-margin-top,3px)}.van-cell__value{color:var(--cell-value-color,#969799);overflow:hidden;text-align:right;vertical-align:middle}.van-cell__title,.van-cell__value{flex:1}.van-cell__title:empty,.van-cell__value:empty{display:none}.van-cell__left-icon-wrap,.van-cell__right-icon-wrap{align-items:center;display:flex;font-size:var(--cell-icon-size,16px);height:var(--cell-line-height,24px)}.van-cell__left-icon-wrap{margin-right:var(--padding-base,4px)}.van-cell__right-icon-wrap{color:var(--cell-right-icon-color,#969799);margin-left:var(--padding-base,4px)}.van-cell__left-icon{vertical-align:middle}.van-cell__left-icon,.van-cell__right-icon{line-height:var(--cell-line-height,24px)}.van-cell--clickable.van-cell--hover{background-color:var(--cell-active-color,#f2f3f5)}.van-cell--required{overflow:visible}.van-cell--required:before{color:var(--cell-required-color,#ee0a24);content:"*";font-size:var(--cell-font-size,14px);left:var(--padding-xs,8px);position:absolute}.van-cell--center{align-items:center}.van-cell--large{padding-bottom:var(--cell-large-vertical-padding,12px);padding-top:var(--cell-large-vertical-padding,12px)}.van-cell--large .van-cell__title{font-size:var(--cell-large-title-font-size,16px)}.van-cell--large .van-cell__value{font-size:var(--cell-large-value-font-size,16px)}.van-cell--large .van-cell__label{font-size:var(--cell-large-label-font-size,14px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..c47d97d01d2bdbf29d6a5ac7d4c76ff74a822e84
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.js
@@ -0,0 +1,36 @@
+import { useChildren } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ field: true,
+ relation: useChildren('checkbox', function (target) {
+ this.updateChild(target);
+ }),
+ props: {
+ max: Number,
+ value: {
+ type: Array,
+ observer: 'updateChildren',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ direction: {
+ type: String,
+ value: 'vertical',
+ },
+ },
+ methods: {
+ updateChildren() {
+ this.children.forEach((child) => this.updateChild(child));
+ },
+ updateChild(child) {
+ const { value, disabled, direction } = this.data;
+ child.setData({
+ value: value.indexOf(child.data.name) !== -1,
+ parentDisabled: disabled,
+ direction,
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..8dd980476c7449cca85e89d5e765841526b099e8
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.vue
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..638bf9dee9b453b5c65c5e4191b46b003be26be3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.wxml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..c5666d72a7cb73a10f7b218eb58615f95bf97abe
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox-group/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-checkbox-group--horizontal{display:flex;flex-wrap:wrap}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..e3b78ab72ca567a224b772415cf98446b28d7804
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.js
@@ -0,0 +1,77 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+function emit(target, value) {
+ target.$emit('input', value);
+ target.$emit('change', value);
+}
+VantComponent({
+ field: true,
+ relation: useParent('checkbox-group'),
+ classes: ['icon-class', 'label-class'],
+ props: {
+ value: Boolean,
+ disabled: Boolean,
+ useIconSlot: Boolean,
+ checkedColor: String,
+ labelPosition: {
+ type: String,
+ value: 'right',
+ },
+ labelDisabled: Boolean,
+ shape: {
+ type: String,
+ value: 'round',
+ },
+ iconSize: {
+ type: null,
+ value: 20,
+ },
+ },
+ data: {
+ parentDisabled: false,
+ direction: 'vertical',
+ },
+ methods: {
+ emitChange(value) {
+ if (this.parent) {
+ this.setParentValue(this.parent, value);
+ }
+ else {
+ emit(this, value);
+ }
+ },
+ toggle() {
+ const { parentDisabled, disabled, value } = this.data;
+ if (!disabled && !parentDisabled) {
+ this.emitChange(!value);
+ }
+ },
+ onClickLabel() {
+ const { labelDisabled, parentDisabled, disabled, value } = this.data;
+ if (!disabled && !labelDisabled && !parentDisabled) {
+ this.emitChange(!value);
+ }
+ },
+ setParentValue(parent, value) {
+ const parentValue = parent.data.value.slice();
+ const { name } = this.data;
+ const { max } = parent.data;
+ if (value) {
+ if (max && parentValue.length >= max) {
+ return;
+ }
+ if (parentValue.indexOf(name) === -1) {
+ parentValue.push(name);
+ emit(parent, parentValue);
+ }
+ }
+ else {
+ const index = parentValue.indexOf(name);
+ if (index !== -1) {
+ parentValue.splice(index, 1);
+ emit(parent, parentValue);
+ }
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..258572359af7bbb58cb2e4ca1c5df08be5956863
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.vue
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..39a7bb039e814dc7ebdd710093e7ce68d11025a4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.wxml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..eb9c7726312ae65433806cd8c9b3c3f44f205377
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.wxs
@@ -0,0 +1,20 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function iconStyle(checkedColor, value, disabled, parentDisabled, iconSize) {
+ var styles = {
+ 'font-size': addUnit(iconSize),
+ };
+
+ if (checkedColor && value && !disabled && !parentDisabled) {
+ styles['border-color'] = checkedColor;
+ styles['background-color'] = checkedColor;
+ }
+
+ return style(styles);
+}
+
+module.exports = {
+ iconStyle: iconStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..da2272adb985a1c3ad99830fc0188da928a13159
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/checkbox/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-checkbox{align-items:center;display:flex;overflow:hidden;-webkit-user-select:none;user-select:none}.van-checkbox--horizontal{margin-right:12px}.van-checkbox__icon-wrap,.van-checkbox__label{line-height:var(--checkbox-size,20px)}.van-checkbox__icon-wrap{flex:none}.van-checkbox__icon{align-items:center;border:1px solid var(--checkbox-border-color,#c8c9cc);box-sizing:border-box;color:transparent;display:flex;font-size:var(--checkbox-size,20px);height:1em;justify-content:center;text-align:center;transition-duration:var(--checkbox-transition-duration,.2s);transition-property:color,border-color,background-color;width:1em}.van-checkbox__icon--round{border-radius:100%}.van-checkbox__icon--checked{background-color:var(--checkbox-checked-icon-color,#1989fa);border-color:var(--checkbox-checked-icon-color,#1989fa);color:#fff}.van-checkbox__icon--disabled{background-color:var(--checkbox-disabled-background-color,#ebedf0);border-color:var(--checkbox-disabled-icon-color,#c8c9cc)}.van-checkbox__icon--disabled.van-checkbox__icon--checked{color:var(--checkbox-disabled-icon-color,#c8c9cc)}.van-checkbox__label{word-wrap:break-word;color:var(--checkbox-label-color,#323233);padding-left:var(--checkbox-label-margin,10px)}.van-checkbox__label--left{float:left;margin:0 var(--checkbox-label-margin,10px) 0 0}.van-checkbox__label--disabled{color:var(--checkbox-disabled-label-color,#c8c9cc)}.van-checkbox__label:empty{margin:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/circle/canvas.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/circle/canvas.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..15268c9f8d00f020652f13fa15509cb77338e8db
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/circle/canvas.d.ts
@@ -0,0 +1,4 @@
+///
+declare type CanvasContext = WechatMiniprogram.CanvasContext;
+export declare function adaptor(ctx: CanvasContext & Record): CanvasContext;
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/circle/canvas.js b/litemall-wx_uni/wxcomponents/vant-weapp/circle/canvas.js
new file mode 100644
index 0000000000000000000000000000000000000000..3ade4cdb3d10e5b386c32712b9c17f9cd61e935e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/circle/canvas.js
@@ -0,0 +1,43 @@
+export function adaptor(ctx) {
+ // @ts-ignore
+ return Object.assign(ctx, {
+ setStrokeStyle(val) {
+ ctx.strokeStyle = val;
+ },
+ setLineWidth(val) {
+ ctx.lineWidth = val;
+ },
+ setLineCap(val) {
+ ctx.lineCap = val;
+ },
+ setFillStyle(val) {
+ ctx.fillStyle = val;
+ },
+ setFontSize(val) {
+ ctx.font = String(val);
+ },
+ setGlobalAlpha(val) {
+ ctx.globalAlpha = val;
+ },
+ setLineJoin(val) {
+ ctx.lineJoin = val;
+ },
+ setTextAlign(val) {
+ ctx.textAlign = val;
+ },
+ setMiterLimit(val) {
+ ctx.miterLimit = val;
+ },
+ setShadow(offsetX, offsetY, blur, color) {
+ ctx.shadowOffsetX = offsetX;
+ ctx.shadowOffsetY = offsetY;
+ ctx.shadowBlur = blur;
+ ctx.shadowColor = color;
+ },
+ setTextBaseline(val) {
+ ctx.textBaseline = val;
+ },
+ createCircularGradient() { },
+ draw() { },
+ });
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..2a4baf59da675ec4dc5d4d1e521df5a9ab03dd0b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.js
@@ -0,0 +1,193 @@
+import { BLUE, WHITE } from '../common/color';
+import { VantComponent } from '../common/component';
+import { getSystemInfoSync } from '../common/utils';
+import { isObj } from '../common/validator';
+import { canIUseCanvas2d } from '../common/version';
+import { adaptor } from './canvas';
+function format(rate) {
+ return Math.min(Math.max(rate, 0), 100);
+}
+const PERIMETER = 2 * Math.PI;
+const BEGIN_ANGLE = -Math.PI / 2;
+const STEP = 1;
+VantComponent({
+ props: {
+ text: String,
+ lineCap: {
+ type: String,
+ value: 'round',
+ },
+ value: {
+ type: Number,
+ value: 0,
+ observer: 'reRender',
+ },
+ speed: {
+ type: Number,
+ value: 50,
+ },
+ size: {
+ type: Number,
+ value: 100,
+ observer() {
+ this.drawCircle(this.currentValue);
+ },
+ },
+ fill: String,
+ layerColor: {
+ type: String,
+ value: WHITE,
+ },
+ color: {
+ type: null,
+ value: BLUE,
+ observer() {
+ this.setHoverColor().then(() => {
+ this.drawCircle(this.currentValue);
+ });
+ },
+ },
+ type: {
+ type: String,
+ value: '',
+ },
+ strokeWidth: {
+ type: Number,
+ value: 4,
+ },
+ clockwise: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ hoverColor: BLUE,
+ },
+ methods: {
+ getContext() {
+ const { type, size } = this.data;
+ if (type === '' || !canIUseCanvas2d()) {
+ const ctx = wx.createCanvasContext('van-circle', this);
+ return Promise.resolve(ctx);
+ }
+ const dpr = getSystemInfoSync().pixelRatio;
+ return new Promise((resolve) => {
+ wx.createSelectorQuery()
+ .in(this)
+ .select('#van-circle')
+ .node()
+ .exec((res) => {
+ const canvas = res[0].node;
+ const ctx = canvas.getContext(type);
+ if (!this.inited) {
+ this.inited = true;
+ canvas.width = size * dpr;
+ canvas.height = size * dpr;
+ ctx.scale(dpr, dpr);
+ }
+ resolve(adaptor(ctx));
+ });
+ });
+ },
+ setHoverColor() {
+ const { color, size } = this.data;
+ if (isObj(color)) {
+ return this.getContext().then((context) => {
+ const LinearColor = context.createLinearGradient(size, 0, 0, 0);
+ Object.keys(color)
+ .sort((a, b) => parseFloat(a) - parseFloat(b))
+ .map((key) => LinearColor.addColorStop(parseFloat(key) / 100, color[key]));
+ this.hoverColor = LinearColor;
+ });
+ }
+ this.hoverColor = color;
+ return Promise.resolve();
+ },
+ presetCanvas(context, strokeStyle, beginAngle, endAngle, fill) {
+ const { strokeWidth, lineCap, clockwise, size } = this.data;
+ const position = size / 2;
+ const radius = position - strokeWidth / 2;
+ context.setStrokeStyle(strokeStyle);
+ context.setLineWidth(strokeWidth);
+ context.setLineCap(lineCap);
+ context.beginPath();
+ context.arc(position, position, radius, beginAngle, endAngle, !clockwise);
+ context.stroke();
+ if (fill) {
+ context.setFillStyle(fill);
+ context.fill();
+ }
+ },
+ renderLayerCircle(context) {
+ const { layerColor, fill } = this.data;
+ this.presetCanvas(context, layerColor, 0, PERIMETER, fill);
+ },
+ renderHoverCircle(context, formatValue) {
+ const { clockwise } = this.data;
+ // 结束角度
+ const progress = PERIMETER * (formatValue / 100);
+ const endAngle = clockwise
+ ? BEGIN_ANGLE + progress
+ : 3 * Math.PI - (BEGIN_ANGLE + progress);
+ this.presetCanvas(context, this.hoverColor, BEGIN_ANGLE, endAngle);
+ },
+ drawCircle(currentValue) {
+ const { size } = this.data;
+ this.getContext().then((context) => {
+ context.clearRect(0, 0, size, size);
+ this.renderLayerCircle(context);
+ const formatValue = format(currentValue);
+ if (formatValue !== 0) {
+ this.renderHoverCircle(context, formatValue);
+ }
+ context.draw();
+ });
+ },
+ reRender() {
+ // tofector 动画暂时没有想到好的解决方案
+ const { value, speed } = this.data;
+ if (speed <= 0 || speed > 1000) {
+ this.drawCircle(value);
+ return;
+ }
+ this.clearMockInterval();
+ this.currentValue = this.currentValue || 0;
+ const run = () => {
+ this.interval = setTimeout(() => {
+ if (this.currentValue !== value) {
+ if (Math.abs(this.currentValue - value) < STEP) {
+ this.currentValue = value;
+ }
+ else if (this.currentValue < value) {
+ this.currentValue += STEP;
+ }
+ else {
+ this.currentValue -= STEP;
+ }
+ this.drawCircle(this.currentValue);
+ run();
+ }
+ else {
+ this.clearMockInterval();
+ }
+ }, 1000 / speed);
+ };
+ run();
+ },
+ clearMockInterval() {
+ if (this.interval) {
+ clearTimeout(this.interval);
+ this.interval = null;
+ }
+ },
+ },
+ mounted() {
+ this.currentValue = this.data.value;
+ this.setHoverColor().then(() => {
+ this.drawCircle(this.currentValue);
+ });
+ },
+ destroyed() {
+ this.clearMockInterval();
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..0fdb448d745f158e6e842372bb7dbf55af93961c
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.vue
@@ -0,0 +1,211 @@
+
+
+
+
+
+
+ {{ text }}
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..52bc59fca8e6057621f0d3eb8807e1442fde3bb1
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.wxml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+ {{ text }}
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..220075193eda10b126bcd8ba8d812cfe813fb113
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/circle/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-circle{display:inline-block;position:relative;text-align:center}.van-circle__text{color:var(--circle-text-color,#323233);left:0;position:absolute;top:50%;transform:translateY(-50%);width:100%}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/col/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/col/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..02bb78d1e10144668a8efbc90c28b1ce0705f2ec
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.js
@@ -0,0 +1,9 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ relation: useParent('row'),
+ props: {
+ span: Number,
+ offset: Number,
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/col/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/col/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..216a99c4a6d35ddbcc1967d1a6c2860e44276726
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.vue
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/col/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..975348b6e1a37c2e2d914a85be8a1d644cb8b49c
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.wxml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/col/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..507c1cb9b8e27624f7eb018741aea72ca2df1c16
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ if (!data.gutter) {
+ return '';
+ }
+
+ return style({
+ 'padding-right': addUnit(data.gutter / 2),
+ 'padding-left': addUnit(data.gutter / 2),
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/col/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..2fa265e0ba8500c3e2147aa60943ad548373b261
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/col/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-col{box-sizing:border-box;float:left}.van-col--1{width:4.16666667%}.van-col--offset-1{margin-left:4.16666667%}.van-col--2{width:8.33333333%}.van-col--offset-2{margin-left:8.33333333%}.van-col--3{width:12.5%}.van-col--offset-3{margin-left:12.5%}.van-col--4{width:16.66666667%}.van-col--offset-4{margin-left:16.66666667%}.van-col--5{width:20.83333333%}.van-col--offset-5{margin-left:20.83333333%}.van-col--6{width:25%}.van-col--offset-6{margin-left:25%}.van-col--7{width:29.16666667%}.van-col--offset-7{margin-left:29.16666667%}.van-col--8{width:33.33333333%}.van-col--offset-8{margin-left:33.33333333%}.van-col--9{width:37.5%}.van-col--offset-9{margin-left:37.5%}.van-col--10{width:41.66666667%}.van-col--offset-10{margin-left:41.66666667%}.van-col--11{width:45.83333333%}.van-col--offset-11{margin-left:45.83333333%}.van-col--12{width:50%}.van-col--offset-12{margin-left:50%}.van-col--13{width:54.16666667%}.van-col--offset-13{margin-left:54.16666667%}.van-col--14{width:58.33333333%}.van-col--offset-14{margin-left:58.33333333%}.van-col--15{width:62.5%}.van-col--offset-15{margin-left:62.5%}.van-col--16{width:66.66666667%}.van-col--offset-16{margin-left:66.66666667%}.van-col--17{width:70.83333333%}.van-col--offset-17{margin-left:70.83333333%}.van-col--18{width:75%}.van-col--offset-18{margin-left:75%}.van-col--19{width:79.16666667%}.van-col--offset-19{margin-left:79.16666667%}.van-col--20{width:83.33333333%}.van-col--offset-20{margin-left:83.33333333%}.van-col--21{width:87.5%}.van-col--offset-21{margin-left:87.5%}.van-col--22{width:91.66666667%}.van-col--offset-22{margin-left:91.66666667%}.van-col--23{width:95.83333333%}.van-col--offset-23{margin-left:95.83333333%}.van-col--24{width:100%}.van-col--offset-24{margin-left:100%}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/animate.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/animate.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..32157b6216ccb826ef242068d0bbe27fb001bb3e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/animate.d.ts
@@ -0,0 +1,2 @@
+///
+export declare function setContentAnimate(context: WechatMiniprogram.Component.TrivialInstance, expanded: boolean, mounted: boolean): void;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/animate.js b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/animate.js
new file mode 100644
index 0000000000000000000000000000000000000000..f966ac598e33635829a1069b77a98bfe6821c415
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/animate.js
@@ -0,0 +1,39 @@
+import { getRect } from '../common/utils';
+function useAnimation(context, expanded, mounted, height) {
+ const animation = wx.createAnimation({
+ duration: 0,
+ timingFunction: 'ease-in-out',
+ });
+ if (expanded) {
+ if (height === 0) {
+ animation.height('auto').top(1).step();
+ }
+ else {
+ animation
+ .height(height)
+ .top(1)
+ .step({
+ duration: mounted ? 300 : 1,
+ })
+ .height('auto')
+ .step();
+ }
+ context.setData({
+ animation: animation.export(),
+ });
+ return;
+ }
+ animation.height(height).top(0).step({ duration: 1 }).height(0).step({
+ duration: 300,
+ });
+ context.setData({
+ animation: animation.export(),
+ });
+}
+export function setContentAnimate(context, expanded, mounted) {
+ getRect(context, '.van-collapse-item__content')
+ .then((rect) => rect.height)
+ .then((height) => {
+ useAnimation(context, expanded, mounted, height);
+ });
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..991d7dfc6c6666c2a1955cdb08d50629914b1e01
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.js
@@ -0,0 +1,59 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+import { setContentAnimate } from './animate';
+VantComponent({
+ classes: ['title-class', 'content-class'],
+ relation: useParent('collapse'),
+ props: {
+ name: null,
+ title: null,
+ value: null,
+ icon: String,
+ label: String,
+ disabled: Boolean,
+ clickable: Boolean,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ isLink: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ expanded: false,
+ },
+ mounted() {
+ this.updateExpanded();
+ this.mounted = true;
+ },
+ methods: {
+ updateExpanded() {
+ if (!this.parent) {
+ return;
+ }
+ const { value, accordion } = this.parent.data;
+ const { children = [] } = this.parent;
+ const { name } = this.data;
+ const index = children.indexOf(this);
+ const currentName = name == null ? index : name;
+ const expanded = accordion
+ ? value === currentName
+ : (value || []).some((name) => name === currentName);
+ if (expanded !== this.data.expanded) {
+ setContentAnimate(this, expanded, this.mounted);
+ }
+ this.setData({ index, expanded });
+ },
+ onClick() {
+ if (this.data.disabled) {
+ return;
+ }
+ const { name, expanded } = this.data;
+ const index = this.parent.children.indexOf(this);
+ const currentName = name == null ? index : name;
+ this.parent.switch(currentName, !expanded);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0e5425cdfdb74071904957ca8bcfddb70782b1b4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-cell": "../cell/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..8d204e15ce79a36c03c35f3cabde5721460232a2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.vue
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ae4cc831712ce6026707e48c9646d572c3ac8c0b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.wxml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..4a65b5a9e9f464b88d97cf037254803eac6265c0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse-item/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-collapse-item__title .van-cell__right-icon{transform:rotate(90deg);transition:transform var(--collapse-item-transition-duration,.3s)}.van-collapse-item__title--expanded .van-cell__right-icon{transform:rotate(-90deg)}.van-collapse-item__title--disabled .van-cell,.van-collapse-item__title--disabled .van-cell__right-icon{color:var(--collapse-item-title-disabled-color,#c8c9cc)!important}.van-collapse-item__title--disabled .van-cell--hover{background-color:#fff!important}.van-collapse-item__wrapper{overflow:hidden}.van-collapse-item__content{background-color:var(--collapse-item-content-background-color,#fff);color:var(--collapse-item-content-text-color,#969799);font-size:var(--collapse-item-content-font-size,13px);line-height:var(--collapse-item-content-line-height,1.5);padding:var(--collapse-item-content-padding,15px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..3616087f963afd8b203aa2dc9431f0079f8c4f83
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.js
@@ -0,0 +1,46 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('collapse-item'),
+ props: {
+ value: {
+ type: null,
+ observer: 'updateExpanded',
+ },
+ accordion: {
+ type: Boolean,
+ observer: 'updateExpanded',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ updateExpanded() {
+ this.children.forEach((child) => {
+ child.updateExpanded();
+ });
+ },
+ switch(name, expanded) {
+ const { accordion, value } = this.data;
+ const changeItem = name;
+ if (!accordion) {
+ name = expanded
+ ? (value || []).concat(name)
+ : (value || []).filter((activeName) => activeName !== name);
+ }
+ else {
+ name = expanded ? name : '';
+ }
+ if (expanded) {
+ this.$emit('open', changeItem);
+ }
+ else {
+ this.$emit('close', changeItem);
+ }
+ this.$emit('change', name);
+ this.$emit('input', name);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..bb4e1dda3a05d8bfe82768629f8c05c44b3a7655
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.vue
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..fd4e171944a18874bd214effc5001a89bc38fafe
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.wxml
@@ -0,0 +1,3 @@
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..99694d603361421fe8f1acfc76a09eae443cb3aa
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/collapse/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/color.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/common/color.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..386f3077e23a24db2af9b4a4ad5c8f451f21aa2c
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/color.d.ts
@@ -0,0 +1,7 @@
+export declare const RED = "#ee0a24";
+export declare const BLUE = "#1989fa";
+export declare const WHITE = "#fff";
+export declare const GREEN = "#07c160";
+export declare const ORANGE = "#ff976a";
+export declare const GRAY = "#323233";
+export declare const GRAY_DARK = "#969799";
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/color.js b/litemall-wx_uni/wxcomponents/vant-weapp/common/color.js
new file mode 100644
index 0000000000000000000000000000000000000000..6b285bd6cddc616bf2fd65528217808876c5c603
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/color.js
@@ -0,0 +1,7 @@
+export const RED = '#ee0a24';
+export const BLUE = '#1989fa';
+export const WHITE = '#fff';
+export const GREEN = '#07c160';
+export const ORANGE = '#ff976a';
+export const GRAY = '#323233';
+export const GRAY_DARK = '#969799';
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/component.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/common/component.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..acdd7f0e56e02d2eb8984863a86ea564e8ed69a5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/component.d.ts
@@ -0,0 +1,4 @@
+///
+import { VantComponentOptions } from '../definitions/index';
+declare function VantComponent(vantOptions: VantComponentOptions): void;
+export { VantComponent };
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/component.js b/litemall-wx_uni/wxcomponents/vant-weapp/common/component.js
new file mode 100644
index 0000000000000000000000000000000000000000..8528dc0ff775d84c41e536e5402a153fed4463f9
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/component.js
@@ -0,0 +1,45 @@
+import { basic } from '../mixins/basic';
+function mapKeys(source, target, map) {
+ Object.keys(map).forEach((key) => {
+ if (source[key]) {
+ target[map[key]] = source[key];
+ }
+ });
+}
+function VantComponent(vantOptions) {
+ const options = {};
+ mapKeys(vantOptions, options, {
+ data: 'data',
+ props: 'properties',
+ mixins: 'behaviors',
+ methods: 'methods',
+ beforeCreate: 'created',
+ created: 'attached',
+ mounted: 'ready',
+ destroyed: 'detached',
+ classes: 'externalClasses',
+ });
+ // add default externalClasses
+ options.externalClasses = options.externalClasses || [];
+ options.externalClasses.push('custom-class');
+ // add default behaviors
+ options.behaviors = options.behaviors || [];
+ options.behaviors.push(basic);
+ // add relations
+ const { relation } = vantOptions;
+ if (relation) {
+ options.relations = relation.relations;
+ options.behaviors.push(relation.mixin);
+ }
+ // map field to form-field behavior
+ if (vantOptions.field) {
+ options.behaviors.push('wx://form-field');
+ }
+ // add default options
+ options.options = {
+ multipleSlots: true,
+ addGlobalClass: true,
+ };
+ Component(options);
+}
+export { VantComponent };
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/index.css b/litemall-wx_uni/wxcomponents/vant-weapp/common/index.css
new file mode 100644
index 0000000000000000000000000000000000000000..a73bb7a3ab8651d5e1cd223e562b416ee7d62ea2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/index.css
@@ -0,0 +1 @@
+.van-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.van-multi-ellipsis--l3{-webkit-line-clamp:3}.van-clearfix:after{clear:both;content:"";display:table}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{border:0 solid #ebedf0;bottom:-50%;box-sizing:border-box;content:" ";left:-50%;pointer-events:none;position:absolute;right:-50%;top:-50%;transform:scale(.5);transform-origin:center}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/common/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..a73bb7a3ab8651d5e1cd223e562b416ee7d62ea2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/index.wxss
@@ -0,0 +1 @@
+.van-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.van-multi-ellipsis--l3{-webkit-line-clamp:3}.van-clearfix:after{clear:both;content:"";display:table}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{border:0 solid #ebedf0;bottom:-50%;box-sizing:border-box;content:" ";left:-50%;pointer-events:none;position:absolute;right:-50%;top:-50%;transform:scale(.5);transform-origin:center}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/relation.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/common/relation.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..4b5af0089a7b28d83ba80877b82460595f13afb7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/relation.d.ts
@@ -0,0 +1,15 @@
+///
+declare type TrivialInstance = WechatMiniprogram.Component.TrivialInstance;
+export declare function useParent(name: string, onEffect?: (this: TrivialInstance) => void): {
+ relations: {
+ [x: string]: WechatMiniprogram.Component.RelationOption;
+ };
+ mixin: string;
+};
+export declare function useChildren(name: string, onEffect?: (this: TrivialInstance, target: TrivialInstance) => void): {
+ relations: {
+ [x: string]: WechatMiniprogram.Component.RelationOption;
+ };
+ mixin: string;
+};
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/relation.js b/litemall-wx_uni/wxcomponents/vant-weapp/common/relation.js
new file mode 100644
index 0000000000000000000000000000000000000000..04e29340dd1d2da44533c0544694a18434ec2145
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/relation.js
@@ -0,0 +1,56 @@
+export function useParent(name, onEffect) {
+ const path = `../${name}/index`;
+ return {
+ relations: {
+ [path]: {
+ type: 'ancestor',
+ linked() {
+ onEffect && onEffect.call(this);
+ },
+ linkChanged() {
+ onEffect && onEffect.call(this);
+ },
+ unlinked() {
+ onEffect && onEffect.call(this);
+ },
+ },
+ },
+ mixin: Behavior({
+ created() {
+ Object.defineProperty(this, 'parent', {
+ get: () => this.getRelationNodes(path)[0],
+ });
+ Object.defineProperty(this, 'index', {
+ // @ts-ignore
+ get: () => { var _a, _b; return (_b = (_a = this.parent) === null || _a === void 0 ? void 0 : _a.children) === null || _b === void 0 ? void 0 : _b.indexOf(this); },
+ });
+ },
+ }),
+ };
+}
+export function useChildren(name, onEffect) {
+ const path = `../${name}/index`;
+ return {
+ relations: {
+ [path]: {
+ type: 'descendant',
+ linked(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ linkChanged(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ unlinked(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ },
+ },
+ mixin: Behavior({
+ created() {
+ Object.defineProperty(this, 'children', {
+ get: () => this.getRelationNodes(path) || [],
+ });
+ },
+ }),
+ };
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/clearfix.css b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/clearfix.css
new file mode 100644
index 0000000000000000000000000000000000000000..442246f58f624a5ad7dc994340e2deffa22e1ded
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/clearfix.css
@@ -0,0 +1 @@
+.van-clearfix:after{clear:both;content:"";display:table}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/clearfix.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/clearfix.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..442246f58f624a5ad7dc994340e2deffa22e1ded
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/clearfix.wxss
@@ -0,0 +1 @@
+.van-clearfix:after{clear:both;content:"";display:table}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/ellipsis.css b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/ellipsis.css
new file mode 100644
index 0000000000000000000000000000000000000000..ee701df0fb5b10918a51fe2c730b4e0b40a0b17f
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/ellipsis.css
@@ -0,0 +1 @@
+.van-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.van-multi-ellipsis--l3{-webkit-line-clamp:3}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/ellipsis.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/ellipsis.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..ee701df0fb5b10918a51fe2c730b4e0b40a0b17f
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/ellipsis.wxss
@@ -0,0 +1 @@
+.van-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.van-multi-ellipsis--l3{-webkit-line-clamp:3}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/hairline.css b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/hairline.css
new file mode 100644
index 0000000000000000000000000000000000000000..f7c6260f5bb134f74956be9b8d3760aa0482b1e6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/hairline.css
@@ -0,0 +1 @@
+.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{border:0 solid #ebedf0;bottom:-50%;box-sizing:border-box;content:" ";left:-50%;pointer-events:none;position:absolute;right:-50%;top:-50%;transform:scale(.5);transform-origin:center}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/hairline.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/hairline.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..f7c6260f5bb134f74956be9b8d3760aa0482b1e6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/hairline.wxss
@@ -0,0 +1 @@
+.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{border:0 solid #ebedf0;bottom:-50%;box-sizing:border-box;content:" ";left:-50%;pointer-events:none;position:absolute;right:-50%;top:-50%;transform:scale(.5);transform-origin:center}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/clearfix.css b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/clearfix.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/clearfix.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/clearfix.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/ellipsis.css b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/ellipsis.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/ellipsis.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/ellipsis.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/hairline.css b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/hairline.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/hairline.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/mixins/hairline.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/var.css b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/var.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/style/var.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/common/style/var.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/utils.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/common/utils.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..5332a68aed0ffcfffb6ab858ff992154f8bd13a7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/utils.d.ts
@@ -0,0 +1,13 @@
+///
+export { isDef } from './validator';
+export declare function range(num: number, min: number, max: number): number;
+export declare function nextTick(cb: (...args: any[]) => void): void;
+export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo;
+export declare function addUnit(value?: string | number): string | undefined;
+export declare function requestAnimationFrame(cb: () => void): number | WechatMiniprogram.NodesRef;
+export declare function pickExclude(obj: unknown, keys: string[]): {};
+export declare function getRect(context: WechatMiniprogram.Component.TrivialInstance, selector: string): Promise;
+export declare function getAllRect(context: WechatMiniprogram.Component.TrivialInstance, selector: string): Promise;
+export declare function groupSetData(context: WechatMiniprogram.Component.TrivialInstance, cb: () => void): void;
+export declare function toPromise(promiseLike: Promise | unknown): Promise;
+export declare function getCurrentPage(): T & WechatMiniprogram.OptionalInterface & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods & WechatMiniprogram.Page.Data & WechatMiniprogram.IAnyObject;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/utils.js b/litemall-wx_uni/wxcomponents/vant-weapp/common/utils.js
new file mode 100644
index 0000000000000000000000000000000000000000..d06acb1411313ee214a7e33b590be351396f1c82
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/utils.js
@@ -0,0 +1,92 @@
+import { isDef, isNumber, isPlainObject, isPromise } from './validator';
+import { canIUseGroupSetData, canIUseNextTick } from './version';
+export { isDef } from './validator';
+export function range(num, min, max) {
+ return Math.min(Math.max(num, min), max);
+}
+export function nextTick(cb) {
+ if (canIUseNextTick()) {
+ wx.nextTick(cb);
+ }
+ else {
+ setTimeout(() => {
+ cb();
+ }, 1000 / 30);
+ }
+}
+let systemInfo;
+export function getSystemInfoSync() {
+ if (systemInfo == null) {
+ systemInfo = wx.getSystemInfoSync();
+ }
+ return systemInfo;
+}
+export function addUnit(value) {
+ if (!isDef(value)) {
+ return undefined;
+ }
+ value = String(value);
+ return isNumber(value) ? `${value}px` : value;
+}
+export function requestAnimationFrame(cb) {
+ const systemInfo = getSystemInfoSync();
+ if (systemInfo.platform === 'devtools') {
+ return setTimeout(() => {
+ cb();
+ }, 1000 / 30);
+ }
+ return wx
+ .createSelectorQuery()
+ .selectViewport()
+ .boundingClientRect()
+ .exec(() => {
+ cb();
+ });
+}
+export function pickExclude(obj, keys) {
+ if (!isPlainObject(obj)) {
+ return {};
+ }
+ return Object.keys(obj).reduce((prev, key) => {
+ if (!keys.includes(key)) {
+ prev[key] = obj[key];
+ }
+ return prev;
+ }, {});
+}
+export function getRect(context, selector) {
+ return new Promise((resolve) => {
+ wx.createSelectorQuery()
+ .in(context)
+ .select(selector)
+ .boundingClientRect()
+ .exec((rect = []) => resolve(rect[0]));
+ });
+}
+export function getAllRect(context, selector) {
+ return new Promise((resolve) => {
+ wx.createSelectorQuery()
+ .in(context)
+ .selectAll(selector)
+ .boundingClientRect()
+ .exec((rect = []) => resolve(rect[0]));
+ });
+}
+export function groupSetData(context, cb) {
+ if (canIUseGroupSetData()) {
+ context.groupSetData(cb);
+ }
+ else {
+ cb();
+ }
+}
+export function toPromise(promiseLike) {
+ if (isPromise(promiseLike)) {
+ return promiseLike;
+ }
+ return Promise.resolve(promiseLike);
+}
+export function getCurrentPage() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/validator.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/common/validator.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..152894ae7ba518b0a77ef2aee3deab38451dabd8
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/validator.d.ts
@@ -0,0 +1,9 @@
+export declare function isFunction(val: unknown): val is Function;
+export declare function isPlainObject(val: unknown): val is Record;
+export declare function isPromise(val: unknown): val is Promise;
+export declare function isDef(value: unknown): boolean;
+export declare function isObj(x: unknown): x is Record;
+export declare function isNumber(value: string): boolean;
+export declare function isBoolean(value: unknown): value is boolean;
+export declare function isImageUrl(url: string): boolean;
+export declare function isVideoUrl(url: string): boolean;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/validator.js b/litemall-wx_uni/wxcomponents/vant-weapp/common/validator.js
new file mode 100644
index 0000000000000000000000000000000000000000..f11f844bcce4936f487c0cbff8aa49baf168e64d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/validator.js
@@ -0,0 +1,31 @@
+// eslint-disable-next-line @typescript-eslint/ban-types
+export function isFunction(val) {
+ return typeof val === 'function';
+}
+export function isPlainObject(val) {
+ return val !== null && typeof val === 'object' && !Array.isArray(val);
+}
+export function isPromise(val) {
+ return isPlainObject(val) && isFunction(val.then) && isFunction(val.catch);
+}
+export function isDef(value) {
+ return value !== undefined && value !== null;
+}
+export function isObj(x) {
+ const type = typeof x;
+ return x !== null && (type === 'object' || type === 'function');
+}
+export function isNumber(value) {
+ return /^\d+(\.\d+)?$/.test(value);
+}
+export function isBoolean(value) {
+ return typeof value === 'boolean';
+}
+const IMAGE_REGEXP = /\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)/i;
+const VIDEO_REGEXP = /\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv)/i;
+export function isImageUrl(url) {
+ return IMAGE_REGEXP.test(url);
+}
+export function isVideoUrl(url) {
+ return VIDEO_REGEXP.test(url);
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/version.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/common/version.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..988b2264aa39f74fffa98a98be5ca17a79eccb51
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/version.d.ts
@@ -0,0 +1,7 @@
+export declare function canIUseModel(): boolean;
+export declare function canIUseFormFieldButton(): boolean;
+export declare function canIUseAnimate(): boolean;
+export declare function canIUseGroupSetData(): boolean;
+export declare function canIUseNextTick(): boolean;
+export declare function canIUseCanvas2d(): boolean;
+export declare function canIUseGetUserProfile(): boolean;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/common/version.js b/litemall-wx_uni/wxcomponents/vant-weapp/common/version.js
new file mode 100644
index 0000000000000000000000000000000000000000..5407ffd6acd9726216510f76493fc89bd4358020
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/common/version.js
@@ -0,0 +1,48 @@
+import { getSystemInfoSync } from './utils';
+function compareVersion(v1, v2) {
+ v1 = v1? v1.split('.'): [];
+ v2 = v2? v2.split('.'): [];
+ const len = Math.max(v1.length, v2.length);
+ while (v1.length < len) {
+ v1.push('0');
+ }
+ while (v2.length < len) {
+ v2.push('0');
+ }
+ for (let i = 0; i < len; i++) {
+ const num1 = parseInt(v1[i], 10);
+ const num2 = parseInt(v2[i], 10);
+ if (num1 > num2) {
+ return 1;
+ }
+ if (num1 < num2) {
+ return -1;
+ }
+ }
+ return 0;
+}
+function gte(version) {
+ const system = getSystemInfoSync();
+ return compareVersion(system.SDKVersion, version) >= 0;
+}
+export function canIUseModel() {
+ return gte('2.9.3');
+}
+export function canIUseFormFieldButton() {
+ return gte('2.10.3');
+}
+export function canIUseAnimate() {
+ return gte('2.9.0');
+}
+export function canIUseGroupSetData() {
+ return gte('2.4.0');
+}
+export function canIUseNextTick() {
+ return wx.canIUse('nextTick');
+}
+export function canIUseCanvas2d() {
+ return gte('2.9.0');
+}
+export function canIUseGetUserProfile() {
+ return !!wx.getUserProfile;
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..0cb23f41310f2fdfe80493ad1c5846b62e36c762
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.js
@@ -0,0 +1,9 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ themeVars: {
+ type: Object,
+ value: {},
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..cec1d9b1f66f11ab56c5c18d9e8221c90c3a8ff3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.vue
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..3cfb4614da0f8b3df3b9e93fd64df7b0779c4745
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.wxml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..7ca02030aaf9747fa07ea47ea402ac997c497557
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/config-provider/index.wxs
@@ -0,0 +1,29 @@
+/* eslint-disable */
+var object = require('../wxs/object.wxs');
+var style = require('../wxs/style.wxs');
+
+function kebabCase(word) {
+ var newWord = word
+ .replace(getRegExp("[A-Z]", 'g'), function (i) {
+ return '-' + i;
+ })
+ .toLowerCase()
+ .replace(getRegExp("^-"), '');
+
+ return newWord;
+}
+
+function mapThemeVarsToCSSVars(themeVars) {
+ var cssVars = {};
+ object.keys(themeVars).forEach(function (key) {
+ var cssVarsKey = '--' + kebabCase(key);
+ cssVars[cssVarsKey] = themeVars[key];
+ });
+
+ return style(cssVars);
+}
+
+module.exports = {
+ kebabCase: kebabCase,
+ mapThemeVarsToCSSVars: mapThemeVarsToCSSVars,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..da2414510b3e1b29aa60051e5320f8c9086bd830
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.js
@@ -0,0 +1,100 @@
+import { VantComponent } from '../common/component';
+import { isSameSecond, parseFormat, parseTimeData } from './utils';
+function simpleTick(fn) {
+ return setTimeout(fn, 30);
+}
+VantComponent({
+ props: {
+ useSlot: Boolean,
+ millisecond: Boolean,
+ time: {
+ type: Number,
+ observer: 'reset',
+ },
+ format: {
+ type: String,
+ value: 'HH:mm:ss',
+ },
+ autoStart: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ timeData: parseTimeData(0),
+ formattedTime: '0',
+ },
+ destroyed() {
+ clearTimeout(this.tid);
+ this.tid = null;
+ },
+ methods: {
+ // 开始
+ start() {
+ if (this.counting) {
+ return;
+ }
+ this.counting = true;
+ this.endTime = Date.now() + this.remain;
+ this.tick();
+ },
+ // 暂停
+ pause() {
+ this.counting = false;
+ clearTimeout(this.tid);
+ },
+ // 重置
+ reset() {
+ this.pause();
+ this.remain = this.data.time;
+ this.setRemain(this.remain);
+ if (this.data.autoStart) {
+ this.start();
+ }
+ },
+ tick() {
+ if (this.data.millisecond) {
+ this.microTick();
+ }
+ else {
+ this.macroTick();
+ }
+ },
+ microTick() {
+ this.tid = simpleTick(() => {
+ this.setRemain(this.getRemain());
+ if (this.remain !== 0) {
+ this.microTick();
+ }
+ });
+ },
+ macroTick() {
+ this.tid = simpleTick(() => {
+ const remain = this.getRemain();
+ if (!isSameSecond(remain, this.remain) || remain === 0) {
+ this.setRemain(remain);
+ }
+ if (this.remain !== 0) {
+ this.macroTick();
+ }
+ });
+ },
+ getRemain() {
+ return Math.max(this.endTime - Date.now(), 0);
+ },
+ setRemain(remain) {
+ this.remain = remain;
+ const timeData = parseTimeData(remain);
+ if (this.data.useSlot) {
+ this.$emit('change', timeData);
+ }
+ this.setData({
+ formattedTime: parseFormat(this.data.format, timeData),
+ });
+ if (remain === 0) {
+ this.pause();
+ this.$emit('finish');
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..2624258506a51537e52c6d193e8a2f3a820f8721
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.vue
@@ -0,0 +1,115 @@
+
+
+
+ {{ formattedTime }}
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..e206e1677070434f2bd7d07cffb36e1365d5e476
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.wxml
@@ -0,0 +1,4 @@
+
+
+ {{ formattedTime }}
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..8b957f7be7cf5128b9df57002baccbbb38575fa9
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-count-down{color:var(--count-down-text-color,#323233);font-size:var(--count-down-font-size,14px);line-height:var(--count-down-line-height,20px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/count-down/utils.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/utils.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..e4a58ddfb68c1d24fda9d2780f2dfae3222d8e00
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/utils.d.ts
@@ -0,0 +1,10 @@
+export declare type TimeData = {
+ days: number;
+ hours: number;
+ minutes: number;
+ seconds: number;
+ milliseconds: number;
+};
+export declare function parseTimeData(time: number): TimeData;
+export declare function parseFormat(format: string, timeData: TimeData): string;
+export declare function isSameSecond(time1: number, time2: number): boolean;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/count-down/utils.js b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/utils.js
new file mode 100644
index 0000000000000000000000000000000000000000..cbdbd79d8274971211e53146e680c67341163ba0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/count-down/utils.js
@@ -0,0 +1,57 @@
+function padZero(num, targetLength = 2) {
+ let str = num + '';
+ while (str.length < targetLength) {
+ str = '0' + str;
+ }
+ return str;
+}
+const SECOND = 1000;
+const MINUTE = 60 * SECOND;
+const HOUR = 60 * MINUTE;
+const DAY = 24 * HOUR;
+export function parseTimeData(time) {
+ const days = Math.floor(time / DAY);
+ const hours = Math.floor((time % DAY) / HOUR);
+ const minutes = Math.floor((time % HOUR) / MINUTE);
+ const seconds = Math.floor((time % MINUTE) / SECOND);
+ const milliseconds = Math.floor(time % SECOND);
+ return {
+ days,
+ hours,
+ minutes,
+ seconds,
+ milliseconds,
+ };
+}
+export function parseFormat(format, timeData) {
+ const { days } = timeData;
+ let { hours, minutes, seconds, milliseconds } = timeData;
+ if (format.indexOf('DD') === -1) {
+ hours += days * 24;
+ }
+ else {
+ format = format.replace('DD', padZero(days));
+ }
+ if (format.indexOf('HH') === -1) {
+ minutes += hours * 60;
+ }
+ else {
+ format = format.replace('HH', padZero(hours));
+ }
+ if (format.indexOf('mm') === -1) {
+ seconds += minutes * 60;
+ }
+ else {
+ format = format.replace('mm', padZero(minutes));
+ }
+ if (format.indexOf('ss') === -1) {
+ milliseconds += seconds * 1000;
+ }
+ else {
+ format = format.replace('ss', padZero(seconds));
+ }
+ return format.replace('SSS', padZero(milliseconds, 3));
+}
+export function isSameSecond(time1, time2) {
+ return Math.floor(time1 / 1000) === Math.floor(time2 / 1000);
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..333417050a16398616ad9c34b1ab89cb82b4f7f8
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.js
@@ -0,0 +1,295 @@
+import { VantComponent } from '../common/component';
+import { isDef } from '../common/validator';
+import { pickerProps } from '../picker/shared';
+const currentYear = new Date().getFullYear();
+function isValidDate(date) {
+ return isDef(date) && !isNaN(new Date(date).getTime());
+}
+function range(num, min, max) {
+ return Math.min(Math.max(num, min), max);
+}
+function padZero(val) {
+ return `00${val}`.slice(-2);
+}
+function times(n, iteratee) {
+ let index = -1;
+ const result = Array(n < 0 ? 0 : n);
+ while (++index < n) {
+ result[index] = iteratee(index);
+ }
+ return result;
+}
+function getTrueValue(formattedValue) {
+ if (formattedValue === undefined) {
+ formattedValue = '1';
+ }
+ while (isNaN(parseInt(formattedValue, 10))) {
+ formattedValue = formattedValue.slice(1);
+ }
+ return parseInt(formattedValue, 10);
+}
+function getMonthEndDay(year, month) {
+ return 32 - new Date(year, month - 1, 32).getDate();
+}
+const defaultFormatter = (type, value) => value;
+VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: Object.assign(Object.assign({}, pickerProps), { value: {
+ type: null,
+ observer: 'updateValue',
+ }, filter: null, type: {
+ type: String,
+ value: 'datetime',
+ observer: 'updateValue',
+ }, showToolbar: {
+ type: Boolean,
+ value: true,
+ }, formatter: {
+ type: null,
+ value: defaultFormatter,
+ }, minDate: {
+ type: Number,
+ value: new Date(currentYear - 10, 0, 1).getTime(),
+ observer: 'updateValue',
+ }, maxDate: {
+ type: Number,
+ value: new Date(currentYear + 10, 11, 31).getTime(),
+ observer: 'updateValue',
+ }, minHour: {
+ type: Number,
+ value: 0,
+ observer: 'updateValue',
+ }, maxHour: {
+ type: Number,
+ value: 23,
+ observer: 'updateValue',
+ }, minMinute: {
+ type: Number,
+ value: 0,
+ observer: 'updateValue',
+ }, maxMinute: {
+ type: Number,
+ value: 59,
+ observer: 'updateValue',
+ } }),
+ data: {
+ innerValue: Date.now(),
+ columns: [],
+ },
+ methods: {
+ updateValue() {
+ const { data } = this;
+ const val = this.correctValue(data.value);
+ const isEqual = val === data.innerValue;
+ this.updateColumnValue(val).then(() => {
+ if (!isEqual) {
+ this.$emit('input', val);
+ }
+ });
+ },
+ getPicker() {
+ if (this.picker == null) {
+ this.picker = this.selectComponent('.van-datetime-picker');
+ const { picker } = this;
+ const { setColumnValues } = picker;
+ picker.setColumnValues = (...args) => setColumnValues.apply(picker, [...args, false]);
+ }
+ return this.picker;
+ },
+ updateColumns() {
+ const { formatter = defaultFormatter } = this.data;
+ const results = this.getOriginColumns().map((column) => ({
+ values: column.values.map((value) => formatter(column.type, value)),
+ }));
+ return this.set({ columns: results });
+ },
+ getOriginColumns() {
+ const { filter } = this.data;
+ const results = this.getRanges().map(({ type, range }) => {
+ let values = times(range[1] - range[0] + 1, (index) => {
+ const value = range[0] + index;
+ return type === 'year' ? `${value}` : padZero(value);
+ });
+ if (filter) {
+ values = filter(type, values);
+ }
+ return { type, values };
+ });
+ return results;
+ },
+ getRanges() {
+ const { data } = this;
+ if (data.type === 'time') {
+ return [
+ {
+ type: 'hour',
+ range: [data.minHour, data.maxHour],
+ },
+ {
+ type: 'minute',
+ range: [data.minMinute, data.maxMinute],
+ },
+ ];
+ }
+ const { maxYear, maxDate, maxMonth, maxHour, maxMinute, } = this.getBoundary('max', data.innerValue);
+ const { minYear, minDate, minMonth, minHour, minMinute, } = this.getBoundary('min', data.innerValue);
+ const result = [
+ {
+ type: 'year',
+ range: [minYear, maxYear],
+ },
+ {
+ type: 'month',
+ range: [minMonth, maxMonth],
+ },
+ {
+ type: 'day',
+ range: [minDate, maxDate],
+ },
+ {
+ type: 'hour',
+ range: [minHour, maxHour],
+ },
+ {
+ type: 'minute',
+ range: [minMinute, maxMinute],
+ },
+ ];
+ if (data.type === 'date')
+ result.splice(3, 2);
+ if (data.type === 'year-month')
+ result.splice(2, 3);
+ return result;
+ },
+ correctValue(value) {
+ const { data } = this;
+ // validate value
+ const isDateType = data.type !== 'time';
+ if (isDateType && !isValidDate(value)) {
+ value = data.minDate;
+ }
+ else if (!isDateType && !value) {
+ const { minHour } = data;
+ value = `${padZero(minHour)}:00`;
+ }
+ // time type
+ if (!isDateType) {
+ let [hour, minute] = value.split(':');
+ hour = padZero(range(hour, data.minHour, data.maxHour));
+ minute = padZero(range(minute, data.minMinute, data.maxMinute));
+ return `${hour}:${minute}`;
+ }
+ // date type
+ value = Math.max(value, data.minDate);
+ value = Math.min(value, data.maxDate);
+ return value;
+ },
+ getBoundary(type, innerValue) {
+ const value = new Date(innerValue);
+ const boundary = new Date(this.data[`${type}Date`]);
+ const year = boundary.getFullYear();
+ let month = 1;
+ let date = 1;
+ let hour = 0;
+ let minute = 0;
+ if (type === 'max') {
+ month = 12;
+ date = getMonthEndDay(value.getFullYear(), value.getMonth() + 1);
+ hour = 23;
+ minute = 59;
+ }
+ if (value.getFullYear() === year) {
+ month = boundary.getMonth() + 1;
+ if (value.getMonth() + 1 === month) {
+ date = boundary.getDate();
+ if (value.getDate() === date) {
+ hour = boundary.getHours();
+ if (value.getHours() === hour) {
+ minute = boundary.getMinutes();
+ }
+ }
+ }
+ }
+ return {
+ [`${type}Year`]: year,
+ [`${type}Month`]: month,
+ [`${type}Date`]: date,
+ [`${type}Hour`]: hour,
+ [`${type}Minute`]: minute,
+ };
+ },
+ onCancel() {
+ this.$emit('cancel');
+ },
+ onConfirm() {
+ this.$emit('confirm', this.data.innerValue);
+ },
+ onChange() {
+ const { data } = this;
+ let value;
+ const picker = this.getPicker();
+ const originColumns = this.getOriginColumns();
+ if (data.type === 'time') {
+ const indexes = picker.getIndexes();
+ value = `${+originColumns[0].values[indexes[0]]}:${+originColumns[1]
+ .values[indexes[1]]}`;
+ }
+ else {
+ const indexes = picker.getIndexes();
+ const values = indexes.map((value, index) => originColumns[index].values[value]);
+ const year = getTrueValue(values[0]);
+ const month = getTrueValue(values[1]);
+ const maxDate = getMonthEndDay(year, month);
+ let date = getTrueValue(values[2]);
+ if (data.type === 'year-month') {
+ date = 1;
+ }
+ date = date > maxDate ? maxDate : date;
+ let hour = 0;
+ let minute = 0;
+ if (data.type === 'datetime') {
+ hour = getTrueValue(values[3]);
+ minute = getTrueValue(values[4]);
+ }
+ value = new Date(year, month - 1, date, hour, minute);
+ }
+ value = this.correctValue(value);
+ this.updateColumnValue(value).then(() => {
+ this.$emit('input', value);
+ this.$emit('change', picker);
+ });
+ },
+ updateColumnValue(value) {
+ let values = [];
+ const { type } = this.data;
+ const formatter = this.data.formatter || defaultFormatter;
+ const picker = this.getPicker();
+ if (type === 'time') {
+ const pair = value.split(':');
+ values = [formatter('hour', pair[0]), formatter('minute', pair[1])];
+ }
+ else {
+ const date = new Date(value);
+ values = [
+ formatter('year', `${date.getFullYear()}`),
+ formatter('month', padZero(date.getMonth() + 1)),
+ ];
+ if (type === 'date') {
+ values.push(formatter('day', padZero(date.getDate())));
+ }
+ if (type === 'datetime') {
+ values.push(formatter('day', padZero(date.getDate())), formatter('hour', padZero(date.getHours())), formatter('minute', padZero(date.getMinutes())));
+ }
+ }
+ return this.set({ innerValue: value })
+ .then(() => this.updateColumns())
+ .then(() => picker.setValues(values));
+ },
+ },
+ created() {
+ const innerValue = this.correctValue(this.data.value);
+ this.updateColumnValue(innerValue).then(() => {
+ this.$emit('input', innerValue);
+ });
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..a778e91cce16edbb1fd2af764415c4f8d2f0a0ea
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-picker": "../picker/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..f955dcbbd687ee288594203fbdeb41968cef2e00
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.vue
@@ -0,0 +1,309 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ade22024e970d0981e02ee902fcc0cc053d80ef7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.wxml
@@ -0,0 +1,16 @@
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..99694d603361421fe8f1acfc76a09eae443cb3aa
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/datetime-picker/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/definitions/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/definitions/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..a7cc750a8c22a65211ebc52ee1bd859c2280daa0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/definitions/index.d.ts
@@ -0,0 +1,27 @@
+///
+interface VantComponentInstance {
+ parent: WechatMiniprogram.Component.TrivialInstance;
+ children: WechatMiniprogram.Component.TrivialInstance[];
+ index: number;
+ $emit: (name: string, detail?: unknown, options?: WechatMiniprogram.Component.TriggerEventOption) => void;
+}
+export declare type VantComponentOptions = {
+ data?: Data;
+ field?: boolean;
+ classes?: string[];
+ mixins?: string[];
+ props?: Props;
+ relation?: {
+ relations: Record;
+ mixin: string;
+ };
+ methods?: Methods;
+ beforeCreate?: () => void;
+ created?: () => void;
+ mounted?: () => void;
+ destroyed?: () => void;
+} & ThisType, Props, Methods> & Record>;
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/definitions/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/definitions/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/definitions/index.js
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dialog/dialog.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/dialog.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c981315be39b723d9c7c13b98f606831ab38b7b9
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/dialog.d.ts
@@ -0,0 +1,50 @@
+///
+export declare type Action = 'confirm' | 'cancel' | 'overlay';
+interface DialogOptions {
+ lang?: string;
+ show?: boolean;
+ title?: string;
+ width?: string | number | null;
+ zIndex?: number;
+ theme?: string;
+ context?: WechatMiniprogram.Page.TrivialInstance | WechatMiniprogram.Component.TrivialInstance;
+ message?: string;
+ overlay?: boolean;
+ selector?: string;
+ ariaLabel?: string;
+ className?: string;
+ customStyle?: string;
+ transition?: string;
+ /**
+ * @deprecated use beforeClose instead
+ */
+ asyncClose?: boolean;
+ beforeClose?: null | ((action: Action) => Promise | void);
+ businessId?: number;
+ sessionFrom?: string;
+ overlayStyle?: string;
+ appParameter?: string;
+ messageAlign?: string;
+ sendMessageImg?: string;
+ showMessageCard?: boolean;
+ sendMessagePath?: string;
+ sendMessageTitle?: string;
+ confirmButtonText?: string;
+ cancelButtonText?: string;
+ showConfirmButton?: boolean;
+ showCancelButton?: boolean;
+ closeOnClickOverlay?: boolean;
+ confirmButtonOpenType?: string;
+}
+declare const Dialog: {
+ (options: DialogOptions): Promise;
+ alert(options: DialogOptions): Promise;
+ confirm(options: DialogOptions): Promise;
+ close(): void;
+ stopLoading(): void;
+ currentOptions: DialogOptions;
+ defaultOptions: DialogOptions;
+ setDefaultOptions(options: DialogOptions): void;
+ resetDefaultOptions(): void;
+};
+export default Dialog;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dialog/dialog.js b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/dialog.js
new file mode 100644
index 0000000000000000000000000000000000000000..0b72feca29e5407a092f7824e28caf97a51ad0c2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/dialog.js
@@ -0,0 +1,75 @@
+let queue = [];
+const defaultOptions = {
+ show: false,
+ title: '',
+ width: null,
+ theme: 'default',
+ message: '',
+ zIndex: 100,
+ overlay: true,
+ selector: '#van-dialog',
+ className: '',
+ asyncClose: false,
+ beforeClose: null,
+ transition: 'scale',
+ customStyle: '',
+ messageAlign: '',
+ overlayStyle: '',
+ confirmButtonText: '确认',
+ cancelButtonText: '取消',
+ showConfirmButton: true,
+ showCancelButton: false,
+ closeOnClickOverlay: false,
+ confirmButtonOpenType: '',
+};
+let currentOptions = Object.assign({}, defaultOptions);
+function getContext() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+const Dialog = (options) => {
+ options = Object.assign(Object.assign({}, currentOptions), options);
+ return new Promise((resolve, reject) => {
+ const context = options.context || getContext();
+ const dialog = context.selectComponent(options.selector);
+ delete options.context;
+ delete options.selector;
+ if (dialog) {
+ dialog.setData(Object.assign({ callback: (action, instance) => {
+ action === 'confirm' ? resolve(instance) : reject(instance);
+ } }, options));
+ wx.nextTick(() => {
+ dialog.setData({ show: true });
+ });
+ queue.push(dialog);
+ }
+ else {
+ console.warn('未找到 van-dialog 节点,请确认 selector 及 context 是否正确');
+ }
+ });
+};
+Dialog.alert = (options) => Dialog(options);
+Dialog.confirm = (options) => Dialog(Object.assign({ showCancelButton: true }, options));
+Dialog.close = () => {
+ queue.forEach((dialog) => {
+ dialog.close();
+ });
+ queue = [];
+};
+Dialog.stopLoading = () => {
+ queue.forEach((dialog) => {
+ dialog.stopLoading();
+ });
+};
+Dialog.currentOptions = currentOptions;
+Dialog.defaultOptions = defaultOptions;
+Dialog.setDefaultOptions = (options) => {
+ currentOptions = Object.assign(Object.assign({}, currentOptions), options);
+ Dialog.currentOptions = currentOptions;
+};
+Dialog.resetDefaultOptions = () => {
+ currentOptions = Object.assign({}, defaultOptions);
+ Dialog.currentOptions = currentOptions;
+};
+Dialog.resetDefaultOptions();
+export default Dialog;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..6f24cf4a4cbcbc2f46d2e5ee9b0f557e09d1c1a0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.js
@@ -0,0 +1,122 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { GRAY, RED } from '../common/color';
+import { toPromise } from '../common/utils';
+VantComponent({
+ mixins: [button],
+ props: {
+ show: {
+ type: Boolean,
+ observer(show) {
+ !show && this.stopLoading();
+ },
+ },
+ title: String,
+ message: String,
+ theme: {
+ type: String,
+ value: 'default',
+ },
+ useSlot: Boolean,
+ className: String,
+ customStyle: String,
+ asyncClose: Boolean,
+ messageAlign: String,
+ beforeClose: null,
+ overlayStyle: String,
+ useTitleSlot: Boolean,
+ showCancelButton: Boolean,
+ closeOnClickOverlay: Boolean,
+ confirmButtonOpenType: String,
+ width: null,
+ zIndex: {
+ type: Number,
+ value: 2000,
+ },
+ confirmButtonText: {
+ type: String,
+ value: '确认',
+ },
+ cancelButtonText: {
+ type: String,
+ value: '取消',
+ },
+ confirmButtonColor: {
+ type: String,
+ value: RED,
+ },
+ cancelButtonColor: {
+ type: String,
+ value: GRAY,
+ },
+ showConfirmButton: {
+ type: Boolean,
+ value: true,
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ transition: {
+ type: String,
+ value: 'scale',
+ },
+ },
+ data: {
+ loading: {
+ confirm: false,
+ cancel: false,
+ },
+ callback: (() => { }),
+ },
+ methods: {
+ onConfirm() {
+ this.handleAction('confirm');
+ },
+ onCancel() {
+ this.handleAction('cancel');
+ },
+ onClickOverlay() {
+ this.close('overlay');
+ },
+ close(action) {
+ this.setData({ show: false });
+ wx.nextTick(() => {
+ this.$emit('close', action);
+ const { callback } = this.data;
+ if (callback) {
+ callback(action, this);
+ }
+ });
+ },
+ stopLoading() {
+ this.setData({
+ loading: {
+ confirm: false,
+ cancel: false,
+ },
+ });
+ },
+ handleAction(action) {
+ this.$emit(action, { dialog: this });
+ const { asyncClose, beforeClose } = this.data;
+ if (!asyncClose && !beforeClose) {
+ this.close(action);
+ return;
+ }
+ this.setData({
+ [`loading.${action}`]: true,
+ });
+ if (beforeClose) {
+ toPromise(beforeClose(action)).then((value) => {
+ if (value) {
+ this.close(action);
+ }
+ else {
+ this.stopLoading();
+ }
+ });
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..43417fc8977861fcac5d1e799f8a1c2842a4e5c7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.json
@@ -0,0 +1,9 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-popup": "../popup/index",
+ "van-button": "../button/index",
+ "van-goods-action": "../goods-action/index",
+ "van-goods-action-button": "../goods-action-button/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..74c4968c07ddfbaabaabd0591c8a5d616328beef
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.vue
@@ -0,0 +1,167 @@
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
+
+
+ {{ cancelButtonText }}
+
+
+ {{ confirmButtonText }}
+
+
+
+
+
+ {{ cancelButtonText }}
+
+
+ {{ confirmButtonText }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f49dee40b75c446148dbadd24b7376971f9d5f1d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.wxml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+ {{ cancelButtonText }}
+
+
+ {{ confirmButtonText }}
+
+
+
+
+
+ {{ cancelButtonText }}
+
+
+ {{ confirmButtonText }}
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..571861ad9dbd257a8e312d614a2370ce452a67a5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dialog/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-dialog{background-color:var(--dialog-background-color,#fff);border-radius:var(--dialog-border-radius,16px);font-size:var(--dialog-font-size,16px);overflow:hidden;top:45%!important;width:var(--dialog-width,320px)}@media (max-width:321px){.van-dialog{width:var(--dialog-small-screen-width,90%)}}.van-dialog__header{font-weight:var(--dialog-header-font-weight,500);line-height:var(--dialog-header-line-height,24px);padding-top:var(--dialog-header-padding-top,24px);text-align:center}.van-dialog__header--isolated{padding:var(--dialog-header-isolated-padding,24px 0)}.van-dialog__message{-webkit-overflow-scrolling:touch;font-size:var(--dialog-message-font-size,14px);line-height:var(--dialog-message-line-height,20px);max-height:var(--dialog-message-max-height,60vh);overflow-y:auto;padding:var(--dialog-message-padding,24px);text-align:center}.van-dialog__message-text{word-wrap:break-word}.van-dialog__message--hasTitle{color:var(--dialog-has-title-message-text-color,#646566);padding-top:var(--dialog-has-title-message-padding-top,8px)}.van-dialog__message--round-button{color:#323233;padding-bottom:16px}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__footer{display:flex}.van-dialog__footer--round-button{padding:8px 24px 16px!important;position:relative!important}.van-dialog__button{flex:1}.van-dialog__cancel,.van-dialog__confirm{border:0!important}.van-dialog-bounce-enter{opacity:0;transform:translate3d(-50%,-50%,0) scale(.7)}.van-dialog-bounce-leave-active{opacity:0;transform:translate3d(-50%,-50%,0) scale(.9)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..9596edde9c68d042913be2b36fa06bbea4cb8798
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.js
@@ -0,0 +1,12 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ dashed: Boolean,
+ hairline: Boolean,
+ contentPosition: String,
+ fontSize: String,
+ borderColor: String,
+ textColor: String,
+ customStyle: String,
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..a89ef4dbeefa01f5cd7971973aa4db6498d139f7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..11b686281b0cc54a10654e6cd4668482300311d4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.vue
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f6a5a457b2de3b6b00b580f35e7fa4ca51879c06
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.wxml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..215b14f4792ab551d63ee58427cfc94295091378
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ 'border-color': data.borderColor,
+ color: data.textColor,
+ 'font-size': addUnit(data.fontSize),
+ },
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e91dc447a8bb26d555f73714d0922c737a98c898
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/divider/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-divider{align-items:center;border:0 solid var(--divider-border-color,#ebedf0);color:var(--divider-text-color,#969799);display:flex;font-size:var(--divider-font-size,14px);line-height:var(--divider-line-height,24px);margin:var(--divider-margin,16px 0)}.van-divider:after,.van-divider:before{border-color:inherit;border-style:inherit;border-width:1px 0 0;box-sizing:border-box;display:block;flex:1;height:1px}.van-divider:before{content:""}.van-divider--hairline:after,.van-divider--hairline:before{transform:scaleY(.5)}.van-divider--dashed{border-style:dashed}.van-divider--center:before,.van-divider--left:before,.van-divider--right:before{margin-right:var(--divider-content-padding,16px)}.van-divider--center:after,.van-divider--left:after,.van-divider--right:after{content:"";margin-left:var(--divider-content-padding,16px)}.van-divider--left:before{max-width:var(--divider-content-left-width,10%)}.van-divider--right:after{max-width:var(--divider-content-right-width,10%)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..0b0d00f6b73fd8293bc121221037d4fa028b2265
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.js
@@ -0,0 +1,102 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ field: true,
+ relation: useParent('dropdown-menu', function () {
+ this.updateDataFromParent();
+ }),
+ props: {
+ value: {
+ type: null,
+ observer: 'rerender',
+ },
+ title: {
+ type: String,
+ observer: 'rerender',
+ },
+ disabled: Boolean,
+ titleClass: {
+ type: String,
+ observer: 'rerender',
+ },
+ options: {
+ type: Array,
+ value: [],
+ observer: 'rerender',
+ },
+ popupStyle: String,
+ },
+ data: {
+ transition: true,
+ showPopup: false,
+ showWrapper: false,
+ displayTitle: '',
+ },
+ methods: {
+ rerender() {
+ wx.nextTick(() => {
+ var _a;
+ (_a = this.parent) === null || _a === void 0 ? void 0 : _a.updateItemListData();
+ });
+ },
+ updateDataFromParent() {
+ if (this.parent) {
+ const { overlay, duration, activeColor, closeOnClickOverlay, direction, } = this.parent.data;
+ this.setData({
+ overlay,
+ duration,
+ activeColor,
+ closeOnClickOverlay,
+ direction,
+ });
+ }
+ },
+ onOpen() {
+ this.$emit('open');
+ },
+ onOpened() {
+ this.$emit('opened');
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ onClosed() {
+ this.$emit('closed');
+ this.setData({ showWrapper: false });
+ },
+ onOptionTap(event) {
+ const { option } = event.currentTarget.dataset;
+ const { value } = option;
+ const shouldEmitChange = this.data.value !== value;
+ this.setData({ showPopup: false, value });
+ this.$emit('close');
+ this.rerender();
+ if (shouldEmitChange) {
+ this.$emit('change', value);
+ }
+ },
+ toggle(show, options = {}) {
+ var _a;
+ const { showPopup } = this.data;
+ if (typeof show !== 'boolean') {
+ show = !showPopup;
+ }
+ if (show === showPopup) {
+ return;
+ }
+ this.setData({
+ transition: !options.immediate,
+ showPopup: show,
+ });
+ if (show) {
+ (_a = this.parent) === null || _a === void 0 ? void 0 : _a.getChildWrapperStyle().then((wrapperStyle) => {
+ this.setData({ wrapperStyle, showWrapper: true });
+ this.rerender();
+ });
+ }
+ else {
+ this.rerender();
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..88d540990b8eb84cabe720e54930e910490c6715
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.json
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-popup": "../popup/index",
+ "van-cell": "../cell/index",
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..36b56ba363192a73ac2e8f983a235912c9c2af50
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.vue
@@ -0,0 +1,129 @@
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..dd75292f8c5ae8ecf10ba79cf5753dff37b80b9c
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.wxml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..80505e9fef652fa4521aafbd10d8284971d1d4d5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-dropdown-item{left:0;overflow:hidden;position:fixed;right:0}.van-dropdown-item__option{text-align:left}.van-dropdown-item__option--active .van-dropdown-item__icon,.van-dropdown-item__option--active .van-dropdown-item__title{color:var(--dropdown-menu-option-active-color,#ee0a24)}.van-dropdown-item--up{top:0}.van-dropdown-item--down{bottom:0}.van-dropdown-item__icon{display:block;line-height:inherit}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/shared.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/shared.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..774eb4cad53d4d4ece6f25d1023770bb9277f415
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/shared.d.ts
@@ -0,0 +1,5 @@
+export interface Option {
+ text: string;
+ value: string | number;
+ icon: string;
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/shared.js b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/shared.js
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-item/shared.js
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..1ed1a8787ac8517611b31341ed025036583d3616
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.js
@@ -0,0 +1,112 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+import { addUnit, getRect, getSystemInfoSync } from '../common/utils';
+let ARRAY = [];
+VantComponent({
+ field: true,
+ relation: useChildren('dropdown-item', function () {
+ this.updateItemListData();
+ }),
+ props: {
+ activeColor: {
+ type: String,
+ observer: 'updateChildrenData',
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildrenData',
+ },
+ zIndex: {
+ type: Number,
+ value: 10,
+ },
+ duration: {
+ type: Number,
+ value: 200,
+ observer: 'updateChildrenData',
+ },
+ direction: {
+ type: String,
+ value: 'down',
+ observer: 'updateChildrenData',
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildrenData',
+ },
+ closeOnClickOutside: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ itemListData: [],
+ },
+ beforeCreate() {
+ const { windowHeight } = getSystemInfoSync();
+ this.windowHeight = windowHeight;
+ ARRAY.push(this);
+ },
+ destroyed() {
+ ARRAY = ARRAY.filter((item) => item !== this);
+ },
+ methods: {
+ updateItemListData() {
+ this.setData({
+ itemListData: this.children.map((child) => child.data),
+ });
+ },
+ updateChildrenData() {
+ this.children.forEach((child) => {
+ child.updateDataFromParent();
+ });
+ },
+ toggleItem(active) {
+ this.children.forEach((item, index) => {
+ const { showPopup } = item.data;
+ if (index === active) {
+ item.toggle();
+ }
+ else if (showPopup) {
+ item.toggle(false, { immediate: true });
+ }
+ });
+ },
+ close() {
+ this.children.forEach((child) => {
+ child.toggle(false, { immediate: true });
+ });
+ },
+ getChildWrapperStyle() {
+ const { zIndex, direction } = this.data;
+ return getRect(this, '.van-dropdown-menu').then((rect) => {
+ const { top = 0, bottom = 0 } = rect;
+ const offset = direction === 'down' ? bottom : this.windowHeight - top;
+ let wrapperStyle = `z-index: ${zIndex};`;
+ if (direction === 'down') {
+ wrapperStyle += `top: ${addUnit(offset)};`;
+ }
+ else {
+ wrapperStyle += `bottom: ${addUnit(offset)};`;
+ }
+ return wrapperStyle;
+ });
+ },
+ onTitleTap(event) {
+ const { index } = event.currentTarget.dataset;
+ const child = this.children[index];
+ if (!child.data.disabled) {
+ ARRAY.forEach((menuItem) => {
+ if (menuItem &&
+ menuItem.data.closeOnClickOutside &&
+ menuItem !== this) {
+ menuItem.close();
+ }
+ });
+ this.toggleItem(index);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..06274ce011577ffc3bc65cd03c9d6e5e6f5a6c14
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.vue
@@ -0,0 +1,134 @@
+
+
+
+
+
+ {{ computed.displayTitle(item) }}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..cfd661d1e56877a530f6556897f2d4a63034414b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.wxml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+ {{ computed.displayTitle(item) }}
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..65388549c6d2168b32ee11ac2074e095c0804fab
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.wxs
@@ -0,0 +1,16 @@
+/* eslint-disable */
+function displayTitle(item) {
+ if (item.title) {
+ return item.title;
+ }
+
+ var match = item.options.filter(function(option) {
+ return option.value === item.value;
+ });
+ var displayTitle = match.length ? match[0].text : '';
+ return displayTitle;
+}
+
+module.exports = {
+ displayTitle: displayTitle
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..daa5748c9b933a4b3a4cb9af6307514ee9131831
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/dropdown-menu/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-dropdown-menu{background-color:var(--dropdown-menu-background-color,#fff);box-shadow:var(--dropdown-menu-box-shadow,0 2px 12px hsla(210,1%,40%,.12));display:flex;height:var(--dropdown-menu-height,50px);-webkit-user-select:none;user-select:none}.van-dropdown-menu__item{align-items:center;display:flex;flex:1;justify-content:center;min-width:0}.van-dropdown-menu__item:active{opacity:.7}.van-dropdown-menu__item--disabled:active{opacity:1}.van-dropdown-menu__item--disabled .van-dropdown-menu__title{color:var(--dropdown-menu-title-disabled-text-color,#969799)}.van-dropdown-menu__title{box-sizing:border-box;color:var(--dropdown-menu-title-text-color,#323233);font-size:var(--dropdown-menu-title-font-size,15px);line-height:var(--dropdown-menu-title-line-height,18px);max-width:100%;padding:var(--dropdown-menu-title-padding,0 8px);position:relative}.van-dropdown-menu__title:after{border-color:transparent transparent currentcolor currentcolor;border-style:solid;border-width:3px;content:"";margin-top:-5px;opacity:.8;position:absolute;right:-4px;top:50%;transform:rotate(-45deg)}.van-dropdown-menu__title--active{color:var(--dropdown-menu-title-active-text-color,#ee0a24)}.van-dropdown-menu__title--down:after{margin-top:-1px;transform:rotate(135deg)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..842e1bb66b21ea227d8c51dba984a230803f53a4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.js
@@ -0,0 +1,10 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ description: String,
+ image: {
+ type: String,
+ value: 'default',
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..a89ef4dbeefa01f5cd7971973aa4db6498d139f7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..970423bc49b5e160e3081488f17728a5515fc3d6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.vue
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ description }}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..9c7b719a7249f1bf5dd67f876ccc4123b0a2d609
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.wxml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ description }}
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..9696dd47452feaefa1f178b9fd8c4da4af280cf7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.wxs
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var PRESETS = ['error', 'search', 'default', 'network'];
+
+function imageUrl(image) {
+ if (PRESETS.indexOf(image) !== -1) {
+ return 'https://img.yzcdn.cn/vant/empty-image-' + image + '.png';
+ }
+
+ return image;
+}
+
+module.exports = {
+ imageUrl: imageUrl,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..0fb74fe523f9866b0081971c82a3a8d63342c6c6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/empty/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-empty{align-items:center;box-sizing:border-box;display:flex;flex-direction:column;justify-content:center;padding:32px 0}.van-empty__image{height:160px;width:160px}.van-empty__image:empty{display:none}.van-empty__image__img{height:100%;width:100%}.van-empty__image:not(:empty)+.van-empty__image{display:none}.van-empty__description{color:#969799;font-size:14px;line-height:20px;margin-top:16px;padding:0 60px}.van-empty__description:empty,.van-empty__description:not(:empty)+.van-empty__description{display:none}.van-empty__bottom{margin-top:24px}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..35627a2b8198be5209249cf334cb15b5415e6726
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.js
@@ -0,0 +1,107 @@
+import { nextTick } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { commonProps, inputProps, textareaProps } from './props';
+VantComponent({
+ field: true,
+ classes: ['input-class', 'right-icon-class', 'label-class'],
+ props: Object.assign(Object.assign(Object.assign(Object.assign({}, commonProps), inputProps), textareaProps), { size: String, icon: String, label: String, error: Boolean, center: Boolean, isLink: Boolean, leftIcon: String, rightIcon: String, autosize: null, required: Boolean, iconClass: String, clickable: Boolean, inputAlign: String, customStyle: String, errorMessage: String, arrowDirection: String, showWordLimit: Boolean, errorMessageAlign: String, readonly: {
+ type: Boolean,
+ observer: 'setShowClear',
+ }, clearable: {
+ type: Boolean,
+ observer: 'setShowClear',
+ }, clearTrigger: {
+ type: String,
+ value: 'focus',
+ }, border: {
+ type: Boolean,
+ value: true,
+ }, titleWidth: {
+ type: String,
+ value: '6.2em',
+ }, clearIcon: {
+ type: String,
+ value: 'clear',
+ } }),
+ data: {
+ focused: false,
+ innerValue: '',
+ showClear: false,
+ },
+ created() {
+ this.value = this.data.value;
+ this.setData({ innerValue: this.value });
+ },
+ methods: {
+ onInput(event) {
+ const { value = '' } = event.detail || {};
+ this.value = value;
+ this.setShowClear();
+ this.emitChange();
+ },
+ onFocus(event) {
+ this.focused = true;
+ this.setShowClear();
+ this.$emit('focus', event.detail);
+ },
+ onBlur(event) {
+ this.focused = false;
+ this.setShowClear();
+ this.$emit('blur', event.detail);
+ },
+ onClickIcon() {
+ this.$emit('click-icon');
+ },
+ onClickInput(event) {
+ this.$emit('click-input', event.detail);
+ },
+ onClear() {
+ this.setData({ innerValue: '' });
+ this.value = '';
+ this.setShowClear();
+ nextTick(() => {
+ this.emitChange();
+ this.$emit('clear', '');
+ });
+ },
+ onConfirm(event) {
+ const { value = '' } = event.detail || {};
+ this.value = value;
+ this.setShowClear();
+ this.$emit('confirm', value);
+ },
+ setValue(value) {
+ this.value = value;
+ this.setShowClear();
+ if (value === '') {
+ this.setData({ innerValue: '' });
+ }
+ this.emitChange();
+ },
+ onLineChange(event) {
+ this.$emit('linechange', event.detail);
+ },
+ onKeyboardHeightChange(event) {
+ this.$emit('keyboardheightchange', event.detail);
+ },
+ emitChange() {
+ this.setData({ value: this.value });
+ nextTick(() => {
+ this.$emit('input', this.value);
+ this.$emit('change', this.value);
+ });
+ },
+ setShowClear() {
+ const { clearable, readonly, clearTrigger } = this.data;
+ const { focused, value } = this;
+ let showClear = false;
+ if (clearable && !readonly) {
+ const hasValue = !!value;
+ const trigger = clearTrigger === 'always' || (clearTrigger === 'focus' && focused);
+ showClear = hasValue && trigger;
+ }
+ this.setData({ showClear });
+ },
+ noop() { },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..5906c5048acd40f797098314747f67ef4e5107db
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-cell": "../cell/index",
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..10fbb8ce147f1392081b109a2545c10f70cb605e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.vue
@@ -0,0 +1,151 @@
+
+
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ value.length >= maxlength ? maxlength : value.length }} /{{ maxlength }}
+
+
+ {{ errorMessage }}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ec2e0ea87387128ff72f33a62d16a7fca86867e4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.wxml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ value.length >= maxlength ? maxlength : value.length }} /{{ maxlength }}
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..78575b9a87aba798b6c39d6723f84c330b4d1592
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function inputStyle(autosize) {
+ if (autosize && autosize.constructor === 'Object') {
+ return style({
+ 'min-height': addUnit(autosize.minHeight),
+ 'max-height': addUnit(autosize.maxHeight),
+ });
+ }
+
+ return '';
+}
+
+module.exports = {
+ inputStyle: inputStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..7571fe64f84d9e3d0e975aac5f3bfcad00c3de80
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-field{--cell-icon-size:var(--field-icon-size,16px)}.van-field__label{color:var(--field-label-color,#646566)}.van-field__label--disabled{color:var(--field-disabled-text-color,#c8c9cc)}.van-field__body{align-items:center;display:flex}.van-field__body--textarea{box-sizing:border-box;line-height:1.2em;min-height:var(--cell-line-height,24px);padding:3.6px 0}.van-field__control:empty+.van-field__control{display:block}.van-field__control{background-color:initial;border:0;box-sizing:border-box;color:var(--field-input-text-color,#323233);display:none;height:var(--cell-line-height,24px);line-height:inherit;margin:0;min-height:var(--cell-line-height,24px);padding:0;position:relative;resize:none;text-align:left;width:100%}.van-field__control:empty{display:none}.van-field__control--textarea{height:var(--field-text-area-min-height,18px);min-height:var(--field-text-area-min-height,18px)}.van-field__control--error{color:var(--field-input-error-text-color,#ee0a24)}.van-field__control--disabled{background-color:initial;color:var(--field-input-disabled-text-color,#c8c9cc);opacity:1}.van-field__control--center{text-align:center}.van-field__control--right{text-align:right}.van-field__control--custom{align-items:center;display:flex;min-height:var(--cell-line-height,24px)}.van-field__placeholder{color:var(--field-placeholder-text-color,#c8c9cc);left:0;pointer-events:none;position:absolute;right:0;top:0}.van-field__placeholder--error{color:var(--field-error-message-color,#ee0a24)}.van-field__icon-root{align-items:center;display:flex;min-height:var(--cell-line-height,24px)}.van-field__clear-root,.van-field__icon-container{line-height:inherit;margin-right:calc(var(--padding-xs, 8px)*-1);padding:0 var(--padding-xs,8px);vertical-align:middle}.van-field__button,.van-field__clear-root,.van-field__icon-container{flex-shrink:0}.van-field__clear-root{color:var(--field-clear-icon-color,#c8c9cc);font-size:var(--field-clear-icon-size,16px)}.van-field__icon-container{color:var(--field-icon-container-color,#969799);font-size:var(--field-icon-size,16px)}.van-field__icon-container:empty{display:none}.van-field__button{padding-left:var(--padding-xs,8px)}.van-field__button:empty{display:none}.van-field__error-message{color:var(--field-error-message-color,#ee0a24);font-size:var(--field-error-message-text-font-size,12px);text-align:left}.van-field__error-message--center{text-align:center}.van-field__error-message--right{text-align:right}.van-field__word-limit{color:var(--field-word-limit-color,#646566);font-size:var(--field-word-limit-font-size,12px);line-height:var(--field-word-limit-line-height,16px);margin-top:var(--padding-base,4px);text-align:right}.van-field__word-num{display:inline}.van-field__word-num--full{color:var(--field-word-num-full-color,#ee0a24)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/input.vue b/litemall-wx_uni/wxcomponents/vant-weapp/field/input.vue
new file mode 100644
index 0000000000000000000000000000000000000000..1242215ce2ec3022925ad79a8cdeaebe4e4ad160
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/input.vue
@@ -0,0 +1,15 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/input.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/field/input.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..efe9a08d0521d242aa2f751df8644d8f21d520de
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/input.wxml
@@ -0,0 +1,28 @@
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/props.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/field/props.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..5cd130a127920f96ed4f24a02c5d240470b50772
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/props.d.ts
@@ -0,0 +1,4 @@
+///
+export declare const commonProps: WechatMiniprogram.Component.PropertyOption;
+export declare const inputProps: WechatMiniprogram.Component.PropertyOption;
+export declare const textareaProps: WechatMiniprogram.Component.PropertyOption;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/props.js b/litemall-wx_uni/wxcomponents/vant-weapp/field/props.js
new file mode 100644
index 0000000000000000000000000000000000000000..ae405b319b5c85d7da5c3cea650669fcceb796f6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/props.js
@@ -0,0 +1,64 @@
+export const commonProps = {
+ value: {
+ type: String,
+ observer(value) {
+ if (value !== this.value) {
+ this.setData({ innerValue: value });
+ this.value = value;
+ }
+ },
+ },
+ placeholder: String,
+ placeholderStyle: String,
+ placeholderClass: String,
+ disabled: Boolean,
+ maxlength: {
+ type: Number,
+ value: -1,
+ },
+ cursorSpacing: {
+ type: Number,
+ value: 50,
+ },
+ autoFocus: Boolean,
+ focus: Boolean,
+ cursor: {
+ type: Number,
+ value: -1,
+ },
+ selectionStart: {
+ type: Number,
+ value: -1,
+ },
+ selectionEnd: {
+ type: Number,
+ value: -1,
+ },
+ adjustPosition: {
+ type: Boolean,
+ value: true,
+ },
+ holdKeyboard: Boolean,
+};
+export const inputProps = {
+ type: {
+ type: String,
+ value: 'text',
+ },
+ password: Boolean,
+ confirmType: String,
+ confirmHold: Boolean,
+ alwaysEmbed: Boolean,
+};
+export const textareaProps = {
+ autoHeight: Boolean,
+ fixed: Boolean,
+ showConfirmBar: {
+ type: Boolean,
+ value: true,
+ },
+ disableDefaultPadding: {
+ type: Boolean,
+ value: true,
+ },
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/textarea.vue b/litemall-wx_uni/wxcomponents/vant-weapp/field/textarea.vue
new file mode 100644
index 0000000000000000000000000000000000000000..1edc9c88ff6d663b4afcba499b13c91ebd674c67
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/textarea.vue
@@ -0,0 +1,15 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/field/textarea.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/field/textarea.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..5015a51d2a21b4716c90e3f57410a40d36b39786
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/field/textarea.wxml
@@ -0,0 +1,29 @@
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..06fa62c10eb5eb579f06908ffd03b1b875bff7f2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.js
@@ -0,0 +1,36 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+import { button } from '../mixins/button';
+import { link } from '../mixins/link';
+VantComponent({
+ mixins: [link, button],
+ relation: useParent('goods-action'),
+ props: {
+ text: String,
+ color: String,
+ loading: Boolean,
+ disabled: Boolean,
+ plain: Boolean,
+ type: {
+ type: String,
+ value: 'danger',
+ },
+ },
+ methods: {
+ onClick(event) {
+ this.$emit('click', event.detail);
+ this.jumpLink();
+ },
+ updateStyle() {
+ if (this.parent == null) {
+ return;
+ }
+ const { index } = this;
+ const { children = [] } = this.parent;
+ this.setData({
+ isFirst: index === 0,
+ isLast: index === children.length - 1,
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..b567686850ec6f95a2a40e909f5dd112d2d03b62
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../button/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..9146fa9eed5471101d03e68cf71ed9e1a68c3284
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.vue
@@ -0,0 +1,53 @@
+
+
+ {{ text }}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..4505f212ea7df1a6656fc4f79b0d3c1f4ec90e96
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.wxml
@@ -0,0 +1,30 @@
+
+
+ {{ text }}
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..759a1d9a67889dfe37ca0866f3ee14a817925db3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-button/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{flex:1}.van-goods-action-button{--button-warning-background-color:var(--goods-action-button-warning-color,linear-gradient(to right,#ffd01e,#ff8917));--button-danger-background-color:var(--goods-action-button-danger-color,linear-gradient(to right,#ff6034,#ee0a24));--button-default-height:var(--goods-action-button-height,40px);--button-line-height:var(--goods-action-button-line-height,20px);--button-plain-background-color:var(--goods-action-button-plain-color,#fff);--button-border-width:0;display:block}.van-goods-action-button--first{--button-border-radius:999px 0 0 var(--goods-action-button-border-radius,999px);margin-left:5px}.van-goods-action-button--last{--button-border-radius:0 999px var(--goods-action-button-border-radius,999px) 0;margin-right:5px}.van-goods-action-button--first.van-goods-action-button--last{--button-border-radius:var(--goods-action-button-border-radius,999px)}.van-goods-action-button--plain{--button-border-width:1px}.van-goods-action-button__inner{font-weight:var(--font-weight-bold,500)!important;width:100%}@media (max-width:321px){.van-goods-action-button{font-size:13px}}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..91bd34c933071e9467eaaa348dda1d437d774a45
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.js
@@ -0,0 +1,21 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { link } from '../mixins/link';
+VantComponent({
+ classes: ['icon-class', 'text-class'],
+ mixins: [link, button],
+ props: {
+ text: String,
+ dot: Boolean,
+ info: String,
+ icon: String,
+ disabled: Boolean,
+ loading: Boolean,
+ },
+ methods: {
+ onClick(event) {
+ this.$emit('click', event.detail);
+ this.jumpLink();
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..93bfe8abb60e11baa5ebf4aa2402203c430db0ac
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-button": "../button/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..ff4861458c62d71604808413ac06a765f823a18d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.vue
@@ -0,0 +1,40 @@
+
+
+
+
+ {{ text }}
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..65b7ced3db51dc3960d88b326fc601cf9316cd1e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.wxml
@@ -0,0 +1,35 @@
+
+
+
+ {{ text }}
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..6e4758d9ce36d18d59a05c62282b2f51f566b63c
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action-icon/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-goods-action-icon{border:none!important;color:var(--goods-action-icon-text-color,#646566)!important;display:flex!important;flex-direction:column;font-size:var(--goods-action-icon-font-size,10px)!important;height:var(--goods-action-icon-height,50px)!important;justify-content:center!important;line-height:1!important;min-width:var(--goods-action-icon-width,48px)}.van-goods-action-icon__icon{color:var(--goods-action-icon-color,#323233);display:flex;font-size:var(--goods-action-icon-size,18px);margin:0 auto 5px}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..6b2ed745a438078098f8a8e126d550a110bb8f72
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.js
@@ -0,0 +1,15 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('goods-action-button', function () {
+ this.children.forEach((item) => {
+ item.updateStyle();
+ });
+ }),
+ props: {
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..7ca9441b3d51b47555ef970e7235ef5d1816300e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.vue
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..569450c738b936a2a39785eda9778c0efa6c83c4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.wxml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..7793e77784430a1f5cc02957fa4d34e6ef0877d3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/goods-action/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-goods-action{align-items:center;background-color:var(--goods-action-background-color,#fff);bottom:0;box-sizing:initial;display:flex;height:var(--goods-action-height,50px);left:0;position:fixed;right:0}.van-goods-action--safe{padding-bottom:env(safe-area-inset-bottom)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..dbeb18a397b1589cc84565e70364f7ee6ddc0f41
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.js
@@ -0,0 +1,52 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+import { link } from '../mixins/link';
+VantComponent({
+ relation: useParent('grid'),
+ classes: ['content-class', 'icon-class', 'text-class'],
+ mixins: [link],
+ props: {
+ icon: String,
+ iconColor: String,
+ iconPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ dot: Boolean,
+ info: null,
+ badge: null,
+ text: String,
+ useSlot: Boolean,
+ },
+ data: {
+ viewStyle: '',
+ },
+ mounted() {
+ this.updateStyle();
+ },
+ methods: {
+ updateStyle() {
+ if (!this.parent) {
+ return;
+ }
+ const { data, children } = this.parent;
+ const { columnNum, border, square, gutter, clickable, center, direction, reverse, iconSize, } = data;
+ this.setData({
+ center,
+ border,
+ square,
+ gutter,
+ clickable,
+ direction,
+ reverse,
+ iconSize,
+ index: children.indexOf(this),
+ columnNum,
+ });
+ },
+ onClick() {
+ this.$emit('click');
+ this.jumpLink();
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..a7c348a0c832269e9f09f0e1bf76bea92e1e636b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.vue
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ text }}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..e95087d85e93f731de2ab89d1a7d03b441bb19a2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.wxml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ text }}
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..2cfe37d03ccc8259ffcfb761d6c901027f71cac2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.wxs
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function wrapperStyle(data) {
+ var width = 100 / data.columnNum + '%';
+
+ return style({
+ width: width,
+ 'padding-top': data.square ? width : null,
+ 'padding-right': addUnit(data.gutter),
+ 'margin-top':
+ data.index >= data.columnNum && !data.square
+ ? addUnit(data.gutter)
+ : null,
+ });
+}
+
+function contentStyle(data) {
+ return data.square
+ ? style({
+ right: addUnit(data.gutter),
+ bottom: addUnit(data.gutter),
+ height: 'auto',
+ })
+ : '';
+}
+
+module.exports = {
+ wrapperStyle: wrapperStyle,
+ contentStyle: contentStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..acaea84578df7c184b2ca30c28ba8158e7c05ce5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid-item/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-grid-item{box-sizing:border-box;float:left;position:relative}.van-grid-item--square{height:0}.van-grid-item__content{background-color:var(--grid-item-content-background-color,#fff);box-sizing:border-box;display:flex;flex-direction:column;height:100%;padding:var(--grid-item-content-padding,16px 8px)}.van-grid-item__content:after{border-width:0 1px 1px 0;z-index:1}.van-grid-item__content--surround:after{border-width:1px}.van-grid-item__content--center{align-items:center;justify-content:center}.van-grid-item__content--square{left:0;position:absolute;right:0;top:0}.van-grid-item__content--horizontal{flex-direction:row}.van-grid-item__content--horizontal .van-grid-item__text{margin:0 0 0 8px}.van-grid-item__content--reverse{flex-direction:column-reverse}.van-grid-item__content--reverse .van-grid-item__text{margin:0 0 8px}.van-grid-item__content--horizontal.van-grid-item__content--reverse{flex-direction:row-reverse}.van-grid-item__content--horizontal.van-grid-item__content--reverse .van-grid-item__text{margin:0 8px 0 0}.van-grid-item__content--clickable:active{background-color:var(--grid-item-content-active-color,#f2f3f5)}.van-grid-item__icon{align-items:center;display:flex;font-size:var(--grid-item-icon-size,26px);height:var(--grid-item-icon-size,26px)}.van-grid-item__text{word-wrap:break-word;color:var(--grid-item-text-color,#646566);font-size:var(--grid-item-text-font-size,12px)}.van-grid-item__icon+.van-grid-item__text{margin-top:8px}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..41dfa4ced63978146ad03a265bd69b1db6052cf5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.js
@@ -0,0 +1,55 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('grid-item'),
+ props: {
+ square: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ gutter: {
+ type: null,
+ value: 0,
+ observer: 'updateChildren',
+ },
+ clickable: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ columnNum: {
+ type: Number,
+ value: 4,
+ observer: 'updateChildren',
+ },
+ center: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildren',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildren',
+ },
+ direction: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ iconSize: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ reverse: {
+ type: Boolean,
+ value: false,
+ observer: 'updateChildren',
+ },
+ },
+ methods: {
+ updateChildren() {
+ this.children.forEach((child) => {
+ child.updateStyle();
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..6d8aeb79509f519a012a56f0cb59afddb4da7d10
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.vue
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..2e4118f3583aa3193e488f7121437b4eb176af79
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.wxml
@@ -0,0 +1,8 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..cd3b1bd59a948be3912e8051298b63d48f77719b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.wxs
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'padding-left': addUnit(data.gutter),
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e347440ed3ef35ac5ad16b33aefae95a77e06802
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/grid/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-grid{box-sizing:border-box;overflow:hidden;position:relative}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..34fee338a181fbc6a1127171c6ba54328d8c72c0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.js
@@ -0,0 +1,20 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ dot: Boolean,
+ info: null,
+ size: null,
+ color: String,
+ customStyle: String,
+ classPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ name: String,
+ },
+ methods: {
+ onClick() {
+ this.$emit('click');
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ebe009c3904229ff4005710f4136b55cf57aa
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..7389c490ceda76495acd7d08c832cfb797af3ea7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.vue
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..3c701745ba48735071a00b5eae3d9c2975d4a7b6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.wxml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..45e3aa0a1f132fbf0bf922943c359b332c667413
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.wxs
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function isImage(name) {
+ return name.indexOf('/') !== -1;
+}
+
+function rootClass(data) {
+ var classes = ['custom-class'];
+
+ if (data.classPrefix != null) {
+ classes.push(data.classPrefix);
+ }
+
+ if (isImage(data.name)) {
+ classes.push('van-icon--image');
+ } else if (data.classPrefix != null) {
+ classes.push(data.classPrefix + '-' + data.name);
+ }
+
+ return classes.join(' ');
+}
+
+function rootStyle(data) {
+ return style([
+ {
+ color: data.color,
+ 'font-size': addUnit(data.size),
+ },
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ isImage: isImage,
+ rootClass: rootClass,
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..5e74802304d1c25f294fdb6c4d54dbd4f8c80cc3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/icon/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-icon{text-rendering:auto;-webkit-font-smoothing:antialiased;font:normal normal normal 14px/1 vant-icon;font-size:inherit;position:relative}.van-icon,.van-icon:before{display:inline-block}.van-icon-exchange:before{content:"\e6af"}.van-icon-eye:before{content:"\e6b0"}.van-icon-enlarge:before{content:"\e6b1"}.van-icon-expand-o:before{content:"\e6b2"}.van-icon-eye-o:before{content:"\e6b3"}.van-icon-expand:before{content:"\e6b4"}.van-icon-filter-o:before{content:"\e6b5"}.van-icon-fire:before{content:"\e6b6"}.van-icon-fail:before{content:"\e6b7"}.van-icon-failure:before{content:"\e6b8"}.van-icon-fire-o:before{content:"\e6b9"}.van-icon-flag-o:before{content:"\e6ba"}.van-icon-font:before{content:"\e6bb"}.van-icon-font-o:before{content:"\e6bc"}.van-icon-gem-o:before{content:"\e6bd"}.van-icon-flower-o:before{content:"\e6be"}.van-icon-gem:before{content:"\e6bf"}.van-icon-gift-card:before{content:"\e6c0"}.van-icon-friends:before{content:"\e6c1"}.van-icon-friends-o:before{content:"\e6c2"}.van-icon-gold-coin:before{content:"\e6c3"}.van-icon-gold-coin-o:before{content:"\e6c4"}.van-icon-good-job-o:before{content:"\e6c5"}.van-icon-gift:before{content:"\e6c6"}.van-icon-gift-o:before{content:"\e6c7"}.van-icon-gift-card-o:before{content:"\e6c8"}.van-icon-good-job:before{content:"\e6c9"}.van-icon-home-o:before{content:"\e6ca"}.van-icon-goods-collect:before{content:"\e6cb"}.van-icon-graphic:before{content:"\e6cc"}.van-icon-goods-collect-o:before{content:"\e6cd"}.van-icon-hot-o:before{content:"\e6ce"}.van-icon-info:before{content:"\e6cf"}.van-icon-hotel-o:before{content:"\e6d0"}.van-icon-info-o:before{content:"\e6d1"}.van-icon-hot-sale-o:before{content:"\e6d2"}.van-icon-hot:before{content:"\e6d3"}.van-icon-like:before{content:"\e6d4"}.van-icon-idcard:before{content:"\e6d5"}.van-icon-invitation:before{content:"\e6d6"}.van-icon-like-o:before{content:"\e6d7"}.van-icon-hot-sale:before{content:"\e6d8"}.van-icon-location-o:before{content:"\e6d9"}.van-icon-location:before{content:"\e6da"}.van-icon-label:before{content:"\e6db"}.van-icon-lock:before{content:"\e6dc"}.van-icon-label-o:before{content:"\e6dd"}.van-icon-map-marked:before{content:"\e6de"}.van-icon-logistics:before{content:"\e6df"}.van-icon-manager:before{content:"\e6e0"}.van-icon-more:before{content:"\e6e1"}.van-icon-live:before{content:"\e6e2"}.van-icon-manager-o:before{content:"\e6e3"}.van-icon-medal:before{content:"\e6e4"}.van-icon-more-o:before{content:"\e6e5"}.van-icon-music-o:before{content:"\e6e6"}.van-icon-music:before{content:"\e6e7"}.van-icon-new-arrival-o:before{content:"\e6e8"}.van-icon-medal-o:before{content:"\e6e9"}.van-icon-new-o:before{content:"\e6ea"}.van-icon-free-postage:before{content:"\e6eb"}.van-icon-newspaper-o:before{content:"\e6ec"}.van-icon-new-arrival:before{content:"\e6ed"}.van-icon-minus:before{content:"\e6ee"}.van-icon-orders-o:before{content:"\e6ef"}.van-icon-new:before{content:"\e6f0"}.van-icon-paid:before{content:"\e6f1"}.van-icon-notes-o:before{content:"\e6f2"}.van-icon-other-pay:before{content:"\e6f3"}.van-icon-pause-circle:before{content:"\e6f4"}.van-icon-pause:before{content:"\e6f5"}.van-icon-pause-circle-o:before{content:"\e6f6"}.van-icon-peer-pay:before{content:"\e6f7"}.van-icon-pending-payment:before{content:"\e6f8"}.van-icon-passed:before{content:"\e6f9"}.van-icon-plus:before{content:"\e6fa"}.van-icon-phone-circle-o:before{content:"\e6fb"}.van-icon-phone-o:before{content:"\e6fc"}.van-icon-printer:before{content:"\e6fd"}.van-icon-photo-fail:before{content:"\e6fe"}.van-icon-phone:before{content:"\e6ff"}.van-icon-photo-o:before{content:"\e700"}.van-icon-play-circle:before{content:"\e701"}.van-icon-play:before{content:"\e702"}.van-icon-phone-circle:before{content:"\e703"}.van-icon-point-gift-o:before{content:"\e704"}.van-icon-point-gift:before{content:"\e705"}.van-icon-play-circle-o:before{content:"\e706"}.van-icon-shrink:before{content:"\e707"}.van-icon-photo:before{content:"\e708"}.van-icon-qr:before{content:"\e709"}.van-icon-qr-invalid:before{content:"\e70a"}.van-icon-question-o:before{content:"\e70b"}.van-icon-revoke:before{content:"\e70c"}.van-icon-replay:before{content:"\e70d"}.van-icon-service:before{content:"\e70e"}.van-icon-question:before{content:"\e70f"}.van-icon-search:before{content:"\e710"}.van-icon-refund-o:before{content:"\e711"}.van-icon-service-o:before{content:"\e712"}.van-icon-scan:before{content:"\e713"}.van-icon-share:before{content:"\e714"}.van-icon-send-gift-o:before{content:"\e715"}.van-icon-share-o:before{content:"\e716"}.van-icon-setting:before{content:"\e717"}.van-icon-points:before{content:"\e718"}.van-icon-photograph:before{content:"\e719"}.van-icon-shop:before{content:"\e71a"}.van-icon-shop-o:before{content:"\e71b"}.van-icon-shop-collect-o:before{content:"\e71c"}.van-icon-shop-collect:before{content:"\e71d"}.van-icon-smile:before{content:"\e71e"}.van-icon-shopping-cart-o:before{content:"\e71f"}.van-icon-sign:before{content:"\e720"}.van-icon-sort:before{content:"\e721"}.van-icon-star-o:before{content:"\e722"}.van-icon-smile-comment-o:before{content:"\e723"}.van-icon-stop:before{content:"\e724"}.van-icon-stop-circle-o:before{content:"\e725"}.van-icon-smile-o:before{content:"\e726"}.van-icon-star:before{content:"\e727"}.van-icon-success:before{content:"\e728"}.van-icon-stop-circle:before{content:"\e729"}.van-icon-records:before{content:"\e72a"}.van-icon-shopping-cart:before{content:"\e72b"}.van-icon-tosend:before{content:"\e72c"}.van-icon-todo-list:before{content:"\e72d"}.van-icon-thumb-circle-o:before{content:"\e72e"}.van-icon-thumb-circle:before{content:"\e72f"}.van-icon-umbrella-circle:before{content:"\e730"}.van-icon-underway:before{content:"\e731"}.van-icon-upgrade:before{content:"\e732"}.van-icon-todo-list-o:before{content:"\e733"}.van-icon-tv-o:before{content:"\e734"}.van-icon-underway-o:before{content:"\e735"}.van-icon-user-o:before{content:"\e736"}.van-icon-vip-card-o:before{content:"\e737"}.van-icon-vip-card:before{content:"\e738"}.van-icon-send-gift:before{content:"\e739"}.van-icon-wap-home:before{content:"\e73a"}.van-icon-wap-nav:before{content:"\e73b"}.van-icon-volume-o:before{content:"\e73c"}.van-icon-video:before{content:"\e73d"}.van-icon-wap-home-o:before{content:"\e73e"}.van-icon-volume:before{content:"\e73f"}.van-icon-warning:before{content:"\e740"}.van-icon-weapp-nav:before{content:"\e741"}.van-icon-wechat-pay:before{content:"\e742"}.van-icon-warning-o:before{content:"\e743"}.van-icon-wechat:before{content:"\e744"}.van-icon-setting-o:before{content:"\e745"}.van-icon-youzan-shield:before{content:"\e746"}.van-icon-warn-o:before{content:"\e747"}.van-icon-smile-comment:before{content:"\e748"}.van-icon-user-circle-o:before{content:"\e749"}.van-icon-video-o:before{content:"\e74a"}.van-icon-add-square:before{content:"\e65c"}.van-icon-add:before{content:"\e65d"}.van-icon-arrow-down:before{content:"\e65e"}.van-icon-arrow-up:before{content:"\e65f"}.van-icon-arrow:before{content:"\e660"}.van-icon-after-sale:before{content:"\e661"}.van-icon-add-o:before{content:"\e662"}.van-icon-alipay:before{content:"\e663"}.van-icon-ascending:before{content:"\e664"}.van-icon-apps-o:before{content:"\e665"}.van-icon-aim:before{content:"\e666"}.van-icon-award:before{content:"\e667"}.van-icon-arrow-left:before{content:"\e668"}.van-icon-award-o:before{content:"\e669"}.van-icon-audio:before{content:"\e66a"}.van-icon-bag-o:before{content:"\e66b"}.van-icon-balance-list:before{content:"\e66c"}.van-icon-back-top:before{content:"\e66d"}.van-icon-bag:before{content:"\e66e"}.van-icon-balance-pay:before{content:"\e66f"}.van-icon-balance-o:before{content:"\e670"}.van-icon-bar-chart-o:before{content:"\e671"}.van-icon-bars:before{content:"\e672"}.van-icon-balance-list-o:before{content:"\e673"}.van-icon-birthday-cake-o:before{content:"\e674"}.van-icon-bookmark:before{content:"\e675"}.van-icon-bill:before{content:"\e676"}.van-icon-bell:before{content:"\e677"}.van-icon-browsing-history-o:before{content:"\e678"}.van-icon-browsing-history:before{content:"\e679"}.van-icon-bookmark-o:before{content:"\e67a"}.van-icon-bulb-o:before{content:"\e67b"}.van-icon-bullhorn-o:before{content:"\e67c"}.van-icon-bill-o:before{content:"\e67d"}.van-icon-calendar-o:before{content:"\e67e"}.van-icon-brush-o:before{content:"\e67f"}.van-icon-card:before{content:"\e680"}.van-icon-cart-o:before{content:"\e681"}.van-icon-cart-circle:before{content:"\e682"}.van-icon-cart-circle-o:before{content:"\e683"}.van-icon-cart:before{content:"\e684"}.van-icon-cash-on-deliver:before{content:"\e685"}.van-icon-cash-back-record:before{content:"\e686"}.van-icon-cashier-o:before{content:"\e687"}.van-icon-chart-trending-o:before{content:"\e688"}.van-icon-certificate:before{content:"\e689"}.van-icon-chat:before{content:"\e68a"}.van-icon-clear:before{content:"\e68b"}.van-icon-chat-o:before{content:"\e68c"}.van-icon-checked:before{content:"\e68d"}.van-icon-clock:before{content:"\e68e"}.van-icon-clock-o:before{content:"\e68f"}.van-icon-close:before{content:"\e690"}.van-icon-closed-eye:before{content:"\e691"}.van-icon-circle:before{content:"\e692"}.van-icon-cluster-o:before{content:"\e693"}.van-icon-column:before{content:"\e694"}.van-icon-comment-circle-o:before{content:"\e695"}.van-icon-cluster:before{content:"\e696"}.van-icon-comment:before{content:"\e697"}.van-icon-comment-o:before{content:"\e698"}.van-icon-comment-circle:before{content:"\e699"}.van-icon-completed:before{content:"\e69a"}.van-icon-credit-pay:before{content:"\e69b"}.van-icon-coupon:before{content:"\e69c"}.van-icon-debit-pay:before{content:"\e69d"}.van-icon-coupon-o:before{content:"\e69e"}.van-icon-contact:before{content:"\e69f"}.van-icon-descending:before{content:"\e6a0"}.van-icon-desktop-o:before{content:"\e6a1"}.van-icon-diamond-o:before{content:"\e6a2"}.van-icon-description:before{content:"\e6a3"}.van-icon-delete:before{content:"\e6a4"}.van-icon-diamond:before{content:"\e6a5"}.van-icon-delete-o:before{content:"\e6a6"}.van-icon-cross:before{content:"\e6a7"}.van-icon-edit:before{content:"\e6a8"}.van-icon-ellipsis:before{content:"\e6a9"}.van-icon-down:before{content:"\e6aa"}.van-icon-discount:before{content:"\e6ab"}.van-icon-ecard-pay:before{content:"\e6ac"}.van-icon-envelop-o:before{content:"\e6ae"}.van-icon-shield-o:before{content:"\e74b"}.van-icon-guide-o:before{content:"\e74c"}@font-face{font-display:auto;font-family:vant-icon;font-style:normal;font-weight:400;src:url(//at.alicdn.com/t/font_2553510_61agzg96wm8.woff2?t=1631948257467) format("woff2"), url(//at.alicdn.com/t/font_2553510_61agzg96wm8.woff?t=1631948257467) format("woff"), url(//at.alicdn.com/t/font_2553510_61agzg96wm8.ttf?t=1631948257467) format("truetype")}:host{align-items:center;display:inline-flex;justify-content:center}.van-icon--image{height:1em;width:1em}.van-icon__image{height:100%;width:100%}.van-icon__info{z-index:1}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/image/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/image/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..06c9dd157240dbd674da84603ab939d29f457ac4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.js
@@ -0,0 +1,60 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+VantComponent({
+ mixins: [button],
+ classes: ['custom-class', 'loading-class', 'error-class', 'image-class'],
+ props: {
+ src: {
+ type: String,
+ observer() {
+ this.setData({
+ error: false,
+ loading: true,
+ });
+ },
+ },
+ round: Boolean,
+ width: null,
+ height: null,
+ radius: null,
+ lazyLoad: Boolean,
+ useErrorSlot: Boolean,
+ useLoadingSlot: Boolean,
+ showMenuByLongpress: Boolean,
+ fit: {
+ type: String,
+ value: 'fill',
+ },
+ showError: {
+ type: Boolean,
+ value: true,
+ },
+ showLoading: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ error: false,
+ loading: true,
+ viewStyle: '',
+ },
+ methods: {
+ onLoad(event) {
+ this.setData({
+ loading: false,
+ });
+ this.$emit('load', event.detail);
+ },
+ onError(event) {
+ this.setData({
+ loading: false,
+ error: true,
+ });
+ this.$emit('error', event.detail);
+ },
+ onClick(event) {
+ this.$emit('click', event.detail);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/image/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..e00a588702da8887bbe5f8261aea5764251d14ff
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/image/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..66cfbd0ea8e5ad1b72da6d7ce1b6f8ccaf82ec96
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.vue
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/image/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..d3092bd927962f5e9b8efecdbfd45d1fec8d1047
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.wxml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/image/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..cec14b8ba8ad2401e523469e2c7cc98c76f7e7d4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.wxs
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ width: addUnit(data.width),
+ height: addUnit(data.height),
+ 'border-radius': addUnit(data.radius),
+ },
+ data.radius ? 'overflow: hidden' : null,
+ ]);
+}
+
+var FIT_MODE_MAP = {
+ none: 'center',
+ fill: 'scaleToFill',
+ cover: 'aspectFill',
+ contain: 'aspectFit',
+ widthFix: 'widthFix',
+ heightFix: 'heightFix',
+};
+
+function mode(fit) {
+ return FIT_MODE_MAP[fit];
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ mode: mode,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/image/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..a9c6ebbbbfbbda937fc7f51e17a41ed06fb9e38d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/image/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-image{display:inline-block;position:relative}.van-image--round{border-radius:50%;overflow:hidden}.van-image--round .van-image__img{border-radius:inherit}.van-image__error,.van-image__img,.van-image__loading{display:block;height:100%;width:100%}.van-image__error,.van-image__loading{align-items:center;background-color:var(--image-placeholder-background-color,#f7f8fa);color:var(--image-placeholder-text-color,#969799);display:flex;flex-direction:column;font-size:var(--image-placeholder-font-size,14px);justify-content:center;left:0;position:absolute;top:0}.van-image__loading-icon{color:var(--image-loading-icon-color,#dcdee0);font-size:var(--image-loading-icon-size,32px)!important}.van-image__error-icon{color:var(--image-error-icon-color,#dcdee0);font-size:var(--image-error-icon-size,32px)!important}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..85265e950a6c79072f51b915dc2163dfedda7efe
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.js
@@ -0,0 +1,25 @@
+import { getRect } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ relation: useParent('index-bar'),
+ props: {
+ useSlot: Boolean,
+ index: null,
+ },
+ data: {
+ active: false,
+ wrapperStyle: '',
+ anchorStyle: '',
+ },
+ methods: {
+ scrollIntoView(scrollTop) {
+ getRect(this, '.van-index-anchor-wrapper').then((rect) => {
+ wx.pageScrollTo({
+ duration: 0,
+ scrollTop: scrollTop + rect.top - this.parent.data.stickyOffsetTop,
+ });
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..cbd045e6d36caeca2ff6383bd0edc64e217d29e7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.vue
@@ -0,0 +1,44 @@
+
+
+
+
+
+ {{ index }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..49affa7c456f035d7698b11e94f2c11294ed4c97
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.wxml
@@ -0,0 +1,14 @@
+
+
+
+
+ {{ index }}
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..4b91560bf8fae1c195d7a64c8ac71ca720b6f329
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-anchor/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-index-anchor{background-color:var(--index-anchor-background-color,transparent);color:var(--index-anchor-text-color,#323233);font-size:var(--index-anchor-font-size,14px);font-weight:var(--index-anchor-font-weight,500);line-height:var(--index-anchor-line-height,32px);padding:var(--index-anchor-padding,0 16px)}.van-index-anchor--active{background-color:var(--index-anchor-active-background-color,#fff);color:var(--index-anchor-active-text-color,#07c160);left:0;right:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..201b2e3693a0bbb5509ad6b5a1cfc6cb17491774
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.js
@@ -0,0 +1,243 @@
+import { GREEN } from '../common/color';
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+import { getRect, isDef } from '../common/utils';
+import { pageScrollMixin } from '../mixins/page-scroll';
+const indexList = () => {
+ const indexList = [];
+ const charCodeOfA = 'A'.charCodeAt(0);
+ for (let i = 0; i < 26; i++) {
+ indexList.push(String.fromCharCode(charCodeOfA + i));
+ }
+ return indexList;
+};
+VantComponent({
+ relation: useChildren('index-anchor', function () {
+ this.updateData();
+ }),
+ props: {
+ sticky: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ highlightColor: {
+ type: String,
+ value: GREEN,
+ },
+ stickyOffsetTop: {
+ type: Number,
+ value: 0,
+ },
+ indexList: {
+ type: Array,
+ value: indexList(),
+ },
+ },
+ mixins: [
+ pageScrollMixin(function (event) {
+ this.scrollTop = (event === null || event === void 0 ? void 0 : event.scrollTop) || 0;
+ this.onScroll();
+ }),
+ ],
+ data: {
+ activeAnchorIndex: null,
+ showSidebar: false,
+ },
+ created() {
+ this.scrollTop = 0;
+ },
+ methods: {
+ updateData() {
+ wx.nextTick(() => {
+ if (this.timer != null) {
+ clearTimeout(this.timer);
+ }
+ this.timer = setTimeout(() => {
+ this.setData({
+ showSidebar: !!this.children.length,
+ });
+ this.setRect().then(() => {
+ this.onScroll();
+ });
+ }, 0);
+ });
+ },
+ setRect() {
+ return Promise.all([
+ this.setAnchorsRect(),
+ this.setListRect(),
+ this.setSiderbarRect(),
+ ]);
+ },
+ setAnchorsRect() {
+ return Promise.all(this.children.map((anchor) => getRect(anchor, '.van-index-anchor-wrapper').then((rect) => {
+ Object.assign(anchor, {
+ height: rect.height,
+ top: rect.top + this.scrollTop,
+ });
+ })));
+ },
+ setListRect() {
+ return getRect(this, '.van-index-bar').then((rect) => {
+ Object.assign(this, {
+ height: rect.height,
+ top: rect.top + this.scrollTop,
+ });
+ });
+ },
+ setSiderbarRect() {
+ return getRect(this, '.van-index-bar__sidebar').then((res) => {
+ if (!isDef(res)) {
+ return;
+ }
+ this.sidebar = {
+ height: res.height,
+ top: res.top,
+ };
+ });
+ },
+ setDiffData({ target, data }) {
+ const diffData = {};
+ Object.keys(data).forEach((key) => {
+ if (target.data[key] !== data[key]) {
+ diffData[key] = data[key];
+ }
+ });
+ if (Object.keys(diffData).length) {
+ target.setData(diffData);
+ }
+ },
+ getAnchorRect(anchor) {
+ return getRect(anchor, '.van-index-anchor-wrapper').then((rect) => ({
+ height: rect.height,
+ top: rect.top,
+ }));
+ },
+ getActiveAnchorIndex() {
+ const { children, scrollTop } = this;
+ const { sticky, stickyOffsetTop } = this.data;
+ for (let i = this.children.length - 1; i >= 0; i--) {
+ const preAnchorHeight = i > 0 ? children[i - 1].height : 0;
+ const reachTop = sticky ? preAnchorHeight + stickyOffsetTop : 0;
+ if (reachTop + scrollTop >= children[i].top) {
+ return i;
+ }
+ }
+ return -1;
+ },
+ onScroll() {
+ const { children = [], scrollTop } = this;
+ if (!children.length) {
+ return;
+ }
+ const { sticky, stickyOffsetTop, zIndex, highlightColor } = this.data;
+ const active = this.getActiveAnchorIndex();
+ this.setDiffData({
+ target: this,
+ data: {
+ activeAnchorIndex: active,
+ },
+ });
+ if (sticky) {
+ let isActiveAnchorSticky = false;
+ if (active !== -1) {
+ isActiveAnchorSticky =
+ children[active].top <= stickyOffsetTop + scrollTop;
+ }
+ children.forEach((item, index) => {
+ if (index === active) {
+ let wrapperStyle = '';
+ let anchorStyle = `
+ color: ${highlightColor};
+ `;
+ if (isActiveAnchorSticky) {
+ wrapperStyle = `
+ height: ${children[index].height}px;
+ `;
+ anchorStyle = `
+ position: fixed;
+ top: ${stickyOffsetTop}px;
+ z-index: ${zIndex};
+ color: ${highlightColor};
+ `;
+ }
+ this.setDiffData({
+ target: item,
+ data: {
+ active: true,
+ anchorStyle,
+ wrapperStyle,
+ },
+ });
+ }
+ else if (index === active - 1) {
+ const currentAnchor = children[index];
+ const currentOffsetTop = currentAnchor.top;
+ const targetOffsetTop = index === children.length - 1
+ ? this.top
+ : children[index + 1].top;
+ const parentOffsetHeight = targetOffsetTop - currentOffsetTop;
+ const translateY = parentOffsetHeight - currentAnchor.height;
+ const anchorStyle = `
+ position: relative;
+ transform: translate3d(0, ${translateY}px, 0);
+ z-index: ${zIndex};
+ color: ${highlightColor};
+ `;
+ this.setDiffData({
+ target: item,
+ data: {
+ active: true,
+ anchorStyle,
+ },
+ });
+ }
+ else {
+ this.setDiffData({
+ target: item,
+ data: {
+ active: false,
+ anchorStyle: '',
+ wrapperStyle: '',
+ },
+ });
+ }
+ });
+ }
+ },
+ onClick(event) {
+ this.scrollToAnchor(event.target.dataset.index);
+ },
+ onTouchMove(event) {
+ const sidebarLength = this.children.length;
+ const touch = event.touches[0];
+ const itemHeight = this.sidebar.height / sidebarLength;
+ let index = Math.floor((touch.clientY - this.sidebar.top) / itemHeight);
+ if (index < 0) {
+ index = 0;
+ }
+ else if (index > sidebarLength - 1) {
+ index = sidebarLength - 1;
+ }
+ this.scrollToAnchor(index);
+ },
+ onTouchStop() {
+ this.scrollToAnchorIndex = null;
+ },
+ scrollToAnchor(index) {
+ if (typeof index !== 'number' || this.scrollToAnchorIndex === index) {
+ return;
+ }
+ this.scrollToAnchorIndex = index;
+ const anchor = this.children.find((item) => item.data.index === this.data.indexList[index]);
+ if (anchor) {
+ anchor.scrollIntoView(this.scrollTop);
+ this.$emit('select', anchor.data.index);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..3c04c190a085544eecc5c795c59ee6dcbb781560
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.vue
@@ -0,0 +1,263 @@
+
+
+
+
+
+
+ {{ item }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..19a59cf9d4b29e1a17e0d70fb082b0d6e4efb901
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.wxml
@@ -0,0 +1,22 @@
+
+
+
+
+
+ {{ item }}
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..85688010ef3b251a6b3f2585350b29603ff1fb87
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/index-bar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-index-bar{position:relative}.van-index-bar__sidebar{display:flex;flex-direction:column;position:fixed;right:0;text-align:center;top:50%;transform:translateY(-50%);-webkit-user-select:none;user-select:none}.van-index-bar__index{font-size:var(--index-bar-index-font-size,10px);font-weight:500;line-height:var(--index-bar-index-line-height,14px);padding:0 var(--padding-base,4px) 0 var(--padding-md,16px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/info/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/info/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..6eac8f8d4086240eaaf494cbffc65db1c057a410
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.js
@@ -0,0 +1,8 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ dot: Boolean,
+ info: null,
+ customStyle: String,
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/info/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/info/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..d74ae8171bbaf80a2610691044de25a93c3fab1b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.vue
@@ -0,0 +1,20 @@
+
+{{ dot ? '' : info }}
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/info/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..b39b52459903981d61ff38bd135cb7eda703df5b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.wxml
@@ -0,0 +1,7 @@
+
+
+{{ dot ? '' : info }}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/info/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..375ed5a0803873e8c1074ed87de70c280a9148c7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/info/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-info{align-items:center;background-color:var(--info-background-color,#ee0a24);border:var(--info-border-width,1px) solid #fff;border-radius:var(--info-size,16px);box-sizing:border-box;color:var(--info-color,#fff);display:inline-flex;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);font-size:var(--info-font-size,12px);font-weight:var(--info-font-weight,500);height:var(--info-size,16px);justify-content:center;min-width:var(--info-size,16px);padding:var(--info-padding,0 3px);position:absolute;right:0;top:0;transform:translate(50%,-50%);transform-origin:100%;white-space:nowrap}.van-info--dot{background-color:var(--info-dot-color,#ee0a24);border-radius:100%;height:var(--info-dot-size,8px);min-width:0;width:var(--info-dot-size,8px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..f5f96bada7d79a63bfcfe7e333cf7fd2be55aacb
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.js
@@ -0,0 +1,16 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ color: String,
+ vertical: Boolean,
+ type: {
+ type: String,
+ value: 'circular',
+ },
+ size: String,
+ textSize: String,
+ },
+ data: {
+ array12: Array.from({ length: 12 }),
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..757627f952cebec61be77bcb6058f78af0c49268
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.vue
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..7d4a5397bb1347c5530b6f977cb7fd1fdf29b460
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.wxml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..02a0b800c651e55938ecc3ee12d10e37b3782614
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.wxs
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function spinnerStyle(data) {
+ return style({
+ color: data.color,
+ width: addUnit(data.size),
+ height: addUnit(data.size),
+ });
+}
+
+function textStyle(data) {
+ return style({
+ 'font-size': addUnit(data.textSize),
+ });
+}
+
+module.exports = {
+ spinnerStyle: spinnerStyle,
+ textStyle: textStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..fc84e848598d1df11a8eab582d429bcf40ab8c8a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/loading/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{font-size:0;line-height:1}.van-loading{align-items:center;color:var(--loading-spinner-color,#c8c9cc);display:inline-flex;justify-content:center}.van-loading__spinner{animation:van-rotate var(--loading-spinner-animation-duration,.8s) linear infinite;box-sizing:border-box;height:var(--loading-spinner-size,30px);max-height:100%;max-width:100%;position:relative;width:var(--loading-spinner-size,30px)}.van-loading__spinner--spinner{animation-timing-function:steps(12)}.van-loading__spinner--circular{border:1px solid transparent;border-radius:100%;border-top-color:initial}.van-loading__text{color:var(--loading-text-color,#969799);font-size:var(--loading-text-font-size,14px);line-height:var(--loading-text-line-height,20px);margin-left:var(--padding-xs,8px)}.van-loading__text:empty{display:none}.van-loading--vertical{flex-direction:column}.van-loading--vertical .van-loading__text{margin:var(--padding-xs,8px) 0 0}.van-loading__dot{height:100%;left:0;position:absolute;top:0;width:100%}.van-loading__dot:before{background-color:currentColor;border-radius:40%;content:" ";display:block;height:25%;margin:0 auto;width:2px}.van-loading__dot:first-of-type{opacity:1;transform:rotate(30deg)}.van-loading__dot:nth-of-type(2){opacity:.9375;transform:rotate(60deg)}.van-loading__dot:nth-of-type(3){opacity:.875;transform:rotate(90deg)}.van-loading__dot:nth-of-type(4){opacity:.8125;transform:rotate(120deg)}.van-loading__dot:nth-of-type(5){opacity:.75;transform:rotate(150deg)}.van-loading__dot:nth-of-type(6){opacity:.6875;transform:rotate(180deg)}.van-loading__dot:nth-of-type(7){opacity:.625;transform:rotate(210deg)}.van-loading__dot:nth-of-type(8){opacity:.5625;transform:rotate(240deg)}.van-loading__dot:nth-of-type(9){opacity:.5;transform:rotate(270deg)}.van-loading__dot:nth-of-type(10){opacity:.4375;transform:rotate(300deg)}.van-loading__dot:nth-of-type(11){opacity:.375;transform:rotate(330deg)}.van-loading__dot:nth-of-type(12){opacity:.3125;transform:rotate(1turn)}@keyframes van-rotate{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/basic.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/basic.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..b273369000f6e6bf52f7934d65fc62097909c85f
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/basic.d.ts
@@ -0,0 +1 @@
+export declare const basic: string;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/basic.js b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/basic.js
new file mode 100644
index 0000000000000000000000000000000000000000..617cc070b0b22eb08029d6f3e8f4fcb2fd4431fb
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/basic.js
@@ -0,0 +1,11 @@
+export const basic = Behavior({
+ methods: {
+ $emit(name, detail, options) {
+ this.triggerEvent(name, detail, options);
+ },
+ set(data) {
+ this.setData(data);
+ return new Promise((resolve) => wx.nextTick(resolve));
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/button.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/button.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..b51db875930c7926639ca56610fbeb66ce84e639
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/button.d.ts
@@ -0,0 +1 @@
+export declare const button: string;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/button.js b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/button.js
new file mode 100644
index 0000000000000000000000000000000000000000..ac1e569732515872739a6c9ffcbf4d99ef8acc29
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/button.js
@@ -0,0 +1,41 @@
+import { canIUseGetUserProfile } from '../common/version';
+export const button = Behavior({
+ externalClasses: ['hover-class'],
+ properties: {
+ id: String,
+ lang: String,
+ businessId: Number,
+ sessionFrom: String,
+ sendMessageTitle: String,
+ sendMessagePath: String,
+ sendMessageImg: String,
+ showMessageCard: Boolean,
+ appParameter: String,
+ ariaLabel: String,
+ openType: String,
+ getUserProfileDesc: String,
+ },
+ data: {
+ canIUseGetUserProfile: canIUseGetUserProfile(),
+ },
+ methods: {
+ onGetUserInfo(event) {
+ this.triggerEvent('getuserinfo', event.detail);
+ },
+ onContact(event) {
+ this.triggerEvent('contact', event.detail);
+ },
+ onGetPhoneNumber(event) {
+ this.triggerEvent('getphonenumber', event.detail);
+ },
+ onError(event) {
+ this.triggerEvent('error', event.detail);
+ },
+ onLaunchApp(event) {
+ this.triggerEvent('launchapp', event.detail);
+ },
+ onOpenSetting(event) {
+ this.triggerEvent('opensetting', event.detail);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/link.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/link.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..d58043bc25e7d88c6982bf203ac10fd051dbf265
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/link.d.ts
@@ -0,0 +1 @@
+export declare const link: string;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/link.js b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/link.js
new file mode 100644
index 0000000000000000000000000000000000000000..8c274e1d04b12dcb3338029d05c1026a92879cfc
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/link.js
@@ -0,0 +1,23 @@
+export const link = Behavior({
+ properties: {
+ url: String,
+ linkType: {
+ type: String,
+ value: 'navigateTo',
+ },
+ },
+ methods: {
+ jumpLink(urlKey = 'url') {
+ const url = this.data[urlKey];
+ if (url) {
+ if (this.data.linkType === 'navigateTo' &&
+ getCurrentPages().length > 9) {
+ wx.redirectTo({ url });
+ }
+ else {
+ wx[this.data.linkType]({ url });
+ }
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/page-scroll.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/page-scroll.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..a316bb86eb414e37d50eb84ac36977ef5e1af037
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/page-scroll.d.ts
@@ -0,0 +1,5 @@
+///
+declare type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption;
+declare type Scroller = (this: WechatMiniprogram.Component.TrivialInstance, event?: IPageScrollOption) => void;
+export declare const pageScrollMixin: (scroller: Scroller) => string;
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/page-scroll.js b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/page-scroll.js
new file mode 100644
index 0000000000000000000000000000000000000000..a1a37f5e4649f3b4a65569bdfca40e4243de820d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/page-scroll.js
@@ -0,0 +1,33 @@
+import { getCurrentPage, isDef } from '../common/utils';
+function onPageScroll(event) {
+ const { vanPageScroller = [] } = getCurrentPage();
+ vanPageScroller.forEach((scroller) => {
+ if (typeof scroller === 'function') {
+ // @ts-ignore
+ scroller(event);
+ }
+ });
+}
+export const pageScrollMixin = (scroller) => Behavior({
+ attached() {
+ const page = getCurrentPage();
+ if (Array.isArray(page.vanPageScroller)) {
+ page.vanPageScroller.push(scroller.bind(this));
+ }
+ else {
+ page.vanPageScroller =
+ typeof page.onPageScroll === 'function'
+ ? [page.onPageScroll.bind(page), scroller.bind(this)]
+ : [scroller.bind(this)];
+ }
+ page.onPageScroll = onPageScroll;
+ },
+ detached() {
+ var _a;
+ const page = getCurrentPage();
+ if (isDef(page)) {
+ page.vanPageScroller =
+ ((_a = page.vanPageScroller) === null || _a === void 0 ? void 0 : _a.filter((item) => item !== scroller)) || [];
+ }
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/touch.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/touch.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..35ee831d9a0feb9a56a516ff5d6c12c110c0eca0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/touch.d.ts
@@ -0,0 +1 @@
+export declare const touch: string;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/touch.js b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/touch.js
new file mode 100644
index 0000000000000000000000000000000000000000..ecefae8e76d84bc3d93cf0d59a7e0346084ada73
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/touch.js
@@ -0,0 +1,37 @@
+// @ts-nocheck
+const MIN_DISTANCE = 10;
+function getDirection(x, y) {
+ if (x > y && x > MIN_DISTANCE) {
+ return 'horizontal';
+ }
+ if (y > x && y > MIN_DISTANCE) {
+ return 'vertical';
+ }
+ return '';
+}
+export const touch = Behavior({
+ methods: {
+ resetTouchStatus() {
+ this.direction = '';
+ this.deltaX = 0;
+ this.deltaY = 0;
+ this.offsetX = 0;
+ this.offsetY = 0;
+ },
+ touchStart(event) {
+ this.resetTouchStatus();
+ const touch = event.touches[0];
+ this.startX = touch.clientX;
+ this.startY = touch.clientY;
+ },
+ touchMove(event) {
+ const touch = event.touches[0];
+ this.deltaX = touch.clientX - this.startX;
+ this.deltaY = touch.clientY - this.startY;
+ this.offsetX = Math.abs(this.deltaX);
+ this.offsetY = Math.abs(this.deltaY);
+ this.direction =
+ this.direction || getDirection(this.offsetX, this.offsetY);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/transition.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/transition.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..dd829e5c9f88673fffac7cce28bcff9e9165a613
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/transition.d.ts
@@ -0,0 +1 @@
+export declare function transition(showDefaultValue: boolean): string;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/mixins/transition.js b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/transition.js
new file mode 100644
index 0000000000000000000000000000000000000000..bc7fc8eb15fbc30f6a7c5fbbbeaf89a61073d6fc
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/mixins/transition.js
@@ -0,0 +1,115 @@
+// @ts-nocheck
+import { requestAnimationFrame } from '../common/utils';
+import { isObj } from '../common/validator';
+const getClassNames = (name) => ({
+ enter: `van-${name}-enter van-${name}-enter-active enter-class enter-active-class`,
+ 'enter-to': `van-${name}-enter-to van-${name}-enter-active enter-to-class enter-active-class`,
+ leave: `van-${name}-leave van-${name}-leave-active leave-class leave-active-class`,
+ 'leave-to': `van-${name}-leave-to van-${name}-leave-active leave-to-class leave-active-class`,
+});
+export function transition(showDefaultValue) {
+ return Behavior({
+ properties: {
+ customStyle: String,
+ // @ts-ignore
+ show: {
+ type: Boolean,
+ value: showDefaultValue,
+ observer: 'observeShow',
+ },
+ // @ts-ignore
+ duration: {
+ type: null,
+ value: 300,
+ observer: 'observeDuration',
+ },
+ name: {
+ type: String,
+ value: 'fade',
+ },
+ },
+ data: {
+ type: '',
+ inited: false,
+ display: false,
+ },
+ ready() {
+ if (this.data.show === true) {
+ this.observeShow(true, false);
+ }
+ },
+ methods: {
+ observeShow(value, old) {
+ if (value === old) {
+ return;
+ }
+ value ? this.enter() : this.leave();
+ },
+ enter() {
+ const { duration, name } = this.data;
+ const classNames = getClassNames(name);
+ const currentDuration = isObj(duration) ? duration.enter : duration;
+ this.status = 'enter';
+ this.$emit('before-enter');
+ requestAnimationFrame(() => {
+ if (this.status !== 'enter') {
+ return;
+ }
+ this.$emit('enter');
+ this.setData({
+ inited: true,
+ display: true,
+ classes: classNames.enter,
+ currentDuration,
+ });
+ requestAnimationFrame(() => {
+ if (this.status !== 'enter') {
+ return;
+ }
+ this.transitionEnded = false;
+ this.setData({ classes: classNames['enter-to'] });
+ });
+ });
+ },
+ leave() {
+ if (!this.data.display) {
+ return;
+ }
+ const { duration, name } = this.data;
+ const classNames = getClassNames(name);
+ const currentDuration = isObj(duration) ? duration.leave : duration;
+ this.status = 'leave';
+ this.$emit('before-leave');
+ requestAnimationFrame(() => {
+ if (this.status !== 'leave') {
+ return;
+ }
+ this.$emit('leave');
+ this.setData({
+ classes: classNames.leave,
+ currentDuration,
+ });
+ requestAnimationFrame(() => {
+ if (this.status !== 'leave') {
+ return;
+ }
+ this.transitionEnded = false;
+ setTimeout(() => this.onTransitionEnd(), currentDuration);
+ this.setData({ classes: classNames['leave-to'] });
+ });
+ });
+ },
+ onTransitionEnd() {
+ if (this.transitionEnded) {
+ return;
+ }
+ this.transitionEnded = true;
+ this.$emit(`after-${this.status}`);
+ const { show, display } = this.data;
+ if (!show && display) {
+ this.setData({ display: false });
+ }
+ },
+ },
+ });
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..30fc5aaa687fae443c0f97e12e606cbe9d3d569d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.js
@@ -0,0 +1,65 @@
+import { VantComponent } from '../common/component';
+import { getRect, getSystemInfoSync } from '../common/utils';
+VantComponent({
+ classes: ['title-class'],
+ props: {
+ title: String,
+ fixed: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ placeholder: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ leftText: String,
+ rightText: String,
+ customStyle: String,
+ leftArrow: Boolean,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ height: 46,
+ },
+ created() {
+ const { statusBarHeight } = getSystemInfoSync();
+ this.setData({
+ statusBarHeight,
+ height: 46 + statusBarHeight,
+ });
+ },
+ mounted() {
+ this.setHeight();
+ },
+ methods: {
+ onClickLeft() {
+ this.$emit('click-left');
+ },
+ onClickRight() {
+ this.$emit('click-right');
+ },
+ setHeight() {
+ if (!this.data.fixed || !this.data.placeholder) {
+ return;
+ }
+ wx.nextTick(() => {
+ getRect(this, '.van-nav-bar').then((res) => {
+ if (res && 'height' in res) {
+ this.setData({ height: res.height });
+ }
+ });
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..ca39462febeb470e8a723b752693f192c61d2060
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.vue
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+ {{ leftText }}
+
+
+
+
+ {{ title }}
+
+
+
+ {{ rightText }}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..b6405fd5a35bb49759e1c89813373eddde8e24ec
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.wxml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+ {{ leftText }}
+
+
+
+
+ {{ title }}
+
+
+
+ {{ rightText }}
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..55b4158d14d76e9bbcb2512beab9097d3bf4aae8
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.wxs
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function barStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
+ });
+}
+
+module.exports = {
+ barStyle: barStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..94c5b449c4e4da6d08aa44a1a047e279129a2363
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/nav-bar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-nav-bar{background-color:var(--nav-bar-background-color,#fff);height:var(--nav-bar-height,46px);line-height:var(--nav-bar-height,46px);position:relative;text-align:center;-webkit-user-select:none;user-select:none}.van-nav-bar__content{height:100%;position:relative}.van-nav-bar__text{color:var(--nav-bar-text-color,#1989fa);display:inline-block;margin:0 calc(var(--padding-md, 16px)*-1);padding:0 var(--padding-md,16px);vertical-align:middle}.van-nav-bar__text--hover{background-color:#f2f3f5}.van-nav-bar__arrow{color:var(--nav-bar-icon-color,#1989fa)!important;font-size:var(--nav-bar-arrow-size,16px)!important;vertical-align:middle}.van-nav-bar__arrow+.van-nav-bar__text{margin-left:-20px;padding-left:25px}.van-nav-bar--fixed{left:0;position:fixed;top:0;width:100%}.van-nav-bar__title{color:var(--nav-bar-title-text-color,#323233);font-size:var(--nav-bar-title-font-size,16px);font-weight:var(--font-weight-bold,500);margin:0 auto;max-width:60%}.van-nav-bar__left,.van-nav-bar__right{align-items:center;bottom:0;display:flex;font-size:var(--font-size-md,14px);position:absolute;top:0}.van-nav-bar__left{left:var(--padding-md,16px)}.van-nav-bar__right{right:var(--padding-md,16px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..ef36999686da2b87814c9148daa45640b9bef187
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.js
@@ -0,0 +1,120 @@
+import { VantComponent } from '../common/component';
+import { getRect, requestAnimationFrame } from '../common/utils';
+VantComponent({
+ props: {
+ text: {
+ type: String,
+ value: '',
+ observer: 'init',
+ },
+ mode: {
+ type: String,
+ value: '',
+ },
+ url: {
+ type: String,
+ value: '',
+ },
+ openType: {
+ type: String,
+ value: 'navigate',
+ },
+ delay: {
+ type: Number,
+ value: 1,
+ },
+ speed: {
+ type: Number,
+ value: 60,
+ observer: 'init',
+ },
+ scrollable: null,
+ leftIcon: {
+ type: String,
+ value: '',
+ },
+ color: String,
+ backgroundColor: String,
+ background: String,
+ wrapable: Boolean,
+ },
+ data: {
+ show: true,
+ },
+ created() {
+ this.resetAnimation = wx.createAnimation({
+ duration: 0,
+ timingFunction: 'linear',
+ });
+ },
+ destroyed() {
+ this.timer && clearTimeout(this.timer);
+ },
+ mounted() {
+ this.init();
+ },
+ methods: {
+ init() {
+ requestAnimationFrame(() => {
+ Promise.all([
+ getRect(this, '.van-notice-bar__content'),
+ getRect(this, '.van-notice-bar__wrap'),
+ ]).then((rects) => {
+ const [contentRect, wrapRect] = rects;
+ const { speed, scrollable, delay } = this.data;
+ if (contentRect == null ||
+ wrapRect == null ||
+ !contentRect.width ||
+ !wrapRect.width ||
+ scrollable === false) {
+ return;
+ }
+ if (scrollable || wrapRect.width < contentRect.width) {
+ const duration = ((wrapRect.width + contentRect.width) / speed) * 1000;
+ this.wrapWidth = wrapRect.width;
+ this.contentWidth = contentRect.width;
+ this.duration = duration;
+ this.animation = wx.createAnimation({
+ duration,
+ timingFunction: 'linear',
+ delay,
+ });
+ this.scroll();
+ }
+ });
+ });
+ },
+ scroll() {
+ this.timer && clearTimeout(this.timer);
+ this.timer = null;
+ this.setData({
+ animationData: this.resetAnimation
+ .translateX(this.wrapWidth)
+ .step()
+ .export(),
+ });
+ requestAnimationFrame(() => {
+ this.setData({
+ animationData: this.animation
+ .translateX(-this.contentWidth)
+ .step()
+ .export(),
+ });
+ });
+ this.timer = setTimeout(() => {
+ this.scroll();
+ }, this.duration);
+ },
+ onClickIcon(event) {
+ if (this.data.mode === 'closeable') {
+ this.timer && clearTimeout(this.timer);
+ this.timer = null;
+ this.setData({ show: false });
+ this.$emit('close', event.detail);
+ }
+ },
+ onClick(event) {
+ this.$emit('click', event);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..9b77c6ca07a91e5244c17dbfe421d232ffcccf69
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.vue
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+
+ {{ text }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..9f6ee24f3c28d31e5acb995b2949c15a1b360391
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.wxml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+ {{ text }}
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..11e6456f9c7334ad1af5c6c54ef6835e367b1e80
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.wxs
@@ -0,0 +1,15 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ color: data.color,
+ 'background-color': data.backgroundColor,
+ background: data.background,
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..497636cddb3f8dd380c148324d5791c5940a3175
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notice-bar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-notice-bar{align-items:center;background-color:var(--notice-bar-background-color,#fffbe8);color:var(--notice-bar-text-color,#ed6a0c);display:flex;font-size:var(--notice-bar-font-size,14px);height:var(--notice-bar-height,40px);line-height:var(--notice-bar-line-height,24px);padding:var(--notice-bar-padding,0 16px)}.van-notice-bar--withicon{padding-right:40px;position:relative}.van-notice-bar--wrapable{height:auto;padding:var(--notice-bar-wrapable-padding,8px 16px)}.van-notice-bar--wrapable .van-notice-bar__wrap{height:auto}.van-notice-bar--wrapable .van-notice-bar__content{position:relative;white-space:normal}.van-notice-bar__left-icon{align-items:center;display:flex;margin-right:4px;vertical-align:middle}.van-notice-bar__left-icon,.van-notice-bar__right-icon{font-size:var(--notice-bar-icon-size,16px);min-width:var(--notice-bar-icon-min-width,22px)}.van-notice-bar__right-icon{position:absolute;right:15px;top:10px}.van-notice-bar__wrap{flex:1;height:var(--notice-bar-line-height,24px);overflow:hidden;position:relative}.van-notice-bar__content{position:absolute;white-space:nowrap}.van-notice-bar__content.van-ellipsis{max-width:100%}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..d4aba2dcc6fd2d6bfd43b7fa83eea5c9f4caaaf1
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.js
@@ -0,0 +1,65 @@
+import { VantComponent } from '../common/component';
+import { WHITE } from '../common/color';
+import { getSystemInfoSync } from '../common/utils';
+VantComponent({
+ props: {
+ message: String,
+ background: String,
+ type: {
+ type: String,
+ value: 'danger',
+ },
+ color: {
+ type: String,
+ value: WHITE,
+ },
+ duration: {
+ type: Number,
+ value: 3000,
+ },
+ zIndex: {
+ type: Number,
+ value: 110,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: false,
+ },
+ top: null,
+ },
+ data: {
+ show: false,
+ onOpened: null,
+ onClose: null,
+ onClick: null,
+ },
+ created() {
+ const { statusBarHeight } = getSystemInfoSync();
+ this.setData({ statusBarHeight });
+ },
+ methods: {
+ show() {
+ const { duration, onOpened } = this.data;
+ clearTimeout(this.timer);
+ this.setData({ show: true });
+ wx.nextTick(onOpened);
+ if (duration > 0 && duration !== Infinity) {
+ this.timer = setTimeout(() => {
+ this.hide();
+ }, duration);
+ }
+ },
+ hide() {
+ const { onClose } = this.data;
+ clearTimeout(this.timer);
+ this.setData({ show: false });
+ wx.nextTick(onClose);
+ },
+ onTap(event) {
+ const { onClick } = this.data;
+ if (onClick) {
+ onClick(event.detail);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..c14a65f6c3f924bd824f5813b33cebd96e005e1a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-transition": "../transition/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..dd585ddf0d79cc978f5699d84f206aa5ed7a67bf
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.vue
@@ -0,0 +1,84 @@
+
+
+
+
+ {{ message }}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..42d913eb5d18c1214c0e238ae006ecd7de4629e3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.wxml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ {{ message }}
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..bbb94c28008eca5186f1cfbd7c50736c2f713255
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.wxs
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ top: addUnit(data.top),
+ });
+}
+
+function notifyStyle(data) {
+ return style({
+ background: data.background,
+ color: data.color,
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ notifyStyle: notifyStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..c030e9b277b36d1f27ab59208a20e3ac4864adac
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notify/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-notify{word-wrap:break-word;font-size:var(--notify-font-size,14px);line-height:var(--notify-line-height,20px);padding:var(--notify-padding,6px 15px);text-align:center}.van-notify__container{box-sizing:border-box;left:0;position:fixed;top:0;width:100%}.van-notify--primary{background-color:var(--notify-primary-background-color,#1989fa)}.van-notify--success{background-color:var(--notify-success-background-color,#07c160)}.van-notify--danger{background-color:var(--notify-danger-background-color,#ee0a24)}.van-notify--warning{background-color:var(--notify-warning-background-color,#ff976a)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notify/notify.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/notify/notify.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..f6ee08f9b7ff4c7f6db6a4a2455ab465f66ce386
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notify/notify.d.ts
@@ -0,0 +1,20 @@
+interface NotifyOptions {
+ type?: 'primary' | 'success' | 'danger' | 'warning';
+ color?: string;
+ zIndex?: number;
+ top?: number;
+ message: string;
+ context?: any;
+ duration?: number;
+ selector?: string;
+ background?: string;
+ safeAreaInsetTop?: boolean;
+ onClick?: () => void;
+ onOpened?: () => void;
+ onClose?: () => void;
+}
+declare function Notify(options: NotifyOptions | string): any;
+declare namespace Notify {
+ var clear: (options?: NotifyOptions | undefined) => void;
+}
+export default Notify;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/notify/notify.js b/litemall-wx_uni/wxcomponents/vant-weapp/notify/notify.js
new file mode 100644
index 0000000000000000000000000000000000000000..759b0981c859c7451eaedd9263d98cc8d9fda660
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/notify/notify.js
@@ -0,0 +1,46 @@
+import { WHITE } from '../common/color';
+const defaultOptions = {
+ selector: '#van-notify',
+ type: 'danger',
+ message: '',
+ background: '',
+ duration: 3000,
+ zIndex: 110,
+ top: 0,
+ color: WHITE,
+ safeAreaInsetTop: false,
+ onClick: () => { },
+ onOpened: () => { },
+ onClose: () => { },
+};
+function parseOptions(message) {
+ if (message == null) {
+ return {};
+ }
+ return typeof message === 'string' ? { message } : message;
+}
+function getContext() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+export default function Notify(options) {
+ options = Object.assign(Object.assign({}, defaultOptions), parseOptions(options));
+ const context = options.context || getContext();
+ const notify = context.selectComponent(options.selector);
+ delete options.context;
+ delete options.selector;
+ if (notify) {
+ notify.setData(options);
+ notify.showNotify();
+ return notify;
+ }
+ console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
+}
+Notify.clear = function (options) {
+ options = Object.assign(Object.assign({}, defaultOptions), parseOptions(options));
+ const context = options.context || getContext();
+ const notify = context.selectComponent(options.selector);
+ if (notify) {
+ notify.hide();
+ }
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..48117a0d2cb896414491c910d23abe9ef9f33b8a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.js
@@ -0,0 +1,26 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ show: Boolean,
+ customStyle: String,
+ duration: {
+ type: null,
+ value: 300,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ lockScroll: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ onClick() {
+ this.$emit('click');
+ },
+ // for prevent touchmove
+ noop() { },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..c14a65f6c3f924bd824f5813b33cebd96e005e1a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-transition": "../transition/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..a614ada6bd6cffbc3bb8d217161b3f3c0900e79d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.vue
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..92734a0c8547376e515a3c2eda14ebbd4e0d76c3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.wxml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..d1ad81ab25f782dd5edcb63183af75df497bef96
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/overlay/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-overlay{background-color:var(--overlay-background-color,rgba(0,0,0,.7));height:100%;left:0;position:fixed;top:0;width:100%}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..7b6a99a449481de8cc910ac78534940bc2ff48c9
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.js
@@ -0,0 +1,9 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: ['header-class', 'footer-class'],
+ props: {
+ desc: String,
+ title: String,
+ status: String,
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0e5425cdfdb74071904957ca8bcfddb70782b1b4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-cell": "../cell/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..d859343394cf8ea19d6bee3cca13e4e9e9a14d41
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.vue
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..1843703b16bc47194f572866fd35c41c2d1c2154
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.wxml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..485edcd2dcd8850bd42232a52f0c01e24985098a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/panel/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-panel{background:var(--panel-background-color,#fff)}.van-panel__header-value{color:var(--panel-header-value-color,#ee0a24)}.van-panel__footer{padding:var(--panel-footer-padding,8px 16px)}.van-panel__footer:empty{display:none}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..abcc5208d051d7b45617ab215f98d779363f18be
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.js
@@ -0,0 +1,118 @@
+import { VantComponent } from '../common/component';
+import { range } from '../common/utils';
+import { isObj } from '../common/validator';
+const DEFAULT_DURATION = 200;
+VantComponent({
+ classes: ['active-class'],
+ props: {
+ valueKey: String,
+ className: String,
+ itemHeight: Number,
+ visibleItemCount: Number,
+ initialOptions: {
+ type: Array,
+ value: [],
+ },
+ defaultIndex: {
+ type: Number,
+ value: 0,
+ observer(value) {
+ this.setIndex(value);
+ },
+ },
+ },
+ data: {
+ startY: 0,
+ offset: 0,
+ duration: 0,
+ startOffset: 0,
+ options: [],
+ currentIndex: 0,
+ },
+ created() {
+ const { defaultIndex, initialOptions } = this.data;
+ this.set({
+ currentIndex: defaultIndex,
+ options: initialOptions,
+ }).then(() => {
+ this.setIndex(defaultIndex);
+ });
+ },
+ methods: {
+ getCount() {
+ return this.data.options.length;
+ },
+ onTouchStart(event) {
+ this.setData({
+ startY: event.touches[0].clientY,
+ startOffset: this.data.offset,
+ duration: 0,
+ });
+ },
+ onTouchMove(event) {
+ const { data } = this;
+ const deltaY = event.touches[0].clientY - data.startY;
+ this.setData({
+ offset: range(data.startOffset + deltaY, -(this.getCount() * data.itemHeight), data.itemHeight),
+ });
+ },
+ onTouchEnd() {
+ const { data } = this;
+ if (data.offset !== data.startOffset) {
+ this.setData({ duration: DEFAULT_DURATION });
+ const index = range(Math.round(-data.offset / data.itemHeight), 0, this.getCount() - 1);
+ this.setIndex(index, true);
+ }
+ },
+ onClickItem(event) {
+ const { index } = event.currentTarget.dataset;
+ this.setIndex(index, true);
+ },
+ adjustIndex(index) {
+ const { data } = this;
+ const count = this.getCount();
+ index = range(index, 0, count);
+ for (let i = index; i < count; i++) {
+ if (!this.isDisabled(data.options[i]))
+ return i;
+ }
+ for (let i = index - 1; i >= 0; i--) {
+ if (!this.isDisabled(data.options[i]))
+ return i;
+ }
+ },
+ isDisabled(option) {
+ return isObj(option) && option.disabled;
+ },
+ getOptionText(option) {
+ const { data } = this;
+ return isObj(option) && data.valueKey in option
+ ? option[data.valueKey]
+ : option;
+ },
+ setIndex(index, userAction) {
+ const { data } = this;
+ index = this.adjustIndex(index) || 0;
+ const offset = -index * data.itemHeight;
+ if (index !== data.currentIndex) {
+ return this.set({ offset, currentIndex: index }).then(() => {
+ userAction && this.$emit('change', index);
+ });
+ }
+ return this.set({ offset });
+ },
+ setValue(value) {
+ const { options } = this.data;
+ for (let i = 0; i < options.length; i++) {
+ if (this.getOptionText(options[i]) === value) {
+ return this.setIndex(i);
+ }
+ }
+ return Promise.resolve();
+ },
+ getValue() {
+ const { data } = this;
+ return data.options[data.currentIndex];
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..5b1f3811d23c9cfbc9e4da94ae4e01f6a3dfd486
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.vue
@@ -0,0 +1,134 @@
+
+
+
+ {{ computed.optionText(option, valueKey) }}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f2c8da2be15c17d33f7fa986c9fd1edebcc4486d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.wxml
@@ -0,0 +1,23 @@
+
+
+
+
+
+ {{ computed.optionText(option, valueKey) }}
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..2d5a61172229791cf903d82e9014955615465ee8
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.wxs
@@ -0,0 +1,36 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function isObj(x) {
+ var type = typeof x;
+ return x !== null && (type === 'object' || type === 'function');
+}
+
+function optionText(option, valueKey) {
+ return isObj(option) && option[valueKey] != null ? option[valueKey] : option;
+}
+
+function rootStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function wrapperStyle(data) {
+ var offset = addUnit(
+ data.offset + (data.itemHeight * (data.visibleItemCount - 1)) / 2
+ );
+
+ return style({
+ transition: 'transform ' + data.duration + 'ms',
+ 'line-height': addUnit(data.itemHeight),
+ transform: 'translate3d(0, ' + offset + ', 0)',
+ });
+}
+
+module.exports = {
+ optionText: optionText,
+ rootStyle: rootStyle,
+ wrapperStyle: wrapperStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..519a43898c3935ca275694c5dd866a97650e41bd
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker-column/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-picker-column{color:var(--picker-option-text-color,#000);font-size:var(--picker-option-font-size,16px);overflow:hidden;text-align:center}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{color:var(--picker-option-selected-text-color,#323233);font-weight:var(--font-weight-bold,500)}.van-picker-column__item--disabled{opacity:var(--picker-option-disabled-opacity,.3)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..cef057d630da54b8f5df66790631b8c1411b7a1b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.js
@@ -0,0 +1,136 @@
+import { VantComponent } from '../common/component';
+import { pickerProps } from './shared';
+VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: Object.assign(Object.assign({}, pickerProps), { valueKey: {
+ type: String,
+ value: 'text',
+ }, toolbarPosition: {
+ type: String,
+ value: 'top',
+ }, defaultIndex: {
+ type: Number,
+ value: 0,
+ }, columns: {
+ type: Array,
+ value: [],
+ observer(columns = []) {
+ this.simple = columns.length && !columns[0].values;
+ if (Array.isArray(this.children) && this.children.length) {
+ this.setColumns().catch(() => { });
+ }
+ },
+ } }),
+ beforeCreate() {
+ Object.defineProperty(this, 'children', {
+ get: () => this.selectAllComponents('.van-picker__column') || [],
+ });
+ },
+ methods: {
+ noop() { },
+ setColumns() {
+ const { data } = this;
+ const columns = this.simple ? [{ values: data.columns }] : data.columns;
+ const stack = columns.map((column, index) => this.setColumnValues(index, column.values));
+ return Promise.all(stack);
+ },
+ emit(event) {
+ const { type } = event.currentTarget.dataset;
+ if (this.simple) {
+ this.$emit(type, {
+ value: this.getColumnValue(0),
+ index: this.getColumnIndex(0),
+ });
+ }
+ else {
+ this.$emit(type, {
+ value: this.getValues(),
+ index: this.getIndexes(),
+ });
+ }
+ },
+ onChange(event) {
+ if (this.simple) {
+ this.$emit('change', {
+ picker: this,
+ value: this.getColumnValue(0),
+ index: this.getColumnIndex(0),
+ });
+ }
+ else {
+ this.$emit('change', {
+ picker: this,
+ value: this.getValues(),
+ index: event.currentTarget.dataset.index,
+ });
+ }
+ },
+ // get column instance by index
+ getColumn(index) {
+ return this.children[index];
+ },
+ // get column value by index
+ getColumnValue(index) {
+ const column = this.getColumn(index);
+ return column && column.getValue();
+ },
+ // set column value by index
+ setColumnValue(index, value) {
+ const column = this.getColumn(index);
+ if (column == null) {
+ return Promise.reject(new Error('setColumnValue: 对应列不存在'));
+ }
+ return column.setValue(value);
+ },
+ // get column option index by column index
+ getColumnIndex(columnIndex) {
+ return (this.getColumn(columnIndex) || {}).data.currentIndex;
+ },
+ // set column option index by column index
+ setColumnIndex(columnIndex, optionIndex) {
+ const column = this.getColumn(columnIndex);
+ if (column == null) {
+ return Promise.reject(new Error('setColumnIndex: 对应列不存在'));
+ }
+ return column.setIndex(optionIndex);
+ },
+ // get options of column by index
+ getColumnValues(index) {
+ return (this.children[index] || {}).data.options;
+ },
+ // set options of column by index
+ setColumnValues(index, options, needReset = true) {
+ const column = this.children[index];
+ if (column == null) {
+ return Promise.reject(new Error('setColumnValues: 对应列不存在'));
+ }
+ const isSame = JSON.stringify(column.data.options) === JSON.stringify(options);
+ if (isSame) {
+ return Promise.resolve();
+ }
+ return column.set({ options }).then(() => {
+ if (needReset) {
+ column.setIndex(0);
+ }
+ });
+ },
+ // get values of all columns
+ getValues() {
+ return this.children.map((child) => child.getValue());
+ },
+ // set values of all columns
+ setValues(values) {
+ const stack = values.map((value, index) => this.setColumnValue(index, value));
+ return Promise.all(stack);
+ },
+ // get indexes of all columns
+ getIndexes() {
+ return this.children.map((child) => child.data.currentIndex);
+ },
+ // set indexes of all columns
+ setIndexes(indexes) {
+ const stack = indexes.map((optionIndex, columnIndex) => this.setColumnIndex(columnIndex, optionIndex));
+ return Promise.all(stack);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..2fcec8991bd56bdb28b347a80db78be1a96c2822
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "picker-column": "../picker-column/index",
+ "loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..c4c940d50d5d710447957d7c4698611967b24775
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.vue
@@ -0,0 +1,165 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..8564ccc10a43618e7b52d2e77ffed606279440dc
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.wxml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..0abbd10e71099ba4016a54259ca46f7224ab168e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.wxs
@@ -0,0 +1,42 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+var array = require('../wxs/array.wxs');
+
+function columnsStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function maskStyle(data) {
+ return style({
+ 'background-size':
+ '100% ' + addUnit((data.itemHeight * (data.visibleItemCount - 1)) / 2),
+ });
+}
+
+function frameStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight),
+ });
+}
+
+function columns(columns) {
+ if (!array.isArray(columns)) {
+ return [];
+ }
+
+ if (columns.length && !columns[0].values) {
+ return [{ values: columns }];
+ }
+
+ return columns;
+}
+
+module.exports = {
+ columnsStyle: columnsStyle,
+ frameStyle: frameStyle,
+ maskStyle: maskStyle,
+ columns: columns,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..d924abb9d178c73ca9f7654a3b3152a1ce690cdd
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-picker{-webkit-text-size-adjust:100%;background-color:var(--picker-background-color,#fff);overflow:hidden;position:relative;-webkit-user-select:none;user-select:none}.van-picker__toolbar{display:flex;height:var(--picker-toolbar-height,44px);justify-content:space-between;line-height:var(--picker-toolbar-height,44px)}.van-picker__cancel,.van-picker__confirm{font-size:var(--picker-action-font-size,14px);padding:var(--picker-action-padding,0 16px)}.van-picker__cancel--hover,.van-picker__confirm--hover{opacity:.7}.van-picker__confirm{color:var(--picker-confirm-action-color,#576b95)}.van-picker__cancel{color:var(--picker-cancel-action-color,#969799)}.van-picker__title{font-size:var(--picker-option-font-size,16px);font-weight:var(--font-weight-bold,500);max-width:50%;text-align:center}.van-picker__columns{display:flex;position:relative}.van-picker__column{flex:1 1;width:0}.van-picker__loading{align-items:center;background-color:var(--picker-loading-mask-color,hsla(0,0%,100%,.9));bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:4}.van-picker__mask{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-image:linear-gradient(180deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4)),linear-gradient(0deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4));background-position:top,bottom;background-repeat:no-repeat;height:100%;left:0;top:0;width:100%;z-index:2}.van-picker__frame,.van-picker__mask{pointer-events:none;position:absolute}.van-picker__frame{left:16px;right:16px;top:50%;transform:translateY(-50%);z-index:1}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/shared.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/picker/shared.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c54804595ae5455df2cef97a375dbb6a106916c1
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/shared.d.ts
@@ -0,0 +1,21 @@
+export declare const pickerProps: {
+ title: StringConstructor;
+ loading: BooleanConstructor;
+ showToolbar: BooleanConstructor;
+ cancelButtonText: {
+ type: StringConstructor;
+ value: string;
+ };
+ confirmButtonText: {
+ type: StringConstructor;
+ value: string;
+ };
+ visibleItemCount: {
+ type: NumberConstructor;
+ value: number;
+ };
+ itemHeight: {
+ type: NumberConstructor;
+ value: number;
+ };
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/shared.js b/litemall-wx_uni/wxcomponents/vant-weapp/picker/shared.js
new file mode 100644
index 0000000000000000000000000000000000000000..5f21f322b71317577c7308c539e2b2204908524f
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/shared.js
@@ -0,0 +1,21 @@
+export const pickerProps = {
+ title: String,
+ loading: Boolean,
+ showToolbar: Boolean,
+ cancelButtonText: {
+ type: String,
+ value: '取消',
+ },
+ confirmButtonText: {
+ type: String,
+ value: '确认',
+ },
+ visibleItemCount: {
+ type: Number,
+ value: 6,
+ },
+ itemHeight: {
+ type: Number,
+ value: 44,
+ },
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/toolbar.vue b/litemall-wx_uni/wxcomponents/vant-weapp/picker/toolbar.vue
new file mode 100644
index 0000000000000000000000000000000000000000..88b614b966960f2a733d4bd390c399a8ebff84cc
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/toolbar.vue
@@ -0,0 +1,25 @@
+
+
+
+ {{ cancelButtonText }}
+
+ {{
+ title
+ }}
+
+ {{ confirmButtonText }}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/picker/toolbar.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/picker/toolbar.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..414f61200741b6e928bb5628267daa1d6675aadc
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/picker/toolbar.wxml
@@ -0,0 +1,23 @@
+
+
+ {{ cancelButtonText }}
+
+ {{
+ title
+ }}
+
+ {{ confirmButtonText }}
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..9c5ef8685c18fe1eedcdaae9371987ad5cab648e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.js
@@ -0,0 +1,89 @@
+import { VantComponent } from '../common/component';
+import { transition } from '../mixins/transition';
+VantComponent({
+ classes: [
+ 'enter-class',
+ 'enter-active-class',
+ 'enter-to-class',
+ 'leave-class',
+ 'leave-active-class',
+ 'leave-to-class',
+ 'close-icon-class',
+ ],
+ mixins: [transition(false)],
+ props: {
+ round: Boolean,
+ closeable: Boolean,
+ customStyle: String,
+ overlayStyle: String,
+ transition: {
+ type: String,
+ observer: 'observeClass',
+ },
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeIcon: {
+ type: String,
+ value: 'cross',
+ },
+ closeIconPosition: {
+ type: String,
+ value: 'top-right',
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ position: {
+ type: String,
+ value: 'center',
+ observer: 'observeClass',
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: false,
+ },
+ lockScroll: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ created() {
+ this.observeClass();
+ },
+ methods: {
+ onClickCloseIcon() {
+ this.$emit('close');
+ },
+ onClickOverlay() {
+ this.$emit('click-overlay');
+ if (this.data.closeOnClickOverlay) {
+ this.$emit('close');
+ }
+ },
+ observeClass() {
+ const { transition, position, duration } = this.data;
+ const updateData = {
+ name: transition || position,
+ };
+ if (transition === 'none') {
+ updateData.duration = 0;
+ this.originDuration = duration;
+ }
+ else if (this.originDuration != null) {
+ updateData.duration = this.originDuration;
+ }
+ this.setData(updateData);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..88a6eab2a3d39616b3407376f926947017857a80
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-overlay": "../overlay/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..019eb588078b23377183cc43ade7f5105e05d80d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.vue
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..ea7d696b92f37ab5ad17fdf79a36578393389429
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.wxml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..8d59f245a079a1839571f35f95f6bb95c50241f2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function popupStyle(data) {
+ return style([
+ {
+ 'z-index': data.zIndex,
+ '-webkit-transition-duration': data.currentDuration + 'ms',
+ 'transition-duration': data.currentDuration + 'ms',
+ },
+ data.display ? null : 'display: none',
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ popupStyle: popupStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..a840541a24c2f72ccfa6b5de451bf96c3d7e2913
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/popup/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-popup{-webkit-overflow-scrolling:touch;animation:ease both;background-color:var(--popup-background-color,#fff);box-sizing:border-box;max-height:100%;overflow-y:auto;position:fixed;transition-timing-function:ease}.van-popup--center{left:50%;top:50%;transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:var(--popup-round-border-radius,16px)}.van-popup--top{left:0;top:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--right{right:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px))}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0 0}.van-popup--left{left:0;top:50%;transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) var(--popup-round-border-radius,var(--popup-round-border-radius,16px)) 0}.van-popup--bottom.van-popup--safe{padding-bottom:env(safe-area-inset-bottom)}.van-popup--safeTop{padding-top:env(safe-area-inset-top)}.van-popup__close-icon{color:var(--popup-close-icon-color,#969799);font-size:var(--popup-close-icon-size,18px);position:absolute;z-index:var(--popup-close-icon-z-index,1)}.van-popup__close-icon--top-left{left:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--top-right{right:var(--popup-close-icon-margin,16px);top:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-left{bottom:var(--popup-close-icon-margin,16px);left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-right{bottom:var(--popup-close-icon-margin,16px);right:var(--popup-close-icon-margin,16px)}.van-popup__close-icon:active{opacity:.6}.van-scale-enter-active,.van-scale-leave-active{transition-property:opacity,transform}.van-scale-enter,.van-scale-leave-to{opacity:0;transform:translate3d(-50%,-50%,0) scale(.7)}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-center-enter-active,.van-center-leave-active{transition-property:opacity}.van-center-enter,.van-center-leave-to{opacity:0}.van-bottom-enter-active,.van-bottom-leave-active,.van-left-enter-active,.van-left-leave-active,.van-right-enter-active,.van-right-leave-active,.van-top-enter-active,.van-top-leave-active{transition-property:transform}.van-bottom-enter,.van-bottom-leave-to{transform:translate3d(0,100%,0)}.van-top-enter,.van-top-leave-to{transform:translate3d(0,-100%,0)}.van-left-enter,.van-left-leave-to{transform:translate3d(-100%,-50%,0)}.van-right-enter,.van-right-leave-to{transform:translate3d(100%,-50%,0)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..0780c4336dacbd3c5bd942215998c7a400249acd
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.js
@@ -0,0 +1,51 @@
+import { VantComponent } from '../common/component';
+import { BLUE } from '../common/color';
+import { getRect } from '../common/utils';
+VantComponent({
+ props: {
+ inactive: Boolean,
+ percentage: {
+ type: Number,
+ observer: 'setLeft',
+ },
+ pivotText: String,
+ pivotColor: String,
+ trackColor: String,
+ showPivot: {
+ type: Boolean,
+ value: true,
+ },
+ color: {
+ type: String,
+ value: BLUE,
+ },
+ textColor: {
+ type: String,
+ value: '#fff',
+ },
+ strokeWidth: {
+ type: null,
+ value: 4,
+ },
+ },
+ data: {
+ right: 0,
+ },
+ mounted() {
+ this.setLeft();
+ },
+ methods: {
+ setLeft() {
+ Promise.all([
+ getRect(this, '.van-progress'),
+ getRect(this, '.van-progress__pivot'),
+ ]).then(([portion, pivot]) => {
+ if (portion && pivot) {
+ this.setData({
+ right: (pivot.width * (this.data.percentage - 100)) / 100,
+ });
+ }
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..bb4b8608084a6a023ab163bb3b1f403749c7bf8a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.vue
@@ -0,0 +1,69 @@
+
+
+
+
+ {{ computed.pivotText(pivotText, percentage) }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..e81514d05fdce662ca1f2bff2d72841acbf7c08d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.wxml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {{ computed.pivotText(pivotText, percentage) }}
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..5b1e8e6bc0440be40af8e27c86b5fcf509d0437f
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.wxs
@@ -0,0 +1,36 @@
+/* eslint-disable */
+var utils = require('../wxs/utils.wxs');
+var style = require('../wxs/style.wxs');
+
+function pivotText(pivotText, percentage) {
+ return pivotText || percentage + '%';
+}
+
+function rootStyle(data) {
+ return style({
+ 'height': data.strokeWidth ? utils.addUnit(data.strokeWidth) : '',
+ 'background': data.trackColor,
+ });
+}
+
+function portionStyle(data) {
+ return style({
+ background: data.inactive ? '#cacaca' : data.color,
+ width: data.percentage ? data.percentage + '%' : '',
+ });
+}
+
+function pivotStyle(data) {
+ return style({
+ color: data.textColor,
+ right: data.right + 'px',
+ background: data.pivotColor ? data.pivotColor : data.inactive ? '#cacaca' : data.color,
+ });
+}
+
+module.exports = {
+ pivotText: pivotText,
+ rootStyle: rootStyle,
+ portionStyle: portionStyle,
+ pivotStyle: pivotStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..a08972a0eb98967dbf24b10a6bdbd24f27206474
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/progress/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-progress{background:var(--progress-background-color,#ebedf0);border-radius:var(--progress-height,4px);height:var(--progress-height,4px);position:relative}.van-progress__portion{background:var(--progress-color,#1989fa);border-radius:inherit;height:100%;left:0;position:absolute}.van-progress__pivot{background-color:var(--progress-pivot-background-color,#1989fa);border-radius:1em;box-sizing:border-box;color:var(--progress-pivot-text-color,#fff);font-size:var(--progress-pivot-font-size,10px);line-height:var(--progress-pivot-line-height,1.6);min-width:3.6em;padding:var(--progress-pivot-padding,0 5px);position:absolute;text-align:center;top:50%;transform:translateY(-50%);word-break:keep-all}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..2846fdd8459c182ff0ec6ffb905a6329e439acbd
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.js
@@ -0,0 +1,22 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ field: true,
+ relation: useChildren('radio'),
+ props: {
+ value: {
+ type: null,
+ observer: 'updateChildren',
+ },
+ direction: String,
+ disabled: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ },
+ methods: {
+ updateChildren() {
+ this.children.forEach((child) => child.updateFromParent());
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..8267e3cdd50271a110b9d6ae787863f55446c7be
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.vue
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..0ab17afcda065ea624494668ed23f2d3f65a1235
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.wxml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..4e3b5d416c536dd73e3ea0f70f1f4a89d59f7f9e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio-group/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-radio-group--horizontal{display:flex;flex-wrap:wrap}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..9eb125861b709464a95a9ca8c556ae918261fb8e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.js
@@ -0,0 +1,66 @@
+import { canIUseModel } from '../common/version';
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ field: true,
+ relation: useParent('radio-group', function () {
+ this.updateFromParent();
+ }),
+ classes: ['icon-class', 'label-class'],
+ props: {
+ name: null,
+ value: null,
+ disabled: Boolean,
+ useIconSlot: Boolean,
+ checkedColor: String,
+ labelPosition: {
+ type: String,
+ value: 'right',
+ },
+ labelDisabled: Boolean,
+ shape: {
+ type: String,
+ value: 'round',
+ },
+ iconSize: {
+ type: null,
+ value: 20,
+ },
+ },
+ data: {
+ direction: '',
+ parentDisabled: false,
+ },
+ methods: {
+ updateFromParent() {
+ if (!this.parent) {
+ return;
+ }
+ const { value, disabled: parentDisabled, direction } = this.parent.data;
+ this.setData({
+ value,
+ direction,
+ parentDisabled,
+ });
+ },
+ emitChange(value) {
+ const instance = this.parent || this;
+ instance.$emit('input', value);
+ instance.$emit('change', value);
+ if (canIUseModel()) {
+ instance.setData({ value });
+ }
+ },
+ onChange() {
+ if (!this.data.disabled && !this.data.parentDisabled) {
+ this.emitChange(this.data.name);
+ }
+ },
+ onClickLabel() {
+ const { disabled, parentDisabled, labelDisabled, name } = this.data;
+ if (!(disabled || parentDisabled) && !labelDisabled) {
+ this.emitChange(name);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..d0f088032ce48489d5e9c114abee67d60bc1e60d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.vue
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..5f898c0b05df277b6f97a30513f2bf4b60236603
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.wxml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..a428aad9549512578b9b82e023204b3de593804e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.wxs
@@ -0,0 +1,33 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function iconStyle(data) {
+ var styles = {
+ 'font-size': addUnit(data.iconSize),
+ };
+
+ if (
+ data.checkedColor &&
+ !(data.disabled || data.parentDisabled) &&
+ data.value === data.name
+ ) {
+ styles['border-color'] = data.checkedColor;
+ styles['background-color'] = data.checkedColor;
+ }
+
+ return style(styles);
+}
+
+function iconCustomStyle(data) {
+ return style({
+ 'line-height': addUnit(data.iconSize),
+ 'font-size': '.8em',
+ display: 'block',
+ });
+}
+
+module.exports = {
+ iconStyle: iconStyle,
+ iconCustomStyle: iconCustomStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..257b0c79ee4900e15762b886657952d2df6e6145
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/radio/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-radio{align-items:center;display:flex;overflow:hidden;-webkit-user-select:none;user-select:none}.van-radio__icon-wrap{flex:none}.van-radio--horizontal{margin-right:var(--padding-sm,12px)}.van-radio__icon{align-items:center;border:1px solid var(--radio-border-color,#c8c9cc);box-sizing:border-box;color:transparent;display:flex;font-size:var(--radio-size,20px);height:1em;justify-content:center;text-align:center;transition-duration:var(--radio-transition-duration,.2s);transition-property:color,border-color,background-color;width:1em}.van-radio__icon--round{border-radius:100%}.van-radio__icon--checked{background-color:var(--radio-checked-icon-color,#1989fa);border-color:var(--radio-checked-icon-color,#1989fa);color:#fff}.van-radio__icon--disabled{background-color:var(--radio-disabled-background-color,#ebedf0);border-color:var(--radio-disabled-icon-color,#c8c9cc)}.van-radio__icon--disabled.van-radio__icon--checked{color:var(--radio-disabled-icon-color,#c8c9cc)}.van-radio__label{word-wrap:break-word;color:var(--radio-label-color,#323233);line-height:var(--radio-size,20px);padding-left:var(--radio-label-margin,10px)}.van-radio__label--left{float:left;margin:0 var(--radio-label-margin,10px) 0 0}.van-radio__label--disabled{color:var(--radio-disabled-label-color,#c8c9cc)}.van-radio__label:empty{margin:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..23b73450378a361d488997c5ea5ed139cab01b71
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.js
@@ -0,0 +1,78 @@
+import { getAllRect } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { canIUseModel } from '../common/version';
+VantComponent({
+ field: true,
+ classes: ['icon-class'],
+ props: {
+ value: {
+ type: Number,
+ observer(value) {
+ if (value !== this.data.innerValue) {
+ this.setData({ innerValue: value });
+ }
+ },
+ },
+ readonly: Boolean,
+ disabled: Boolean,
+ allowHalf: Boolean,
+ size: null,
+ icon: {
+ type: String,
+ value: 'star',
+ },
+ voidIcon: {
+ type: String,
+ value: 'star-o',
+ },
+ color: String,
+ voidColor: String,
+ disabledColor: String,
+ count: {
+ type: Number,
+ value: 5,
+ observer(value) {
+ this.setData({ innerCountArray: Array.from({ length: value }) });
+ },
+ },
+ gutter: null,
+ touchable: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ innerValue: 0,
+ innerCountArray: Array.from({ length: 5 }),
+ },
+ methods: {
+ onSelect(event) {
+ const { data } = this;
+ const { score } = event.currentTarget.dataset;
+ if (!data.disabled && !data.readonly) {
+ this.setData({ innerValue: score + 1 });
+ if (canIUseModel()) {
+ this.setData({ value: score + 1 });
+ }
+ wx.nextTick(() => {
+ this.$emit('input', score + 1);
+ this.$emit('change', score + 1);
+ });
+ }
+ },
+ onTouchMove(event) {
+ const { touchable } = this.data;
+ if (!touchable)
+ return;
+ const { clientX } = event.touches[0];
+ getAllRect(this, '.van-rate__icon').then((list) => {
+ const target = list
+ .sort((cur, next) => cur.dataset.score - next.dataset.score)
+ .find((item) => clientX >= item.left && clientX <= item.right);
+ if (target != null) {
+ this.onSelect(Object.assign(Object.assign({}, event), { currentTarget: target }));
+ }
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..39d67fc52668f4ba0a909905d5ce46f10854d846
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.vue
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..049714c4f376bfeba484913371d00c29b4505a79
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.wxml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e2a517ecbd74c9125d5958b488a7bc1775a3ab0c
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/rate/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-rate{display:inline-flex;-webkit-user-select:none;user-select:none}.van-rate__item{padding:0 var(--rate-horizontal-padding,2px);position:relative}.van-rate__item:not(:last-child){padding-right:var(--rate-icon-gutter,4px)}.van-rate__icon{color:var(--rate-icon-void-color,#c8c9cc);display:block;font-size:var(--rate-icon-size,20px);height:1em}.van-rate__icon--half{left:var(--rate-horizontal-padding,2px);overflow:hidden;position:absolute;top:0;width:.5em}.van-rate__icon--full,.van-rate__icon--half{color:var(--rate-icon-full-color,#ee0a24)}.van-rate__icon--disabled{color:var(--rate-icon-disabled-color,#c8c9cc)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/row/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/row/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..cc844f84748bbd85ff0e691b51ca2931432dadda
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.js
@@ -0,0 +1,23 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('col', function (target) {
+ const { gutter } = this.data;
+ if (gutter) {
+ target.setData({ gutter });
+ }
+ }),
+ props: {
+ gutter: {
+ type: Number,
+ observer: 'setGutter',
+ },
+ },
+ methods: {
+ setGutter() {
+ this.children.forEach((col) => {
+ col.setData(this.data);
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/row/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/row/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..3810b0641a6586e2d06a2506bb0b234bce8acece
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.vue
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/row/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..69a4359b16010c1ef2e251ae5ee9533885171db4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.wxml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/row/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..f5c5958748e6ce3e5a4d97fe7c23f2d3175ea403
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.wxs
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ if (!data.gutter) {
+ return '';
+ }
+
+ return style({
+ 'margin-right': addUnit(-data.gutter / 2),
+ 'margin-left': addUnit(-data.gutter / 2),
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/row/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..bb8946bbc42c070396fc25ed202efaa6887213cf
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/row/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-row:after{clear:both;content:"";display:table}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/search/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/search/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..d6f4bfaf2f7168fa9012b65c316ef72034dcf0b4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.js
@@ -0,0 +1,89 @@
+import { VantComponent } from '../common/component';
+import { canIUseModel } from '../common/version';
+VantComponent({
+ field: true,
+ classes: ['field-class', 'input-class', 'cancel-class'],
+ props: {
+ label: String,
+ focus: Boolean,
+ error: Boolean,
+ disabled: Boolean,
+ readonly: Boolean,
+ inputAlign: String,
+ showAction: Boolean,
+ useActionSlot: Boolean,
+ useLeftIconSlot: Boolean,
+ useRightIconSlot: Boolean,
+ leftIcon: {
+ type: String,
+ value: 'search',
+ },
+ rightIcon: String,
+ placeholder: String,
+ placeholderStyle: String,
+ actionText: {
+ type: String,
+ value: '取消',
+ },
+ background: {
+ type: String,
+ value: '#ffffff',
+ },
+ maxlength: {
+ type: Number,
+ value: -1,
+ },
+ shape: {
+ type: String,
+ value: 'square',
+ },
+ clearable: {
+ type: Boolean,
+ value: true,
+ },
+ clearTrigger: {
+ type: String,
+ value: 'focus',
+ },
+ clearIcon: {
+ type: String,
+ value: 'clear',
+ },
+ },
+ methods: {
+ onChange(event) {
+ if (canIUseModel()) {
+ this.setData({ value: event.detail });
+ }
+ this.$emit('change', event.detail);
+ },
+ onCancel() {
+ /**
+ * 修复修改输入框值时,输入框失焦和赋值同时触发,赋值失效
+ * https://github.com/youzan/@vant/weapp/issues/1768
+ */
+ setTimeout(() => {
+ if (canIUseModel()) {
+ this.setData({ value: '' });
+ }
+ this.$emit('cancel');
+ this.$emit('change', '');
+ }, 200);
+ },
+ onSearch(event) {
+ this.$emit('search', event.detail);
+ },
+ onFocus(event) {
+ this.$emit('focus', event.detail);
+ },
+ onBlur(event) {
+ this.$emit('blur', event.detail);
+ },
+ onClear(event) {
+ this.$emit('clear', event.detail);
+ },
+ onClickInput(event) {
+ this.$emit('click-input', event.detail);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/search/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..b4cfe918beacb1fe29d9c7bc488a9fc44968fcf1
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-field": "../field/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/search/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..50296ca6b280eb2a51c8b4b606b5a0181fd391d8
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.vue
@@ -0,0 +1,118 @@
+
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
+
+
+ {{ actionText }}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/search/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..0068cfe716d00d4c81bc4fed57ab64cf7c896528
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.wxml
@@ -0,0 +1,53 @@
+
+
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
+
+
+ {{ actionText }}
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/search/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..212f7aa42c0f5c222d8d7a7c8e76507f17e6d2cb
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/search/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-search{align-items:center;box-sizing:border-box;display:flex;padding:var(--search-padding,10px 12px)}.van-search__content{background-color:var(--search-background-color,#f7f8fa);border-radius:2px;display:flex;flex:1;padding-left:var(--padding-sm,12px)}.van-search__content--round{border-radius:999px}.van-search__label{color:var(--search-label-color,#323233);font-size:var(--search-label-font-size,14px);line-height:var(--search-input-height,34px);padding:var(--search-label-padding,0 5px)}.van-search__field{flex:1}.van-search__field__left-icon{color:var(--search-left-icon-color,#969799)}.van-search--withaction{padding-right:0}.van-search__action{color:var(--search-action-text-color,#323233);font-size:var(--search-action-font-size,14px);line-height:var(--search-input-height,34px);padding:var(--search-action-padding,0 8px)}.van-search__action--hover{background-color:#f2f3f5}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..a6ce016ca1a56522cd4a2b8e2b845e3612259e38
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.js
@@ -0,0 +1,55 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ // whether to show popup
+ show: Boolean,
+ // overlay custom style
+ overlayStyle: String,
+ // z-index
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ title: String,
+ cancelText: {
+ type: String,
+ value: '取消',
+ },
+ description: String,
+ options: {
+ type: Array,
+ value: [],
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ duration: {
+ type: null,
+ value: 300,
+ },
+ },
+ methods: {
+ onClickOverlay() {
+ this.$emit('click-overlay');
+ },
+ onCancel() {
+ this.onClose();
+ this.$emit('cancel');
+ },
+ onSelect(event) {
+ this.$emit('select', event.detail);
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..15a7c2243dcbd380b0aa0b9416f608cafb90f7b5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-popup": "../popup/index",
+ "options": "./options"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..4131ea4f2967548c5f32eeb438ca46b22a1c1dd5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.vue
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+
+ {{ description }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..cefc3af44403c541579e60613262117abe524ab0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.wxml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+ {{ title }}
+
+
+
+
+
+ {{ description }}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..2149ee9e43a28f022ab22429a82488c7aed8d2b4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.wxs
@@ -0,0 +1,12 @@
+/* eslint-disable */
+function isMulti(options) {
+ if (options == null || options[0] == null) {
+ return false;
+ }
+
+ return "Array" === options.constructor && "Array" === options[0].constructor;
+}
+
+module.exports = {
+ isMulti: isMulti
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..e8d8dae0ec8c40691b14dc6981949d9210db7250
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-share-sheet__header{padding:12px 16px 4px;text-align:center}.van-share-sheet__title{color:#323233;font-size:14px;font-weight:400;line-height:20px;margin-top:8px}.van-share-sheet__title:empty,.van-share-sheet__title:not(:empty)+.van-share-sheet__title{display:none}.van-share-sheet__description{color:#969799;display:block;font-size:12px;line-height:16px;margin-top:8px}.van-share-sheet__description:empty,.van-share-sheet__description:not(:empty)+.van-share-sheet__description{display:none}.van-share-sheet__cancel{background:#fff;border:none;box-sizing:initial;display:block;font-size:16px;height:auto;line-height:48px;padding:0;text-align:center;width:100%}.van-share-sheet__cancel:before{background-color:#f7f8fa;content:" ";display:block;height:8px}.van-share-sheet__cancel:after{display:none}.van-share-sheet__cancel:active{background-color:#f2f3f5}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.js b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.js
new file mode 100644
index 0000000000000000000000000000000000000000..5a29ad74edb3388408de0aa8ac631b965fdc2925
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.js
@@ -0,0 +1,14 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ options: Array,
+ showBorder: Boolean,
+ },
+ methods: {
+ onSelect(event) {
+ const { index } = event.currentTarget.dataset;
+ const option = this.data.options[index];
+ this.$emit('select', Object.assign(Object.assign({}, option), { index }));
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.json b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.vue b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.vue
new file mode 100644
index 0000000000000000000000000000000000000000..881cc95d670e6a6243297acd758f1a92997b0e88
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.vue
@@ -0,0 +1,36 @@
+
+
+
+
+ {{ item.name }}
+
+ {{ item.description }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..cad68377251e99662ab45cf854e01eb2751ad0d4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.wxml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {{ item.name }}
+
+ {{ item.description }}
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..a116d32410dc830029ffad845d74c8764d6a8b96
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.wxs
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var PRESET_ICONS = ['qq', 'link', 'weibo', 'wechat', 'poster', 'qrcode', 'weapp-qrcode', 'wechat-moments'];
+
+function getIconURL(icon) {
+ if (PRESET_ICONS.indexOf(icon) !== -1) {
+ return 'https://img.yzcdn.cn/vant/share-sheet-' + icon + '.png';
+ }
+
+ return icon;
+}
+
+module.exports = {
+ getIconURL: getIconURL,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..b7f545564aa149c21e0e412ac0c9ab8708552af4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/share-sheet/options.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-share-sheet__options{-webkit-overflow-scrolling:touch;display:flex;overflow-x:auto;overflow-y:visible;padding:16px 0 16px 8px;position:relative}.van-share-sheet__options--border:before{border-top:1px solid #ebedf0;box-sizing:border-box;content:" ";left:16px;pointer-events:none;position:absolute;right:0;top:0;transform:scaleY(.5);transform-origin:center}.van-share-sheet__options::-webkit-scrollbar{height:0}.van-share-sheet__option{align-items:center;display:flex;flex-direction:column;-webkit-user-select:none;user-select:none}.van-share-sheet__option:active{opacity:.7}.van-share-sheet__button{background-color:initial;border:0;height:auto;line-height:inherit;padding:0}.van-share-sheet__button:after{border:0}.van-share-sheet__icon{height:48px;margin:0 16px;width:48px}.van-share-sheet__name{color:#646566;font-size:12px;margin-top:8px;padding:0 4px}.van-share-sheet__option-description{color:#c8c9cc;font-size:12px;padding:0 4px}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..63ea57d2e896d64657ca9f4f56d78e7c7dff681e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.js
@@ -0,0 +1,29 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ classes: ['active-class', 'disabled-class'],
+ relation: useParent('sidebar'),
+ props: {
+ dot: Boolean,
+ badge: null,
+ info: null,
+ title: String,
+ disabled: Boolean,
+ },
+ methods: {
+ onClick() {
+ const { parent } = this;
+ if (!parent || this.data.disabled) {
+ return;
+ }
+ const index = parent.children.indexOf(this);
+ parent.setActive(index).then(() => {
+ this.$emit('click', index);
+ parent.$emit('change', index);
+ });
+ },
+ setActive(selected) {
+ return this.setData({ selected });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ebe009c3904229ff4005710f4136b55cf57aa
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..b25dc1b0d7feceaf1eb0396c6a71ab80397301f0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.vue
@@ -0,0 +1,49 @@
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..c5c08a6269a93b5bf5cf484e71759bb9dda6f07a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.wxml
@@ -0,0 +1,18 @@
+
+
+
+
+
+ {{ title }}
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..f1ce42199294e93df80cf5143824a04b4cdb8044
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar-item/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sidebar-item{background-color:var(--sidebar-background-color,#f7f8fa);border-left:3px solid transparent;box-sizing:border-box;color:var(--sidebar-text-color,#323233);display:block;font-size:var(--sidebar-font-size,14px);line-height:var(--sidebar-line-height,20px);overflow:hidden;padding:var(--sidebar-padding,20px 12px 20px 8px);-webkit-user-select:none;user-select:none}.van-sidebar-item__text{display:inline-block;position:relative;word-break:break-all}.van-sidebar-item--hover:not(.van-sidebar-item--disabled){background-color:var(--sidebar-active-color,#f2f3f5)}.van-sidebar-item:after{border-bottom-width:1px}.van-sidebar-item--selected{border-color:var(--sidebar-selected-border-color,#ee0a24);color:var(--sidebar-selected-text-color,#323233);font-weight:var(--sidebar-selected-font-weight,500)}.van-sidebar-item--selected:after{border-right-width:1px}.van-sidebar-item--selected,.van-sidebar-item--selected.van-sidebar-item--hover{background-color:var(--sidebar-selected-background-color,#fff)}.van-sidebar-item--disabled{color:var(--sidebar-disabled-text-color,#c8c9cc)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..d763e06d3de9ec4c5f1e53957e768a990d5ecf35
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.js
@@ -0,0 +1,34 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('sidebar-item', function () {
+ this.setActive(this.data.activeKey);
+ }),
+ props: {
+ activeKey: {
+ type: Number,
+ value: 0,
+ observer: 'setActive',
+ },
+ },
+ beforeCreate() {
+ this.currentActive = -1;
+ },
+ methods: {
+ setActive(activeKey) {
+ const { children, currentActive } = this;
+ if (!children.length) {
+ return Promise.resolve();
+ }
+ this.currentActive = activeKey;
+ const stack = [];
+ if (currentActive !== activeKey && children[currentActive]) {
+ stack.push(children[currentActive].setActive(false));
+ }
+ if (children[activeKey]) {
+ stack.push(children[activeKey].setActive(true));
+ }
+ return Promise.all(stack);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..c5eb26cc91205dc94b88a1df18539feb642a57f5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.vue
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..96b11c718ee3d34e79a90c18b2a16be06259a1da
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.wxml
@@ -0,0 +1,3 @@
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..5a2d44fab00cbcfecf3910ea8e945bb8ad3fc185
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sidebar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sidebar{width:var(--sidebar-width,80px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..33b1141c2c179b0b31a76f259b1d6e5e59f2374e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.js
@@ -0,0 +1,46 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: ['avatar-class', 'title-class', 'row-class'],
+ props: {
+ row: {
+ type: Number,
+ value: 0,
+ observer(value) {
+ this.setData({ rowArray: Array.from({ length: value }) });
+ },
+ },
+ title: Boolean,
+ avatar: Boolean,
+ loading: {
+ type: Boolean,
+ value: true,
+ },
+ animate: {
+ type: Boolean,
+ value: true,
+ },
+ avatarSize: {
+ type: String,
+ value: '32px',
+ },
+ avatarShape: {
+ type: String,
+ value: 'round',
+ },
+ titleWidth: {
+ type: String,
+ value: '40%',
+ },
+ rowWidth: {
+ type: null,
+ value: '100%',
+ observer(val) {
+ this.setData({ isArray: val instanceof Array });
+ },
+ },
+ },
+ data: {
+ isArray: false,
+ rowArray: [],
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..a89ef4dbeefa01f5cd7971973aa4db6498d139f7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..937d2afa4dfda012185955edd861f5dcbbef5762
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.vue
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..058e2efd1795f88f123873eec84f917902317145
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.wxml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..d59a5edf62a40c63decd38e397314c46a11f5b6c
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/skeleton/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-skeleton{box-sizing:border-box;display:flex;padding:var(--skeleton-padding,0 16px);width:100%}.van-skeleton__avatar{background-color:var(--skeleton-avatar-background-color,#f2f3f5);flex-shrink:0;margin-right:var(--padding-md,16px)}.van-skeleton__avatar--round{border-radius:100%}.van-skeleton__content{flex:1}.van-skeleton__avatar+.van-skeleton__content{padding-top:var(--padding-xs,8px)}.van-skeleton__row,.van-skeleton__title{background-color:var(--skeleton-row-background-color,#f2f3f5);height:var(--skeleton-row-height,16px)}.van-skeleton__title{margin:0}.van-skeleton__row:not(:first-child){margin-top:var(--skeleton-row-margin-top,12px)}.van-skeleton__title+.van-skeleton__row{margin-top:20px}.van-skeleton--animate{animation:van-skeleton-blink 1.2s ease-in-out infinite}@keyframes van-skeleton-blink{50%{opacity:.6}}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..2c9b12312a28f15c379bd71d0c3acbfd7e8d6dc1
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.js
@@ -0,0 +1,191 @@
+import { VantComponent } from '../common/component';
+import { touch } from '../mixins/touch';
+import { canIUseModel } from '../common/version';
+import { getRect, addUnit } from '../common/utils';
+VantComponent({
+ mixins: [touch],
+ props: {
+ range: Boolean,
+ disabled: Boolean,
+ useButtonSlot: Boolean,
+ activeColor: String,
+ inactiveColor: String,
+ max: {
+ type: Number,
+ value: 100,
+ },
+ min: {
+ type: Number,
+ value: 0,
+ },
+ step: {
+ type: Number,
+ value: 1,
+ },
+ value: {
+ type: null,
+ value: 0,
+ observer(val) {
+ if (val !== this.value) {
+ this.updateValue(val);
+ }
+ },
+ },
+ vertical: Boolean,
+ barHeight: null,
+ },
+ created() {
+ this.updateValue(this.data.value);
+ },
+ methods: {
+ onTouchStart(event) {
+ if (this.data.disabled)
+ return;
+ const { index } = event.currentTarget.dataset;
+ if (typeof index === 'number') {
+ this.buttonIndex = index;
+ }
+ this.touchStart(event);
+ this.startValue = this.format(this.value);
+ this.newValue = this.value;
+ if (this.isRange(this.newValue)) {
+ this.startValue = this.newValue.map((val) => this.format(val));
+ }
+ else {
+ this.startValue = this.format(this.newValue);
+ }
+ this.dragStatus = 'start';
+ },
+ onTouchMove(event) {
+ if (this.data.disabled)
+ return;
+ if (this.dragStatus === 'start') {
+ this.$emit('drag-start');
+ }
+ this.touchMove(event);
+ this.dragStatus = 'draging';
+ getRect(this, '.van-slider').then((rect) => {
+ const { vertical } = this.data;
+ const delta = vertical ? this.deltaY : this.deltaX;
+ const total = vertical ? rect.height : rect.width;
+ const diff = (delta / total) * this.getRange();
+ if (this.isRange(this.startValue)) {
+ this.newValue[this.buttonIndex] =
+ this.startValue[this.buttonIndex] + diff;
+ }
+ else {
+ this.newValue = this.startValue + diff;
+ }
+ this.updateValue(this.newValue, false, true);
+ });
+ },
+ onTouchEnd() {
+ if (this.data.disabled)
+ return;
+ if (this.dragStatus === 'draging') {
+ this.updateValue(this.newValue, true);
+ this.$emit('drag-end');
+ }
+ },
+ onClick(event) {
+ if (this.data.disabled)
+ return;
+ const { min } = this.data;
+ getRect(this, '.van-slider').then((rect) => {
+ const { vertical } = this.data;
+ const touch = event.touches[0];
+ const delta = vertical
+ ? touch.clientY - rect.top
+ : touch.clientX - rect.left;
+ const total = vertical ? rect.height : rect.width;
+ const value = Number(min) + (delta / total) * this.getRange();
+ if (this.isRange(this.value)) {
+ const [left, right] = this.value;
+ const middle = (left + right) / 2;
+ if (value <= middle) {
+ this.updateValue([value, right], true);
+ }
+ else {
+ this.updateValue([left, value], true);
+ }
+ }
+ else {
+ this.updateValue(value, true);
+ }
+ });
+ },
+ isRange(val) {
+ const { range } = this.data;
+ return range && Array.isArray(val);
+ },
+ handleOverlap(value) {
+ if (value[0] > value[1]) {
+ return value.slice(0).reverse();
+ }
+ return value;
+ },
+ updateValue(value, end, drag) {
+ if (this.isRange(value)) {
+ value = this.handleOverlap(value).map((val) => this.format(val));
+ }
+ else {
+ value = this.format(value);
+ }
+ this.value = value;
+ const { vertical } = this.data;
+ const mainAxis = vertical ? 'height' : 'width';
+ this.setData({
+ wrapperStyle: `
+ background: ${this.data.inactiveColor || ''};
+ ${vertical ? 'width' : 'height'}: ${addUnit(this.data.barHeight) || ''};
+ `,
+ barStyle: `
+ ${mainAxis}: ${this.calcMainAxis()};
+ left: ${vertical ? 0 : this.calcOffset()};
+ top: ${vertical ? this.calcOffset() : 0};
+ ${drag ? 'transition: none;' : ''}
+ `,
+ });
+ if (drag) {
+ this.$emit('drag', { value });
+ }
+ if (end) {
+ this.$emit('change', value);
+ }
+ if ((drag || end) && canIUseModel()) {
+ this.setData({ value });
+ }
+ },
+ getScope() {
+ return Number(this.data.max) - Number(this.data.min);
+ },
+ getRange() {
+ const { max, min } = this.data;
+ return max - min;
+ },
+ // 计算选中条的长度百分比
+ calcMainAxis() {
+ const { value } = this;
+ const { min } = this.data;
+ const scope = this.getScope();
+ if (this.isRange(value)) {
+ return `${((value[1] - value[0]) * 100) / scope}%`;
+ }
+ return `${((value - Number(min)) * 100) / scope}%`;
+ },
+ // 计算选中条的开始位置的偏移量
+ calcOffset() {
+ const { value } = this;
+ const { min } = this.data;
+ const scope = this.getScope();
+ if (this.isRange(value)) {
+ return `${((value[0] - Number(min)) * 100) / scope}%`;
+ }
+ return '0%';
+ },
+ format(value) {
+ const { max, min, step } = this.data;
+ return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..bdce8e2cb1a3a71fb9f8439128a468a6ccb9fc9a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.vue
@@ -0,0 +1,219 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..7c0184f7632d0fcbdca8b7f548acca021d65fcdc
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.wxml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..7c43e6e538d88540791c53a17acdd75de03d6f2d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.wxs
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function barStyle(barHeight, activeColor) {
+ return style({
+ height: addUnit(barHeight),
+ background: activeColor,
+ });
+}
+
+module.exports = {
+ barStyle: barStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..d1587dea689da1f5241eac523f8a67565b31c23b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/slider/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-slider{background-color:var(--slider-inactive-background-color,#ebedf0);border-radius:999px;height:var(--slider-bar-height,2px);position:relative}.van-slider:before{bottom:calc(var(--padding-xs, 8px)*-1);content:"";left:0;position:absolute;right:0;top:calc(var(--padding-xs, 8px)*-1)}.van-slider__bar{background-color:var(--slider-active-background-color,#1989fa);border-radius:inherit;height:100%;position:relative;transition:all .2s;width:100%}.van-slider__button{background-color:var(--slider-button-background-color,#fff);border-radius:var(--slider-button-border-radius,50%);box-shadow:var(--slider-button-box-shadow,0 1px 2px rgba(0,0,0,.5));height:var(--slider-button-height,24px);width:var(--slider-button-width,24px)}.van-slider__button-wrapper,.van-slider__button-wrapper-right{position:absolute;right:0;top:50%;transform:translate3d(50%,-50%,0)}.van-slider__button-wrapper-left{left:0;position:absolute;top:50%;transform:translate3d(-50%,-50%,0)}.van-slider--disabled{opacity:var(--slider-disabled-opacity,.5)}.van-slider--vertical{display:inline-block;height:100%;width:var(--slider-bar-height,2px)}.van-slider--vertical .van-slider__button-wrapper,.van-slider--vertical .van-slider__button-wrapper-right{bottom:0;right:50%;top:auto;transform:translate3d(50%,50%,0)}.van-slider--vertical .van-slider__button-wrapper-left{left:auto;right:50%;top:0;transform:translate3d(50%,-50%,0)}.van-slider--vertical:before{bottom:0;left:-8px;right:-8px;top:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..c54ea719b8b1d1ef935c7125fb4d3b0e1640a8cf
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.js
@@ -0,0 +1,184 @@
+import { VantComponent } from '../common/component';
+import { isDef } from '../common/validator';
+const LONG_PRESS_START_TIME = 600;
+const LONG_PRESS_INTERVAL = 200;
+// add num and avoid float number
+function add(num1, num2) {
+ const cardinal = Math.pow(10, 10);
+ return Math.round((num1 + num2) * cardinal) / cardinal;
+}
+function equal(value1, value2) {
+ return String(value1) === String(value2);
+}
+VantComponent({
+ field: true,
+ classes: ['input-class', 'plus-class', 'minus-class'],
+ props: {
+ value: {
+ type: null,
+ observer: 'observeValue',
+ },
+ integer: {
+ type: Boolean,
+ observer: 'check',
+ },
+ disabled: Boolean,
+ inputWidth: String,
+ buttonSize: String,
+ asyncChange: Boolean,
+ disableInput: Boolean,
+ decimalLength: {
+ type: Number,
+ value: null,
+ observer: 'check',
+ },
+ min: {
+ type: null,
+ value: 1,
+ observer: 'check',
+ },
+ max: {
+ type: null,
+ value: Number.MAX_SAFE_INTEGER,
+ observer: 'check',
+ },
+ step: {
+ type: null,
+ value: 1,
+ },
+ showPlus: {
+ type: Boolean,
+ value: true,
+ },
+ showMinus: {
+ type: Boolean,
+ value: true,
+ },
+ disablePlus: Boolean,
+ disableMinus: Boolean,
+ longPress: {
+ type: Boolean,
+ value: true,
+ },
+ theme: String,
+ },
+ data: {
+ currentValue: '',
+ },
+ created() {
+ this.setData({
+ currentValue: this.format(this.data.value),
+ });
+ },
+ methods: {
+ observeValue() {
+ const { value, currentValue } = this.data;
+ if (!equal(value, currentValue)) {
+ this.setData({ currentValue: this.format(value) });
+ }
+ },
+ check() {
+ const val = this.format(this.data.currentValue);
+ if (!equal(val, this.data.currentValue)) {
+ this.setData({ currentValue: val });
+ }
+ },
+ isDisabled(type) {
+ const { disabled, disablePlus, disableMinus, currentValue, max, min, } = this.data;
+ if (type === 'plus') {
+ return disabled || disablePlus || currentValue >= max;
+ }
+ return disabled || disableMinus || currentValue <= min;
+ },
+ onFocus(event) {
+ this.$emit('focus', event.detail);
+ },
+ onBlur(event) {
+ const value = this.format(event.detail.value);
+ this.emitChange(value);
+ this.$emit('blur', Object.assign(Object.assign({}, event.detail), { value }));
+ },
+ // filter illegal characters
+ filter(value) {
+ value = String(value).replace(/[^0-9.-]/g, '');
+ if (this.data.integer && value.indexOf('.') !== -1) {
+ value = value.split('.')[0];
+ }
+ return value;
+ },
+ // limit value range
+ format(value) {
+ value = this.filter(value);
+ // format range
+ value = value === '' ? 0 : +value;
+ value = Math.max(Math.min(this.data.max, value), this.data.min);
+ // format decimal
+ if (isDef(this.data.decimalLength)) {
+ value = value.toFixed(this.data.decimalLength);
+ }
+ return value;
+ },
+ onInput(event) {
+ const { value = '' } = event.detail || {};
+ // allow input to be empty
+ if (value === '') {
+ return;
+ }
+ let formatted = this.filter(value);
+ // limit max decimal length
+ if (isDef(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
+ const pair = formatted.split('.');
+ formatted = `${pair[0]}.${pair[1].slice(0, this.data.decimalLength)}`;
+ }
+ this.emitChange(formatted);
+ },
+ emitChange(value) {
+ if (!this.data.asyncChange) {
+ this.setData({ currentValue: value });
+ }
+ this.$emit('change', value);
+ },
+ onChange() {
+ const { type } = this;
+ if (this.isDisabled(type)) {
+ this.$emit('overlimit', type);
+ return;
+ }
+ const diff = type === 'minus' ? -this.data.step : +this.data.step;
+ const value = this.format(add(+this.data.currentValue, diff));
+ this.emitChange(value);
+ this.$emit(type);
+ },
+ longPressStep() {
+ this.longPressTimer = setTimeout(() => {
+ this.onChange();
+ this.longPressStep();
+ }, LONG_PRESS_INTERVAL);
+ },
+ onTap(event) {
+ const { type } = event.currentTarget.dataset;
+ this.type = type;
+ this.onChange();
+ },
+ onTouchStart(event) {
+ if (!this.data.longPress) {
+ return;
+ }
+ clearTimeout(this.longPressTimer);
+ const { type } = event.currentTarget.dataset;
+ this.type = type;
+ this.isLongPress = false;
+ this.longPressTimer = setTimeout(() => {
+ this.isLongPress = true;
+ this.onChange();
+ this.longPressStep();
+ }, LONG_PRESS_START_TIME);
+ },
+ onTouchEnd() {
+ if (!this.data.longPress) {
+ return;
+ }
+ clearTimeout(this.longPressTimer);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..5b633c32c68b0985280e9f124a778144f3f27a84
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.vue
@@ -0,0 +1,204 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..8172d15ce848338e0a6a9df4c6ed6bc964733583
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.wxml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..a13e818bffddcd11afb49185715c19fa4c07c091
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.wxs
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function buttonStyle(data) {
+ return style({
+ width: addUnit(data.buttonSize),
+ height: addUnit(data.buttonSize),
+ });
+}
+
+function inputStyle(data) {
+ return style({
+ width: addUnit(data.inputWidth),
+ height: addUnit(data.buttonSize),
+ });
+}
+
+module.exports = {
+ buttonStyle: buttonStyle,
+ inputStyle: inputStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..2561a7e917b2fcbe38e0e773a0790a3dba505bb1
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/stepper/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-stepper{font-size:0}.van-stepper__minus,.van-stepper__plus{background-color:var(--stepper-background-color,#f2f3f5);border:0;box-sizing:border-box;color:var(--stepper-button-icon-color,#323233);display:inline-block;height:var(--stepper-input-height,28px);margin:1px;padding:var(--padding-base,4px);position:relative;vertical-align:middle;width:var(--stepper-input-height,28px)}.van-stepper__minus:before,.van-stepper__plus:before{height:1px;width:9px}.van-stepper__minus:after,.van-stepper__plus:after{height:9px;width:1px}.van-stepper__minus:empty.van-stepper__minus:after,.van-stepper__minus:empty.van-stepper__minus:before,.van-stepper__minus:empty.van-stepper__plus:after,.van-stepper__minus:empty.van-stepper__plus:before,.van-stepper__plus:empty.van-stepper__minus:after,.van-stepper__plus:empty.van-stepper__minus:before,.van-stepper__plus:empty.van-stepper__plus:after,.van-stepper__plus:empty.van-stepper__plus:before{background-color:currentColor;bottom:0;content:"";left:0;margin:auto;position:absolute;right:0;top:0}.van-stepper__minus--hover,.van-stepper__plus--hover{background-color:var(--stepper-active-color,#e8e8e8)}.van-stepper__minus--disabled,.van-stepper__plus--disabled{color:var(--stepper-button-disabled-icon-color,#c8c9cc)}.van-stepper__minus--disabled,.van-stepper__minus--disabled.van-stepper__minus--hover,.van-stepper__minus--disabled.van-stepper__plus--hover,.van-stepper__plus--disabled,.van-stepper__plus--disabled.van-stepper__minus--hover,.van-stepper__plus--disabled.van-stepper__plus--hover{background-color:var(--stepper-button-disabled-color,#f7f8fa)}.van-stepper__minus{border-radius:var(--stepper-border-radius,var(--stepper-border-radius,4px)) 0 0 var(--stepper-border-radius,var(--stepper-border-radius,4px))}.van-stepper__minus:after{display:none}.van-stepper__plus{border-radius:0 var(--stepper-border-radius,var(--stepper-border-radius,4px)) var(--stepper-border-radius,var(--stepper-border-radius,4px)) 0}.van-stepper--round .van-stepper__input{background-color:initial!important}.van-stepper--round .van-stepper__minus,.van-stepper--round .van-stepper__plus{border-radius:100%}.van-stepper--round .van-stepper__minus:active,.van-stepper--round .van-stepper__plus:active{opacity:.7}.van-stepper--round .van-stepper__minus--disabled,.van-stepper--round .van-stepper__minus--disabled:active,.van-stepper--round .van-stepper__plus--disabled,.van-stepper--round .van-stepper__plus--disabled:active{opacity:.3}.van-stepper--round .van-stepper__plus{background-color:#ee0a24;color:#fff}.van-stepper--round .van-stepper__minus{background-color:#fff;border:1px solid #ee0a24;color:#ee0a24}.van-stepper__input{-webkit-appearance:none;background-color:var(--stepper-background-color,#f2f3f5);border:0;border-radius:0;border-width:1px 0;box-sizing:border-box;color:var(--stepper-input-text-color,#323233);display:inline-block;font-size:var(--stepper-input-font-size,14px);height:var(--stepper-input-height,28px);margin:1px;min-height:0;padding:1px;text-align:center;vertical-align:middle;width:var(--stepper-input-width,32px)}.van-stepper__input--disabled{background-color:var(--stepper-input-disabled-background-color,#f2f3f5);color:var(--stepper-input-disabled-text-color,#c8c9cc)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/steps/index-status.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index-status.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..5713a5ed858b81ce845ebc52b0ff41510ac6a5c1
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index-status.wxs
@@ -0,0 +1,12 @@
+
+function get(index, active) {
+ if (index < active) {
+ return 'finish';
+ } else if (index === active) {
+ return 'process';
+ }
+
+ return 'inactive';
+}
+
+module.exports = get;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..b47be76e4d1b36f89a4374df2e4e7c273ba524dc
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.js
@@ -0,0 +1,33 @@
+import { VantComponent } from '../common/component';
+import { GREEN, GRAY_DARK } from '../common/color';
+VantComponent({
+ classes: ['desc-class'],
+ props: {
+ icon: String,
+ steps: Array,
+ active: Number,
+ direction: {
+ type: String,
+ value: 'horizontal',
+ },
+ activeColor: {
+ type: String,
+ value: GREEN,
+ },
+ inactiveColor: {
+ type: String,
+ value: GRAY_DARK,
+ },
+ activeIcon: {
+ type: String,
+ value: 'checked',
+ },
+ inactiveIcon: String,
+ },
+ methods: {
+ onClick(event) {
+ const { index } = event.currentTarget.dataset;
+ this.$emit('click-step', index);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..f33292de17fcd7c38380bbb056bc5deac4fc0d70
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.vue
@@ -0,0 +1,65 @@
+
+
+
+
+
+ {{ item.text }}
+ {{ item.desc }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..6180b4173e54ca9720c45d8710e798c2b9584531
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.wxml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+ {{ item.text }}
+ {{ item.desc }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+function get(index, active) {
+ if (index < active) {
+ return 'finish';
+ } else if (index === active) {
+ return 'process';
+ }
+
+ return 'inactive';
+}
+
+module.exports = get;
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..48b7665df42aab43642e6fccd33fc0e38ac3f0f6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/steps/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-steps{background-color:var(--steps-background-color,#fff);overflow:hidden}.van-steps--horizontal{padding:10px}.van-steps--horizontal .van-step__wrapper{display:flex;overflow:hidden;position:relative}.van-steps--vertical{padding-left:10px}.van-steps--vertical .van-step__wrapper{padding:0 0 0 20px}.van-step{color:var(--step-text-color,#969799);flex:1;font-size:var(--step-font-size,14px);position:relative}.van-step--finish{color:var(--step-finish-text-color,#323233)}.van-step__circle{background-color:var(--step-circle-color,#969799);border-radius:50%;height:var(--step-circle-size,5px);width:var(--step-circle-size,5px)}.van-step--horizontal{padding-bottom:14px}.van-step--horizontal:first-child .van-step__title{transform:none}.van-step--horizontal:first-child .van-step__circle-container{padding:0 8px 0 0;transform:translate3d(0,50%,0)}.van-step--horizontal:last-child{position:absolute;right:0;width:auto}.van-step--horizontal:last-child .van-step__title{text-align:right;transform:none}.van-step--horizontal:last-child .van-step__circle-container{padding:0 0 0 8px;right:0;transform:translate3d(0,50%,0)}.van-step--horizontal .van-step__circle-container{background-color:#fff;bottom:6px;padding:0 var(--padding-xs,8px);position:absolute;transform:translate3d(-50%,50%,0);z-index:1}.van-step--horizontal .van-step__title{display:inline-block;font-size:var(--step-horizontal-title-font-size,12px);transform:translate3d(-50%,0,0)}.van-step--horizontal .van-step__line{background-color:var(--step-line-color,#ebedf0);bottom:6px;height:1px;left:0;position:absolute;right:0;transform:translate3d(0,50%,0)}.van-step--horizontal.van-step--process{color:var(--step-process-text-color,#323233)}.van-step--horizontal.van-step--process .van-step__icon{display:block;font-size:var(--step-icon-size,12px);line-height:1}.van-step--vertical{line-height:18px;padding:10px 10px 10px 0}.van-step--vertical:after{border-bottom-width:1px}.van-step--vertical:last-child:after{border-bottom-width:none}.van-step--vertical:first-child:before{background-color:#fff;content:"";height:20px;left:-15px;position:absolute;top:0;width:1px;z-index:1}.van-step--vertical .van-step__circle,.van-step--vertical .van-step__icon,.van-step--vertical .van-step__line{left:-14px;position:absolute;top:19px;transform:translate3d(-50%,-50%,0);z-index:2}.van-step--vertical .van-step__icon{font-size:var(--step-icon-size,12px);line-height:1}.van-step--vertical .van-step__line{background-color:var(--step-line-color,#ebedf0);height:100%;transform:translate3d(-50%,0,0);width:1px;z-index:1}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..e1ae6dfa120b139009f6555c4efd89a257fb0471
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.js
@@ -0,0 +1,118 @@
+import { getRect } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { isDef } from '../common/validator';
+import { pageScrollMixin } from '../mixins/page-scroll';
+const ROOT_ELEMENT = '.van-sticky';
+VantComponent({
+ props: {
+ zIndex: {
+ type: Number,
+ value: 99,
+ },
+ offsetTop: {
+ type: Number,
+ value: 0,
+ observer: 'onScroll',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'onScroll',
+ },
+ container: {
+ type: null,
+ observer: 'onScroll',
+ },
+ scrollTop: {
+ type: null,
+ observer(val) {
+ this.onScroll({ scrollTop: val });
+ },
+ },
+ },
+ mixins: [
+ pageScrollMixin(function (event) {
+ if (this.data.scrollTop != null) {
+ return;
+ }
+ this.onScroll(event);
+ }),
+ ],
+ data: {
+ height: 0,
+ fixed: false,
+ transform: 0,
+ },
+ mounted() {
+ this.onScroll();
+ },
+ methods: {
+ onScroll({ scrollTop } = {}) {
+ const { container, offsetTop, disabled } = this.data;
+ if (disabled) {
+ this.setDataAfterDiff({
+ fixed: false,
+ transform: 0,
+ });
+ return;
+ }
+ this.scrollTop = scrollTop || this.scrollTop;
+ if (typeof container === 'function') {
+ Promise.all([
+ getRect(this, ROOT_ELEMENT),
+ this.getContainerRect(),
+ ]).then(([root, container]) => {
+ if (offsetTop + root.height > container.height + container.top) {
+ this.setDataAfterDiff({
+ fixed: false,
+ transform: container.height - root.height,
+ });
+ }
+ else if (offsetTop >= root.top) {
+ this.setDataAfterDiff({
+ fixed: true,
+ height: root.height,
+ transform: 0,
+ });
+ }
+ else {
+ this.setDataAfterDiff({ fixed: false, transform: 0 });
+ }
+ });
+ return;
+ }
+ getRect(this, ROOT_ELEMENT).then((root) => {
+ if (!isDef(root)) {
+ return;
+ }
+ if (offsetTop >= root.top) {
+ this.setDataAfterDiff({ fixed: true, height: root.height });
+ this.transform = 0;
+ }
+ else {
+ this.setDataAfterDiff({ fixed: false });
+ }
+ });
+ },
+ setDataAfterDiff(data) {
+ wx.nextTick(() => {
+ const diff = Object.keys(data).reduce((prev, key) => {
+ if (data[key] !== this.data[key]) {
+ prev[key] = data[key];
+ }
+ return prev;
+ }, {});
+ if (Object.keys(diff).length > 0) {
+ this.setData(diff);
+ }
+ this.$emit('scroll', {
+ scrollTop: this.scrollTop,
+ isFixed: data.fixed || this.data.fixed,
+ });
+ });
+ },
+ getContainerRect() {
+ const nodesRef = this.data.container();
+ return new Promise((resolve) => nodesRef.boundingClientRect(resolve).exec());
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..23e0a9780210cbba15ff4ae6a0d73253fc65af74
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.vue
@@ -0,0 +1,134 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..15e9f4a8ae6ebd01ceffa4fc8e6323b0010f7154
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.wxml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..be99d8931eb610212aa0ee50e053792fede6fb5b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.wxs
@@ -0,0 +1,25 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function wrapStyle(data) {
+ return style({
+ transform: data.transform
+ ? 'translate3d(0, ' + data.transform + 'px, 0)'
+ : '',
+ top: data.fixed ? addUnit(data.offsetTop) : '',
+ 'z-index': data.zIndex,
+ });
+}
+
+function containerStyle(data) {
+ return style({
+ height: data.fixed ? addUnit(data.height) : '',
+ 'z-index': data.zIndex,
+ });
+}
+
+module.exports = {
+ wrapStyle: wrapStyle,
+ containerStyle: containerStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..34d76aab295ab3e2094801473d98d9f5db0cbaa8
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/sticky/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sticky{position:relative}.van-sticky-wrap--fixed{left:0;position:fixed;right:0}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..decf4596dcb79eabcb3f9275551a6c998a970794
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.js
@@ -0,0 +1,56 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: ['bar-class', 'price-class', 'button-class'],
+ props: {
+ tip: {
+ type: null,
+ observer: 'updateTip',
+ },
+ tipIcon: String,
+ type: Number,
+ price: {
+ type: null,
+ observer: 'updatePrice',
+ },
+ label: String,
+ loading: Boolean,
+ disabled: Boolean,
+ buttonText: String,
+ currency: {
+ type: String,
+ value: '¥',
+ },
+ buttonType: {
+ type: String,
+ value: 'danger',
+ },
+ decimalLength: {
+ type: Number,
+ value: 2,
+ observer: 'updatePrice',
+ },
+ suffixLabel: String,
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ updatePrice() {
+ const { price, decimalLength } = this.data;
+ const priceStrArr = typeof price === 'number' &&
+ (price / 100).toFixed(decimalLength).split('.');
+ this.setData({
+ hasPrice: typeof price === 'number',
+ integerStr: priceStrArr && priceStrArr[0],
+ decimalStr: decimalLength && priceStrArr ? `.${priceStrArr[1]}` : '',
+ });
+ },
+ updateTip() {
+ this.setData({ hasTip: typeof this.data.tip === 'string' });
+ },
+ onSubmit(event) {
+ this.$emit('submit', event.detail);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..bda9b8d338609dd3ae9b10a6dc46a6f649d52b17
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../button/index",
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..aa57c950493a056644e2c510498e9faaded996b6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.vue
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+ {{ tip }}
+
+
+
+
+
+
+
+ {{ label || '合计:' }}
+
+ {{ currency }}
+ {{ integerStr }} {{decimalStr}}
+
+ {{ suffixLabel }}
+
+
+ {{ loading ? '' : buttonText }}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..a56dd46ce8c81a4b76275e8f128ae8a108b93ac8
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.wxml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+ {{ tip }}
+
+
+
+
+
+
+
+ {{ label || '合计:' }}
+
+ {{ currency }}
+ {{ integerStr }} {{decimalStr}}
+
+ {{ suffixLabel }}
+
+
+ {{ loading ? '' : buttonText }}
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..8379a30608217c05e96cfc56b10a4ef34bb67e48
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/submit-bar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-submit-bar{background-color:var(--submit-bar-background-color,#fff);bottom:0;left:0;position:fixed;-webkit-user-select:none;user-select:none;width:100%;z-index:var(--submit-bar-z-index,100)}.van-submit-bar__tip{background-color:var(--submit-bar-tip-background-color,#fff7cc);color:var(--submit-bar-tip-color,#f56723);font-size:var(--submit-bar-tip-font-size,12px);line-height:var(--submit-bar-tip-line-height,1.5);padding:var(--submit-bar-tip-padding,10px)}.van-submit-bar__tip:empty{display:none}.van-submit-bar__tip-icon{margin-right:4px;vertical-align:middle}.van-submit-bar__tip-text{display:inline;vertical-align:middle}.van-submit-bar__bar{align-items:center;background-color:var(--submit-bar-background-color,#fff);display:flex;font-size:var(--submit-bar-text-font-size,14px);height:var(--submit-bar-height,50px);justify-content:flex-end;padding:var(--submit-bar-padding,0 16px)}.van-submit-bar__safe{height:constant(safe-area-inset-bottom);height:env(safe-area-inset-bottom)}.van-submit-bar__text{color:var(--submit-bar-text-color,#323233);flex:1;font-weight:var(--font-weight-bold,500);padding-right:var(--padding-sm,12px);text-align:right}.van-submit-bar__price{color:var(--submit-bar-price-color,#ee0a24);font-size:var(--submit-bar-price-font-size,12px);font-weight:var(--font-weight-bold,500)}.van-submit-bar__price-integer{font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif;font-size:20px}.van-submit-bar__currency{font-size:var(--submit-bar-currency-font-size,12px)}.van-submit-bar__suffix-label{margin-left:5px}.van-submit-bar__button{--button-default-height:var(--submit-bar-button-height,40px)!important;--button-line-height:var(--submit-bar-button-height,40px)!important;font-weight:var(--font-weight-bold,500);width:var(--submit-bar-button-width,110px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..501088f5d071e3e2aa3ac09d518c024734fdb0ad
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.js
@@ -0,0 +1,133 @@
+import { VantComponent } from '../common/component';
+import { touch } from '../mixins/touch';
+import { range } from '../common/utils';
+const THRESHOLD = 0.3;
+let ARRAY = [];
+VantComponent({
+ props: {
+ disabled: Boolean,
+ leftWidth: {
+ type: Number,
+ value: 0,
+ observer(leftWidth = 0) {
+ if (this.offset > 0) {
+ this.swipeMove(leftWidth);
+ }
+ },
+ },
+ rightWidth: {
+ type: Number,
+ value: 0,
+ observer(rightWidth = 0) {
+ if (this.offset < 0) {
+ this.swipeMove(-rightWidth);
+ }
+ },
+ },
+ asyncClose: Boolean,
+ name: {
+ type: null,
+ value: '',
+ },
+ },
+ mixins: [touch],
+ data: {
+ catchMove: false,
+ wrapperStyle: '',
+ },
+ created() {
+ this.offset = 0;
+ ARRAY.push(this);
+ },
+ destroyed() {
+ ARRAY = ARRAY.filter((item) => item !== this);
+ },
+ methods: {
+ open(position) {
+ const { leftWidth, rightWidth } = this.data;
+ const offset = position === 'left' ? leftWidth : -rightWidth;
+ this.swipeMove(offset);
+ this.$emit('open', {
+ position,
+ name: this.data.name,
+ });
+ },
+ close() {
+ this.swipeMove(0);
+ },
+ swipeMove(offset = 0) {
+ this.offset = range(offset, -this.data.rightWidth, this.data.leftWidth);
+ const transform = `translate3d(${this.offset}px, 0, 0)`;
+ const transition = this.dragging
+ ? 'none'
+ : 'transform .6s cubic-bezier(0.18, 0.89, 0.32, 1)';
+ this.setData({
+ wrapperStyle: `
+ -webkit-transform: ${transform};
+ -webkit-transition: ${transition};
+ transform: ${transform};
+ transition: ${transition};
+ `,
+ });
+ },
+ swipeLeaveTransition() {
+ const { leftWidth, rightWidth } = this.data;
+ const { offset } = this;
+ if (rightWidth > 0 && -offset > rightWidth * THRESHOLD) {
+ this.open('right');
+ }
+ else if (leftWidth > 0 && offset > leftWidth * THRESHOLD) {
+ this.open('left');
+ }
+ else {
+ this.swipeMove(0);
+ }
+ this.setData({ catchMove: false });
+ },
+ startDrag(event) {
+ if (this.data.disabled) {
+ return;
+ }
+ this.startOffset = this.offset;
+ this.touchStart(event);
+ },
+ noop() { },
+ onDrag(event) {
+ if (this.data.disabled) {
+ return;
+ }
+ this.touchMove(event);
+ if (this.direction !== 'horizontal') {
+ return;
+ }
+ this.dragging = true;
+ ARRAY.filter((item) => item !== this && item.offset !== 0).forEach((item) => item.close());
+ this.setData({ catchMove: true });
+ this.swipeMove(this.startOffset + this.deltaX);
+ },
+ endDrag() {
+ if (this.data.disabled) {
+ return;
+ }
+ this.dragging = false;
+ this.swipeLeaveTransition();
+ },
+ onClick(event) {
+ const { key: position = 'outside' } = event.currentTarget.dataset;
+ this.$emit('click', position);
+ if (!this.offset) {
+ return;
+ }
+ if (this.data.asyncClose) {
+ this.$emit('close', {
+ position,
+ instance: this,
+ name: this.data.name,
+ });
+ }
+ else {
+ this.swipeMove(0);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..12a6a54d396c8180910d89dc13d69d81f6731b2b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.vue
@@ -0,0 +1,155 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..3f7f7260895d329b8b21a85239a95e084d7ae125
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.wxml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..3a265bf671176ff93f3a0b29d5d4bde15a28b7d4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/swipe-cell/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-swipe-cell{overflow:hidden;position:relative}.van-swipe-cell__left,.van-swipe-cell__right{height:100%;position:absolute;top:0}.van-swipe-cell__left{left:0;transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;transform:translate3d(100%,0,0)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..4cad09c9bbfe2b48513471f54b98ec1fcc94e742
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.js
@@ -0,0 +1,36 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ field: true,
+ classes: ['node-class'],
+ props: {
+ checked: null,
+ loading: Boolean,
+ disabled: Boolean,
+ activeColor: String,
+ inactiveColor: String,
+ size: {
+ type: String,
+ value: '30',
+ },
+ activeValue: {
+ type: null,
+ value: true,
+ },
+ inactiveValue: {
+ type: null,
+ value: false,
+ },
+ },
+ methods: {
+ onClick() {
+ const { activeValue, inactiveValue, disabled, loading } = this.data;
+ if (disabled || loading) {
+ return;
+ }
+ const checked = this.data.checked === activeValue;
+ const value = checked ? inactiveValue : activeValue;
+ this.$emit('input', value);
+ this.$emit('change', value);
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..01077f5dafe4ea3780999933518963b8b6551d8d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..8ad9136e9ae512161f2623be6d85e3699d8abe3e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.vue
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..d45829bde48f9bc164249e1a47ec2ee6bdd1634b
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.wxml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..1fb6530c54b8877603a7f1136f2b0035c56f3a42
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.wxs
@@ -0,0 +1,26 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ var currentColor = data.checked ? data.activeColor : data.inactiveColor;
+
+ return style({
+ 'font-size': addUnit(data.size),
+ 'background-color': currentColor,
+ });
+}
+
+var BLUE = '#1989fa';
+var GRAY_DARK = '#969799';
+
+function loadingColor(data) {
+ return data.checked
+ ? data.activeColor || BLUE
+ : data.inactiveColor || GRAY_DARK;
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ loadingColor: loadingColor,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..35929de107181639e00170266f7127615607f4ca
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/switch/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-switch{background-color:var(--switch-background-color,#fff);border:var(--switch-border,1px solid rgba(0,0,0,.1));border-radius:var(--switch-node-size,1em);box-sizing:initial;display:inline-block;height:var(--switch-height,1em);position:relative;transition:background-color var(--switch-transition-duration,.3s);width:var(--switch-width,2em)}.van-switch__node{background-color:var(--switch-node-background-color,#fff);border-radius:100%;box-shadow:var(--switch-node-box-shadow,0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05));height:var(--switch-node-size,1em);left:0;position:absolute;top:0;transition:var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05);width:var(--switch-node-size,1em);z-index:var(--switch-node-z-index,1)}.van-switch__loading{height:50%;left:25%;position:absolute!important;top:25%;width:50%}.van-switch--on{background-color:var(--switch-on-background-color,#1989fa)}.van-switch--on .van-switch__node{transform:translateX(calc(var(--switch-width, 2em) - var(--switch-node-size, 1em)))}.van-switch--disabled{opacity:var(--switch-disabled-opacity,.4)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..9ada62e0c4466170483cb9b5197543fb8b11c2d4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.js
@@ -0,0 +1,56 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ relation: useParent('tabs'),
+ props: {
+ dot: {
+ type: Boolean,
+ observer: 'update',
+ },
+ info: {
+ type: null,
+ observer: 'update',
+ },
+ title: {
+ type: String,
+ observer: 'update',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'update',
+ },
+ titleStyle: {
+ type: String,
+ observer: 'update',
+ },
+ name: {
+ type: null,
+ value: '',
+ },
+ },
+ data: {
+ active: false,
+ },
+ methods: {
+ getComputedName() {
+ if (this.data.name !== '') {
+ return this.data.name;
+ }
+ return this.index;
+ },
+ updateRender(active, parent) {
+ const { data: parentData } = parent;
+ this.inited = this.inited || active;
+ this.setData({
+ active,
+ shouldRender: this.inited || !parentData.lazyRender,
+ shouldShow: active || parentData.animated,
+ });
+ },
+ update() {
+ if (this.parent) {
+ this.parent.updateTabs();
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..1523599a2a60a1638ae7adab8aaf6c8b2ec02d6c
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.vue
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f5e99f2145b12c53b3c91150d9bb742ece67d0d9
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.wxml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..1c90c88c604bb5676d7a3f90b816c840814cab8f
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tab/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{box-sizing:border-box;flex-shrink:0;width:100%}.van-tab__pane{-webkit-overflow-scrolling:touch;box-sizing:border-box;overflow-y:auto}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..4154399ed9956df52f23ac4f2a42cdde3367d8e4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.js
@@ -0,0 +1,56 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ props: {
+ info: null,
+ name: null,
+ icon: String,
+ dot: Boolean,
+ iconPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ },
+ relation: useParent('tabbar'),
+ data: {
+ active: false,
+ activeColor: '',
+ inactiveColor: '',
+ },
+ methods: {
+ onClick() {
+ const { parent } = this;
+ if (parent) {
+ const index = parent.children.indexOf(this);
+ const active = this.data.name || index;
+ if (active !== this.data.active) {
+ parent.$emit('change', active);
+ }
+ }
+ this.$emit('click');
+ },
+ updateFromParent() {
+ const { parent } = this;
+ if (!parent) {
+ return;
+ }
+ const index = parent.children.indexOf(this);
+ const parentData = parent.data;
+ const { data } = this;
+ const active = (data.name || index) === parentData.active;
+ const patch = {};
+ if (active !== data.active) {
+ patch.active = active;
+ }
+ if (parentData.activeColor !== data.activeColor) {
+ patch.activeColor = parentData.activeColor;
+ }
+ if (parentData.inactiveColor !== data.inactiveColor) {
+ patch.inactiveColor = parentData.inactiveColor;
+ }
+ if (Object.keys(patch).length > 0) {
+ this.setData(patch);
+ }
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..16f174c55fee5e53021a59136c62bc968295a379
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-info": "../info/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..dffae2fe2b37ba719a076e0cb894a8e66845ce8a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.vue
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..524728f34a4f907e1726abc059d760c1d178da95
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.wxml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..21ee224a8a553ce735590b1f9c5ac560c000a7d2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar-item/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{flex:1}.van-tabbar-item{align-items:center;color:var(--tabbar-item-text-color,#646566);display:flex;flex-direction:column;font-size:var(--tabbar-item-font-size,12px);height:100%;justify-content:center;line-height:var(--tabbar-item-line-height,1)}.van-tabbar-item__icon{font-size:var(--tabbar-item-icon-size,22px);margin-bottom:var(--tabbar-item-margin-bottom,4px);position:relative}.van-tabbar-item__icon__inner{display:block;min-width:1em}.van-tabbar-item--active{color:var(--tabbar-item-active-color,#1989fa)}.van-tabbar-item__info{margin-top:2px}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..05a39d6e3cff67136404aadd3b7a492d01705bed
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.js
@@ -0,0 +1,65 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+import { getRect } from '../common/utils';
+VantComponent({
+ relation: useChildren('tabbar-item', function () {
+ this.updateChildren();
+ }),
+ props: {
+ active: {
+ type: null,
+ observer: 'updateChildren',
+ },
+ activeColor: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ inactiveColor: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ fixed: {
+ type: Boolean,
+ value: true,
+ observer: 'setHeight',
+ },
+ placeholder: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ height: 50,
+ },
+ methods: {
+ updateChildren() {
+ const { children } = this;
+ if (!Array.isArray(children) || !children.length) {
+ return;
+ }
+ children.forEach((child) => child.updateFromParent());
+ },
+ setHeight() {
+ if (!this.data.fixed || !this.data.placeholder) {
+ return;
+ }
+ wx.nextTick(() => {
+ getRect(this, '.van-tabbar').then((res) => {
+ this.setData({ height: res.height });
+ });
+ });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..2aeb64b76a99d8c073b50edd4032e1f55dac2a25
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.vue
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..43bb11111d4cf459dcab0beee536960c863608f2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.wxml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..42b6c1e984da98b30269b9cd6f780c42d3e88778
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabbar/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tabbar{background-color:var(--tabbar-background-color,#fff);box-sizing:initial;display:flex;height:var(--tabbar-height,50px);width:100%}.van-tabbar--fixed{bottom:0;left:0;position:fixed}.van-tabbar--safe{padding-bottom:env(safe-area-inset-bottom)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..c2395be1a53b589f6729d13ad87dbbce3a89b258
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.js
@@ -0,0 +1,269 @@
+import { VantComponent } from '../common/component';
+import { touch } from '../mixins/touch';
+import { getAllRect, getRect, groupSetData, nextTick, requestAnimationFrame, } from '../common/utils';
+import { isDef } from '../common/validator';
+import { useChildren } from '../common/relation';
+VantComponent({
+ mixins: [touch],
+ classes: ['nav-class', 'tab-class', 'tab-active-class', 'line-class'],
+ relation: useChildren('tab', function () {
+ this.updateTabs();
+ }),
+ props: {
+ sticky: Boolean,
+ border: Boolean,
+ swipeable: Boolean,
+ titleActiveColor: String,
+ titleInactiveColor: String,
+ color: String,
+ animated: {
+ type: Boolean,
+ observer() {
+ this.children.forEach((child, index) => child.updateRender(index === this.data.currentIndex, this));
+ },
+ },
+ lineWidth: {
+ type: null,
+ value: 40,
+ observer: 'resize',
+ },
+ lineHeight: {
+ type: null,
+ value: -1,
+ },
+ active: {
+ type: null,
+ value: 0,
+ observer(name) {
+ if (name !== this.getCurrentName()) {
+ this.setCurrentIndexByName(name);
+ }
+ },
+ },
+ type: {
+ type: String,
+ value: 'line',
+ },
+ ellipsis: {
+ type: Boolean,
+ value: true,
+ },
+ duration: {
+ type: Number,
+ value: 0.3,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ swipeThreshold: {
+ type: Number,
+ value: 5,
+ observer(value) {
+ this.setData({
+ scrollable: this.children.length > value || !this.data.ellipsis,
+ });
+ },
+ },
+ offsetTop: {
+ type: Number,
+ value: 0,
+ },
+ lazyRender: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ tabs: [],
+ scrollLeft: 0,
+ scrollable: false,
+ currentIndex: 0,
+ container: null,
+ skipTransition: true,
+ scrollWithAnimation: false,
+ lineOffsetLeft: 0,
+ },
+ mounted() {
+ requestAnimationFrame(() => {
+ this.swiping = true;
+ this.setData({
+ container: () => this.createSelectorQuery().select('.van-tabs'),
+ });
+ this.resize();
+ this.scrollIntoView();
+ });
+ },
+ methods: {
+ updateTabs() {
+ const { children = [], data } = this;
+ this.setData({
+ tabs: children.map((child) => child.data),
+ scrollable: this.children.length > data.swipeThreshold || !data.ellipsis,
+ });
+ this.setCurrentIndexByName(data.active || this.getCurrentName());
+ },
+ trigger(eventName, child) {
+ const { currentIndex } = this.data;
+ const currentChild = child || this.children[currentIndex];
+ if (!isDef(currentChild)) {
+ return;
+ }
+ this.$emit(eventName, {
+ index: currentChild.index,
+ name: currentChild.getComputedName(),
+ title: currentChild.data.title,
+ });
+ },
+ onTap(event) {
+ const { index } = event.currentTarget.dataset;
+ const child = this.children[index];
+ if (child.data.disabled) {
+ this.trigger('disabled', child);
+ }
+ else {
+ this.setCurrentIndex(index);
+ nextTick(() => {
+ this.trigger('click');
+ });
+ }
+ },
+ // correct the index of active tab
+ setCurrentIndexByName(name) {
+ const { children = [] } = this;
+ const matched = children.filter((child) => child.getComputedName() === name);
+ if (matched.length) {
+ this.setCurrentIndex(matched[0].index);
+ }
+ },
+ setCurrentIndex(currentIndex) {
+ const { data, children = [] } = this;
+ if (!isDef(currentIndex) ||
+ currentIndex >= children.length ||
+ currentIndex < 0) {
+ return;
+ }
+ groupSetData(this, () => {
+ children.forEach((item, index) => {
+ const active = index === currentIndex;
+ if (active !== item.data.active || !item.inited) {
+ item.updateRender(active, this);
+ }
+ });
+ });
+ if (currentIndex === data.currentIndex) {
+ return;
+ }
+ const shouldEmitChange = data.currentIndex !== null;
+ this.setData({ currentIndex });
+ requestAnimationFrame(() => {
+ this.resize();
+ this.scrollIntoView();
+ });
+ nextTick(() => {
+ this.trigger('input');
+ if (shouldEmitChange) {
+ this.trigger('change');
+ }
+ });
+ },
+ getCurrentName() {
+ const activeTab = this.children[this.data.currentIndex];
+ if (activeTab) {
+ return activeTab.getComputedName();
+ }
+ },
+ resize() {
+ if (this.data.type !== 'line') {
+ return;
+ }
+ const { currentIndex, ellipsis, skipTransition } = this.data;
+ Promise.all([
+ getAllRect(this, '.van-tab'),
+ getRect(this, '.van-tabs__line'),
+ ]).then(([rects = [], lineRect]) => {
+ const rect = rects[currentIndex];
+ if (rect == null) {
+ return;
+ }
+ let lineOffsetLeft = rects
+ .slice(0, currentIndex)
+ .reduce((prev, curr) => prev + curr.width, 0);
+ lineOffsetLeft +=
+ (rect.width - lineRect.width) / 2 + (ellipsis ? 0 : 8);
+ this.setData({ lineOffsetLeft });
+ this.swiping = true;
+ if (skipTransition) {
+ nextTick(() => {
+ this.setData({ skipTransition: false });
+ });
+ }
+ });
+ },
+ // scroll active tab into view
+ scrollIntoView() {
+ const { currentIndex, scrollable, scrollWithAnimation } = this.data;
+ if (!scrollable) {
+ return;
+ }
+ Promise.all([
+ getAllRect(this, '.van-tab'),
+ getRect(this, '.van-tabs__nav'),
+ ]).then(([tabRects, navRect]) => {
+ const tabRect = tabRects[currentIndex];
+ const offsetLeft = tabRects
+ .slice(0, currentIndex)
+ .reduce((prev, curr) => prev + curr.width, 0);
+ this.setData({
+ scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2,
+ });
+ if (!scrollWithAnimation) {
+ nextTick(() => {
+ this.setData({ scrollWithAnimation: true });
+ });
+ }
+ });
+ },
+ onTouchScroll(event) {
+ this.$emit('scroll', event.detail);
+ },
+ onTouchStart(event) {
+ if (!this.data.swipeable)
+ return;
+ this.touchStart(event);
+ },
+ onTouchMove(event) {
+ if (!this.data.swipeable || !this.swiping)
+ return;
+ this.touchMove(event);
+ },
+ // watch swipe touch end
+ onTouchEnd() {
+ if (!this.data.swipeable || !this.swiping)
+ return;
+ const { direction, deltaX, offsetX } = this;
+ const minSwipeDistance = 50;
+ if (direction === 'horizontal' && offsetX >= minSwipeDistance) {
+ const index = this.getAvaiableTab(deltaX);
+ if (index !== -1) {
+ this.setCurrentIndex(index);
+ }
+ }
+ this.swiping = false;
+ },
+ getAvaiableTab(direction) {
+ const { tabs, currentIndex } = this.data;
+ const step = direction > 0 ? -1 : 1;
+ for (let i = step; currentIndex + i < tabs.length && currentIndex + i >= 0; i += step) {
+ const index = currentIndex + i;
+ if (index >= 0 &&
+ index < tabs.length &&
+ tabs[index] &&
+ !tabs[index].disabled) {
+ return index;
+ }
+ }
+ return -1;
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..19c0bc3a0830569890b895d1da038f64f981879c
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/index",
+ "van-sticky": "../sticky/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..a5dd8662b55ea4b1e001c9784a07e7d40d7df6e9
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.vue
@@ -0,0 +1,310 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f76dd63f21095144408ccd5ba48d177e6033e8bb
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.wxml
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..a027c7b9c35d21d2e7420a9562bac7caf3acdf75
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.wxs
@@ -0,0 +1,82 @@
+/* eslint-disable */
+var utils = require('../wxs/utils.wxs');
+var style = require('../wxs/style.wxs');
+
+function tabClass(active, ellipsis) {
+ var classes = ['tab-class'];
+
+ if (active) {
+ classes.push('tab-active-class');
+ }
+
+ if (ellipsis) {
+ classes.push('van-ellipsis');
+ }
+
+ return classes.join(' ');
+}
+
+function tabStyle(data) {
+ var titleColor = data.active
+ ? data.titleActiveColor
+ : data.titleInactiveColor;
+
+ var ellipsis = data.scrollable && data.ellipsis;
+
+ // card theme color
+ if (data.type === 'card') {
+ return style({
+ 'border-color': data.color,
+ 'background-color': !data.disabled && data.active ? data.color : null,
+ color: titleColor || (!data.disabled && !data.active ? data.color : null),
+ 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null,
+ });
+ }
+
+ return style({
+ color: titleColor,
+ 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null,
+ });
+}
+
+function navStyle(color, type) {
+ return style({
+ 'border-color': type === 'card' && color ? color : null,
+ });
+}
+
+function trackStyle(data) {
+ if (!data.animated) {
+ return '';
+ }
+
+ return style({
+ left: -100 * data.currentIndex + '%',
+ 'transition-duration': data.duration + 's',
+ '-webkit-transition-duration': data.duration + 's',
+ });
+}
+
+function lineStyle(data) {
+ return style({
+ width: utils.addUnit(data.lineWidth),
+ transform: 'translateX(' + data.lineOffsetLeft + 'px)',
+ '-webkit-transform': 'translateX(' + data.lineOffsetLeft + 'px)',
+ 'background-color': data.color,
+ height: data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null,
+ 'border-radius':
+ data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null,
+ 'transition-duration': !data.skipTransition ? data.duration + 's' : null,
+ '-webkit-transition-duration': !data.skipTransition
+ ? data.duration + 's'
+ : null,
+ });
+}
+
+module.exports = {
+ tabClass: tabClass,
+ tabStyle: tabStyle,
+ trackStyle: trackStyle,
+ lineStyle: lineStyle,
+ navStyle: navStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..bb592c3a96efdb50b1f6b2407703f6bd2f9780a0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tabs/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tabs{-webkit-tap-highlight-color:transparent;position:relative}.van-tabs__wrap{display:flex;overflow:hidden}.van-tabs__wrap--scrollable .van-tab{flex:0 0 22%}.van-tabs__wrap--scrollable .van-tab--complete{flex:1 0 auto!important;padding:0 12px}.van-tabs__wrap--scrollable .van-tabs__nav--complete{padding-left:8px;padding-right:8px}.van-tabs__scroll{background-color:var(--tabs-nav-background-color,#fff)}.van-tabs__scroll--line{box-sizing:initial;height:calc(100% + 15px)}.van-tabs__scroll--card{border:1px solid var(--tabs-default-color,#ee0a24);border-radius:2px;box-sizing:border-box;margin:0 var(--padding-md,16px);width:calc(100% - var(--padding-md, 16px)*2)}.van-tabs__scroll::-webkit-scrollbar{display:none}.van-tabs__nav{display:flex;position:relative;-webkit-user-select:none;user-select:none}.van-tabs__nav--card{box-sizing:border-box;height:var(--tabs-card-height,30px)}.van-tabs__nav--card .van-tab{border-right:1px solid var(--tabs-default-color,#ee0a24);color:var(--tabs-default-color,#ee0a24);line-height:calc(var(--tabs-card-height, 30px) - 2px)}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{background-color:var(--tabs-default-color,#ee0a24);color:#fff}.van-tabs__nav--card .van-tab--disabled{color:var(--tab-disabled-text-color,#c8c9cc)}.van-tabs__line{background-color:var(--tabs-bottom-bar-color,#ee0a24);border-radius:var(--tabs-bottom-bar-height,3px);bottom:0;height:var(--tabs-bottom-bar-height,3px);left:0;position:absolute;z-index:1}.van-tabs__track{height:100%;position:relative;width:100%}.van-tabs__track--animated{display:flex;transition-property:left}.van-tabs__content{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:var(--tabs-line-height,44px)}.van-tabs--card .van-tabs__wrap{height:var(--tabs-card-height,30px)}.van-tab{box-sizing:border-box;color:var(--tab-text-color,#646566);cursor:pointer;flex:1;font-size:var(--tab-font-size,14px);line-height:var(--tabs-line-height,44px);min-width:0;padding:0 5px;position:relative;text-align:center}.van-tab--active{color:var(--tab-active-text-color,#323233);font-weight:var(--font-weight-bold,500)}.van-tab--disabled{color:var(--tab-disabled-text-color,#c8c9cc)}.van-tab__title__info{display:inline-block;position:relative!important;top:-1px!important;transform:translateX(0)!important}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..9704ef01f473eca2825d6c46c291001a60932215
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.js
@@ -0,0 +1,21 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ size: String,
+ mark: Boolean,
+ color: String,
+ plain: Boolean,
+ round: Boolean,
+ textColor: String,
+ type: {
+ type: String,
+ value: 'default',
+ },
+ closeable: Boolean,
+ },
+ methods: {
+ onClose() {
+ this.$emit('close');
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.json
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..e9e0f1c257c7c63a9e5557fad7464c30e5968cf0
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.vue
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..59352dddde79329fc3ec90921a821b781ba0e631
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.wxml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..12d1668ec5f8df1f0cace309484bdb7c4a9377d4
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.wxs
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'background-color': data.plain ? '' : data.color,
+ color: data.textColor || data.plain ? data.textColor || data.color : '',
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..0f0cbae9d89743a1dd7b06e97e34db84744199dd
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tag/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tag{align-items:center;border-radius:var(--tag-border-radius,2px);color:var(--tag-text-color,#fff);display:inline-flex;font-size:var(--tag-font-size,12px);line-height:var(--tag-line-height,16px);padding:var(--tag-padding,0 4px);position:relative}.van-tag--default{background-color:var(--tag-default-color,#969799)}.van-tag--default.van-tag--plain{color:var(--tag-default-color,#969799)}.van-tag--danger{background-color:var(--tag-danger-color,#ee0a24)}.van-tag--danger.van-tag--plain{color:var(--tag-danger-color,#ee0a24)}.van-tag--primary{background-color:var(--tag-primary-color,#1989fa)}.van-tag--primary.van-tag--plain{color:var(--tag-primary-color,#1989fa)}.van-tag--success{background-color:var(--tag-success-color,#07c160)}.van-tag--success.van-tag--plain{color:var(--tag-success-color,#07c160)}.van-tag--warning{background-color:var(--tag-warning-color,#ff976a)}.van-tag--warning.van-tag--plain{color:var(--tag-warning-color,#ff976a)}.van-tag--plain{background-color:var(--tag-plain-background-color,#fff)}.van-tag--plain:before{border:1px solid;border-radius:inherit;bottom:0;content:"";left:0;pointer-events:none;position:absolute;right:0;top:0}.van-tag--medium{padding:var(--tag-medium-padding,2px 6px)}.van-tag--large{border-radius:var(--tag-large-border-radius,4px);font-size:var(--tag-large-font-size,14px);padding:var(--tag-large-padding,4px 8px)}.van-tag--mark{border-radius:0 var(--tag-round-border-radius,var(--tag-round-border-radius,999px)) var(--tag-round-border-radius,var(--tag-round-border-radius,999px)) 0}.van-tag--mark:after{content:"";display:block;width:2px}.van-tag--round{border-radius:var(--tag-round-border-radius,999px)}.van-tag__close{margin-left:2px;min-width:1em}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..414e746ac3068a74519e73a505058d2505039ecd
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.js
@@ -0,0 +1,29 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ show: Boolean,
+ mask: Boolean,
+ message: String,
+ forbidClick: Boolean,
+ zIndex: {
+ type: Number,
+ value: 1000,
+ },
+ type: {
+ type: String,
+ value: 'text',
+ },
+ loadingType: {
+ type: String,
+ value: 'circular',
+ },
+ position: {
+ type: String,
+ value: 'middle',
+ },
+ },
+ methods: {
+ // for prevent touchmove
+ noop() { },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..9b1b78c4aa37d522149a65979bb4f4786ecbf2ed
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.json
@@ -0,0 +1,9 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index",
+ "van-overlay": "../overlay/index",
+ "van-transition": "../transition/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..7d1a9c79747b85e8488887ef269a18568166440d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.vue
@@ -0,0 +1,64 @@
+
+
+
+
+
+ {{ message }}
+
+
+
+
+
+
+
+
+ {{ message }}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..f5c4f732c498e5e8d8e2469e0dd8000caa2624f3
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.wxml
@@ -0,0 +1,36 @@
+
+
+
+
+ {{ message }}
+
+
+
+
+
+
+
+
+ {{ message }}
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..3b7a34ef58c9623d587c4abaa20b403bce9cf7e7
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/toast/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-toast{word-wrap:break-word;align-items:center;background-color:var(--toast-background-color,rgba(0,0,0,.7));border-radius:var(--toast-border-radius,8px);box-sizing:initial;color:var(--toast-text-color,#fff);display:flex;flex-direction:column;font-size:var(--toast-font-size,14px);justify-content:center;line-height:var(--toast-line-height,20px);white-space:pre-wrap}.van-toast__container{left:50%;max-width:var(--toast-max-width,70%);position:fixed;top:50%;transform:translate(-50%,-50%);width:-webkit-fit-content;width:fit-content}.van-toast--text{min-width:var(--toast-text-min-width,96px);padding:var(--toast-text-padding,8px 12px)}.van-toast--icon{min-height:var(--toast-default-min-height,88px);padding:var(--toast-default-padding,16px);width:var(--toast-default-width,88px)}.van-toast--icon .van-toast__icon{font-size:var(--toast-icon-size,36px)}.van-toast--icon .van-toast__text{padding-top:8px}.van-toast__loading{margin:10px 0}.van-toast--top{transform:translateY(-30vh)}.van-toast--bottom{transform:translateY(30vh)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/toast/toast.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/toast/toast.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..db3f40e6845b60070eaa20caaa46513657d0b1fa
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/toast/toast.d.ts
@@ -0,0 +1,26 @@
+///
+declare type ToastMessage = string | number;
+interface ToastOptions {
+ show?: boolean;
+ type?: string;
+ mask?: boolean;
+ zIndex?: number;
+ context?: WechatMiniprogram.Component.TrivialInstance | WechatMiniprogram.Page.TrivialInstance;
+ position?: string;
+ duration?: number;
+ selector?: string;
+ forbidClick?: boolean;
+ loadingType?: string;
+ message?: ToastMessage;
+ onClose?: () => void;
+}
+declare function Toast(toastOptions: ToastOptions | ToastMessage): WechatMiniprogram.Component.TrivialInstance | undefined;
+declare namespace Toast {
+ var loading: (options: ToastMessage | ToastOptions) => WechatMiniprogram.Component.TrivialInstance | undefined;
+ var success: (options: ToastMessage | ToastOptions) => WechatMiniprogram.Component.TrivialInstance | undefined;
+ var fail: (options: ToastMessage | ToastOptions) => WechatMiniprogram.Component.TrivialInstance | undefined;
+ var clear: () => void;
+ var setDefaultOptions: (options: ToastOptions) => void;
+ var resetDefaultOptions: () => void;
+}
+export default Toast;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/toast/toast.js b/litemall-wx_uni/wxcomponents/vant-weapp/toast/toast.js
new file mode 100644
index 0000000000000000000000000000000000000000..10775f313d7adbfaad1e4fa79ee0480cba6e9895
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/toast/toast.js
@@ -0,0 +1,66 @@
+import { isObj } from '../common/validator';
+const defaultOptions = {
+ type: 'text',
+ mask: false,
+ message: '',
+ show: true,
+ zIndex: 1000,
+ duration: 2000,
+ position: 'middle',
+ forbidClick: false,
+ loadingType: 'circular',
+ selector: '#van-toast',
+};
+let queue = [];
+let currentOptions = Object.assign({}, defaultOptions);
+function parseOptions(message) {
+ return isObj(message) ? message : { message };
+}
+function getContext() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+function Toast(toastOptions) {
+ const options = Object.assign(Object.assign({}, currentOptions), parseOptions(toastOptions));
+ const context = options.context || getContext();
+ const toast = context.selectComponent(options.selector);
+ if (!toast) {
+ console.warn('未找到 van-toast 节点,请确认 selector 及 context 是否正确');
+ return;
+ }
+ delete options.context;
+ delete options.selector;
+ toast.clear = () => {
+ toast.setData({ show: false });
+ if (options.onClose) {
+ options.onClose();
+ }
+ };
+ queue.push(toast);
+ toast.setData(options);
+ clearTimeout(toast.timer);
+ if (options.duration != null && options.duration > 0) {
+ toast.timer = setTimeout(() => {
+ toast.clear();
+ queue = queue.filter((item) => item !== toast);
+ }, options.duration);
+ }
+ return toast;
+}
+const createMethod = (type) => (options) => Toast(Object.assign({ type }, parseOptions(options)));
+Toast.loading = createMethod('loading');
+Toast.success = createMethod('success');
+Toast.fail = createMethod('fail');
+Toast.clear = () => {
+ queue.forEach((toast) => {
+ toast.clear();
+ });
+ queue = [];
+};
+Toast.setDefaultOptions = (options) => {
+ Object.assign(currentOptions, options);
+};
+Toast.resetDefaultOptions = () => {
+ currentOptions = Object.assign({}, defaultOptions);
+};
+export default Toast;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..59bb9842eadc2dd43d9bb773ad86d7213c15b437
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.js
@@ -0,0 +1,13 @@
+import { VantComponent } from '../common/component';
+import { transition } from '../mixins/transition';
+VantComponent({
+ classes: [
+ 'enter-class',
+ 'enter-active-class',
+ 'enter-to-class',
+ 'leave-class',
+ 'leave-active-class',
+ 'leave-to-class',
+ ],
+ mixins: [transition(true)],
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.json
@@ -0,0 +1,3 @@
+{
+ "component": true
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..9f4bf2bdc7172c9c590615a325ab58bacf6d7ddd
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.vue
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..2743785269f449afd81c15737578ecef0ecdda0d
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.wxml
@@ -0,0 +1,10 @@
+
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..e0babf62aa21eb45959cfbb9b70009b1895179c9
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.wxs
@@ -0,0 +1,17 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ '-webkit-transition-duration': data.currentDuration + 'ms',
+ 'transition-duration': data.currentDuration + 'ms',
+ },
+ data.display ? null : 'display: none',
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..3a3d37fb04edd3f86a57795e585b4398124b26cf
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/transition/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-transition{transition-timing-function:ease}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-fade-down-enter-active,.van-fade-down-leave-active,.van-fade-left-enter-active,.van-fade-left-leave-active,.van-fade-right-enter-active,.van-fade-right-leave-active,.van-fade-up-enter-active,.van-fade-up-leave-active{transition-property:opacity,transform}.van-fade-up-enter,.van-fade-up-leave-to{opacity:0;transform:translate3d(0,100%,0)}.van-fade-down-enter,.van-fade-down-leave-to{opacity:0;transform:translate3d(0,-100%,0)}.van-fade-left-enter,.van-fade-left-leave-to{opacity:0;transform:translate3d(-100%,0,0)}.van-fade-right-enter,.van-fade-right-leave-to{opacity:0;transform:translate3d(100%,0,0)}.van-slide-down-enter-active,.van-slide-down-leave-active,.van-slide-left-enter-active,.van-slide-left-leave-active,.van-slide-right-enter-active,.van-slide-right-leave-active,.van-slide-up-enter-active,.van-slide-up-leave-active{transition-property:transform}.van-slide-up-enter,.van-slide-up-leave-to{transform:translate3d(0,100%,0)}.van-slide-down-enter,.van-slide-down-leave-to{transform:translate3d(0,-100%,0)}.van-slide-left-enter,.van-slide-left-leave-to{transform:translate3d(-100%,0,0)}.van-slide-right-enter,.van-slide-right-leave-to{transform:translate3d(100%,0,0)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..a850ed6ebffef89b93031ad6b85961a7721165c5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.js
@@ -0,0 +1,68 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: [
+ 'main-item-class',
+ 'content-item-class',
+ 'main-active-class',
+ 'content-active-class',
+ 'main-disabled-class',
+ 'content-disabled-class',
+ ],
+ props: {
+ items: {
+ type: Array,
+ observer: 'updateSubItems',
+ },
+ activeId: null,
+ mainActiveIndex: {
+ type: Number,
+ value: 0,
+ observer: 'updateSubItems',
+ },
+ height: {
+ type: null,
+ value: 300,
+ },
+ max: {
+ type: Number,
+ value: Infinity,
+ },
+ selectedIcon: {
+ type: String,
+ value: 'success',
+ },
+ },
+ data: {
+ subItems: [],
+ },
+ methods: {
+ // 当一个子项被选择时
+ onSelectItem(event) {
+ const { item } = event.currentTarget.dataset;
+ const isArray = Array.isArray(this.data.activeId);
+ // 判断有没有超出右侧选择的最大数
+ const isOverMax = isArray && this.data.activeId.length >= this.data.max;
+ // 判断该项有没有被选中, 如果有被选中,则忽视是否超出的条件
+ const isSelected = isArray
+ ? this.data.activeId.indexOf(item.id) > -1
+ : this.data.activeId === item.id;
+ if (!item.disabled && (!isOverMax || isSelected)) {
+ this.$emit('click-item', item);
+ }
+ },
+ // 当一个导航被点击时
+ onClickNav(event) {
+ const index = event.detail;
+ const item = this.data.items[index];
+ if (!item.disabled) {
+ this.$emit('click-nav', { index });
+ }
+ },
+ // 更新子项列表
+ updateSubItems() {
+ const { items, mainActiveIndex } = this.data;
+ const { children = [] } = items[mainActiveIndex] || {};
+ this.setData({ subItems: children });
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..42991a2ad544f292b23eb72b2a95fa823349daed
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.json
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-sidebar": "../sidebar/index",
+ "van-sidebar-item": "../sidebar-item/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..fdb4a46e595d4b01153a556deafb46c5e5ec2301
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.vue
@@ -0,0 +1,97 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..2663e528d3b619155478ef4a8487c29812131c35
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.wxml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.text }}
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..b1cbb39b2d01d296acee604ad0135aed8234cdc5
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.wxs
@@ -0,0 +1,12 @@
+/* eslint-disable */
+var array = require('../wxs/array.wxs');
+
+function isActive (activeList, itemId) {
+ if (array.isArray(activeList)) {
+ return activeList.indexOf(itemId) > -1;
+ }
+
+ return activeList === itemId;
+}
+
+module.exports.isActive = isActive;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..5bef0ac777529d4875c5ecfd20232cce9c795b86
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/tree-select/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tree-select{display:flex;font-size:var(--tree-select-font-size,14px);position:relative;-webkit-user-select:none;user-select:none}.van-tree-select__nav{--sidebar-padding:12px 8px 12px 12px;background-color:var(--tree-select-nav-background-color,#f7f8fa);flex:1}.van-tree-select__nav__inner{height:100%;width:100%!important}.van-tree-select__content{background-color:var(--tree-select-content-background-color,#fff);flex:2}.van-tree-select__item{font-weight:700;line-height:var(--tree-select-item-height,44px);padding:0 32px 0 var(--padding-md,16px);position:relative}.van-tree-select__item--active{color:var(--tree-select-item-active-color,#ee0a24)}.van-tree-select__item--disabled{color:var(--tree-select-item-disabled-color,#c8c9cc)}.van-tree-select__selected{position:absolute;right:var(--padding-md,16px);top:50%;transform:translateY(-50%)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.d.ts
@@ -0,0 +1 @@
+export {};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.js b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..ba4b1b462452e0378d7360fba686feb665dba0ce
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.js
@@ -0,0 +1,155 @@
+import { VantComponent } from '../common/component';
+import { isImageFile, chooseFile, isVideoFile } from './utils';
+import { chooseImageProps, chooseVideoProps } from './shared';
+import { isBoolean, isPromise } from '../common/validator';
+VantComponent({
+ props: Object.assign(Object.assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
+ type: null,
+ value: 80,
+ }, name: {
+ type: null,
+ value: '',
+ }, accept: {
+ type: String,
+ value: 'image',
+ }, fileList: {
+ type: Array,
+ value: [],
+ observer: 'formatFileList',
+ }, maxSize: {
+ type: Number,
+ value: Number.MAX_VALUE,
+ }, maxCount: {
+ type: Number,
+ value: 100,
+ }, deletable: {
+ type: Boolean,
+ value: true,
+ }, showUpload: {
+ type: Boolean,
+ value: true,
+ }, previewImage: {
+ type: Boolean,
+ value: true,
+ }, previewFullImage: {
+ type: Boolean,
+ value: true,
+ }, imageFit: {
+ type: String,
+ value: 'scaleToFill',
+ }, uploadIcon: {
+ type: String,
+ value: 'photograph',
+ } }, chooseImageProps), chooseVideoProps),
+ data: {
+ lists: [],
+ isInCount: true,
+ },
+ methods: {
+ formatFileList() {
+ const { fileList = [], maxCount } = this.data;
+ const lists = fileList.map((item) => (Object.assign(Object.assign({}, item), { isImage: isImageFile(item), isVideo: isVideoFile(item), deletable: isBoolean(item.deletable) ? item.deletable : true })));
+ this.setData({ lists, isInCount: lists.length < maxCount });
+ },
+ getDetail(index) {
+ return {
+ name: this.data.name,
+ index: index == null ? this.data.fileList.length : index,
+ };
+ },
+ startUpload() {
+ const { maxCount, multiple, lists, disabled } = this.data;
+ if (disabled)
+ return;
+ chooseFile(Object.assign(Object.assign({}, this.data), { maxCount: maxCount - lists.length }))
+ .then((res) => {
+ this.onBeforeRead(multiple ? res : res[0]);
+ })
+ .catch((error) => {
+ this.$emit('error', error);
+ });
+ },
+ onBeforeRead(file) {
+ const { beforeRead, useBeforeRead } = this.data;
+ let res = true;
+ if (typeof beforeRead === 'function') {
+ res = beforeRead(file, this.getDetail());
+ }
+ if (useBeforeRead) {
+ res = new Promise((resolve, reject) => {
+ this.$emit('before-read', Object.assign(Object.assign({ file }, this.getDetail()), { callback: (ok) => {
+ ok ? resolve() : reject();
+ } }));
+ });
+ }
+ if (!res) {
+ return;
+ }
+ if (isPromise(res)) {
+ res.then((data) => this.onAfterRead(data || file));
+ }
+ else {
+ this.onAfterRead(file);
+ }
+ },
+ onAfterRead(file) {
+ const { maxSize, afterRead } = this.data;
+ const oversize = Array.isArray(file)
+ ? file.some((item) => item.size > maxSize)
+ : file.size > maxSize;
+ if (oversize) {
+ this.$emit('oversize', Object.assign({ file }, this.getDetail()));
+ return;
+ }
+ if (typeof afterRead === 'function') {
+ afterRead(file, this.getDetail());
+ }
+ this.$emit('after-read', Object.assign({ file }, this.getDetail()));
+ },
+ deleteItem(event) {
+ const { index } = event.currentTarget.dataset;
+ this.$emit('delete', Object.assign(Object.assign({}, this.getDetail(index)), { file: this.data.fileList[index] }));
+ },
+ onPreviewImage(event) {
+ if (!this.data.previewFullImage)
+ return;
+ const { index } = event.currentTarget.dataset;
+ const { lists } = this.data;
+ const item = lists[index];
+ wx.previewImage({
+ urls: lists.filter((item) => isImageFile(item)).map((item) => item.url),
+ current: item.url,
+ fail() {
+ wx.showToast({ title: '预览图片失败', icon: 'none' });
+ },
+ });
+ },
+ onPreviewVideo(event) {
+ if (!this.data.previewFullImage)
+ return;
+ const { index } = event.currentTarget.dataset;
+ const { lists } = this.data;
+ wx.previewMedia({
+ sources: lists
+ .filter((item) => isVideoFile(item))
+ .map((item) => (Object.assign(Object.assign({}, item), { type: 'video' }))),
+ current: index,
+ fail() {
+ wx.showToast({ title: '预览视频失败', icon: 'none' });
+ },
+ });
+ },
+ onPreviewFile(event) {
+ const { index } = event.currentTarget.dataset;
+ wx.openDocument({
+ filePath: this.data.lists[index].url,
+ showMenu: true,
+ });
+ },
+ onClickPreview(event) {
+ const { index } = event.currentTarget.dataset;
+ const item = this.data.lists[index];
+ this.$emit('click-preview', Object.assign(Object.assign({}, item), this.getDetail(index)));
+ },
+ },
+});
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.json b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.json
new file mode 100644
index 0000000000000000000000000000000000000000..e00a588702da8887bbe5f8261aea5764251d14ff
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.json
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index"
+ }
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.vue b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.vue
new file mode 100644
index 0000000000000000000000000000000000000000..7e4c29ad5ea88ddcd03d6937e241d0bfa7aa13b1
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.vue
@@ -0,0 +1,204 @@
+
+
+
+
+
+
+
+
+
+ {{ item.name || item.url }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ uploadText }}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.wxml b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.wxml
new file mode 100644
index 0000000000000000000000000000000000000000..50fb0c89255d9c26ed9bd746ce093282221c5eb2
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.wxml
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name || item.url }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ uploadText }}
+
+
+
+
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..257c7804646f7c791b7b868ff1e16f7980234a32
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.wxs
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function sizeStyle(data) {
+ return style({
+ width: addUnit(data.previewSize),
+ height: addUnit(data.previewSize),
+ });
+}
+
+module.exports = {
+ sizeStyle: sizeStyle,
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.wxss b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.wxss
new file mode 100644
index 0000000000000000000000000000000000000000..11f86962321d93b3eb7255db630c87c712c058ba
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/index.wxss
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-uploader{display:inline-block;position:relative}.van-uploader__wrapper{display:flex;flex-wrap:wrap}.van-uploader__slot:empty{display:none}.van-uploader__slot:not(:empty)+.van-uploader__upload{display:none!important}.van-uploader__upload{align-items:center;background-color:var(--uploader-upload-background-color,#f7f8fa);box-sizing:border-box;display:flex;flex-direction:column;height:var(--uploader-size,80px);justify-content:center;margin:0 8px 8px 0;position:relative;width:var(--uploader-size,80px)}.van-uploader__upload:active{background-color:var(--uploader-upload-active-color,#f2f3f5)}.van-uploader__upload-icon{color:var(--uploader-icon-color,#dcdee0);font-size:var(--uploader-icon-size,24px)}.van-uploader__upload-text{color:var(--uploader-text-color,#969799);font-size:var(--uploader-text-font-size,12px);margin-top:var(--padding-xs,8px)}.van-uploader__upload--disabled{opacity:var(--uploader-disabled-opacity,.5)}.van-uploader__preview{cursor:pointer;margin:0 8px 8px 0;position:relative}.van-uploader__preview-image{display:block;height:var(--uploader-size,80px);overflow:hidden;width:var(--uploader-size,80px)}.van-uploader__preview-delete,.van-uploader__preview-delete:after{height:var(--uploader-delete-icon-size,14px);position:absolute;right:0;top:0;width:var(--uploader-delete-icon-size,14px)}.van-uploader__preview-delete:after{background-color:var(--uploader-delete-background-color,rgba(0,0,0,.7));border-radius:0 0 0 12px;content:""}.van-uploader__preview-delete-icon{color:var(--uploader-delete-color,#fff);font-size:var(--uploader-delete-icon-size,14px);position:absolute;right:0;top:0;transform:scale(.7) translate(10%,-10%);z-index:1}.van-uploader__file{align-items:center;background-color:var(--uploader-file-background-color,#f7f8fa);display:flex;flex-direction:column;height:var(--uploader-size,80px);justify-content:center;width:var(--uploader-size,80px)}.van-uploader__file-icon{color:var(--uploader-file-icon-color,#646566);font-size:var(--uploader-file-icon-size,20px)}.van-uploader__file-name{box-sizing:border-box;color:var(--uploader-file-name-text-color,#646566);font-size:var(--uploader-file-name-font-size,12px);margin-top:var(--uploader-file-name-margin-top,8px);padding:var(--uploader-file-name-padding,0 4px);text-align:center;width:100%}.van-uploader__mask{align-items:center;background-color:var(--uploader-mask-background-color,rgba(50,50,51,.88));bottom:0;color:#fff;display:flex;flex-direction:column;justify-content:center;left:0;position:absolute;right:0;top:0}.van-uploader__mask-icon{font-size:var(--uploader-mask-icon-size,22px)}.van-uploader__mask-message{font-size:var(--uploader-mask-message-font-size,12px);line-height:var(--uploader-mask-message-line-height,14px);margin-top:6px;padding:0 var(--padding-base,4px)}.van-uploader__loading{color:var(--uploader-loading-icon-color,#fff)!important;height:var(--uploader-loading-icon-size,22px);width:var(--uploader-loading-icon-size,22px)}
\ No newline at end of file
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/shared.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/shared.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..85d50348774eea6fbb196f62969cd4823763539a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/shared.d.ts
@@ -0,0 +1,28 @@
+export declare const chooseImageProps: {
+ sizeType: {
+ type: ArrayConstructor;
+ value: string[];
+ };
+ capture: {
+ type: ArrayConstructor;
+ value: string[];
+ };
+};
+export declare const chooseVideoProps: {
+ capture: {
+ type: ArrayConstructor;
+ value: string[];
+ };
+ compressed: {
+ type: BooleanConstructor;
+ value: boolean;
+ };
+ maxDuration: {
+ type: NumberConstructor;
+ value: number;
+ };
+ camera: {
+ type: StringConstructor;
+ value: string;
+ };
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/shared.js b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/shared.js
new file mode 100644
index 0000000000000000000000000000000000000000..c12861c4fa5ea75eed7d98c74c30bcd5162f6a5c
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/shared.js
@@ -0,0 +1,30 @@
+// props for choose image
+export const chooseImageProps = {
+ sizeType: {
+ type: Array,
+ value: ['original', 'compressed'],
+ },
+ capture: {
+ type: Array,
+ value: ['album', 'camera'],
+ },
+};
+// props for choose video
+export const chooseVideoProps = {
+ capture: {
+ type: Array,
+ value: ['album', 'camera'],
+ },
+ compressed: {
+ type: Boolean,
+ value: true,
+ },
+ maxDuration: {
+ type: Number,
+ value: 60,
+ },
+ camera: {
+ type: String,
+ value: 'back',
+ },
+};
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/utils.d.ts b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/utils.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..d5c9ab7f44b1c49f315bf7a96eb71d0ef17cc503
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/utils.d.ts
@@ -0,0 +1,22 @@
+export interface File {
+ url: string;
+ size?: number;
+ name?: string;
+ type: string;
+ duration?: number;
+ time?: number;
+ isImage?: boolean;
+ isVideo?: boolean;
+}
+export declare function isImageFile(item: File): boolean;
+export declare function isVideoFile(item: File): boolean;
+export declare function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount, }: {
+ accept: any;
+ multiple: any;
+ capture: any;
+ compressed: any;
+ maxDuration: any;
+ sizeType: any;
+ camera: any;
+ maxCount: any;
+}): Promise;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/uploader/utils.js b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/utils.js
new file mode 100644
index 0000000000000000000000000000000000000000..b77f7078375cf29d9eb2e4335a9d34bacbc4ea0f
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/uploader/utils.js
@@ -0,0 +1,84 @@
+import { pickExclude } from '../common/utils';
+import { isImageUrl, isVideoUrl } from '../common/validator';
+export function isImageFile(item) {
+ if (item.isImage != null) {
+ return item.isImage;
+ }
+ if (item.type) {
+ return item.type === 'image';
+ }
+ if (item.url) {
+ return isImageUrl(item.url);
+ }
+ return false;
+}
+export function isVideoFile(item) {
+ if (item.isVideo != null) {
+ return item.isVideo;
+ }
+ if (item.type) {
+ return item.type === 'video';
+ }
+ if (item.url) {
+ return isVideoUrl(item.url);
+ }
+ return false;
+}
+function formatImage(res) {
+ return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['path'])), { type: 'image', url: item.path, thumb: item.path })));
+}
+function formatVideo(res) {
+ return [
+ Object.assign(Object.assign({}, pickExclude(res, ['tempFilePath', 'thumbTempFilePath', 'errMsg'])), { type: 'video', url: res.tempFilePath, thumb: res.thumbTempFilePath }),
+ ];
+}
+function formatMedia(res) {
+ return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), { type: res.type, url: item.tempFilePath, thumb: res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath })));
+}
+function formatFile(res) {
+ return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['path'])), { url: item.path })));
+}
+export function chooseFile({ accept, multiple, capture, compressed, maxDuration, sizeType, camera, maxCount, }) {
+ return new Promise((resolve, reject) => {
+ switch (accept) {
+ case 'image':
+ wx.chooseImage({
+ count: multiple ? Math.min(maxCount, 9) : 1,
+ sourceType: capture,
+ sizeType,
+ success: (res) => resolve(formatImage(res)),
+ fail: reject,
+ });
+ break;
+ case 'media':
+ wx.chooseMedia({
+ count: multiple ? Math.min(maxCount, 9) : 1,
+ sourceType: capture,
+ maxDuration,
+ sizeType,
+ camera,
+ success: (res) => resolve(formatMedia(res)),
+ fail: reject,
+ });
+ break;
+ case 'video':
+ wx.chooseVideo({
+ sourceType: capture,
+ compressed,
+ maxDuration,
+ camera,
+ success: (res) => resolve(formatVideo(res)),
+ fail: reject,
+ });
+ break;
+ default:
+ wx.chooseMessageFile({
+ count: multiple ? maxCount : 1,
+ type: accept,
+ success: (res) => resolve(formatFile(res)),
+ fail: reject,
+ });
+ break;
+ }
+ });
+}
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/wxs/add-unit.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/add-unit.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..4f33462f3871d45d56dcd06d0975f913b67a57bb
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/add-unit.wxs
@@ -0,0 +1,12 @@
+/* eslint-disable */
+var REGEXP = getRegExp('^-?\d+(\.\d+)?$');
+
+function addUnit(value) {
+ if (value == null) {
+ return undefined;
+ }
+
+ return REGEXP.test('' + value) ? value + 'px' : value;
+}
+
+module.exports = addUnit;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/wxs/array.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/array.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..78324168632b3bf57915e33ba5b55c983afac321
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/array.wxs
@@ -0,0 +1,5 @@
+function isArray(array) {
+ return array && (array.constructor === 'Array' || (typeof Array !== 'undefined' && Array.isArray(array)));
+}
+
+module.exports.isArray = isArray;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/wxs/bem.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/bem.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..1efa129ee835ccb888a8b935d3ad6e9f1c834900
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/bem.wxs
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var array = require('./array.wxs');
+var object = require('./object.wxs');
+var PREFIX = 'van-';
+
+function join(name, mods) {
+ name = PREFIX + name;
+ mods = mods.map(function(mod) {
+ return name + '--' + mod;
+ });
+ mods.unshift(name);
+ return mods.join(' ');
+}
+
+function traversing(mods, conf) {
+ if (!conf) {
+ return;
+ }
+
+ if (typeof conf === 'string' || typeof conf === 'number') {
+ mods.push(conf);
+ } else if (array.isArray(conf)) {
+ conf.forEach(function(item) {
+ traversing(mods, item);
+ });
+ } else if (typeof conf === 'object') {
+ object.keys(conf).forEach(function(key) {
+ conf[key] && mods.push(key);
+ });
+ }
+}
+
+function bem(name, conf) {
+ var mods = [];
+ traversing(mods, conf);
+ return join(name, mods);
+}
+
+module.exports = bem;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/wxs/memoize.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/memoize.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..8f7f46dd23ee6ae7caaf6ac2e95c88b5c15bf835
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/memoize.wxs
@@ -0,0 +1,55 @@
+/**
+ * Simple memoize
+ * wxs doesn't support fn.apply, so this memoize only support up to 2 args
+ */
+/* eslint-disable */
+
+function isPrimitive(value) {
+ var type = typeof value;
+ return (
+ type === 'boolean' ||
+ type === 'number' ||
+ type === 'string' ||
+ type === 'undefined' ||
+ value === null
+ );
+}
+
+// mock simple fn.call in wxs
+function call(fn, args) {
+ if (args.length === 2) {
+ return fn(args[0], args[1]);
+ }
+
+ if (args.length === 1) {
+ return fn(args[0]);
+ }
+
+ return fn();
+}
+
+function serializer(args) {
+ if (args.length === 1 && isPrimitive(args[0])) {
+ return args[0];
+ }
+ var obj = {};
+ for (var i = 0; i < args.length; i++) {
+ obj['key' + i] = args[i];
+ }
+ return JSON.stringify(obj);
+}
+
+function memoize(fn) {
+ var cache = {};
+
+ return function() {
+ var key = serializer(arguments);
+ if (cache[key] === undefined) {
+ cache[key] = call(fn, arguments);
+ }
+
+ return cache[key];
+ };
+}
+
+module.exports = memoize;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/wxs/object.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/object.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..e07710776c19c994e4859a30777741e51058c0f9
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/object.wxs
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var REGEXP = getRegExp('{|}|"', 'g');
+
+function keys(obj) {
+ return JSON.stringify(obj)
+ .replace(REGEXP, '')
+ .split(',')
+ .map(function(item) {
+ return item.split(':')[0];
+ });
+}
+
+module.exports.keys = keys;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/wxs/style.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/style.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..d88ca7c96fd4eeaad5786183be8ed2ba7faaac0a
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/style.wxs
@@ -0,0 +1,42 @@
+/* eslint-disable */
+var object = require('./object.wxs');
+var array = require('./array.wxs');
+
+function kebabCase(word) {
+ var newWord = word
+ .replace(getRegExp("[A-Z]", 'g'), function (i) {
+ return '-' + i;
+ })
+ .toLowerCase()
+
+ return newWord;
+}
+
+function style(styles) {
+ if (array.isArray(styles)) {
+ return styles
+ .filter(function (item) {
+ return item != null && item !== '';
+ })
+ .map(function (item) {
+ return style(item);
+ })
+ .join(';');
+ }
+
+ if ('Object' === styles.constructor) {
+ return object
+ .keys(styles)
+ .filter(function (key) {
+ return styles[key] != null && styles[key] !== '';
+ })
+ .map(function (key) {
+ return [kebabCase(key), [styles[key]]].join(':');
+ })
+ .join(';');
+ }
+
+ return styles;
+}
+
+module.exports = style;
diff --git a/litemall-wx_uni/wxcomponents/vant-weapp/wxs/utils.wxs b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/utils.wxs
new file mode 100644
index 0000000000000000000000000000000000000000..f66d33a4270856b51af6d7f0c36cc8d82bfb27f8
--- /dev/null
+++ b/litemall-wx_uni/wxcomponents/vant-weapp/wxs/utils.wxs
@@ -0,0 +1,10 @@
+/* eslint-disable */
+var bem = require('./bem.wxs');
+var memoize = require('./memoize.wxs');
+var addUnit = require('./add-unit.wxs');
+
+module.exports = {
+ bem: memoize(bem),
+ memoize: memoize,
+ addUnit: addUnit
+};