cnf
2025-09-16 1dfbf152be9db7bc8c589a4d0bfba5df8d240585
pages/QC/SJ/detail.vue
@@ -1,126 +1,222 @@
<template>
  <view>
    <view class="form-container">
      <form :modelValue="formData">
        <view class="form-group">
          <label class="form-label">项目名称:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.projName"/>
        </view>
        <view class="form-group">
          <label class="form-label">质量要求:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.itemMod"/>
        </view>
        <view class="form-group">
          <label class="form-label">检验方法:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.inspectionMethod"/>
        </view>
        <view class="form-group">
          <label class="form-label">使用仪表:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.usingInstruments"/>
        </view>
        <view class="form-group">
          <label class="form-label">检验数:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.levelNum"/>
        </view>
        <view class="form-group">
          <label class="form-label">下限:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.minValue"/>
        </view>
        <view class="form-group">
          <label class="form-label">标准值:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.standardValue"/>
        </view>
        <view class="form-group">
          <label class="form-label">上限:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.maxValue"/>
        </view>
        <view class="form-group">
          <label class="form-label">更新人:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.updater"/>
        </view>
        <view class="form-group">
          <label class="form-label">更新时间:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.updateTime"/>
        </view>
        <view class="form-group">
          <label class="form-label">预览结果:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.result"/>
        </view>
        <view class="form-group">
          <label class="form-label">不合格描述:</label>
          <input class="form-input" disabled="true" type="text" v-model="formData.remarks"/>
        </view>
        <view class="form-group edit">
          <input class="form-input" style="color: red" disabled="true" type="text"
                 value="没有最大值和最小值时填写0(未通过检验)或1(通过检验)"/>
        </view>
        <view class="form-group edit">
          <label class="form-label">检测结果:</label>
          <input class="form-input" type="number" v-model="formData.fcheckResu"/>
        </view>
        <button type="primary" v-if="tableData.length < formData.levelNum" @click="submit">保存</button>
      </form>
  <view class="container">
    <!-- 头部 -->
    <view class="header">
      <view class="title">首检项目明细</view>
      <view class="order-number">首检单号: {{formData.billNo}}</view>
    </view>
    <view>
      <img v-if="isShowImg" :src="base64Image" style="width:100%" @click="previewImage"/>
    <!-- 标签栏 - 如果有多个检验项目可以切换 -->
    <view class="tabs" v-if="tabs && tabs.length > 1">
      <view v-for="(tab, index) in tabs" :key="index" class="tab" :class="{active: currentTab === index}"
        @tap="switchTab(index, tab.id)">
        {{ tab.projName }}
      </view>
    </view>
    <view class="list-container">
      <uni-table ref="table" border emptyText="暂无更多数据">
        <uni-tr>
          <uni-th align="center" style="color: #FFFFFF;background-color: lightskyblue;">编号</uni-th>
          <uni-th align="center" style="color: #FFFFFF;background-color: lightskyblue;">判定标识</uni-th>
          <uni-th align="center" style="color: #FFFFFF;background-color: lightskyblue;">检验结果</uni-th>
          <uni-th width="150" align="center" style="color: #FFFFFF;background-color: lightskyblue;">修改</uni-th>
        </uni-tr>
        <uni-tr v-for="(item, index) in tableData" :key="index">
          <uni-td align="center">
            {{ index + 1 }}
          </uni-td>
          <uni-td align="center">
            <input class="form-input" disabled="true" type="text" v-model="item.fstand"/>
          </uni-td>
          <uni-td align="center">
            <input class="form-input" disabled="true" type="text" v-model="item.fcheckResu"/>
          </uni-td>
          <uni-td>
            <view class="uni-group edit">
              <button type="warn" v-if="isNumber" @click="toDetail(item)">修改</button>
              <button type="warn" v-if="!isNumber" @click="numberEdit(item)">{{ editResult(item.fcheckResu) }}</button>
    <view class="tab-content">
      <!-- 基本信息 -->
      <view class="section">
        <view class="section-header">基本信息</view>
        <view class="section-body">
          <view class="info-grid">
            <view class="info-item">
              <view class="info-label">项目名称</view>
              <view class="info-value">{{ formData.projName }}</view>
            </view>
          </uni-td>
        </uni-tr>
      </uni-table>
    </view>
    <view class="plus-button">
      <button type="warn" @click="saveRemarks">添加不合格描述</button>
    </view>
    <view v-if="remarksPopup" class="overlay">
      <view class="popup">
        <h3>修改不合格描述</h3>
        <form>
          <view class="form-group">
            <label class="form-label">不合格描述:</label>
            <input class="form-input" type="text" v-model="remarks"/>
            <view class="info-item" v-if="formData.itemMod">
              <view class="info-label">质量要求</view>
              <view class="info-value">{{ formData.itemMod }}</view>
            </view>
            <view class="info-item" v-if="formData.inspectionMethod">
              <view class="info-label">检验方法</view>
              <view class="info-value">{{ formData.inspectionMethod }}</view>
            </view>
            <view class="info-item" v-if="formData.usingInstruments">
              <view class="info-label">使用仪表</view>
              <view class="info-value">{{ formData.usingInstruments }}</view>
            </view>
            <view class="info-item">
              <view class="info-label">检验数</view>
              <view class="info-value">{{ formData.levelNum }}</view>
            </view>
            <view class="info-item" v-if="formData.minValue">
              <view class="info-label">下限</view>
              <view class="info-value">{{ formData.minValue }}</view>
            </view>
            <view class="info-item" v-if="formData.standardValue">
              <view class="info-label">标准值</view>
              <view class="info-value">{{ formData.standardValue }}</view>
            </view>
            <view class="info-item" v-if="formData.maxValue">
              <view class="info-label">上限</view>
              <view class="info-value">{{ formData.maxValue }}</view>
            </view>
            <view class="info-item" v-if="formData.mnum">
              <view class="info-label">开穴总数</view>
              <view class="info-value">{{ formData.mnum }}</view>
            </view>
            <view class="info-item" v-if="formData.dnum">
              <view class="info-label">堵穴号</view>
              <view class="info-value">{{ formData.dnum }}</view>
            </view>
            <view class="info-item" v-if="formData.updater">
              <view class="info-label">更新人</view>
              <view class="info-value">{{ formData.updater }}</view>
            </view>
            <view class="info-item" v-if="formData.updateTime">
              <view class="info-label">更新时间</view>
              <view class="info-value">{{ formData.updateTime }}</view>
            </view>
          </view>
          <button type="warn" @click="editRemarks">修改</button>
          <button @click="remarksPopup = !remarksPopup">取消</button>
        </form>
        </view>
      </view>
      <!-- 规格要求 -->
      <view class="section" v-if="formData.specRequ">
        <view class="section-header">规格要求</view>
        <view class="section-body">
          <text class="spec-text">{{ formData.specRequ }}</text>
        </view>
      </view>
      <!-- 检验描述 -->
      <view class="section" v-if="formData.itemMod">
        <view class="section-header">检验描述</view>
        <view class="section-body">
          <text class="spec-text">{{ formData.itemMod }}</text>
        </view>
      </view>
      <!-- 检验结果 -->
      <view class="section">
        <view class="section-header">检验结果</view>
        <view class="section-body">
          <view class="info-grid">
            <view class="info-item" v-if="formData.result">
              <view class="info-label">预览结果</view>
              <view class="info-value">{{formData.result}}</view>
            </view>
          </view>
          <view v-if="formData.result != null" class="result-preview">
            <view class="info-label">预览结果</view>
            <view class="info-value">{{formData.result}}</view>
          </view>
          <view v-if="formData.remarks != null" class="result-ng">
            <view class="info-label">不合格描述</view>
            <view class="info-value danger">{{formData.remarks}}</view>
          </view>
        </view>
      </view>
      <!-- 结果录入 -->
      <view class="section">
        <view class="section-header">检验结果录入</view>
        <view class="section-body">
          <view class="input-group">
            <view class="input-wrapper">
              <button class="btn upload-btn" @tap="saveRemarks">
                <uni-icons type="compose" size="16" color="#fff"></uni-icons>
                不合格描述
              </button>
              <input v-if="!isAllCompleted"
                v-model="formData.fcheckResu"
                type="text"
                class="result-input"
                placeholder="没有最大值和最小值时填写0(未通过检验)或1(通过检验)"
                placeholder-class="placeholder" />
              <button v-if="!isAllCompleted"
                style="margin: 0px;background-color: #3498db;color:#ffffff ;" class="btn primary-btn"
                @tap="submit">保存结果</button>
            </view>
          </view>
        </view>
      </view>
      <!-- 结果表格 -->
      <view v-if="formData.levelNum > 0" class="table-container">
        <view class="table-header">
          <view class="th">编号</view>
          <view class="th">穴号</view>
          <view class="th">记录值</view>
          <view class="th">检验结果<i style="color: rgb(0 212 68);"
              v-if="isAllCompleted">(输入已完成)</i></view>
          <view class="th">操作</view>
        </view>
        <view v-for="(item, index) in displayTableData" :key="index" class="table-row">
          <view class="td">{{ index + 1 }}</view>
          <view class="td">{{ getHoleNumber(index) }}</view>
          <view class="td">
            <view class="record-value">{{ getRecordValue(item, index) }}</view>
          </view>
          <view class="td">
            <view :class="['result-badge', getResultClass(item.fcheckResu, item.fstand, index)]">
              {{ getResultText(item.fcheckResu, item.fstand, index) }}
            </view>
          </view>
          <view class="td">
            <button v-if="!isHoleBlocked(index) && item.fcheckResu && !isNumber" class="btn danger-btn" @tap="numberEdit(item)">
              {{ editResult(item.fcheckResu) }}
            </button>
            <button v-if="!isHoleBlocked(index) && item.fcheckResu && isNumber" class="btn danger-btn" @tap="toDetail(item)">
              修改
            </button>
            <span v-if="isHoleBlocked(index)" class="blocked-text">已堵穴</span>
            <span v-else-if="!item.fcheckResu" class="no-data-text">待填写</span>
          </view>
        </view>
      </view>
      <!-- 图片预览 -->
      <view v-if="isShowImg" class="section">
        <view class="section-header">相关图片</view>
        <view class="section-body">
          <view class="image-preview" @click="previewImage">
            <image :src="base64Image" mode="aspectFit" class="preview-image"/>
          </view>
        </view>
      </view>
    </view>
    <!-- 修改不合格描述弹出框 -->
    <view v-if="remarksPopup" class="overlay">
      <view class="popup">
        <view class="popup-header">
          <h3>修改不合格描述</h3>
        </view>
        <view class="popup-content">
          <view class="input-group">
            <view class="input-label">不合格描述:</view>
            <input class="input-field" type="text" v-model="remarks" placeholder="请输入不合格描述"/>
          </view>
        </view>
        <view class="popup-actions">
          <button class="action-btn primary" @click="editRemarks">修改</button>
          <button class="action-btn secondary" @click="remarksPopup = !remarksPopup">取消</button>
        </view>
      </view>
    </view>
    <!-- 修改检验结果弹出框 -->
    <view v-if="showPopup" class="overlay">
      <view class="popup">
        <h3>修改检验结果</h3>
        <form :modelValue="editData">
          <view class="form-group">
            <label class="form-label">检验结果:</label>
            <input class="form-input" type="text" v-model="editData.fcheckResu"/>
        <view class="popup-header">
          <h3>修改检验结果</h3>
        </view>
        <view class="popup-content">
          <view class="input-group">
            <view class="input-label">检验结果:</view>
            <input class="input-field" type="text" v-model="editData.fcheckResu" placeholder="请输入检验结果"/>
          </view>
          <button type="warn" @click="eidt">修改</button>
          <button @click="showPopup = !showPopup">取消</button>
        </form>
        </view>
        <view class="popup-actions">
          <button class="action-btn primary" @click="eidt">修改</button>
          <button class="action-btn secondary" @click="showPopup = !showPopup">取消</button>
        </view>
      </view>
    </view>
  </view>
@@ -143,9 +239,172 @@
      isShowImg: false,
      remarks: "",
      remarksPopup: false,
      // ===== 新增LLJ样式相关数据 =====
      currentTab: 0,
      tabs: []
    }
  },
  computed: {
    // 根据穴号信息生成完整的显示数据
    displayTableData() {
      const result = [];
      // 如果有穴号信息,使用穴号信息生成数据
      if (this.formData.holeNumbers && this.formData.holeNumbers.length > 0) {
        this.formData.holeNumbers.forEach((holeInfo, index) => {
          // 查找是否有对应的实际数据
          const actualData = this.tableData.find(item => {
            return this.tableData.indexOf(item) === index;
          });
          if (actualData) {
            // 如果有实际数据,使用实际数据
            result.push({
              ...actualData,
              index: index,
              holeInfo: holeInfo
            });
          } else {
            // 如果没有实际数据,创建空记录
            result.push({
              id: null,
              fcheckResu: holeInfo.isBlocked ? "/" : null,
              fstand: holeInfo.isBlocked ? "/" : null,
              index: index,
              pid: this.id,
              gid: this.gid,
              holeInfo: holeInfo
            });
          }
        });
      } else {
        // 如果没有穴号信息,使用原来的逻辑
        const levelNum = this.formData.levelNum || 0;
        for (let i = 0; i < levelNum; i++) {
          const actualData = this.tableData.find(item => {
            return this.tableData.indexOf(item) === i;
          });
          if (actualData) {
            result.push({
              ...actualData,
              index: i
            });
          } else {
            result.push({
              id: null,
              fcheckResu: null,
              fstand: null,
              index: i,
              pid: this.id,
              gid: this.gid
            });
          }
        }
      }
      return result;
    },
    // 判断是否所有检验都已完成
    isAllCompleted() {
      return this.displayTableData.every(item => item.fcheckResu !== null && item.fcheckResu !== undefined);
    }
  },
  methods: {
    getResultClass(fcheckResu, fstand, index) {
      // 检查是否被堵穴
      if (this.isHoleBlocked(index)) {
        return 'BLOCKED';
      }
      // 如果没有记录值,显示未检验样式
      if (!fcheckResu) {
        return 'PENDING';
      }
      // 根据检验结果和判定标识确定样式类
      if (fstand === '√' || fcheckResu === 'OK') {
        return 'OK';
      } else if (fstand === '×' || fcheckResu === 'NG') {
        return 'NG';
      } else {
        // 对于数字结果,根据fstand判断
        return fstand === '√' ? 'OK' : 'NG';
      }
    },
    getResultText(fcheckResu, fstand, index) {
      // 检查是否被堵穴
      if (this.isHoleBlocked(index)) {
        return '/';
      }
      // 如果没有记录值,显示未检验
      if (!fcheckResu) {
        return '未检验';
      }
      // 根据记录值判断检验结果是否OK
      if (fstand === '√') {
        return 'OK';
      } else if (fstand === '×') {
        return 'NG';
      } else {
        // 如果没有fstand,根据fcheckResu的值判断
        if (fcheckResu === '1' || fcheckResu === 1) {
          return 'OK';
        } else if (fcheckResu === '0' || fcheckResu === 0) {
          return 'NG';
        } else {
          // 对于有上下限的数值检验,根据fcheckResu是否在范围内判断
          if (this.formData.maxValue && this.formData.minValue) {
            const value = parseFloat(fcheckResu);
            if (!isNaN(value)) {
              if (value >= this.formData.minValue && value <= this.formData.maxValue) {
                return 'OK';
              } else {
                return 'NG';
              }
            }
          }
          return fcheckResu || '未检测';
        }
      }
    },
    // ===== 新增标签切换方法 =====
    switchTab(index, id) {
      this.currentTab = index;
      // 如果需要切换检验项目,可以在这里添加逻辑
      // this.gid = id;
      // this.refreshResult();
    },
    // ===== 穴号相关方法 =====
    getHoleNumber(index) {
      const item = this.displayTableData[index];
      if (item && item.holeInfo) {
        return item.holeInfo.holeNumber;
      }
      return index + 1;
    },
    getRecordValue(item, index) {
      if (this.isHoleBlocked(index)) {
        return '/';
      }
      return item.fcheckResu || '无';
    },
    isHoleBlocked(index) {
      const item = this.displayTableData[index];
      if (item && item.holeInfo) {
        return item.holeInfo.isBlocked;
      }
      return false;
    },
    previewImage() {
      uni.previewImage({
@@ -190,7 +449,7 @@
          this.$showMessage("无标准值时,检验结果只能为0或1!");
          return;
        }
        count = count - this.tableData.length;
        count = 1; // 每次只填写一个记录
      }
      this.formData.updater = this.$loginInfo.account;
@@ -365,50 +624,290 @@
}
</script>
<style>
<style lang="scss">
$primary-color: #409EFF;
$success-color: #67C23A;
$danger-color: #F56C6C;
$border-color: #DCDFE6;
$bg-color: #f5f7fa;
.form-group {
  display: flex;
  align-items: center;
  border: 1px solid #c9c9c9;
  background-color: #d4d4d4;
.container {
  padding: 20px;
  background-color: #fff;
}
.form-label {
  margin-bottom: 0;
  padding: 5px;
}
.header {
  padding: 20px;
  border-bottom: 1px solid $border-color;
  background: linear-gradient(90deg, #f0f7ff, #e1f0ff);
.form-input {
  flex: 1;
  margin-bottom: 0;
  padding: 5px;
}
  .title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
  }
/* 默认样式 */
.list-container {
  height: calc(100vh - 750px);
  /* 设置列表容器的高度为剩余空间,并减去表单容器的高度 */
  overflow-y: auto;
  /* 允许列表容器垂直滚动 */
  padding: 10px;
  /* 可选:添加一些内边距,使列表内容更美观 */
}
/* 在小屏幕设备上,重置高度为适应屏幕 */
@media (max-width: 768px) {
  .list-container {
    height: calc(100vh - 485px);
    /* 适当调整高度 */
  .order-number {
    color: #666;
    font-size: 14px;
  }
}
.form-container {
  /* 设置表单容器的高度,使其可以滚动 */
  overflow-y: auto;
  /* 允许表单容器垂直滚动 */
  padding: 10px;
  /* 可选:添加一些内边距,使表单内容更美观 */
.tabs {
  display: flex;
  background-color: $bg-color;
  border-bottom: 1px solid $border-color;
  .tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-right: 1px solid $border-color;
    color: #666;
    transition: all 0.3s;
    &:last-child {
      border-right: none;
    }
    &.active {
      background-color: #fff;
      color: $primary-color;
      font-weight: bold;
      position: relative;
      &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background-color: $primary-color;
      }
    }
  }
}
.section {
  margin: 20px 0;
  border: 1px solid $border-color;
  border-radius: 4px;
  &-header {
    padding: 12px 16px;
    background-color: $bg-color;
    border-bottom: 1px solid $border-color;
    font-weight: bold;
  }
  &-body {
    padding: 16px;
  }
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  .info-item {
    margin-bottom: 12px;
    .info-label {
      color: #909399;
      font-size: 14px;
      margin-bottom: 4px;
    }
    .info-value {
      color: #333;
      font-weight: 500;
    }
  }
}
.input-group {
  margin: 16px 0;
  .input-wrapper {
    display: flex;
    gap: 12px;
    .result-input {
      flex: 1;
      height: 45px;
      padding: 0 12px;
      border: 1px solid $border-color;
      border-radius: 4px;
      font-size: 14px;
    }
    .upload-btn {
      background-color: #909399;
      color: #fff;
      padding: 0 10px;
      margin: 0;
    }
  }
}
.table-container {
  border: 1px solid $border-color;
  border-radius: 4px;
  margin-top: 20px;
  .table-header {
    display: flex;
    background-color: $bg-color;
    border-bottom: 1px solid $border-color;
    .th {
      flex: 1;
      padding: 12px;
      font-weight: bold;
    }
  }
  .table-row {
    display: flex;
    border-bottom: 1px solid $border-color;
    padding: 12px;
    &:last-child {
      border-bottom: none;
    }
    .td {
      flex: 1;
      display: flex;
      align-items: center;
    }
  }
}
.result-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  &.OK {
    background-color: rgba($success-color, 0.1);
    color: $success-color;
  }
  &.NG {
    background-color: rgba($danger-color, 0.1);
    color: $danger-color;
  }
  &.PENDING {
    background-color: rgba(#E6A23C, 0.1);
    color: #E6A23C;
  }
  &.BLOCKED {
    background-color: rgba(#909399, 0.1);
    color: #909399;
  }
}
.record-value {
  font-family: 'Courier New', monospace;
  font-weight: 500;
  color: #333;
  padding: 2px 4px;
  background-color: #f8f9fa;
  border-radius: 3px;
  border: 1px solid #e9ecef;
}
.no-data-text {
  color: #E6A23C;
  font-size: 12px;
  font-style: italic;
}
.blocked-text {
  color: #909399;
  font-size: 12px;
  font-style: italic;
}
.spec-text {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.result-preview {
  margin: 16px 0;
  padding: 12px;
  background-color: #f8f9fa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  .info-label {
    color: #909399;
    font-size: 14px;
    min-width: 80px;
  }
  .info-value {
    color: #333;
    font-weight: 500;
  }
}
.result-ng {
  margin: 16px 0;
  padding: 12px;
  background-color: rgba($danger-color, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  .info-label {
    color: $danger-color;
    font-size: 14px;
    min-width: 80px;
  }
  .info-value {
    color: $danger-color;
    font-weight: 500;
  }
}
.action-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  .btn {
    padding: 8px 20px;
    border-radius: 4px;
    &.primary-btn {
      background-color: $primary-color;
      color: #fff;
    }
    &.cancel-btn {
      background-color: #909399;
      color: #fff;
    }
  }
}
.danger {
  color: $danger-color;
}
.overlay {
@@ -421,6 +920,7 @@
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup {
@@ -428,11 +928,101 @@
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 68vw; /* 设置宽度为视口宽度的80% */
  height: 25vh; /* 设置高度为视口高度的80% */
  width: 68vw;
  height: 25vh;
  border-radius: 8px;
}
.edit {
  background-color: white;
.popup-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
  }
}
.popup-content {
  padding: 20px;
  .input-group {
    margin-bottom: 15px;
    .input-label {
      font-size: 14px;
      color: #7f8c8d;
      margin-right: 10px;
      min-width: 80px;
    }
    .input-field {
      flex: 1;
      padding: 8px 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      background-color: white;
    }
  }
}
.popup-actions {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  .action-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    &.primary {
      background-color: #3498db;
      color: white;
    }
    &.secondary {
      background-color: #95a5a6;
      color: white;
    }
  }
}
/* 图片预览 */
.image-preview {
  text-align: center;
  cursor: pointer;
}
.preview-image {
  max-width: 100%;
  max-height: 300px;
  border-radius: 4px;
  border: 1px solid #ddd;
}
/* 响应式设计 */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .input-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .input-label {
    margin-bottom: 5px;
  }
}
</style>