You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
666 B

<template>
<div>
<xy-dialog :is-show.sync="isShow" title="商户简介" ok-text="" @on-ok="submit">
</xy-dialog>
</div>
</template>
<script>
import {
save
} from "@/api/order"
import {
parseTime
} from '@/utils'
export default {
props: {
id: Number,
isShow: {
type: Boolean,
default: false
}
},
data() {
return {
}
},
methods: {
submit() {
}
},
watch: {
isShow(newVal) {
if (newVal) {
}
}
}
}
</script>
<style scoped lang="scss">
</style>