emis-sapp/components/buns-goodsize-sheet/buns-goodsize-sheet.vue
2023-12-18 00:16:18 +08:00

60 lines
814 B
Vue

<template>
<tpx-dialog :show="show" title="填写预估重量体积" @onClose="handleCloseModal()">
<view class="shet-cont">
</view>
</tpx-dialog>
</template>
<script>
export default {
// computed: {
// filDataList() {
// return []
// },
// },
props: {
show: {
default () {
return false
}
},
value: {
default () {
return {}
}
}
},
data() {
return {
keyword: ''
}
},
created() {
},
onHide() {
},
destroyed() {},
methods: {
handleCloseModal() {
this.$emit('update:show', false)
},
handleSubmitValue(val) {
this.$emit('onSure', {})
this.$emit('update:value', {})
this.handleCloseModal()
}
}
}
</script>
<style scoped lang="scss">
.shet-cont{
padding: 10rpx 0 30rpx 0;
}
</style>