captain-invalid-goods
Advanced tools
Comparing version 0.2.1 to 0.2.2
865
lib/index.js
@@ -10,3 +10,3 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
} | ||
})(this, function(__WEBPACK_EXTERNAL_MODULE_9__) { | ||
})(this, function(__WEBPACK_EXTERNAL_MODULE_8__) { | ||
return /******/ (function(modules) { // webpackBootstrap | ||
@@ -77,3 +77,3 @@ /******/ // The module cache | ||
/******/ // Load entry module and return exports | ||
/******/ return __webpack_require__(__webpack_require__.s = 447); | ||
/******/ return __webpack_require__(__webpack_require__.s = 481); | ||
/******/ }) | ||
@@ -93,2 +93,10 @@ /************************************************************************/ | ||
/***/ 1: | ||
/***/ (function(module, exports) { | ||
var core = module.exports = {version: '2.4.0'}; | ||
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef | ||
/***/ }), | ||
/***/ 10: | ||
@@ -103,2 +111,20 @@ /***/ (function(module, exports) { | ||
/***/ 104: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = { "default": __webpack_require__(105), __esModule: true }; | ||
/***/ }), | ||
/***/ 105: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
__webpack_require__(121); | ||
var $Object = __webpack_require__(1).Object; | ||
module.exports = function defineProperty(it, key, desc){ | ||
return $Object.defineProperty(it, key, desc); | ||
}; | ||
/***/ }), | ||
/***/ 11: | ||
@@ -109,3 +135,3 @@ /***/ (function(module, exports, __webpack_require__) { | ||
var IObject = __webpack_require__(42) | ||
, defined = __webpack_require__(21); | ||
, defined = __webpack_require__(19); | ||
module.exports = function(it){ | ||
@@ -127,93 +153,94 @@ return IObject(defined(it)); | ||
/***/ 128: | ||
/***/ 121: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = { "default": __webpack_require__(130), __esModule: true }; | ||
var $export = __webpack_require__(13); | ||
// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) | ||
$export($export.S + $export.F * !__webpack_require__(4), 'Object', {defineProperty: __webpack_require__(7).f}); | ||
/***/ }), | ||
/***/ 129: | ||
/***/ 13: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
var global = __webpack_require__(0) | ||
, core = __webpack_require__(1) | ||
, ctx = __webpack_require__(15) | ||
, hide = __webpack_require__(9) | ||
, PROTOTYPE = 'prototype'; | ||
exports.__esModule = true; | ||
var _defineProperty = __webpack_require__(128); | ||
var _defineProperty2 = _interopRequireDefault(_defineProperty); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
exports.default = function (obj, key, value) { | ||
if (key in obj) { | ||
(0, _defineProperty2.default)(obj, key, { | ||
value: value, | ||
enumerable: true, | ||
configurable: true, | ||
writable: true | ||
}); | ||
} else { | ||
obj[key] = value; | ||
var $export = function(type, name, source){ | ||
var IS_FORCED = type & $export.F | ||
, IS_GLOBAL = type & $export.G | ||
, IS_STATIC = type & $export.S | ||
, IS_PROTO = type & $export.P | ||
, IS_BIND = type & $export.B | ||
, IS_WRAP = type & $export.W | ||
, exports = IS_GLOBAL ? core : core[name] || (core[name] = {}) | ||
, expProto = exports[PROTOTYPE] | ||
, target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE] | ||
, key, own, out; | ||
if(IS_GLOBAL)source = name; | ||
for(key in source){ | ||
// contains in native | ||
own = !IS_FORCED && target && target[key] !== undefined; | ||
if(own && key in exports)continue; | ||
// export native or passed | ||
out = own ? target[key] : source[key]; | ||
// prevent global pollution for namespaces | ||
exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key] | ||
// bind timers to global for call from export context | ||
: IS_BIND && own ? ctx(out, global) | ||
// wrap global constructors for prevent change them in library | ||
: IS_WRAP && target[key] == out ? (function(C){ | ||
var F = function(a, b, c){ | ||
if(this instanceof C){ | ||
switch(arguments.length){ | ||
case 0: return new C; | ||
case 1: return new C(a); | ||
case 2: return new C(a, b); | ||
} return new C(a, b, c); | ||
} return C.apply(this, arguments); | ||
}; | ||
F[PROTOTYPE] = C[PROTOTYPE]; | ||
return F; | ||
// make static versions for prototype methods | ||
})(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; | ||
// export proto methods to core.%CONSTRUCTOR%.methods.%NAME% | ||
if(IS_PROTO){ | ||
(exports.virtual || (exports.virtual = {}))[key] = out; | ||
// export proto methods to core.%CONSTRUCTOR%.prototype.%NAME% | ||
if(type & $export.R && expProto && !expProto[key])hide(expProto, key, out); | ||
} | ||
} | ||
return obj; | ||
}; | ||
// type bitmap | ||
$export.F = 1; // forced | ||
$export.G = 2; // global | ||
$export.S = 4; // static | ||
$export.P = 8; // proto | ||
$export.B = 16; // bind | ||
$export.W = 32; // wrap | ||
$export.U = 64; // safe | ||
$export.R = 128; // real proto method for `library` | ||
module.exports = $export; | ||
/***/ }), | ||
/***/ 13: | ||
/***/ 137: | ||
/***/ (function(module, exports) { | ||
var toString = {}.toString; | ||
// removed by extract-text-webpack-plugin | ||
module.exports = function(it){ | ||
return toString.call(it).slice(8, -1); | ||
}; | ||
/***/ }), | ||
/***/ 130: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
__webpack_require__(131); | ||
var $Object = __webpack_require__(3).Object; | ||
module.exports = function defineProperty(it, key, desc){ | ||
return $Object.defineProperty(it, key, desc); | ||
}; | ||
/***/ }), | ||
/***/ 131: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var $export = __webpack_require__(17); | ||
// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) | ||
$export($export.S + $export.F * !__webpack_require__(4), 'Object', {defineProperty: __webpack_require__(8).f}); | ||
/***/ }), | ||
/***/ 14: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
/***/ (function(module, exports) { | ||
// optional / simple context binding | ||
var aFunction = __webpack_require__(20); | ||
module.exports = function(fn, that, length){ | ||
aFunction(fn); | ||
if(that === undefined)return fn; | ||
switch(length){ | ||
case 1: return function(a){ | ||
return fn.call(that, a); | ||
}; | ||
case 2: return function(a, b){ | ||
return fn.call(that, a, b); | ||
}; | ||
case 3: return function(a, b, c){ | ||
return fn.call(that, a, b, c); | ||
}; | ||
module.exports = function(exec){ | ||
try { | ||
return !!exec(); | ||
} catch(e){ | ||
return true; | ||
} | ||
return function(/* ...args */){ | ||
return fn.apply(that, arguments); | ||
}; | ||
}; | ||
@@ -223,10 +250,3 @@ | ||
/***/ 141: | ||
/***/ (function(module, exports) { | ||
// removed by extract-text-webpack-plugin | ||
/***/ }), | ||
/***/ 148: | ||
/***/ 142: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -236,3 +256,3 @@ | ||
if (true) { | ||
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [module, exports, __webpack_require__(156)], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), | ||
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [module, exports, __webpack_require__(151)], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), | ||
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? | ||
@@ -345,10 +365,23 @@ (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), | ||
/***/ 15: | ||
/***/ (function(module, exports) { | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = function(exec){ | ||
try { | ||
return !!exec(); | ||
} catch(e){ | ||
return true; | ||
// optional / simple context binding | ||
var aFunction = __webpack_require__(22); | ||
module.exports = function(fn, that, length){ | ||
aFunction(fn); | ||
if(that === undefined)return fn; | ||
switch(length){ | ||
case 1: return function(a){ | ||
return fn.call(that, a); | ||
}; | ||
case 2: return function(a, b){ | ||
return fn.call(that, a, b); | ||
}; | ||
case 3: return function(a, b, c){ | ||
return fn.call(that, a, b, c); | ||
}; | ||
} | ||
return function(/* ...args */){ | ||
return fn.apply(that, arguments); | ||
}; | ||
}; | ||
@@ -358,3 +391,3 @@ | ||
/***/ 156: | ||
/***/ 151: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -425,81 +458,31 @@ | ||
/***/ 17: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
/***/ 16: | ||
/***/ (function(module, exports) { | ||
var global = __webpack_require__(0) | ||
, core = __webpack_require__(3) | ||
, ctx = __webpack_require__(14) | ||
, hide = __webpack_require__(7) | ||
, PROTOTYPE = 'prototype'; | ||
var toString = {}.toString; | ||
var $export = function(type, name, source){ | ||
var IS_FORCED = type & $export.F | ||
, IS_GLOBAL = type & $export.G | ||
, IS_STATIC = type & $export.S | ||
, IS_PROTO = type & $export.P | ||
, IS_BIND = type & $export.B | ||
, IS_WRAP = type & $export.W | ||
, exports = IS_GLOBAL ? core : core[name] || (core[name] = {}) | ||
, expProto = exports[PROTOTYPE] | ||
, target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE] | ||
, key, own, out; | ||
if(IS_GLOBAL)source = name; | ||
for(key in source){ | ||
// contains in native | ||
own = !IS_FORCED && target && target[key] !== undefined; | ||
if(own && key in exports)continue; | ||
// export native or passed | ||
out = own ? target[key] : source[key]; | ||
// prevent global pollution for namespaces | ||
exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key] | ||
// bind timers to global for call from export context | ||
: IS_BIND && own ? ctx(out, global) | ||
// wrap global constructors for prevent change them in library | ||
: IS_WRAP && target[key] == out ? (function(C){ | ||
var F = function(a, b, c){ | ||
if(this instanceof C){ | ||
switch(arguments.length){ | ||
case 0: return new C; | ||
case 1: return new C(a); | ||
case 2: return new C(a, b); | ||
} return new C(a, b, c); | ||
} return C.apply(this, arguments); | ||
}; | ||
F[PROTOTYPE] = C[PROTOTYPE]; | ||
return F; | ||
// make static versions for prototype methods | ||
})(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out; | ||
// export proto methods to core.%CONSTRUCTOR%.methods.%NAME% | ||
if(IS_PROTO){ | ||
(exports.virtual || (exports.virtual = {}))[key] = out; | ||
// export proto methods to core.%CONSTRUCTOR%.prototype.%NAME% | ||
if(type & $export.R && expProto && !expProto[key])hide(expProto, key, out); | ||
} | ||
} | ||
module.exports = function(it){ | ||
return toString.call(it).slice(8, -1); | ||
}; | ||
// type bitmap | ||
$export.F = 1; // forced | ||
$export.G = 2; // global | ||
$export.S = 4; // static | ||
$export.P = 8; // proto | ||
$export.B = 16; // bind | ||
$export.W = 32; // wrap | ||
$export.U = 64; // safe | ||
$export.R = 128; // real proto method for `library` | ||
module.exports = $export; | ||
/***/ }), | ||
/***/ 178: | ||
/***/ 179: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = { "default": __webpack_require__(180), __esModule: true }; | ||
module.exports = { "default": __webpack_require__(181), __esModule: true }; | ||
/***/ }), | ||
/***/ 180: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
/***/ 18: | ||
/***/ (function(module, exports) { | ||
__webpack_require__(182); | ||
module.exports = __webpack_require__(3).Object.assign; | ||
module.exports = function(bitmap, value){ | ||
return { | ||
enumerable : !(bitmap & 1), | ||
configurable: !(bitmap & 2), | ||
writable : !(bitmap & 4), | ||
value : value | ||
}; | ||
}; | ||
@@ -511,2 +494,10 @@ /***/ }), | ||
__webpack_require__(183); | ||
module.exports = __webpack_require__(1).Object.assign; | ||
/***/ }), | ||
/***/ 182: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
@@ -516,5 +507,5 @@ | ||
var getKeys = __webpack_require__(29) | ||
, gOPS = __webpack_require__(69) | ||
, pIE = __webpack_require__(43) | ||
, toObject = __webpack_require__(53) | ||
, gOPS = __webpack_require__(70) | ||
, pIE = __webpack_require__(44) | ||
, toObject = __webpack_require__(40) | ||
, IObject = __webpack_require__(42) | ||
@@ -524,3 +515,3 @@ , $assign = Object.assign; | ||
// should work with symbols and should have deterministic property order (V8 bug) | ||
module.exports = !$assign || __webpack_require__(15)(function(){ | ||
module.exports = !$assign || __webpack_require__(14)(function(){ | ||
var A = {} | ||
@@ -551,17 +542,18 @@ , B = {} | ||
/***/ 182: | ||
/***/ 183: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 19.1.3.1 Object.assign(target, source) | ||
var $export = __webpack_require__(17); | ||
var $export = __webpack_require__(13); | ||
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(181)}); | ||
$export($export.S + $export.F, 'Object', {assign: __webpack_require__(182)}); | ||
/***/ }), | ||
/***/ 20: | ||
/***/ 19: | ||
/***/ (function(module, exports) { | ||
// 7.2.1 RequireObjectCoercible(argument) | ||
module.exports = function(it){ | ||
if(typeof it != 'function')throw TypeError(it + ' is not a function!'); | ||
if(it == undefined)throw TypeError("Can't call method on " + it); | ||
return it; | ||
@@ -572,8 +564,19 @@ }; | ||
/***/ 21: | ||
/***/ 20: | ||
/***/ (function(module, exports) { | ||
// 7.2.1 RequireObjectCoercible(argument) | ||
// 7.1.4 ToInteger | ||
var ceil = Math.ceil | ||
, floor = Math.floor; | ||
module.exports = function(it){ | ||
if(it == undefined)throw TypeError("Can't call method on " + it); | ||
return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); | ||
}; | ||
/***/ }), | ||
/***/ 22: | ||
/***/ (function(module, exports) { | ||
module.exports = function(it){ | ||
if(typeof it != 'function')throw TypeError(it + ' is not a function!'); | ||
return it; | ||
@@ -584,3 +587,3 @@ }; | ||
/***/ 22: | ||
/***/ 23: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -598,3 +601,3 @@ | ||
/***/ 229: | ||
/***/ 233: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -607,3 +610,3 @@ | ||
var _assign = __webpack_require__(178); | ||
var _assign = __webpack_require__(179); | ||
@@ -630,32 +633,6 @@ var _assign2 = _interopRequireDefault(_assign); | ||
/***/ 23: | ||
/***/ (function(module, exports) { | ||
module.exports = function(bitmap, value){ | ||
return { | ||
enumerable : !(bitmap & 1), | ||
configurable: !(bitmap & 2), | ||
writable : !(bitmap & 4), | ||
value : value | ||
}; | ||
}; | ||
/***/ }), | ||
/***/ 24: | ||
/***/ (function(module, exports) { | ||
// 7.1.4 ToInteger | ||
var ceil = Math.ceil | ||
, floor = Math.floor; | ||
module.exports = function(it){ | ||
return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); | ||
}; | ||
/***/ }), | ||
/***/ 27: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var shared = __webpack_require__(33)('keys') | ||
var shared = __webpack_require__(32)('keys') | ||
, uid = __webpack_require__(28); | ||
@@ -683,4 +660,4 @@ module.exports = function(key){ | ||
// 19.1.2.14 / 15.2.3.14 Object.keys(O) | ||
var $keys = __webpack_require__(40) | ||
, enumBugKeys = __webpack_require__(32); | ||
var $keys = __webpack_require__(41) | ||
, enumBugKeys = __webpack_require__(30); | ||
@@ -693,20 +670,5 @@ module.exports = Object.keys || function keys(O){ | ||
/***/ 3: | ||
/***/ 30: | ||
/***/ (function(module, exports) { | ||
var core = module.exports = {version: '2.4.0'}; | ||
if(typeof __e == 'number')__e = core; // eslint-disable-line no-undef | ||
/***/ }), | ||
/***/ 306: | ||
/***/ (function(module, exports) { | ||
// removed by extract-text-webpack-plugin | ||
/***/ }), | ||
/***/ 32: | ||
/***/ (function(module, exports) { | ||
// IE 8- don't enum bug keys | ||
@@ -719,3 +681,3 @@ module.exports = ( | ||
/***/ 33: | ||
/***/ 32: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -732,2 +694,9 @@ | ||
/***/ 328: | ||
/***/ (function(module, exports) { | ||
// removed by extract-text-webpack-plugin | ||
/***/ }), | ||
/***/ 34: | ||
@@ -751,13 +720,25 @@ /***/ (function(module, exports, __webpack_require__) { | ||
/***/ 362: | ||
/***/ 35: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 7.1.15 ToLength | ||
var toInteger = __webpack_require__(20) | ||
, min = Math.min; | ||
module.exports = function(it){ | ||
return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 | ||
}; | ||
/***/ }), | ||
/***/ 382: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
function injectStyle (ssrContext) { | ||
__webpack_require__(498) | ||
__webpack_require__(528) | ||
} | ||
var Component = __webpack_require__(6)( | ||
var Component = __webpack_require__(5)( | ||
/* script */ | ||
__webpack_require__(397), | ||
__webpack_require__(421), | ||
/* template */ | ||
__webpack_require__(598), | ||
__webpack_require__(642), | ||
/* styles */ | ||
@@ -776,10 +757,28 @@ injectStyle, | ||
/***/ 38: | ||
/***/ 39: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 7.1.15 ToLength | ||
var toInteger = __webpack_require__(24) | ||
, min = Math.min; | ||
module.exports = !__webpack_require__(4) && !__webpack_require__(14)(function(){ | ||
return Object.defineProperty(__webpack_require__(23)('div'), 'a', {get: function(){ return 7; }}).a != 7; | ||
}); | ||
/***/ }), | ||
/***/ 4: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// Thank's IE8 for his funny defineProperty | ||
module.exports = !__webpack_require__(14)(function(){ | ||
return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7; | ||
}); | ||
/***/ }), | ||
/***/ 40: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// 7.1.13 ToObject(argument) | ||
var defined = __webpack_require__(19); | ||
module.exports = function(it){ | ||
return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 | ||
return Object(defined(it)); | ||
}; | ||
@@ -789,14 +788,39 @@ | ||
/***/ 39: | ||
/***/ 41: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = !__webpack_require__(4) && !__webpack_require__(15)(function(){ | ||
return Object.defineProperty(__webpack_require__(22)('div'), 'a', {get: function(){ return 7; }}).a != 7; | ||
}); | ||
var has = __webpack_require__(12) | ||
, toIObject = __webpack_require__(11) | ||
, arrayIndexOf = __webpack_require__(51)(false) | ||
, IE_PROTO = __webpack_require__(27)('IE_PROTO'); | ||
module.exports = function(object, names){ | ||
var O = toIObject(object) | ||
, i = 0 | ||
, result = [] | ||
, key; | ||
for(key in O)if(key != IE_PROTO)has(O, key) && result.push(key); | ||
// Don't enum bug & hidden keys | ||
while(names.length > i)if(has(O, key = names[i++])){ | ||
~arrayIndexOf(result, key) || result.push(key); | ||
} | ||
return result; | ||
}; | ||
/***/ }), | ||
/***/ 397: | ||
/***/ 42: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// fallback for non-array-like ES3 and non-enumerable old V8 strings | ||
var cof = __webpack_require__(16); | ||
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){ | ||
return cof(it) == 'String' ? it.split('') : Object(it); | ||
}; | ||
/***/ }), | ||
/***/ 421: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
"use strict"; | ||
@@ -809,7 +833,7 @@ | ||
var _extends2 = __webpack_require__(229); | ||
var _extends2 = __webpack_require__(233); | ||
var _extends3 = _interopRequireDefault(_extends2); | ||
var _defineProperty2 = __webpack_require__(129); | ||
var _defineProperty2 = __webpack_require__(77); | ||
@@ -859,12 +883,14 @@ var _defineProperty3 = _interopRequireDefault(_defineProperty2); | ||
var _helper = __webpack_require__(148); | ||
var _helper = __webpack_require__(142); | ||
var _helper2 = _interopRequireDefault(_helper); | ||
var _vant = __webpack_require__(9); | ||
var _vant = __webpack_require__(8); | ||
__webpack_require__(141); | ||
__webpack_require__(137); | ||
__webpack_require__(306); | ||
__webpack_require__(76); | ||
__webpack_require__(328); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
@@ -875,3 +901,3 @@ | ||
components: (_components = {}, (0, _defineProperty3.default)(_components, _vant.Icon.name, _vant.Icon), (0, _defineProperty3.default)(_components, _vant.Actionsheet.name, _vant.Actionsheet), _components), | ||
components: (_components = {}, (0, _defineProperty3.default)(_components, _vant.Icon.name, _vant.Icon), (0, _defineProperty3.default)(_components, _vant.CellGroup.name, _vant.CellGroup), (0, _defineProperty3.default)(_components, _vant.Actionsheet.name, _vant.Actionsheet), _components), | ||
@@ -927,47 +953,3 @@ props: { | ||
/***/ 4: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// Thank's IE8 for his funny defineProperty | ||
module.exports = !__webpack_require__(15)(function(){ | ||
return Object.defineProperty({}, 'a', {get: function(){ return 7; }}).a != 7; | ||
}); | ||
/***/ }), | ||
/***/ 40: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var has = __webpack_require__(12) | ||
, toIObject = __webpack_require__(11) | ||
, arrayIndexOf = __webpack_require__(56)(false) | ||
, IE_PROTO = __webpack_require__(27)('IE_PROTO'); | ||
module.exports = function(object, names){ | ||
var O = toIObject(object) | ||
, i = 0 | ||
, result = [] | ||
, key; | ||
for(key in O)if(key != IE_PROTO)has(O, key) && result.push(key); | ||
// Don't enum bug & hidden keys | ||
while(names.length > i)if(has(O, key = names[i++])){ | ||
~arrayIndexOf(result, key) || result.push(key); | ||
} | ||
return result; | ||
}; | ||
/***/ }), | ||
/***/ 42: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// fallback for non-array-like ES3 and non-enumerable old V8 strings | ||
var cof = __webpack_require__(13); | ||
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function(it){ | ||
return cof(it) == 'String' ? it.split('') : Object(it); | ||
}; | ||
/***/ }), | ||
/***/ 43: | ||
/***/ 44: | ||
/***/ (function(module, exports) { | ||
@@ -979,3 +961,3 @@ | ||
/***/ 447: | ||
/***/ 481: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -990,3 +972,3 @@ | ||
var _main = __webpack_require__(362); | ||
var _main = __webpack_require__(382); | ||
@@ -1001,32 +983,101 @@ var _main2 = _interopRequireDefault(_main); | ||
/***/ 498: | ||
/***/ 5: | ||
/***/ (function(module, exports) { | ||
// removed by extract-text-webpack-plugin | ||
/* globals __VUE_SSR_CONTEXT__ */ | ||
/***/ }), | ||
// this module is a runtime utility for cleaner component module output and will | ||
// be included in the final webpack user bundle | ||
/***/ 5: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
module.exports = function normalizeComponent ( | ||
rawScriptExports, | ||
compiledTemplate, | ||
injectStyles, | ||
scopeId, | ||
moduleIdentifier /* server only */ | ||
) { | ||
var esModule | ||
var scriptExports = rawScriptExports = rawScriptExports || {} | ||
var isObject = __webpack_require__(10); | ||
module.exports = function(it){ | ||
if(!isObject(it))throw TypeError(it + ' is not an object!'); | ||
return it; | ||
}; | ||
// ES6 modules interop | ||
var type = typeof rawScriptExports.default | ||
if (type === 'object' || type === 'function') { | ||
esModule = rawScriptExports | ||
scriptExports = rawScriptExports.default | ||
} | ||
/***/ }), | ||
// Vue.extend constructor export interop | ||
var options = typeof scriptExports === 'function' | ||
? scriptExports.options | ||
: scriptExports | ||
/***/ 53: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// render functions | ||
if (compiledTemplate) { | ||
options.render = compiledTemplate.render | ||
options.staticRenderFns = compiledTemplate.staticRenderFns | ||
} | ||
// 7.1.13 ToObject(argument) | ||
var defined = __webpack_require__(21); | ||
module.exports = function(it){ | ||
return Object(defined(it)); | ||
}; | ||
// scopedId | ||
if (scopeId) { | ||
options._scopeId = 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 = injectStyles | ||
} | ||
if (hook) { | ||
var functional = options.functional | ||
var existing = functional | ||
? options.render | ||
: options.beforeCreate | ||
if (!functional) { | ||
// inject component registration as beforeCreate hook | ||
options.beforeCreate = existing | ||
? [].concat(existing, hook) | ||
: [hook] | ||
} else { | ||
// register for functioal component in vue file | ||
options.render = function renderWithStyleInjection (h, context) { | ||
hook.call(context) | ||
return existing(h, context) | ||
} | ||
} | ||
} | ||
return { | ||
esModule: esModule, | ||
exports: scriptExports, | ||
options: options | ||
} | ||
} | ||
/***/ }), | ||
/***/ 56: | ||
/***/ 51: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
@@ -1037,4 +1088,4 @@ | ||
var toIObject = __webpack_require__(11) | ||
, toLength = __webpack_require__(38) | ||
, toIndex = __webpack_require__(57); | ||
, toLength = __webpack_require__(35) | ||
, toIndex = __webpack_require__(55); | ||
module.exports = function(IS_INCLUDES){ | ||
@@ -1059,6 +1110,13 @@ return function($this, el, fromIndex){ | ||
/***/ 57: | ||
/***/ 528: | ||
/***/ (function(module, exports) { | ||
// removed by extract-text-webpack-plugin | ||
/***/ }), | ||
/***/ 55: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var toInteger = __webpack_require__(24) | ||
var toInteger = __webpack_require__(20) | ||
, max = Math.max | ||
@@ -1073,3 +1131,14 @@ , min = Math.min; | ||
/***/ 598: | ||
/***/ 6: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var isObject = __webpack_require__(10); | ||
module.exports = function(it){ | ||
if(!isObject(it))throw TypeError(it + ' is not an object!'); | ||
return it; | ||
}; | ||
/***/ }), | ||
/***/ 642: | ||
/***/ (function(module, exports) { | ||
@@ -1087,3 +1156,3 @@ | ||
staticClass: "cap-invalid-goods__title" | ||
}, [_vm._v(_vm._s(_vm.title))]), _c('div', { | ||
}, [_vm._v(_vm._s(_vm.title))]), _c('van-cell-group', { | ||
staticClass: "cap-invalid-goods__container" | ||
@@ -1107,3 +1176,3 @@ }, [_c('div', { | ||
} | ||
})], 1)])]), _c('van-actionsheet', { | ||
})], 1)])], 1), _c('van-actionsheet', { | ||
attrs: { | ||
@@ -1155,112 +1224,81 @@ "title": _vm.actionsheetTitle | ||
/***/ 6: | ||
/***/ 7: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var anObject = __webpack_require__(6) | ||
, IE8_DOM_DEFINE = __webpack_require__(39) | ||
, toPrimitive = __webpack_require__(34) | ||
, dP = Object.defineProperty; | ||
exports.f = __webpack_require__(4) ? Object.defineProperty : function defineProperty(O, P, Attributes){ | ||
anObject(O); | ||
P = toPrimitive(P, true); | ||
anObject(Attributes); | ||
if(IE8_DOM_DEFINE)try { | ||
return dP(O, P, Attributes); | ||
} catch(e){ /* empty */ } | ||
if('get' in Attributes || 'set' in Attributes)throw TypeError('Accessors not supported!'); | ||
if('value' in Attributes)O[P] = Attributes.value; | ||
return O; | ||
}; | ||
/***/ }), | ||
/***/ 70: | ||
/***/ (function(module, exports) { | ||
/* globals __VUE_SSR_CONTEXT__ */ | ||
exports.f = Object.getOwnPropertySymbols; | ||
// this module is a runtime utility for cleaner component module output and will | ||
// be included in the final webpack user bundle | ||
/***/ }), | ||
module.exports = function normalizeComponent ( | ||
rawScriptExports, | ||
compiledTemplate, | ||
injectStyles, | ||
scopeId, | ||
moduleIdentifier /* server only */ | ||
) { | ||
var esModule | ||
var scriptExports = rawScriptExports = rawScriptExports || {} | ||
/***/ 76: | ||
/***/ (function(module, exports) { | ||
// ES6 modules interop | ||
var type = typeof rawScriptExports.default | ||
if (type === 'object' || type === 'function') { | ||
esModule = rawScriptExports | ||
scriptExports = rawScriptExports.default | ||
} | ||
// removed by extract-text-webpack-plugin | ||
// Vue.extend constructor export interop | ||
var options = typeof scriptExports === 'function' | ||
? scriptExports.options | ||
: scriptExports | ||
/***/ }), | ||
// render functions | ||
if (compiledTemplate) { | ||
options.render = compiledTemplate.render | ||
options.staticRenderFns = compiledTemplate.staticRenderFns | ||
} | ||
/***/ 77: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
// scopedId | ||
if (scopeId) { | ||
options._scopeId = scopeId | ||
} | ||
"use strict"; | ||
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 = injectStyles | ||
} | ||
if (hook) { | ||
var functional = options.functional | ||
var existing = functional | ||
? options.render | ||
: options.beforeCreate | ||
if (!functional) { | ||
// inject component registration as beforeCreate hook | ||
options.beforeCreate = existing | ||
? [].concat(existing, hook) | ||
: [hook] | ||
} else { | ||
// register for functioal component in vue file | ||
options.render = function renderWithStyleInjection (h, context) { | ||
hook.call(context) | ||
return existing(h, context) | ||
} | ||
} | ||
} | ||
exports.__esModule = true; | ||
return { | ||
esModule: esModule, | ||
exports: scriptExports, | ||
options: options | ||
var _defineProperty = __webpack_require__(104); | ||
var _defineProperty2 = _interopRequireDefault(_defineProperty); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
exports.default = function (obj, key, value) { | ||
if (key in obj) { | ||
(0, _defineProperty2.default)(obj, key, { | ||
value: value, | ||
enumerable: true, | ||
configurable: true, | ||
writable: true | ||
}); | ||
} else { | ||
obj[key] = value; | ||
} | ||
} | ||
return obj; | ||
}; | ||
/***/ }), | ||
/***/ 69: | ||
/***/ 8: | ||
/***/ (function(module, exports) { | ||
exports.f = Object.getOwnPropertySymbols; | ||
module.exports = __WEBPACK_EXTERNAL_MODULE_8__; | ||
/***/ }), | ||
/***/ 7: | ||
/***/ 9: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var dP = __webpack_require__(8) | ||
, createDesc = __webpack_require__(23); | ||
var dP = __webpack_require__(7) | ||
, createDesc = __webpack_require__(18); | ||
module.exports = __webpack_require__(4) ? function(object, key, value){ | ||
@@ -1273,31 +1311,2 @@ return dP.f(object, key, createDesc(1, value)); | ||
/***/ }), | ||
/***/ 8: | ||
/***/ (function(module, exports, __webpack_require__) { | ||
var anObject = __webpack_require__(5) | ||
, IE8_DOM_DEFINE = __webpack_require__(39) | ||
, toPrimitive = __webpack_require__(34) | ||
, dP = Object.defineProperty; | ||
exports.f = __webpack_require__(4) ? Object.defineProperty : function defineProperty(O, P, Attributes){ | ||
anObject(O); | ||
P = toPrimitive(P, true); | ||
anObject(Attributes); | ||
if(IE8_DOM_DEFINE)try { | ||
return dP(O, P, Attributes); | ||
} catch(e){ /* empty */ } | ||
if('get' in Attributes || 'set' in Attributes)throw TypeError('Accessors not supported!'); | ||
if('value' in Attributes)O[P] = Attributes.value; | ||
return O; | ||
}; | ||
/***/ }), | ||
/***/ 9: | ||
/***/ (function(module, exports) { | ||
module.exports = __WEBPACK_EXTERNAL_MODULE_9__; | ||
/***/ }) | ||
@@ -1304,0 +1313,0 @@ |
{ | ||
"name": "captain-invalid-goods", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"description": "不可用商品列表组件", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
Sorry, the diff of this file is not supported yet
56984
1032