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 @@
-
+
{{ com_data.start_placeholder }}-
{{ com_data.end_placeholder }}
@@ -176,10 +176,6 @@
left: 0;
width: 0;
}
-.datetime-placeholder {
- color: #606266;
- opacity: 0.6;
-}
.datetime-value {
color: #606266;
line-height: 1.5;
diff --git a/pages/form-input/components/form-input/date.vue b/pages/form-input/components/form-input/date.vue
index b9c2a0d3..21773213 100644
--- a/pages/form-input/components/form-input/date.vue
+++ b/pages/form-input/components/form-input/date.vue
@@ -2,7 +2,7 @@
- {{ com_data.placeholder }}
+ {{ com_data.placeholder }}
{{ form_value }}
diff --git a/pages/form-input/components/form-input/form-input.vue b/pages/form-input/components/form-input/form-input.vue
index 3c12c3fb..cc9d5f51 100644
--- a/pages/form-input/components/form-input/form-input.vue
+++ b/pages/form-input/components/form-input/form-input.vue
@@ -1,6 +1,6 @@
-
+
@@ -8,109 +8,26 @@
{{ form_name }}
-
-
-
-
-
- {{ item.com_data.title }}*
-
-
-
-
-
-
-
- {{ item.com_data.title }}*
-
-
-
-
-
-
-
-
- {{ item.com_data.title }}*
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ item.com_data.common_config.error_text }}
-
-
-
+
+
@@ -136,53 +53,13 @@