|
|
@ -7,34 +7,20 @@ |
|
|
|
</view> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
<script setup> |
|
|
|
import receiveNumber from '@/mycomponents/receive/receiveNumber.vue' |
|
|
|
import receiveStatus from '@/mycomponents/receive/receiveStatus.vue' |
|
|
|
export default { |
|
|
|
components: { |
|
|
|
receiveNumber, |
|
|
|
receiveStatus |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
|
|
|
|
}; |
|
|
|
}, |
|
|
|
watch: {}, |
|
|
|
|
|
|
|
props: { |
|
|
|
const props = defineProps({ |
|
|
|
dataContent: { |
|
|
|
type: Object, |
|
|
|
default: {} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
methods: { |
|
|
|
openDetail(item) { |
|
|
|
this.$emit("openDetail", this.dataContent); |
|
|
|
}, |
|
|
|
} |
|
|
|
}) |
|
|
|
const openDetail = (item)=>{ |
|
|
|
emit("openDetail", dataContent.value); |
|
|
|
} |
|
|
|
const emit = defineEmits(['openDetail']) |
|
|
|
</script> |
|
|
|
|
|
|
|
<style lang="scss"> |
|
|
|