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() {
            
         }
@@ -137,6 +149,7 @@
      left: 0;
      width: 100%;
      background-color: #fff;
      padding: 0 30rpx;
      .btn {
         width: 336rpx;
         height: 88rpx;
@@ -150,9 +163,9 @@
      }
      .agree {
         background: #279BAA;
         background: $uni-color-primary;
         color: #fff;
         border: 1rpx solid #279BAA;
         border: 1rpx solid $uni-color-primary;
      }
   }
.empty{