liukangdong
2024-06-03 86005dc980106809704a7df9ecf201c8ef3db9f7
h5/pages/staff/meetingDetail.vue
@@ -47,13 +47,25 @@
</template>
<script>
import { meetingDetail } from '@/api'
   export default {
      data() {
         return {
            param: {}
            param: {},
            detail: {}
         };
      },
      onLoad(option) {
         this.id = option.id
         this.getDetail()
      },
      methods: {
         getDetail() {
            const { id } = this
            meetingDetail({id}).then(res => {
               this.detail = res.data
            })
         },
         handleSub() {
            
         }