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.
51 lines
886 B
51 lines
886 B
<template>
|
|
<view class="">
|
|
<uni-popup ref="popup">
|
|
<detail-common-info :dataContent="dataContent" @onClose="closePopup">
|
|
<view class="">
|
|
<view class="uni-flex uni-column">
|
|
<view class="item">
|
|
<text class="item_title">原因 : </text>
|
|
<text class="text_wrap">{{dataContent.Reason}} </text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</detail-common-info>
|
|
</uni-popup>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import detailCommonInfo from '@/mycomponents/detail/detailCommonInfo.vue'
|
|
export default {
|
|
components: {
|
|
detailCommonInfo
|
|
},
|
|
data() {
|
|
return {
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
}
|
|
}
|
|
},
|
|
|
|
mounted() {},
|
|
props: {},
|
|
|
|
methods: {
|
|
openPopup(val) {
|
|
this.dataContent = val;
|
|
this.$refs.popup.open('bottom')
|
|
},
|
|
closePopup() {
|
|
this.$refs.popup.close()
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
|
|
</style>
|
|
|