spring
7 小时以前 4b7cf12b4654c27ce84341261ab2c9832ce323f9
src/pages/equipmentManagement/repair/add.vue
@@ -14,17 +14,22 @@
        <u-form-item label="设备名称"
                     prop="deviceLedgerId"
                     required
                     border-bottom>
          <u-input v-model="deviceNameText"
                   placeholder="请选择设备名称"
                   @click="showDevicePicker"
                   clearable
                   readonly="" />
          <template #right>
            <u-icon name="scan"
                    @click="startScan"
                    class="scan-icon" />
          </template>
                     border-bottom
                     class="device-name-form-item">
          <view class="device-picker-wrap">
            <picker mode="selector"
                    class="device-picker-full"
                    :range="deviceOptions"
                    range-key="deviceName"
                    :value="deviceIndex"
                    @change="onDevicePickerChange">
              <view class="picker-input-row">
                <text class="picker-input-text"
                      :class="{ placeholder: !deviceNameText }">{{ deviceNameText || "请选择设备名称" }}</text>
                <view class="picker-input-arrow"><u-icon name="arrow-right" /></view>
              </view>
            </picker>
          </view>
        </u-form-item>
        <u-form-item label="规格型号"
                     prop="deviceModel"
@@ -48,7 +53,7 @@
          </template>
        </u-form-item>
        <u-form-item label="报修状态"
                     prop="repairTime"
                     prop="status"
                     required
                     border-bottom>
          <u-input v-model="repairStatusText"
@@ -80,6 +85,53 @@
                      count
                      maxlength="200" />
        </u-form-item>
        <view class="simple-upload-area">
            <view class="upload-buttons">
              <u-button type="primary"
                        @click="chooseRepairMedia"
                        :loading="uploading"
                        :disabled="repairFileList.length >= uploadConfig.limit"
                        :customStyle="{ marginRight: '10px', flex: 1 }">
                <u-icon name="camera"
                        size="18"
                        color="#fff"
                        style="margin-right: 5px;"></u-icon>
                {{ uploading ? "上传中..." : "拍照" }}
              </u-button>
            </view>
            <view v-if="uploading"
                  class="upload-progress">
              <u-line-progress :percentage="uploadProgress"
                               :showText="true"
                               activeColor="#409eff"></u-line-progress>
            </view>
            <view v-if="repairFileList.length > 0"
                  class="file-list">
              <view v-for="(file, index) in repairFileList"
                    :key="index"
                    class="file-item">
                <view class="file-preview-container">
                  <view class="delete-btn"
                        @click="removeRepairFile(index)">
                    <u-icon name="close"
                            size="12"
                            color="#fff"></u-icon>
                  </view>
                  <image :src="file.url || file.tempFilePath || file.path || file.downloadUrl"
                         class="file-preview"
                         mode="aspectFill" />
                </view>
                <view class="file-info">
                  <text class="file-name">{{ file.bucketFilename || file.name || "图片" }}</text>
                  <text class="file-size">{{ formatFileSize(file.size) }}</text>
                </view>
              </view>
            </view>
            <view v-if="repairFileList.length === 0"
                  class="empty-state">
              <text>请选择要上传的现场照片</text>
            </view>
          </view>
      </u-cell-group>
      <!-- 提交按钮 -->
      <view class="footer-btns">
@@ -91,12 +143,6 @@
                  :loading="loading">保存</u-button>
      </view>
    </u-form>
    <!-- 设备选择器 -->
    <up-action-sheet :show="showDevice"
                     :actions="deviceActionList"
                     title="选择设备名称"
                     @select="onDeviceSelect"
                     @close="showDevice = false" />
    <!-- 日期选择器 -->
    <up-datetime-picker :show="showDate"
                        v-model="pickerDateValue"
@@ -107,7 +153,7 @@
</template>
<script setup>
  import { ref, computed, onMounted, onUnmounted } from "vue";
  import { ref, computed, onMounted } from "vue";
  import { onShow } from "@dcloudio/uni-app";
  import PageHeader from "@/components/PageHeader.vue";
  import { getDeviceLedger } from "@/api/equipmentManagement/ledger";
@@ -116,6 +162,8 @@
    editRepair,
    getRepairById,
  } from "@/api/equipmentManagement/repair";
  import config from "@/config";
  import { getToken } from "@/utils/auth";
  import dayjs from "dayjs";
  import { formatDateToYMD } from "@/utils/ruoyi";
  const showToast = message => {
@@ -133,23 +181,28 @@
  const formRef = ref(null);
  const operationType = ref("add");
  const loading = ref(false);
  const showDevice = ref(false);
  const showDate = ref(false);
  const pickerDateValue = ref(Date.now());
  // 上传配置(与巡检一致)
  const uploadConfig = {
    action: "/file/upload",
    limit: 10,
  };
  const uploadFileUrl = computed(() => config.baseUrl + uploadConfig.action);
  const repairFileList = ref([]);
  const uploading = ref(false);
  const uploadProgress = ref(0);
  // 设备选项
  const deviceOptions = ref([]);
  const deviceNameText = ref("");
  const deviceActionList = computed(() => {
    return deviceOptions.value.map(item => ({
      name: item.deviceName,
      value: item.id,
    }));
  const deviceIndex = computed(() => {
    const id = form.value.deviceLedgerId;
    if (id == null || !deviceOptions.value.length) return 0;
    const idx = deviceOptions.value.findIndex(item => item.id === id || item.id == id);
    return idx >= 0 ? idx : 0;
  });
  // 扫码相关状态
  const isScanning = ref(false);
  const scanTimer = ref(null);
  // 表单验证规则
  const formRules = {
@@ -158,6 +211,9 @@
    ],
    repairTime: [
      { required: true, trigger: "change", message: "请选择报修日期" },
    ],
    status: [
      { required: true, trigger: "change", message: "请选择报修状态" },
    ],
    repairName: [{ required: true, trigger: "blur", message: "请输入报修人" }],
    remark: [{ required: true, trigger: "blur", message: "请输入故障现象" }],
@@ -168,6 +224,7 @@
    deviceLedgerId: undefined, // 设备ID
    deviceModel: undefined, // 规格型号
    repairTime: dayjs().format("YYYY-MM-DD"), // 报修日期
    status: undefined, // 报修状态
    repairName: undefined, // 报修人
    remark: undefined, // 故障现象
  });
@@ -220,6 +277,7 @@
          form.value.deviceLedgerId = data.deviceLedgerId;
          form.value.deviceModel = data.deviceModel;
          form.value.repairTime = dayjs(data.repairTime).format("YYYY-MM-DD");
          form.value.status = data.status;
          form.value.repairName = data.repairName;
          form.value.remark = data.remark;
          repairStatusText.value =
@@ -232,6 +290,15 @@
          if (device) {
            deviceNameText.value = device.deviceName;
          }
          // 回显附件列表(后端返回 fileList 时)
          const list = data.fileList || data.commonFileList || [];
          repairFileList.value = (Array.isArray(list) ? list : []).map(f => ({
            url: f.url || f.downloadUrl,
            name: f.bucketFilename || f.originalFilename || f.name,
            bucketFilename: f.bucketFilename || f.originalFilename || f.name,
            size: f.size || f.byteSize,
            uploadResponse: f,
          }));
        }
      } catch (e) {
        showToast("获取详情失败");
@@ -242,77 +309,136 @@
    }
  };
  // 扫描二维码功能
  const startScan = () => {
    if (isScanning.value) {
      showToast("正在扫描中,请稍候...");
  // 下拉框选择设备
  const onDevicePickerChange = e => {
    const index = Number(e.detail?.value ?? 0);
    const item = deviceOptions.value[index];
    if (item) {
      form.value.deviceLedgerId = item.id;
      setDeviceModel(item.id);
    }
  };
  // 格式化文件大小
  const formatFileSize = size => {
    if (!size) return "";
    if (size < 1024) return size + "B";
    if (size < 1024 * 1024) return (size / 1024).toFixed(1) + "KB";
    return (size / (1024 * 1024)).toFixed(1) + "MB";
  };
  // 拍照选择(与巡检一致)
  const chooseRepairMedia = () => {
    if (repairFileList.value.length >= uploadConfig.limit) {
      showToast(`最多只能选择${uploadConfig.limit}个文件`);
      return;
    }
    const remaining = uploadConfig.limit - repairFileList.value.length;
    if (typeof uni.chooseMedia === "function") {
      uni.chooseMedia({
        count: Math.min(remaining, 9),
        mediaType: ["image"],
        sizeType: ["compressed", "original"],
        sourceType: ["camera", "album"],
        success: res => {
          const files = res?.tempFiles || [];
          files.forEach((tf, idx) => {
            const filePath = tf.tempFilePath || tf.path || "";
            const file = {
              tempFilePath: filePath,
              path: filePath,
              type: "image",
              name: `repair_${Date.now()}_${idx}.jpg`,
              size: tf.size || 0,
              uid: Date.now() + Math.random() + idx,
            };
            uploadRepairFile(file);
          });
        },
        fail: () => showToast("选择图片失败"),
      });
    } else {
      uni.chooseImage({
        count: remaining,
        sizeType: ["compressed", "original"],
        sourceType: ["camera", "album"],
        success: res => {
          (res.tempFilePaths || []).forEach((path, idx) => {
            uploadRepairFile({
              tempFilePath: path,
              path: path,
              type: "image",
              name: `repair_${Date.now()}_${idx}.jpg`,
              size: 0,
              uid: Date.now() + Math.random(),
            });
          });
        },
        fail: () => showToast("选择图片失败"),
      });
    }
  };
    // 调用uni-app的扫码API
    uni.scanCode({
      scanType: ["qrCode", "barCode"],
  const uploadRepairFile = file => {
    const filePath = file.tempFilePath || file.path;
    if (!filePath) return;
    uploading.value = true;
    uploadProgress.value = 0;
    const token = getToken();
    if (!token) {
      showToast("请先登录");
      uploading.value = false;
      return;
    }
    const uploadTask = uni.uploadFile({
      url: uploadFileUrl.value,
      filePath,
      name: "file",
      header: { Authorization: "Bearer " + token },
      success: res => {
        handleScanResult(res.result);
        try {
          if (res.statusCode === 200) {
            const response = typeof res.data === "string" ? JSON.parse(res.data) : res.data;
            const d = response?.data !== undefined ? response.data : response;
            if (response && (response.code === 200 || response.code === 0) && d) {
              const fileData = {
                ...file,
                id: d.id,
                tempId: d.tempId ?? d.tempFileId ?? d.id,
                url: d.url || d.downloadUrl || filePath,
                bucketFilename: d.bucketFilename || d.originalFilename || file.name,
                downloadUrl: d.downloadUrl || d.url,
                size: d.size ?? d.byteSize ?? file.size,
                uploadResponse: response,
              };
              repairFileList.value.push(fileData);
            } else {
              showToast(response?.msg || "上传失败");
            }
          } else {
            showToast("上传失败");
          }
        } catch (e) {
          showToast("上传失败");
        }
        uploading.value = false;
        uploadProgress.value = 0;
      },
      fail: err => {
        console.error("扫码失败:", err);
        showToast("扫码失败,请重试");
      fail: () => {
        showToast("上传失败");
        uploading.value = false;
        uploadProgress.value = 0;
      },
    });
  };
  // 处理扫码结果
  const handleScanResult = scanResult => {
    if (!scanResult) {
      showToast("扫码结果为空");
      return;
    }
    isScanning.value = true;
    showToast("扫码成功");
    // 3秒后处理扫码结果
    scanTimer.value = setTimeout(() => {
      processScanResult(scanResult);
      isScanning.value = false;
    }, 100);
  };
  function getDeviceIdByRegExp(url) {
    // 匹配deviceId=后面的数字
    const reg = /deviceId=(\d+)/;
    const match = url.match(reg);
    // 如果匹配到结果,返回数字类型,否则返回null
    return match ? Number(match[1]) : null;
  }
  // 处理扫码结果并匹配设备
  const processScanResult = scanResult => {
    const deviceId = getDeviceIdByRegExp(scanResult);
    const matchedDevice = deviceOptions.value.find(item => item.id == deviceId);
    if (matchedDevice) {
      // 找到匹配的设备,自动填充
      form.value.deviceLedgerId = matchedDevice.id;
      deviceNameText.value = matchedDevice.deviceName;
      form.value.deviceModel = matchedDevice.deviceModel;
      showToast("设备信息已自动填充");
    } else {
      // 未找到匹配的设备
      showToast("未找到匹配的设备,请手动选择");
    if (uploadTask && uploadTask.onProgressUpdate) {
      uploadTask.onProgressUpdate(e => {
        uploadProgress.value = e.progress;
      });
    }
  };
  // 显示设备选择器
  const showDevicePicker = () => {
    showDevice.value = true;
  };
  // 确认设备选择
  const onDeviceSelect = e => {
    form.value.deviceLedgerId = e.value;
    setDeviceModel(e.value);
    showDevice.value = false;
  const removeRepairFile = index => {
    repairFileList.value.splice(index, 1);
  };
  // 显示日期选择器
@@ -339,11 +465,6 @@
  });
  // 组件卸载时清理定时器
  onUnmounted(() => {
    if (scanTimer.value) {
      clearTimeout(scanTimer.value);
    }
  });
  // 提交表单
  const sendForm = async () => {
@@ -357,6 +478,9 @@
      } else if (!form.value.repairTime || form.value.repairTime.trim() === "") {
        isValid = false;
        errorMessage = "请选择报修日期";
      } else if (form.value.status === undefined || form.value.status === null || form.value.status === "") {
        isValid = false;
        errorMessage = "请选择报修状态";
      } else if (!form.value.repairName || form.value.repairName.trim() === "") {
        isValid = false;
        errorMessage = "请输入报修人";
@@ -373,8 +497,13 @@
      loading.value = true;
      const id = getPageId();
      // 准备提交数据
      // 附件数组:上传接口返回的附件信息(与巡检一致传 fileList)
      const fileList = repairFileList.value.map(f => {
        const d = f.uploadResponse?.data !== undefined ? f.uploadResponse.data : f.uploadResponse;
        return d ? { ...d } : null;
      }).filter(Boolean);
      const submitData = { ...form.value };
      if (fileList.length) submitData.fileList = fileList;
      const { code } = id
        ? await editRepair({ id: id, ...submitData })
@@ -480,10 +609,139 @@
    color: #888;
  }
  .scan-icon {
    color: #1989fa;
    font-size: 18px;
    margin-left: 8px;
    cursor: pointer;
  :deep(.device-name-form-item .u-form-item__content) {
    justify-content: flex-start !important;
  }
  .device-picker-wrap {
    width: 100%;
    flex: 1;
    min-width: 0;
  }
  .device-picker-full {
    display: block;
    width: 100%;
  }
  .picker-input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 36px;
    padding: 0;
  }
  .picker-input-text {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    color: #333;
    line-height: 36px;
    margin-right: 8px;
  }
  .picker-input-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .picker-input-text.placeholder {
    color: #c0c4cc;
  }
  .simple-upload-area {
    padding: 15px 20px;
  }
  .upload-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  .upload-progress {
    margin: 15px 0;
    padding: 0 10px;
  }
  .file-list {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .file-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid #e9ecef;
    width: calc(50% - 6px);
    min-width: 120px;
  }
  .file-preview-container {
    position: relative;
    margin-bottom: 8px;
  }
  .file-preview {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
  }
  .delete-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #ff4757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .file-info {
    text-align: center;
    width: 100%;
  }
  .file-name {
    font-size: 12px;
    color: #333;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
  }
  .file-size {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
    display: block;
  }
  .empty-state {
    text-align: center;
    padding: 24px 16px;
    color: #999;
    font-size: 14px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
  }
</style>