From e01af6d359c42b57550957d0108bb23d14088cd0 Mon Sep 17 00:00:00 2001
From: nidapeng <jp@doumee.com>
Date: 星期一, 08 四月 2024 15:19:02 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/1.0.1' into 1.0.1
---
wx/unpackage/dist/dev/mp-weixin/common/vendor.js | 460 ++++++++++++++++++---------------------------------------
1 files changed, 146 insertions(+), 314 deletions(-)
diff --git a/wx/unpackage/dist/dev/mp-weixin/common/vendor.js b/wx/unpackage/dist/dev/mp-weixin/common/vendor.js
index 796e127..3a85629 100644
--- a/wx/unpackage/dist/dev/mp-weixin/common/vendor.js
+++ b/wx/unpackage/dist/dev/mp-weixin/common/vendor.js
@@ -20699,6 +20699,14 @@
var data = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
return vm.$u.http.post('business/applyChange/getChangeMemberListOnlineSignLink', data);
}; // 鎶曚繚纭涔︾绔犱笟鍔�
+ var supplement = function supplement() {
+ var data = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+ return vm.$u.http.post('business/settleClaims/supplement', data);
+ }; // 琛ュ厖璇存槑
+ var claimsUploadFile = function claimsUploadFile() {
+ var data = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
+ return vm.$u.http.post('business/settleClaims/claimsUploadFile', data);
+ }; // 闄勪欢涓婁紶
vm.$u.api = {
loginByWxMini: loginByWxMini,
@@ -20738,7 +20746,9 @@
getJiajianBaoSignLink: getJiajianBaoSignLink,
getMemberListOnlineSignLink: getMemberListOnlineSignLink,
getSignWTBTBDLink: getSignWTBTBDLink,
- getChangeMemberListOnlineSignLink: getChangeMemberListOnlineSignLink
+ getChangeMemberListOnlineSignLink: getChangeMemberListOnlineSignLink,
+ supplement: supplement,
+ claimsUploadFile: claimsUploadFile
};
};
var _default = {
@@ -23379,319 +23389,9 @@
/* 517 */,
/* 518 */,
/* 519 */,
-/* 520 */
-/*!****************************************************************************!*\
- !*** D:/璞嗙背/yunyibao/wx/node_modules/uview-ui/components/u-upload/utils.js ***!
- \****************************************************************************/
-/*! no static exports found */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-/* WEBPACK VAR INJECTION */(function(uni, wx) {
-
-var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.chooseFile = chooseFile;
-var _defineProperty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/defineProperty */ 11));
-function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); 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 = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
-function pickExclude(obj, keys) {
- // 鏌愪簺鎯呭喌涓嬶紝type鍙兘浼氫负
- if (!['[object Object]', '[object File]'].includes(Object.prototype.toString.call(obj))) {
- return {};
- }
- return Object.keys(obj).reduce(function (prev, key) {
- if (!keys.includes(key)) {
- prev[key] = obj[key];
- }
- return prev;
- }, {});
-}
-function formatImage(res) {
- return res.tempFiles.map(function (item) {
- return _objectSpread(_objectSpread({}, pickExclude(item, ['path'])), {}, {
- type: 'image',
- url: item.path,
- thumb: item.path,
- size: item.size
- });
- });
-}
-function formatVideo(res) {
- return [_objectSpread(_objectSpread({}, pickExclude(res, ['tempFilePath', 'thumbTempFilePath', 'errMsg'])), {}, {
- type: 'video',
- url: res.tempFilePath,
- thumb: res.thumbTempFilePath,
- size: res.size
- })];
-}
-function formatMedia(res) {
- return res.tempFiles.map(function (item) {
- return _objectSpread(_objectSpread({}, pickExclude(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), {}, {
- type: res.type,
- url: item.tempFilePath,
- thumb: res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath,
- size: item.size
- });
- });
-}
-function formatFile(res) {
- return res.tempFiles.map(function (item) {
- return _objectSpread(_objectSpread({}, pickExclude(item, ['path'])), {}, {
- url: item.path,
- size: item.size
- });
- });
-}
-function chooseFile(_ref) {
- var accept = _ref.accept,
- multiple = _ref.multiple,
- capture = _ref.capture,
- compressed = _ref.compressed,
- maxDuration = _ref.maxDuration,
- sizeType = _ref.sizeType,
- camera = _ref.camera,
- maxCount = _ref.maxCount;
- return new Promise(function (resolve, reject) {
- switch (accept) {
- case 'image':
- uni.chooseImage({
- count: multiple ? Math.min(maxCount, 9) : 1,
- sourceType: capture,
- sizeType: sizeType,
- success: function success(res) {
- return resolve(formatImage(res));
- },
- fail: reject
- });
- break;
-
- // 鍙湁寰俊灏忕▼搴忔墠鏀寔chooseMedia鎺ュ彛
- case 'media':
- wx.chooseMedia({
- count: multiple ? Math.min(maxCount, 9) : 1,
- sourceType: capture,
- maxDuration: maxDuration,
- sizeType: sizeType,
- camera: camera,
- success: function success(res) {
- return resolve(formatMedia(res));
- },
- fail: reject
- });
- break;
- case 'video':
- uni.chooseVideo({
- sourceType: capture,
- compressed: compressed,
- maxDuration: maxDuration,
- camera: camera,
- success: function success(res) {
- return resolve(formatVideo(res));
- },
- fail: reject
- });
- break;
-
- // 鍙湁寰俊灏忕▼搴忔墠鏀寔chooseMessageFile鎺ュ彛
- case 'file':
- wx.chooseMessageFile({
- count: multiple ? maxCount : 1,
- type: accept,
- success: function success(res) {
- return resolve(formatFile(res));
- },
- fail: reject
- });
- break;
- default:
- // 姝や负淇濆簳閫夐」锛屽湪accept涓嶄负涓婇潰浠绘剰涓�椤圭殑鏃跺�欓�夊彇鍏ㄩ儴鏂囦欢
-
- wx.chooseMessageFile({
- count: multiple ? maxCount : 1,
- type: 'all',
- success: function success(res) {
- return resolve(formatFile(res));
- },
- fail: reject
- });
- }
- });
-}
-/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"], __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/wx.js */ 1)["default"]))
-
-/***/ }),
-/* 521 */
-/*!****************************************************************************!*\
- !*** D:/璞嗙背/yunyibao/wx/node_modules/uview-ui/components/u-upload/mixin.js ***!
- \****************************************************************************/
-/*! no static exports found */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var _default = {
- watch: {
- // 鐩戝惉accept鐨勫彉鍖栵紝鍒ゆ柇鏄惁绗﹀悎涓钩鍙拌姹�
- // 鍙湁寰俊灏忕▼搴忔墠鏀寔閫夋嫨濯掍綋锛屾枃浠剁被鍨嬶紝鎵�浠ヨ繖閲屽仛涓�涓垽鏂彁绀�
- accept: {
- immediate: true,
- handler: function handler(val) {}
- }
- }
-};
-exports.default = _default;
-
-/***/ }),
-/* 522 */
-/*!****************************************************************************!*\
- !*** D:/璞嗙背/yunyibao/wx/node_modules/uview-ui/components/u-upload/props.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 _default = {
- props: {
- // 鎺ュ彈鐨勬枃浠剁被鍨�, 鍙�夊�间负all media image file video
- accept: {
- type: String,
- default: uni.$u.props.upload.accept
- },
- // 鍥剧墖鎴栬棰戞嬀鍙栨ā寮忥紝褰揳ccept涓篿mage绫诲瀷鏃惰缃甤apture鍙�夐澶朿amera鍙互鐩存帴璋冭捣鎽勫儚澶�
- capture: {
- type: [String, Array],
- default: uni.$u.props.upload.capture
- },
- // 褰揳ccept涓簐ideo鏃剁敓鏁堬紝鏄惁鍘嬬缉瑙嗛锛岄粯璁や负true
- compressed: {
- type: Boolean,
- default: uni.$u.props.upload.compressed
- },
- // 褰揳ccept涓簐ideo鏃剁敓鏁堬紝鍙�夊�间负back鎴杅ront
- camera: {
- type: String,
- default: uni.$u.props.upload.camera
- },
- // 褰揳ccept涓簐ideo鏃剁敓鏁堬紝鎷嶆憚瑙嗛鏈�闀挎媿鎽勬椂闂达紝鍗曚綅绉�
- maxDuration: {
- type: Number,
- default: uni.$u.props.upload.maxDuration
- },
- // 涓婁紶鍖哄煙鐨勫浘鏍囷紝鍙兘鍐呯疆鍥炬爣
- uploadIcon: {
- type: String,
- default: uni.$u.props.upload.uploadIcon
- },
- // 涓婁紶鍖哄煙鐨勫浘鏍囩殑棰滆壊锛岄粯璁�
- uploadIconColor: {
- type: String,
- default: uni.$u.props.upload.uploadIconColor
- },
- // 鏄惁寮�鍚枃浠惰鍙栧墠浜嬩欢
- useBeforeRead: {
- type: Boolean,
- default: uni.$u.props.upload.useBeforeRead
- },
- // 璇诲彇鍚庣殑澶勭悊鍑芥暟
- afterRead: {
- type: Function,
- default: null
- },
- // 璇诲彇鍓嶇殑澶勭悊鍑芥暟
- beforeRead: {
- type: Function,
- default: null
- },
- // 鏄惁鏄剧ず缁勪欢鑷甫鐨勫浘鐗囬瑙堝姛鑳�
- previewFullImage: {
- type: Boolean,
- default: uni.$u.props.upload.previewFullImage
- },
- // 鏈�澶т笂浼犳暟閲�
- maxCount: {
- type: [String, Number],
- default: uni.$u.props.upload.maxCount
- },
- // 鏄惁鍚敤
- disabled: {
- type: Boolean,
- default: uni.$u.props.upload.disabled
- },
- // 棰勮涓婁紶鐨勫浘鐗囨椂鐨勮鍓ā寮忥紝鍜宨mage缁勪欢mode灞炴�т竴鑷�
- imageMode: {
- type: String,
- default: uni.$u.props.upload.imageMode
- },
- // 鏍囪瘑绗︼紝鍙互鍦ㄥ洖璋冨嚱鏁扮殑绗簩椤瑰弬鏁颁腑鑾峰彇
- name: {
- type: String,
- default: uni.$u.props.upload.name
- },
- // 鎵�閫夌殑鍥剧墖鐨勫昂瀵�, 鍙�夊�间负original compressed
- sizeType: {
- type: Array,
- default: uni.$u.props.upload.sizeType
- },
- // 鏄惁寮�鍚浘鐗囧閫夛紝閮ㄥ垎瀹夊崜鏈哄瀷涓嶆敮鎸�
- multiple: {
- type: Boolean,
- default: uni.$u.props.upload.multiple
- },
- // 鏄惁灞曠ず鍒犻櫎鎸夐挳
- deletable: {
- type: Boolean,
- default: uni.$u.props.upload.deletable
- },
- // 鏂囦欢澶у皬闄愬埗锛屽崟浣嶄负byte
- maxSize: {
- type: [String, Number],
- default: uni.$u.props.upload.maxSize
- },
- // 鏄剧ず宸蹭笂浼犵殑鏂囦欢鍒楄〃
- fileList: {
- type: Array,
- default: uni.$u.props.upload.fileList
- },
- // 涓婁紶鍖哄煙鐨勬彁绀烘枃瀛�
- uploadText: {
- type: String,
- default: uni.$u.props.upload.uploadText
- },
- // 鍐呴儴棰勮鍥剧墖鍖哄煙鍜岄�夋嫨鍥剧墖鎸夐挳鐨勫尯鍩熷搴�
- width: {
- type: [String, Number],
- default: uni.$u.props.upload.width
- },
- // 鍐呴儴棰勮鍥剧墖鍖哄煙鍜岄�夋嫨鍥剧墖鎸夐挳鐨勫尯鍩熼珮搴�
- height: {
- type: [String, Number],
- default: uni.$u.props.upload.height
- },
- // 鏄惁鍦ㄤ笂浼犲畬鎴愬悗灞曠ず棰勮鍥�
- previewImage: {
- type: Boolean,
- default: uni.$u.props.upload.previewImage
- }
- }
-};
-exports.default = _default;
-/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
-
-/***/ }),
+/* 520 */,
+/* 521 */,
+/* 522 */,
/* 523 */,
/* 524 */,
/* 525 */,
@@ -26200,6 +25900,138 @@
};
exports.default = _default;
+/***/ }),
+/* 620 */,
+/* 621 */,
+/* 622 */,
+/* 623 */,
+/* 624 */,
+/* 625 */,
+/* 626 */,
+/* 627 */,
+/* 628 */,
+/* 629 */,
+/* 630 */,
+/* 631 */,
+/* 632 */,
+/* 633 */,
+/* 634 */,
+/* 635 */,
+/* 636 */,
+/* 637 */,
+/* 638 */,
+/* 639 */,
+/* 640 */,
+/* 641 */,
+/* 642 */,
+/* 643 */,
+/* 644 */,
+/* 645 */,
+/* 646 */,
+/* 647 */,
+/* 648 */,
+/* 649 */,
+/* 650 */,
+/* 651 */,
+/* 652 */,
+/* 653 */,
+/* 654 */,
+/* 655 */,
+/* 656 */,
+/* 657 */,
+/* 658 */,
+/* 659 */,
+/* 660 */,
+/* 661 */,
+/* 662 */,
+/* 663 */,
+/* 664 */,
+/* 665 */,
+/* 666 */,
+/* 667 */,
+/* 668 */,
+/* 669 */,
+/* 670 */,
+/* 671 */,
+/* 672 */,
+/* 673 */,
+/* 674 */,
+/* 675 */,
+/* 676 */,
+/* 677 */,
+/* 678 */,
+/* 679 */,
+/* 680 */,
+/* 681 */,
+/* 682 */,
+/* 683 */,
+/* 684 */,
+/* 685 */,
+/* 686 */,
+/* 687 */,
+/* 688 */,
+/* 689 */,
+/* 690 */,
+/* 691 */,
+/* 692 */,
+/* 693 */,
+/* 694 */,
+/* 695 */,
+/* 696 */,
+/* 697 */,
+/* 698 */,
+/* 699 */,
+/* 700 */,
+/* 701 */,
+/* 702 */,
+/* 703 */,
+/* 704 */,
+/* 705 */,
+/* 706 */,
+/* 707 */,
+/* 708 */,
+/* 709 */,
+/* 710 */
+/*!*************************************************************************!*\
+ !*** D:/璞嗙背/yunyibao/wx/node_modules/uview-ui/components/u-gap/props.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 _default = {
+ props: {
+ // 鑳屾櫙棰滆壊锛堥粯璁ransparent锛�
+ bgColor: {
+ type: String,
+ default: uni.$u.props.gap.bgColor
+ },
+ // 鍒嗗壊妲介珮搴︼紝鍗曚綅px锛堥粯璁�30锛�
+ height: {
+ type: [String, Number],
+ default: uni.$u.props.gap.height
+ },
+ // 涓庝笂涓�涓粍浠剁殑璺濈
+ marginTop: {
+ type: [String, Number],
+ default: uni.$u.props.gap.marginTop
+ },
+ // 涓庝笅涓�涓粍浠剁殑璺濈
+ marginBottom: {
+ type: [String, Number],
+ default: uni.$u.props.gap.marginBottom
+ }
+ }
+};
+exports.default = _default;
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
+
/***/ })
]]);
//# sourceMappingURL=../../.sourcemap/mp-weixin/common/vendor.js.map
\ No newline at end of file
--
Gitblit v1.9.3