Browse Source

修改 bug

master
王泽彦 8 months ago
parent
commit
6536d9da28
  1. 2
      uniapp/components/gift-record-card/gift-record-card.vue
  2. 5
      uniapp/components/student-edit-popup/student-edit-popup.less
  3. 3
      uniapp/components/student-edit-popup/student-edit-popup.vue

2
uniapp/components/gift-record-card/gift-record-card.vue

@ -3,7 +3,7 @@
<view class="gift-record-card"> <view class="gift-record-card">
<view class="gift-header"> <view class="gift-header">
<view class="gift-name">{{ record.gift_name }}</view> <view class="gift-name">{{ record.gift_name }}</view>
<view class="gift-status" :class="getStatusClass(record.gift_status)"> <view :class="['gift-status',getStatusClass(record.gift_status)]">
{{ record.gift_status_text }} {{ record.gift_status_text }}
</view> </view>
</view> </view>

5
uniapp/components/student-edit-popup/student-edit-popup.less

@ -1,3 +1,8 @@
// 学生信息编辑弹窗包装器样式
.student-edit-popup-wrapper {
// 包装器不添加任何样式,仅作为Vue 2单根元素要求的容器
}
// 学生信息编辑弹窗样式 // 学生信息编辑弹窗样式
.student-edit-popup { .student-edit-popup {
width: 90vw; width: 90vw;

3
uniapp/components/student-edit-popup/student-edit-popup.vue

@ -1,6 +1,7 @@
<!--学生信息编辑弹窗组件--> <!--学生信息编辑弹窗组件-->
<template> <template>
<view> <view class="student-edit-popup-wrapper">
<!-- 主编辑弹窗 -->
<uni-popup ref="popup" type="center"> <uni-popup ref="popup" type="center">
<view class="popup-container student-edit-popup"> <view class="popup-container student-edit-popup">
<view class="popup-header"> <view class="popup-header">

Loading…
Cancel
Save