From 6312c4d24352074f865636569b1cc5c7926e062f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Fri, 4 Jul 2025 15:55:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=86=85=E9=83=A8=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E4=BD=8D=E7=BD=AE=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/css/page.css | 7 +- manifest.json | 23 +- pages/diy/components/diy/video.vue | 4 +- .../components/form-input/address.vue | 8 +- .../components/form-input/checkbox.vue | 2 +- .../components/form-input/date-group.vue | 6 +- .../form-input/components/form-input/date.vue | 2 +- .../components/form-input/form-input.vue | 208 +++--------------- .../modules/my-datetime/my-datetime.vue | 17 +- .../components/form-input/modules/uploads.vue | 2 +- .../components/form-input/position.vue | 6 +- .../components/form-input/select-multi.vue | 12 +- .../components/form-input/select.vue | 7 +- .../components/form-input/video.vue | 4 +- 14 files changed, 66 insertions(+), 242 deletions(-) diff --git a/common/css/page.css b/common/css/page.css index 560502db..ff5361bd 100644 --- a/common/css/page.css +++ b/common/css/page.css @@ -568,6 +568,9 @@ button:before { .cr-blue-dark { color: #B3BFCB !important; } +.cr-gray { + color: gray !important; +} /** * 统一背景色 @@ -1420,8 +1423,4 @@ button[disabled].bg-grey { } .indicator_about_location .dot-item { margin: 0 6rpx; -} - -.popup-bottom .vue-ref { - background: #fff !important; } \ No newline at end of file diff --git a/manifest.json b/manifest.json index c8d9a6ec..444c50b2 100644 --- a/manifest.json +++ b/manifest.json @@ -186,19 +186,18 @@ } }, "__usePrivacyCheck__" : true, - "plugins" : { - // 腾讯地图路线规划插件(需要到小程序后台设置->第三方设置->插件管理里面添加【腾讯位置服务路线规划】插件,教程 https://mp.weixin.qq.com/wxopen/plugindevdoc?appid=wx50b5593e81dd937a) - // "routePlan" : { - // "version" : "1.0.19", - // "provider" : "wx50b5593e81dd937a" - // }, - // 直播(需要到小程序后台设置->第三方设置->插件管理里面添加【小程序直播组件】插件,教程 https://mp.weixin.qq.com/wxopen/pluginbasicprofile?action=intro&appid=wx2b03c6e691cd7370) - // "live-player-plugin" : { - // "version" : "1.3.5", - // "provider" : "wx2b03c6e691cd7370" - // } - } + "plugins" : {} }, + // 腾讯地图路线规划插件(需要到小程序后台设置->第三方设置->插件管理里面添加【腾讯位置服务路线规划】插件,教程 https://mp.weixin.qq.com/wxopen/plugindevdoc?appid=wx50b5593e81dd937a) + // "routePlan" : { + // "version" : "1.0.19", + // "provider" : "wx50b5593e81dd937a" + // }, + // 直播(需要到小程序后台设置->第三方设置->插件管理里面添加【小程序直播组件】插件,教程 https://mp.weixin.qq.com/wxopen/pluginbasicprofile?action=intro&appid=wx2b03c6e691cd7370) + // "live-player-plugin" : { + // "version" : "1.3.5", + // "provider" : "wx2b03c6e691cd7370" + // } "mp-alipay" : { "usingComponents" : true, "appid" : "2021001173639600" diff --git a/pages/diy/components/diy/video.vue b/pages/diy/components/diy/video.vue index c54cd00e..a519dded 100644 --- a/pages/diy/components/diy/video.vue +++ b/pages/diy/components/diy/video.vue @@ -4,10 +4,10 @@ - + - + diff --git a/pages/form-input/components/form-input/address.vue b/pages/form-input/components/form-input/address.vue index 33fcbd10..f04314d8 100644 --- a/pages/form-input/components/form-input/address.vue +++ b/pages/form-input/components/form-input/address.vue @@ -2,7 +2,7 @@ {{ province_name }}{{ city_name ? ' / ' + city_name : '' }}{{ county_name ? ' / ' + county_name : '' }} - {{ placeholder }} + {{ placeholder }} @@ -103,7 +103,7 @@ }); }, open_ragion() { - this.$emit('openRagion', this.propDataId, this.province_id, this.city_id, this.county_id); + this.$emit('openRegion', this.propDataId, this.province_id, this.city_id, this.county_id); }, data_check(val) { const { is_error = '0', error_text = '' } = get_format_checks(this.com_data, val, true, 'number'); @@ -124,10 +124,6 @@ .number-icon { color: #ccc; } -.placeholder { - color: #606266; - opacity: 0.6; -} .border-line { border-top: 2rpx solid #eee; margin: 10rpx 0; diff --git a/pages/form-input/components/form-input/checkbox.vue b/pages/form-input/components/form-input/checkbox.vue index 41b180ea..a7b6c82b 100644 --- a/pages/form-input/components/form-input/checkbox.vue +++ b/pages/form-input/components/form-input/checkbox.vue @@ -99,7 +99,7 @@ dialog_value: '', }); this.$refs.inputDialog.close(); - this.$emit('data_option_change', { list: custom_option_list, value: this.form_value, id: this.propDataId }); + this.$emit('dataOptionChange', { list: custom_option_list, value: this.form_value, id: this.propDataId }); } else { this.$refs.message.open(); } diff --git a/pages/form-input/components/form-input/date-group.vue b/pages/form-input/components/form-input/date-group.vue index 546fe28d..13e01fc9 100644 --- a/pages/form-input/components/form-input/date-group.vue +++ b/pages/form-input/components/form-input/date-group.vue @@ -2,7 +2,7 @@