|
@@ -47,6 +47,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+ import moment from "moment"
|
|
|
import pick from 'lodash.pick'
|
|
|
import { httpAction } from '@/api/manage'
|
|
|
import { duplicateCheck } from '@/api/api'
|
|
@@ -140,7 +141,10 @@ import { queryIdTree } from '@/api/api'
|
|
|
'endDate',
|
|
|
'demo'
|
|
|
))
|
|
|
+ this.form.setFieldsValue({beginDate:this.model.beginDate?moment(this.model.beginDate):null})
|
|
|
+ this.form.setFieldsValue({endDate:this.model.endDate?moment(this.model.endDate):null})
|
|
|
})
|
|
|
+
|
|
|
},
|
|
|
close() {
|
|
|
this.$emit('close')
|