diff --git a/src/components/scDatePicker/index.vue b/src/components/scDatePicker/index.vue
index 3763996..93741a8 100644
--- a/src/components/scDatePicker/index.vue
+++ b/src/components/scDatePicker/index.vue
@@ -8,7 +8,10 @@
-
+
@@ -37,6 +40,7 @@ export default {
data(){
return{
localDatePicker:[],
+ defaultTime:[new Date(2000, 1, 1, 0, 0, 0),new Date(2000, 1, 1, 23, 59, 59)]
}
},
mounted() {
diff --git a/src/components/scInput/index.vue b/src/components/scInput/index.vue
new file mode 100644
index 0000000..d99b25d
--- /dev/null
+++ b/src/components/scInput/index.vue
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/scMultipleSelect/index.vue b/src/components/scMultipleSelect/index.vue
index 45af96b..f0ef422 100644
--- a/src/components/scMultipleSelect/index.vue
+++ b/src/components/scMultipleSelect/index.vue
@@ -18,7 +18,7 @@
export default {
name: "index",
props:{
- select_params: {
+ activation_select: {
type: Object,
default: () => ({ operator: "in", value: [] })
},
@@ -26,7 +26,7 @@ export default {
placeholder:{type:String, default:"请选择"},
},
watch:{
- select_params:{
+ activation_select:{
handler(val){
if(!val || val.value.length == 0){
this.localData = [];
@@ -52,8 +52,8 @@ export default {
this.emitActivationSelect();
},
emitActivationSelect() {
- this.$emit('update:select_params', {
- operator: this.select_params.operator,
+ this.$emit('update:activation_select', {
+ operator: this.activation_select.operator,
value: this.localData? this.localData:[]
});
}
diff --git a/src/components/scSearch/index.vue b/src/components/scSearch/index.vue
new file mode 100644
index 0000000..af9d6b7
--- /dev/null
+++ b/src/components/scSearch/index.vue
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/layout/index.vue b/src/layout/index.vue
index 66a1734..696dd13 100644
--- a/src/layout/index.vue
+++ b/src/layout/index.vue
@@ -55,8 +55,8 @@