会员项目调整

This commit is contained in:
fengachen
2021-09-06 15:23:08 +08:00
parent 59e8de2a87
commit d7c478c6fc
7 changed files with 74 additions and 47 deletions
+4 -1
View File
@@ -2,6 +2,7 @@
<div>
<!--YYYY-MM-DD HH:mm:ss-->
<a-date-picker
style="width: 100%"
v-if="showType === 'time'"
dropdownClassName="j-date-picker"
:disabled="disabled || readOnly"
@@ -16,6 +17,7 @@
</a-date-picker>
<!--YYYY-MM-DD-->
<a-date-picker
style="width: 100%"
v-if="showType === 'day'"
dropdownClassName="j-date-picker"
:disabled="disabled || readOnly"
@@ -30,6 +32,7 @@
</a-date-picker>
<!--YYYY-MM-->
<a-month-picker
style="width: 100%"
v-if="showType === 'month'"
:placeholder="placeholder"
:value="momVal"
@@ -41,6 +44,7 @@
</a-month-picker>
<!--YYYY-->
<a-date-picker
style="width: 100%"
v-if="showType === 'year'"
:placeholder="placeholder"
mode="year"
@@ -107,7 +111,6 @@
computed: {
//透传给下级组件的事件,需要排除本组件使用的change事件
childListeners() {
const vm = this
let result = Object.assign({},
this.$listeners,
)