diff --git a/components/money-view/money-view.vue b/components/money-view/money-view.vue
index 0fa5bf1..d34fcb4 100644
--- a/components/money-view/money-view.vue
+++ b/components/money-view/money-view.vue
@@ -44,14 +44,14 @@ export default {
}
},
created() {
- this.moneyValue = this.moneyFormat(this.value, 2, ',')
+ this.moneyValue = this.moneyFormat(this.value, 3, ',')
},
methods: {
thousandFormat(num, split) {
const len = num.length
return len <= 3 ? num : this.thousandFormat(num.substr(0, len - 3)) + split + num.substr(len - 3, 3)
},
- moneyFormat(num, decimal = 2, split = ',') {
+ moneyFormat(num, decimal = 3, split = ',') {
/*
parameter:
num:格式化目标数字
@@ -86,7 +86,7 @@ export default {
},
watch: {
value(newValue) {
- this.moneyValue = this.moneyFormat(newValue, 2, ',')
+ this.moneyValue = this.moneyFormat(newValue, 3, ',')
},
}
diff --git a/package-lock.json b/package-lock.json
deleted file mode 100644
index b4fdc0b..0000000
--- a/package-lock.json
+++ /dev/null
@@ -1,105 +0,0 @@
-{
- "requires": true,
- "lockfileVersion": 1,
- "dependencies": {
- "@vue/devtools-api": {
- "version": "6.2.0",
- "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.2.0.tgz",
- "integrity": "sha512-pF1G4wky+hkifDiZSWn8xfuLOJI1ZXtuambpBEYaf7Xaf6zC/pM29rvAGpd3qaGXnr4BAXU1Pxz/VfvBGwexGA=="
- },
- "axios": {
- "version": "0.26.1",
- "resolved": "https://registry.npmmirror.com/axios/-/axios-0.26.1.tgz",
- "integrity": "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==",
- "requires": {
- "follow-redirects": "^1.14.8"
- }
- },
- "call-bind": {
- "version": "1.0.2",
- "resolved": "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz",
- "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
- "requires": {
- "function-bind": "^1.1.1",
- "get-intrinsic": "^1.0.2"
- }
- },
- "follow-redirects": {
- "version": "1.15.1",
- "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.1.tgz",
- "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA=="
- },
- "function-bind": {
- "version": "1.1.1",
- "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
- },
- "get-intrinsic": {
- "version": "1.1.2",
- "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz",
- "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==",
- "requires": {
- "function-bind": "^1.1.1",
- "has": "^1.0.3",
- "has-symbols": "^1.0.3"
- }
- },
- "has": {
- "version": "1.0.3",
- "resolved": "https://registry.npmmirror.com/has/-/has-1.0.3.tgz",
- "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
- "requires": {
- "function-bind": "^1.1.1"
- }
- },
- "has-symbols": {
- "version": "1.0.3",
- "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz",
- "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
- },
- "js-md5": {
- "version": "0.7.3",
- "resolved": "https://registry.npmjs.org/js-md5/-/js-md5-0.7.3.tgz",
- "integrity": "sha512-ZC41vPSTLKGwIRjqDh8DfXoCrdQIyBgspJVPXHBGu4nZlAEvG3nf+jO9avM9RmLiGakg7vz974ms99nEV0tmTQ=="
- },
- "object-inspect": {
- "version": "1.12.2",
- "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.2.tgz",
- "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="
- },
- "qs": {
- "version": "6.11.0",
- "resolved": "https://registry.npmmirror.com/qs/-/qs-6.11.0.tgz",
- "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
- "requires": {
- "side-channel": "^1.0.4"
- }
- },
- "side-channel": {
- "version": "1.0.4",
- "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz",
- "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
- "requires": {
- "call-bind": "^1.0.0",
- "get-intrinsic": "^1.0.2",
- "object-inspect": "^1.9.0"
- }
- },
- "vue-router": {
- "version": "4.0.16",
- "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.0.16.tgz",
- "integrity": "sha512-JcO7cb8QJLBWE+DfxGUL3xUDOae/8nhM1KVdnudadTAORbuxIC/xAydC5Zr/VLHUDQi1ppuTF5/rjBGzgzrJNA==",
- "requires": {
- "@vue/devtools-api": "^6.0.0"
- }
- },
- "vuex": {
- "version": "4.0.2",
- "resolved": "https://registry.npmmirror.com/vuex/-/vuex-4.0.2.tgz",
- "integrity": "sha512-M6r8uxELjZIK8kTKDGgZTYX/ahzblnzC4isU1tpmEuOIIKmV+TRdc+H4s8ds2NuZ7wpUTdGRzJRtoj+lI+pc0Q==",
- "requires": {
- "@vue/devtools-api": "^6.0.0-beta.11"
- }
- }
- }
-}
diff --git a/pages-userInfo/creatorAccount/createAccount.vue b/pages-userInfo/creatorAccount/createAccount.vue
index 83b9e94..3dc8120 100644
--- a/pages-userInfo/creatorAccount/createAccount.vue
+++ b/pages-userInfo/creatorAccount/createAccount.vue
@@ -29,17 +29,12 @@
:selectedTextColor="'#FFFFFF'">
-
-
+
-
-
-
-
+
@@ -57,10 +52,10 @@
-
- 本人确认已同意并遵守《艺术家合作协议》 及
- 《艺术家隐私协议》的基础上,承诺已阅读并同意遵守《共享经济合作合办协议》,按照协议内容提供合法合规服务。
+
+ 本人确认已同意并遵守《艺术家合作协议》 及
+ 《艺术家隐私协议》的基础上,承诺已阅读并同意遵守
+ 《共享经济合作合办协议》,按照协议内容提供合法合规服务。
@@ -68,10 +63,9 @@