1 changed files with 34 additions and 0 deletions
@ -0,0 +1,34 @@ |
|||
<template> |
|||
<div> |
|||
<fuwu-list :serviceCategoryKey="serviceCategoryKey"></fuwu-list> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import fuwuList from "./fuwuList"; |
|||
|
|||
export default { |
|||
components: { fuwuList }, |
|||
|
|||
data() { |
|||
return { |
|||
serviceCategoryKey: "08", |
|||
}; |
|||
}, |
|||
computed: {}, |
|||
watch: { |
|||
// "formData.serviceTimeEnd": function (val) { |
|||
// if (val && val != '') { |
|||
// let arrayTemp = val.split(' ') |
|||
// this.formData.serviceTimeEnd = arrayTemp[0] + ' 23:59:59' |
|||
// } |
|||
// }, |
|||
}, |
|||
mounted() {}, |
|||
methods: {}, |
|||
|
|||
props: {}, |
|||
}; |
|||
</script> |
|||
|
|||
<style lang="scss" scoped></style> |
Loading…
Reference in new issue