This commit is contained in:
parent
4845378029
commit
c542ebecd0
|
@ -36,7 +36,7 @@ export default {
|
|||
width: "160px",
|
||||
dateArr: null||[],
|
||||
date_picker: false,
|
||||
mousetrue: true,
|
||||
mousetrue: false,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
|
@ -193,7 +193,8 @@ export default {
|
|||
});
|
||||
},
|
||||
iconClass() {
|
||||
return this.date_picker && this.mousetrue
|
||||
|
||||
return this.mousetrue
|
||||
? "ag-icon-prefix-hide"
|
||||
: "ag-icon-prefix-show";
|
||||
},
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<div>
|
||||
<el-button type="success" @click="abb = true">点击打开 Dialog</el-button>
|
||||
<ag-dialog :visible.sync="abb"> </ag-dialog>
|
||||
<ag-datePicker v-model="date_value" :showTime="true" :range="false" @change="onPicker">
|
||||
<ag-datePicker v-model="date_value" :showTime="true" :range="true" @change="onPicker">
|
||||
</ag-datePicker>
|
||||
<ag-input value="value"> </ag-input>
|
||||
<ag-select :options="a_options" v-model="value">
|
||||
|
|
Loading…
Reference in New Issue