Commit 067b6682 authored by 程新智's avatar 程新智 👽

优化

parent 523e4531
...@@ -4,28 +4,28 @@ ...@@ -4,28 +4,28 @@
--> -->
<template> <template>
<view class="appCotent"> <view class="appCotent">
<div class="bindingLogin"> <div class="bindingLogin">
<div class="login__logo"> <div class="login__logo">
<image src="@/static/binding/logo.png"> <image src="@/static/binding/logo.png">
</div>
<div class="binding__tips">
绑定京东账号后,免费领取挪车码
</div>
<div class="binding__form">
<view class="content">
<active-form :formDate.sync="formData"></active-form>
</view>
</div>
<div class="login__read">
<u-checkbox-group placement="row">
<u-checkbox :checked='checked' @change="changeBtn"></u-checkbox>
</u-checkbox-group>
已阅读并同意<span>京东挪车牌用户协议(含隐私政策)</span><span>京东用户注册协议</span><span>京东隐私政策</span><span>联通账号认证服务条款</span>并使用本机号码登录
</div>
<div>
<view class="subform" @click="sub">确认绑定</view>
</div>
</div> </div>
<div class="binding__tips">
绑定京东账号后,免费领取挪车码
</div>
<div class="binding__form">
<view class="content">
<active-form :formDate.sync="formData"></active-form>
</view>
</div>
<div class="login__read">
<u-checkbox-group placement="row">
<u-checkbox v-model="checked" ></u-checkbox>
</u-checkbox-group>
已阅读并同意<span>京东挪车牌用户协议(含隐私政策)</span><span>京东用户注册协议</span><span>京东隐私政策</span><span>联通账号认证服务条款</span>并使用本机号码登录
</div>
<div>
<view class="subform" @click="sub">确认绑定</view>
</div>
</div>
</view> </view>
</template> </template>
...@@ -64,21 +64,32 @@ export default { ...@@ -64,21 +64,32 @@ export default {
}; };
}, },
methods: { methods: {
changeBtn() {
this.checked = !this.checked;
},
// 提交表单 // 提交表单
sub() { sub() {
// this.$vervify(this.formData); //表单校验 成功会继续往下走 失败抛出异常 if (this.checked) {
// this.$vervify(this.formData); //表单校验 成功会继续往下走 失败抛出异常
// const res = this.$submitForm(this.formData); //校验成功 获取表单值 // const res = this.$submitForm(this.formData); //校验成功 获取表单值
console.log('表单对象 :>> ', this.formData); console.log('表单对象 :>> ', this.formData);
// uni.showToast({ // uni.showToast({
// title: "验证码过期", // title: "验证码过期",
// icon: 'error', // icon: 'error',
// duration: 2000, // duration: 2000,
// }); // });
//跳转到首页 //跳转到首页
uni.navigateTo({ uni.navigateTo({
url: '/pagesA/pages/index/index' url: '/pagesA/pages/index/index'
}); });
} else {
uni.showToast({
title: "请阅读并同意京东挪车牌用户协议",
icon: 'none',
duration: 2000,
});
}
}, },
}, },
} }
...@@ -119,7 +130,8 @@ export default { ...@@ -119,7 +130,8 @@ export default {
.u-checkbox-group { .u-checkbox-group {
display: inline-block !important; display: inline-block !important;
} }
/deep/.u-checkbox-group--row {
/deep/.u-checkbox-group--row {
display: inline-block !important; display: inline-block !important;
} }
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
</div> </div>
<div class="login__read"> <div class="login__read">
<u-checkbox-group placement="row"> <u-checkbox-group placement="row">
<u-checkbox v-model="checked" ></u-checkbox> <u-checkbox :checked='checked' @change="changeBtn"></u-checkbox>
</u-checkbox-group> </u-checkbox-group>
已阅读并同意 <span>《京东用户注册协议》</span><span>《京东隐私政策》</span>。若您的手机号未注册,将为您直接注册京东账号 已阅读并同意 <span>《京东用户注册协议》</span><span>《京东隐私政策》</span>。若您的手机号未注册,将为您直接注册京东账号
</div> </div>
...@@ -25,15 +25,27 @@ ...@@ -25,15 +25,27 @@
export default { export default {
data() { data() {
return { return {
checked: true, checked: false,
}; };
}, },
methods: { methods: {
changeBtn() {
this.checked = !this.checked;
},
login() { login() {
//跳转到绑定页面 if (this.checked) {
uni.navigateTo({ //跳转到绑定页面
url: '/pages/binding/binding' uni.navigateTo({
}); url: '/pages/binding/binding'
});
}else{
uni.showToast({
title: "请先阅读并同意《京东用户注册协议》、《京东隐私政策》",
icon: 'none',
duration: 2000,
});
}
} }
}, },
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
</div> </div>
<div class="add__user"> <div class="add__user">
<u-checkbox-group placement="row"> <u-checkbox-group placement="row">
<u-checkbox v-model="checked" ></u-checkbox> <u-checkbox :checked='checked' @change="changeBtn" ></u-checkbox>
</u-checkbox-group> </u-checkbox-group>
勾选同意<span>《用户服务协议》</span> 勾选同意<span>《用户服务协议》</span>
</div> </div>
...@@ -86,6 +86,9 @@ export default { ...@@ -86,6 +86,9 @@ export default {
}; };
}, },
methods: { methods: {
changeBtn(){
this.checked = !this.checked;
},
goBack() { goBack() {
uni.navigateBack({ uni.navigateBack({
delta: 1 delta: 1
......
...@@ -114,7 +114,7 @@ __webpack_require__.r(__webpack_exports__); ...@@ -114,7 +114,7 @@ __webpack_require__.r(__webpack_exports__);
/***/ (function(module, exports, __webpack_require__) { /***/ (function(module, exports, __webpack_require__) {
"use strict"; "use strict";
/* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 34));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};}var FCheckboxGroup = function FCheckboxGroup() {Promise.all(/*! require.ensure | common/active-form/components/checkbox-group */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/active-form/components/checkbox-group")]).then((function () {return resolve(__webpack_require__(/*! ./components/checkbox-group.vue */ 549));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var FCheckbox = function FCheckbox() {__webpack_require__.e(/*! require.ensure | common/active-form/components/checkbox */ "common/active-form/components/checkbox").then((function () {return resolve(__webpack_require__(/*! ./components/checkbox.vue */ 557));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var FRadioGroup = function FRadioGroup() {Promise.all(/*! require.ensure | common/active-form/components/radio-group */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/active-form/components/radio-group")]).then((function () {return resolve(__webpack_require__(/*! ./components/radio-group.vue */ 564));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var FRadio = function FRadio() {__webpack_require__.e(/*! require.ensure | common/active-form/components/radio */ "common/active-form/components/radio").then((function () {return resolve(__webpack_require__(/*! ./components/radio.vue */ 571));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var FSelect = function FSelect() {__webpack_require__.e(/*! require.ensure | common/active-form/components/select */ "common/active-form/components/select").then((function () {return resolve(__webpack_require__(/*! ./components/select.vue */ 578));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default2 = /* WEBPACK VAR INJECTION */(function(uni) {Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var _regenerator = _interopRequireDefault(__webpack_require__(/*! ./node_modules/@babel/runtime/regenerator */ 34));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {try {var info = gen[key](arg);var value = info.value;} catch (error) {reject(error);return;}if (info.done) {resolve(value);} else {Promise.resolve(value).then(_next, _throw);}}function _asyncToGenerator(fn) {return function () {var self = this,args = arguments;return new Promise(function (resolve, reject) {var gen = fn.apply(self, args);function _next(value) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);}function _throw(err) {asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);}_next(undefined);});};}var FCheckboxGroup = function FCheckboxGroup() {Promise.all(/*! require.ensure | common/active-form/components/checkbox-group */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/active-form/components/checkbox-group")]).then((function () {return resolve(__webpack_require__(/*! ./components/checkbox-group.vue */ 566));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var FCheckbox = function FCheckbox() {__webpack_require__.e(/*! require.ensure | common/active-form/components/checkbox */ "common/active-form/components/checkbox").then((function () {return resolve(__webpack_require__(/*! ./components/checkbox.vue */ 574));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var FRadioGroup = function FRadioGroup() {Promise.all(/*! require.ensure | common/active-form/components/radio-group */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/active-form/components/radio-group")]).then((function () {return resolve(__webpack_require__(/*! ./components/radio-group.vue */ 581));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var FRadio = function FRadio() {__webpack_require__.e(/*! require.ensure | common/active-form/components/radio */ "common/active-form/components/radio").then((function () {return resolve(__webpack_require__(/*! ./components/radio.vue */ 588));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var FSelect = function FSelect() {__webpack_require__.e(/*! require.ensure | common/active-form/components/select */ "common/active-form/components/select").then((function () {return resolve(__webpack_require__(/*! ./components/select.vue */ 595));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default2 =
......
...@@ -114,7 +114,7 @@ __webpack_require__.r(__webpack_exports__); ...@@ -114,7 +114,7 @@ __webpack_require__.r(__webpack_exports__);
/***/ (function(module, exports, __webpack_require__) { /***/ (function(module, exports, __webpack_require__) {
"use strict"; "use strict";
Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var KeyBoard = function KeyBoard() {__webpack_require__.e(/*! require.ensure | common/codecook-keyboard/codecook-keyboard */ "common/codecook-keyboard/codecook-keyboard").then((function () {return resolve(__webpack_require__(/*! ../codecook-keyboard/codecook-keyboard.vue */ 633));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default = Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;var KeyBoard = function KeyBoard() {__webpack_require__.e(/*! require.ensure | common/codecook-keyboard/codecook-keyboard */ "common/codecook-keyboard/codecook-keyboard").then((function () {return resolve(__webpack_require__(/*! ../codecook-keyboard/codecook-keyboard.vue */ 650));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default =
......
...@@ -135,7 +135,7 @@ __webpack_require__.r(__webpack_exports__); ...@@ -135,7 +135,7 @@ __webpack_require__.r(__webpack_exports__);
var _props = _interopRequireDefault(__webpack_require__(/*! ../u-form/props.js */ 479));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}var uvForm = function uvForm() {Promise.all(/*! require.ensure | common/uview-ui/components/u-form/u-form */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-form/u-form")]).then((function () {return resolve(__webpack_require__(/*! ../u-form/u-form.vue */ 610));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default = var _props = _interopRequireDefault(__webpack_require__(/*! ../u-form/props.js */ 479));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}var uvForm = function uvForm() {Promise.all(/*! require.ensure | common/uview-ui/components/u-form/u-form */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-form/u-form")]).then((function () {return resolve(__webpack_require__(/*! ../u-form/u-form.vue */ 627));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default =
{ {
name: 'u-form', name: 'u-form',
......
...@@ -188,7 +188,7 @@ __webpack_require__.r(__webpack_exports__); ...@@ -188,7 +188,7 @@ __webpack_require__.r(__webpack_exports__);
var _props = _interopRequireDefault(__webpack_require__(/*! ../u-input/props.js */ 493));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}var uvInput = function uvInput() {__webpack_require__.e(/*! require.ensure | common/uview-ui/components/u-input/u-input */ "common/uview-ui/components/u-input/u-input").then((function () {return resolve(__webpack_require__(/*! ../u-input/u-input.vue */ 626));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default = var _props = _interopRequireDefault(__webpack_require__(/*! ../u-input/props.js */ 493));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}var uvInput = function uvInput() {__webpack_require__.e(/*! require.ensure | common/uview-ui/components/u-input/u-input */ "common/uview-ui/components/u-input/u-input").then((function () {return resolve(__webpack_require__(/*! ../u-input/u-input.vue */ 643));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default =
{ {
name: 'u--input', name: 'u--input',
mixins: [uni.$u.mpMixin, _props.default, uni.$u.mixin], mixins: [uni.$u.mpMixin, _props.default, uni.$u.mixin],
......
...@@ -175,7 +175,7 @@ __webpack_require__.r(__webpack_exports__); ...@@ -175,7 +175,7 @@ __webpack_require__.r(__webpack_exports__);
var _props = _interopRequireDefault(__webpack_require__(/*! ../u-textarea/props.js */ 548));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}var uvTextarea = function uvTextarea() {__webpack_require__.e(/*! require.ensure | common/uview-ui/components/u-textarea/u-textarea */ "common/uview-ui/components/u-textarea/u-textarea").then((function () {return resolve(__webpack_require__(/*! ../u-textarea/u-textarea.vue */ 656));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default = var _props = _interopRequireDefault(__webpack_require__(/*! ../u-textarea/props.js */ 548));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}var uvTextarea = function uvTextarea() {__webpack_require__.e(/*! require.ensure | common/uview-ui/components/u-textarea/u-textarea */ "common/uview-ui/components/u-textarea/u-textarea").then((function () {return resolve(__webpack_require__(/*! ../u-textarea/u-textarea.vue */ 665));}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);};var _default =
{ {
name: 'u--textarea', name: 'u--textarea',
mixins: [uni.$u.mpMixin, _props.default, uni.$u.mixin], mixins: [uni.$u.mpMixin, _props.default, uni.$u.mixin],
......
...@@ -80,16 +80,16 @@ var components ...@@ -80,16 +80,16 @@ var components
try { try {
components = { components = {
uPopup: function() { uPopup: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-popup/u-popup */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-popup/u-popup")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-popup/u-popup.vue */ 640)) return Promise.all(/*! import() | common/uview-ui/components/u-popup/u-popup */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-popup/u-popup")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-popup/u-popup.vue */ 549))
}, },
uIcon: function() { uIcon: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-icon/u-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-icon/u-icon")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-icon/u-icon.vue */ 585)) return Promise.all(/*! import() | common/uview-ui/components/u-icon/u-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-icon/u-icon")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-icon/u-icon.vue */ 602))
}, },
uLine: function() { uLine: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-line/u-line */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-line/u-line")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-line/u-line.vue */ 618)) return Promise.all(/*! import() | common/uview-ui/components/u-line/u-line */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-line/u-line")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-line/u-line.vue */ 635))
}, },
uLoadingIcon: function() { uLoadingIcon: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-loading-icon/u-loading-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-loading-icon/u-loading-icon")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-loading-icon/u-loading-icon.vue */ 594)) return Promise.all(/*! import() | common/uview-ui/components/u-loading-icon/u-loading-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-loading-icon/u-loading-icon")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-loading-icon/u-loading-icon.vue */ 611))
}, },
uGap: function() { uGap: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-gap/u-gap */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-gap/u-gap")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-gap/u-gap.vue */ 466)) return Promise.all(/*! import() | common/uview-ui/components/u-gap/u-gap */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-gap/u-gap")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-gap/u-gap.vue */ 466))
......
...@@ -80,7 +80,7 @@ var components ...@@ -80,7 +80,7 @@ var components
try { try {
components = { components = {
uIcon: function() { uIcon: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-icon/u-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-icon/u-icon")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-icon/u-icon.vue */ 585)) return Promise.all(/*! import() | common/uview-ui/components/u-icon/u-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-icon/u-icon")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-icon/u-icon.vue */ 602))
} }
} }
} catch (e) { } catch (e) {
......
{ {
"component": true,
"usingComponents": { "usingComponents": {
"u-picker": "/common/uview-ui/components/u-picker/u-picker" "u-picker": "/common/uview-ui/components/u-picker/u-picker"
}, }
"component": true
} }
\ No newline at end of file
...@@ -80,10 +80,10 @@ var components ...@@ -80,10 +80,10 @@ var components
try { try {
components = { components = {
uIcon: function() { uIcon: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-icon/u-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-icon/u-icon")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-icon/u-icon.vue */ 585)) return Promise.all(/*! import() | common/uview-ui/components/u-icon/u-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-icon/u-icon")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-icon/u-icon.vue */ 602))
}, },
uLine: function() { uLine: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-line/u-line */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-line/u-line")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-line/u-line.vue */ 618)) return Promise.all(/*! import() | common/uview-ui/components/u-line/u-line */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-line/u-line")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-line/u-line.vue */ 635))
} }
} }
} catch (e) { } catch (e) {
......
...@@ -80,13 +80,13 @@ var components ...@@ -80,13 +80,13 @@ var components
try { try {
components = { components = {
uPopup: function() { uPopup: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-popup/u-popup */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-popup/u-popup")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-popup/u-popup.vue */ 640)) return Promise.all(/*! import() | common/uview-ui/components/u-popup/u-popup */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-popup/u-popup")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-popup/u-popup.vue */ 549))
}, },
uLine: function() { uLine: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-line/u-line */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-line/u-line")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-line/u-line.vue */ 618)) return Promise.all(/*! import() | common/uview-ui/components/u-line/u-line */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-line/u-line")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-line/u-line.vue */ 635))
}, },
uLoadingIcon: function() { uLoadingIcon: function() {
return Promise.all(/*! import() | common/uview-ui/components/u-loading-icon/u-loading-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-loading-icon/u-loading-icon")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-loading-icon/u-loading-icon.vue */ 594)) return Promise.all(/*! import() | common/uview-ui/components/u-loading-icon/u-loading-icon */[__webpack_require__.e("common/vendor"), __webpack_require__.e("common/uview-ui/components/u-loading-icon/u-loading-icon")]).then(__webpack_require__.bind(null, /*! @/common/uview-ui/components/u-loading-icon/u-loading-icon.vue */ 611))
} }
} }
} catch (e) { } catch (e) {
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment