From 633568cff8a45c9f92aec1ec5edb5a09a3b0d8a4 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期六, 14 三月 2026 13:26:38 +0800
Subject: [PATCH] fix: 隐患地点需要拍照而不是文字描述,需要可预览。
---
src/pages/equipmentManagement/repair/add.vue | 1098 +++++++++++++++++++++++++++++++++++++--------------------
1 files changed, 705 insertions(+), 393 deletions(-)
diff --git a/src/pages/equipmentManagement/repair/add.vue b/src/pages/equipmentManagement/repair/add.vue
index 0940052..171b89e 100644
--- a/src/pages/equipmentManagement/repair/add.vue
+++ b/src/pages/equipmentManagement/repair/add.vue
@@ -1,435 +1,747 @@
<template>
- <view class="repair-add">
- <!-- 浣跨敤閫氱敤椤甸潰澶撮儴缁勪欢 -->
- <PageHeader :title="operationType === 'edit' ? '缂栬緫鎶ヤ慨' : '鏂板鎶ヤ慨'" @back="goBack" />
-
- <!-- 琛ㄥ崟鍐呭 -->
- <u-form @submit="sendForm" ref="formRef" :rules="formRules" :model="form" label-width="110">
- <!-- 鍩烘湰淇℃伅 -->
- <u-cell-group title="鍩烘湰淇℃伅">
- <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>
- </u-form-item>
- <u-form-item label="瑙勬牸鍨嬪彿" prop="deviceModel" border-bottom>
- <u-input
- v-model="form.deviceModel"
- placeholder="璇疯緭鍏ヨ鏍煎瀷鍙�"
- clearable
- />
- </u-form-item>
- <u-form-item label="鎶ヤ慨鏃ユ湡" prop="repairTime" required border-bottom>
- <u-input
- v-model="form.repairTime"
- placeholder="璇烽�夋嫨鎶ヤ慨鏃ユ湡"
- readonly
- @click="showDatePicker"
- clearable
- />
- <template #right>
- <u-icon name="arrow-right" @click="showDatePicker"></u-icon>
- </template>
- </u-form-item>
- <u-form-item label="鎶ヤ慨浜�" prop="repairName" required border-bottom>
- <u-input
- v-model="form.repairName"
- placeholder="璇疯緭鍏ユ姤淇汉"
- clearable
- />
- </u-form-item>
- <u-form-item label="鏁呴殰鐜拌薄" prop="remark" required border-bottom>
- <u-textarea
- v-model="form.remark"
- rows="3"
- placeholder="璇疯緭鍏ユ晠闅滅幇璞�"
- clearable
- count
- maxlength="200"
- />
- </u-form-item>
- </u-cell-group>
-
- <!-- 鎻愪氦鎸夐挳 -->
- <view class="footer-btns">
- <u-button class="cancel-btn" @click="goBack">鍙栨秷</u-button>
- <u-button class="save-btn" type="primary" @click="sendForm" :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"
- @confirm="onDateConfirm"
- @cancel="showDate = false"
- mode="date"
- />
- </view>
+ <view class="repair-add">
+ <!-- 浣跨敤閫氱敤椤甸潰澶撮儴缁勪欢 -->
+ <PageHeader :title="operationType === 'edit' ? '缂栬緫鎶ヤ慨' : '鏂板鎶ヤ慨'"
+ @back="goBack" />
+ <!-- 琛ㄥ崟鍐呭 -->
+ <u-form @submit="sendForm"
+ ref="formRef"
+ :rules="formRules"
+ :model="form"
+ label-width="110">
+ <!-- 鍩烘湰淇℃伅 -->
+ <u-cell-group title="鍩烘湰淇℃伅">
+ <u-form-item label="璁惧鍚嶇О"
+ prop="deviceLedgerId"
+ required
+ 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"
+ border-bottom>
+ <u-input v-model="form.deviceModel"
+ placeholder="璇疯緭鍏ヨ鏍煎瀷鍙�"
+ clearable />
+ </u-form-item>
+ <u-form-item label="鎶ヤ慨鏃ユ湡"
+ prop="repairTime"
+ required
+ border-bottom>
+ <u-input v-model="form.repairTime"
+ placeholder="璇烽�夋嫨鎶ヤ慨鏃ユ湡"
+ readonly
+ @click="showDatePicker"
+ clearable />
+ <template #right>
+ <u-icon name="arrow-right"
+ @click="showDatePicker"></u-icon>
+ </template>
+ </u-form-item>
+ <u-form-item label="鎶ヤ慨鐘舵��"
+ prop="status"
+ required
+ border-bottom>
+ <u-input v-model="repairStatusText"
+ placeholder="璇烽�夋嫨鎶ヤ慨鐘舵��"
+ readonly
+ @click="openRepairStatusPicker"
+ clearable />
+ <template #right>
+ <u-icon name="arrow-right"
+ @click="openRepairStatusPicker"></u-icon>
+ </template>
+ </u-form-item>
+ <u-form-item label="鎶ヤ慨浜�"
+ prop="repairName"
+ required
+ border-bottom>
+ <u-input v-model="form.repairName"
+ placeholder="璇疯緭鍏ユ姤淇汉"
+ clearable />
+ </u-form-item>
+ <u-form-item label="鏁呴殰鐜拌薄"
+ prop="remark"
+ required
+ border-bottom>
+ <u-textarea v-model="form.remark"
+ rows="3"
+ placeholder="璇疯緭鍏ユ晠闅滅幇璞�"
+ clearable
+ 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">
+ <u-button class="cancel-btn"
+ @click="goBack">鍙栨秷</u-button>
+ <u-button class="save-btn"
+ type="primary"
+ @click="sendForm"
+ :loading="loading">淇濆瓨</u-button>
+ </view>
+ </u-form>
+ <!-- 鏃ユ湡閫夋嫨鍣� -->
+ <up-datetime-picker :show="showDate"
+ v-model="pickerDateValue"
+ @confirm="onDateConfirm"
+ @cancel="showDate = false"
+ mode="date" />
+ </view>
</template>
<script setup>
-import { ref, computed, onMounted, onUnmounted } from 'vue';
-import { onShow } from '@dcloudio/uni-app';
-import PageHeader from '@/components/PageHeader.vue';
-import { getDeviceLedger } from '@/api/equipmentManagement/ledger';
-import { addRepair, editRepair, getRepairById } from '@/api/equipmentManagement/repair';
-import dayjs from "dayjs";
-import { formatDateToYMD } from '@/utils/ruoyi';
-const showToast = (message) => {
- uni.showToast({
- title: message,
- icon: 'none'
- })
-}
+ import { ref, computed, onMounted } from "vue";
+ import { onShow } from "@dcloudio/uni-app";
+ import PageHeader from "@/components/PageHeader.vue";
+ import { getDeviceLedger } from "@/api/equipmentManagement/ledger";
+ import {
+ addRepair,
+ 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 => {
+ uni.showToast({
+ title: message,
+ icon: "none",
+ });
+ };
-defineOptions({
- name: "璁惧鎶ヤ慨琛ㄥ崟",
-});
+ defineOptions({
+ name: "璁惧鎶ヤ慨琛ㄥ崟",
+ });
-// 琛ㄥ崟寮曠敤
-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 formRef = ref(null);
+ const operationType = ref("add");
+ const loading = ref(false);
+ const showDate = ref(false);
+ const pickerDateValue = ref(Date.now());
-// 璁惧閫夐」
-const deviceOptions = ref([]);
-const deviceNameText = ref('');
-const deviceActionList = computed(() => {
- return deviceOptions.value.map(item => ({
- name: item.deviceName,
- value: item.id
- }));
-});
+ // 涓婁紶閰嶇疆锛堜笌宸℃涓�鑷达級
+ 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 isScanning = ref(false);
-const scanTimer = ref(null);
+ // 璁惧閫夐」
+ const deviceOptions = ref([]);
+ const deviceNameText = ref("");
+ 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 formRules = {
- deviceLedgerId: [{ required: true, trigger: "change", message: "璇烽�夋嫨璁惧鍚嶇О" }],
- repairTime: [{ required: true, trigger: "change", message: "璇烽�夋嫨鎶ヤ慨鏃ユ湡" }],
- repairName: [{ required: true, trigger: "blur", message: "璇疯緭鍏ユ姤淇汉" }],
- remark: [{ required: true, trigger: "blur", message: "璇疯緭鍏ユ晠闅滅幇璞�" }],
-};
+ // 琛ㄥ崟楠岃瘉瑙勫垯
+ const formRules = {
+ deviceLedgerId: [
+ { required: true, trigger: "change", message: "璇烽�夋嫨璁惧鍚嶇О" },
+ ],
+ repairTime: [
+ { required: true, trigger: "change", message: "璇烽�夋嫨鎶ヤ慨鏃ユ湡" },
+ ],
+ status: [
+ { required: true, trigger: "change", message: "璇烽�夋嫨鎶ヤ慨鐘舵��" },
+ ],
+ repairName: [{ required: true, trigger: "blur", message: "璇疯緭鍏ユ姤淇汉" }],
+ remark: [{ required: true, trigger: "blur", message: "璇疯緭鍏ユ晠闅滅幇璞�" }],
+ };
-// 浣跨敤 ref 澹版槑琛ㄥ崟鏁版嵁
-const form = ref({
- deviceLedgerId: undefined, // 璁惧ID
- deviceModel: undefined, // 瑙勬牸鍨嬪彿
- repairTime: dayjs().format("YYYY-MM-DD"), // 鎶ヤ慨鏃ユ湡
- repairName: undefined, // 鎶ヤ慨浜�
- remark: undefined, // 鏁呴殰鐜拌薄
-});
+ // 浣跨敤 ref 澹版槑琛ㄥ崟鏁版嵁
+ const form = ref({
+ deviceLedgerId: undefined, // 璁惧ID
+ deviceModel: undefined, // 瑙勬牸鍨嬪彿
+ repairTime: dayjs().format("YYYY-MM-DD"), // 鎶ヤ慨鏃ユ湡
+ status: undefined, // 鎶ヤ慨鐘舵��
+ repairName: undefined, // 鎶ヤ慨浜�
+ remark: undefined, // 鏁呴殰鐜拌薄
+ });
-// 鍔犺浇璁惧鍒楄〃
-const loadDeviceName = async () => {
- try {
- const { data } = await getDeviceLedger();
- deviceOptions.value = data || [];
- } catch (e) {
- showToast('鑾峰彇璁惧鍒楄〃澶辫触');
- }
-};
+ // 鎶ヤ慨鐘舵�侀�夐」
+ const repairStatusOptions = ref([
+ { name: "寰呯淮淇�", value: "0" },
+ { name: "瀹岀粨", value: "1" },
+ { name: "澶辫触", value: "2" },
+ ]);
+ const repairStatusText = ref("");
-// 璁剧疆璁惧瑙勬牸鍨嬪彿
-const setDeviceModel = (id) => {
- const option = deviceOptions.value.find((item) => item.id === id);
- if (option) {
- form.value.deviceModel = option.deviceModel;
- deviceNameText.value = option.deviceName;
- }
-};
+ // 鎵撳紑鎶ヤ慨鐘舵�侀�夋嫨鍣�
+ const openRepairStatusPicker = () => {
+ uni.showActionSheet({
+ itemList: repairStatusOptions.value.map(item => item.name),
+ success: res => {
+ form.value.status = repairStatusOptions.value[res.tapIndex].value;
+ repairStatusText.value = repairStatusOptions.value[res.tapIndex].name;
+ },
+ });
+ };
-// 鍔犺浇琛ㄥ崟鏁版嵁锛堢紪杈戞ā寮忥級
-const loadForm = async (id) => {
- if (id) {
- operationType.value = 'edit';
- try {
- const { code, data } = await getRepairById(id);
- if (code == 200) {
- form.value.deviceLedgerId = data.deviceLedgerId;
- form.value.deviceModel = data.deviceModel;
- form.value.repairTime = dayjs(data.repairTime).format("YYYY-MM-DD");
- form.value.repairName = data.repairName;
- form.value.remark = data.remark;
- // 璁剧疆璁惧鍚嶇О鏄剧ず
- const device = deviceOptions.value.find(item => item.id === data.deviceLedgerId);
- if (device) {
- deviceNameText.value = device.deviceName;
- }
- }
- } catch (e) {
- showToast('鑾峰彇璇︽儏澶辫触');
- }
- } else {
- // 鏂板妯″紡
- operationType.value = 'add';
- }
-};
+ // 鍔犺浇璁惧鍒楄〃
+ const loadDeviceName = async () => {
+ try {
+ const { data } = await getDeviceLedger();
+ deviceOptions.value = data || [];
+ } catch (e) {
+ showToast("鑾峰彇璁惧鍒楄〃澶辫触");
+ }
+ };
-// 鎵弿浜岀淮鐮佸姛鑳�
-const startScan = () => {
- if (isScanning.value) {
- showToast('姝e湪鎵弿涓紝璇风◢鍊�...');
- return;
- }
-
- // 璋冪敤uni-app鐨勬壂鐮丄PI
- uni.scanCode({
- scanType: ['qrCode', 'barCode'],
- success: (res) => {
- handleScanResult(res.result);
- },
- fail: (err) => {
- console.error('鎵爜澶辫触:', err);
- showToast('鎵爜澶辫触锛岃閲嶈瘯');
- }
- });
-};
+ // 璁剧疆璁惧瑙勬牸鍨嬪彿
+ const setDeviceModel = id => {
+ const option = deviceOptions.value.find(item => item.id === id);
+ if (option) {
+ form.value.deviceModel = option.deviceModel;
+ deviceNameText.value = option.deviceName;
+ }
+ };
-// 澶勭悊鎵爜缁撴灉
-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);
- // 濡傛灉鍖归厤鍒扮粨鏋滐紝杩斿洖鏁板瓧绫诲瀷锛屽惁鍒欒繑鍥瀗ull
- return match ? Number(match[1]) : null;
-}
+ // 鍔犺浇琛ㄥ崟鏁版嵁锛堢紪杈戞ā寮忥級
+ const loadForm = async id => {
+ if (id) {
+ operationType.value = "edit";
+ try {
+ const { code, data } = await getRepairById(id);
+ if (code == 200) {
+ 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 =
+ repairStatusOptions.value.find(item => item.value == data.status)
+ ?.name || "";
+ // 璁剧疆璁惧鍚嶇О鏄剧ず
+ const device = deviceOptions.value.find(
+ item => item.id === data.deviceLedgerId
+ );
+ 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("鑾峰彇璇︽儏澶辫触");
+ }
+ } else {
+ // 鏂板妯″紡
+ operationType.value = "add";
+ }
+ };
-// 澶勭悊鎵爜缁撴灉骞跺尮閰嶈澶�
-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('鏈壘鍒板尮閰嶇殑璁惧锛岃鎵嬪姩閫夋嫨');
- }
-};
+ // 涓嬫媺妗嗛�夋嫨璁惧
+ 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 showDevicePicker = () => {
- showDevice.value = true;
-};
+ // 鏍煎紡鍖栨枃浠跺ぇ灏�
+ 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 onDeviceSelect = (e) => {
- form.value.deviceLedgerId = e.value;
- setDeviceModel(e.value);
- showDevice.value = false;
-};
+ // 鎷嶇収閫夋嫨锛堜笌宸℃涓�鑷达級
+ 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("閫夋嫨鍥剧墖澶辫触"),
+ });
+ }
+ };
-// 鏄剧ず鏃ユ湡閫夋嫨鍣�
-const showDatePicker = () => {
- showDate.value = true;
-};
+ 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 => {
+ 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: () => {
+ showToast("涓婁紶澶辫触");
+ uploading.value = false;
+ uploadProgress.value = 0;
+ },
+ });
+ if (uploadTask && uploadTask.onProgressUpdate) {
+ uploadTask.onProgressUpdate(e => {
+ uploadProgress.value = e.progress;
+ });
+ }
+ };
-// 纭鏃ユ湡閫夋嫨
-const onDateConfirm = (e) => {
- form.value.repairTime = formatDateToYMD(e.value);
- pickerDateValue.value = dayjs(e.value).format("YYYY-MM-DD");
- showDate.value = false;
-};
+ const removeRepairFile = index => {
+ repairFileList.value.splice(index, 1);
+ };
-onShow(() => {
- // 椤甸潰鏄剧ず鏃惰幏鍙栧弬鏁�
- getPageParams();
-});
+ // 鏄剧ず鏃ユ湡閫夋嫨鍣�
+ const showDatePicker = () => {
+ showDate.value = true;
+ };
-onMounted(() => {
- // 椤甸潰鍔犺浇鏃惰幏鍙栬澶囧垪琛ㄥ拰鍙傛暟
- loadDeviceName();
- getPageParams();
-});
+ // 纭鏃ユ湡閫夋嫨
+ const onDateConfirm = e => {
+ form.value.repairTime = formatDateToYMD(e.value);
+ pickerDateValue.value = dayjs(e.value).format("YYYY-MM-DD");
+ showDate.value = false;
+ };
-// 缁勪欢鍗歌浇鏃舵竻鐞嗗畾鏃跺櫒
-onUnmounted(() => {
- if (scanTimer.value) {
- clearTimeout(scanTimer.value);
- }
-});
+ onShow(() => {
+ // 椤甸潰鏄剧ず鏃惰幏鍙栧弬鏁�
+ getPageParams();
+ });
-// 鎻愪氦琛ㄥ崟
-const sendForm = async () => {
- try {
- // 鎵嬪姩楠岃瘉琛ㄥ崟
- let isValid = true;
- let errorMessage = '';
- if (!form.value.deviceLedgerId) {
- isValid = false;
- errorMessage = '璇烽�夋嫨璁惧鍚嶇О';
- } else if (!form.value.repairTime || form.value.repairTime.trim() === '') {
- isValid = false;
- errorMessage = '璇烽�夋嫨鎶ヤ慨鏃ユ湡';
- } else if (!form.value.repairName || form.value.repairName.trim() === '') {
- isValid = false;
- errorMessage = '璇疯緭鍏ユ姤淇汉';
- } else if (!form.value.remark || form.value.remark.trim() === '') {
- isValid = false;
- errorMessage = '璇疯緭鍏ユ晠闅滅幇璞�';
- }
+ onMounted(() => {
+ // 椤甸潰鍔犺浇鏃惰幏鍙栬澶囧垪琛ㄥ拰鍙傛暟
+ loadDeviceName();
+ getPageParams();
+ });
- if (!isValid) {
- showToast(errorMessage);
- return;
- }
+ // 缁勪欢鍗歌浇鏃舵竻鐞嗗畾鏃跺櫒
- loading.value = true;
- const id = getPageId();
+ // 鎻愪氦琛ㄥ崟
+ const sendForm = async () => {
+ try {
+ // 鎵嬪姩楠岃瘉琛ㄥ崟
+ let isValid = true;
+ let errorMessage = "";
+ if (!form.value.deviceLedgerId) {
+ isValid = false;
+ errorMessage = "璇烽�夋嫨璁惧鍚嶇О";
+ } 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 = "璇疯緭鍏ユ姤淇汉";
+ } else if (!form.value.remark || form.value.remark.trim() === "") {
+ isValid = false;
+ errorMessage = "璇疯緭鍏ユ晠闅滅幇璞�";
+ }
- // 鍑嗗鎻愪氦鏁版嵁
- const submitData = { ...form.value };
+ if (!isValid) {
+ showToast(errorMessage);
+ return;
+ }
- const { code } = id
- ? await editRepair({ id: id, ...submitData })
- : await addRepair(submitData);
+ loading.value = true;
+ const id = getPageId();
- if (code == 200) {
- showToast(`${id ? "缂栬緫" : "鏂板"}鎶ヤ慨鎴愬姛`);
- setTimeout(() => {
- uni.navigateBack();
- }, 1500);
- } else {
- loading.value = false;
- }
- } catch (e) {
- loading.value = false;
- showToast('琛ㄥ崟楠岃瘉澶辫触');
- }
-};
+ // 闄勪欢鏁扮粍锛氫笂浼犳帴鍙h繑鍥炵殑闄勪欢淇℃伅锛堜笌宸℃涓�鑷翠紶 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 goBack = () => {
- uni.removeStorageSync('repairId');
- uni.navigateBack();
-};
+ const { code } = id
+ ? await editRepair({ id: id, ...submitData })
+ : await addRepair(submitData);
-// 鑾峰彇椤甸潰鍙傛暟
-const getPageParams = () => {
- // 浣跨敤uni.getStorageSync鑾峰彇id
- const id = uni.getStorageSync('repairId');
-
- // 鏍规嵁鏄惁鏈塱d鍙傛暟鏉ュ垽鏂槸鏂板杩樻槸缂栬緫
- if (id) {
- // 缂栬緫妯″紡锛岃幏鍙栬鎯�
- loadForm(id);
- // 鍙�夛細鑾峰彇鍚庢竻闄ゅ瓨鍌ㄧ殑id锛岄伩鍏嶅奖鍝嶅悗缁搷浣�
- uni.removeStorageSync('repairId');
- } else {
- // 鏂板妯″紡
- loadForm();
- }
-};
+ if (code == 200) {
+ showToast(`${id ? "缂栬緫" : "鏂板"}鎶ヤ慨鎴愬姛`);
+ setTimeout(() => {
+ uni.navigateBack();
+ }, 1500);
+ } else {
+ loading.value = false;
+ }
+ } catch (e) {
+ loading.value = false;
+ showToast("琛ㄥ崟楠岃瘉澶辫触");
+ }
+ };
-// 鑾峰彇椤甸潰ID
-const getPageId = () => {
- // 浣跨敤uni.getStorageSync鑾峰彇id
- const id = uni.getStorageSync('repairId');
- return id;
-};
+ // 杩斿洖涓婁竴椤�
+ const goBack = () => {
+ uni.removeStorageSync("repairId");
+ uni.navigateBack();
+ };
+
+ // 鑾峰彇椤甸潰鍙傛暟
+ const getPageParams = () => {
+ // 浣跨敤uni.getStorageSync鑾峰彇id
+ const id = uni.getStorageSync("repairId");
+
+ // 鏍规嵁鏄惁鏈塱d鍙傛暟鏉ュ垽鏂槸鏂板杩樻槸缂栬緫
+ if (id) {
+ // 缂栬緫妯″紡锛岃幏鍙栬鎯�
+ loadForm(id);
+ // 鍙�夛細鑾峰彇鍚庢竻闄ゅ瓨鍌ㄧ殑id锛岄伩鍏嶅奖鍝嶅悗缁搷浣�
+ uni.removeStorageSync("repairId");
+ } else {
+ // 鏂板妯″紡
+ loadForm();
+ }
+ };
+
+ // 鑾峰彇椤甸潰ID
+ const getPageId = () => {
+ // 浣跨敤uni.getStorageSync鑾峰彇id
+ const id = uni.getStorageSync("repairId");
+ return id;
+ };
</script>
<style scoped lang="scss">
-@import '@/static/scss/form-common.scss';
-.repair-add {
- min-height: 100vh;
- background: #f8f9fa;
- padding-bottom: 5rem;
-}
+ @import "@/static/scss/form-common.scss";
+ .repair-add {
+ min-height: 100vh;
+ background: #f8f9fa;
+ padding-bottom: 5rem;
+ }
-.footer-btns {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- background: #fff;
- display: flex;
- justify-content: space-around;
- align-items: center;
- padding: 0.75rem 0;
- box-shadow: 0 -0.125rem 0.5rem rgba(0,0,0,0.05);
- z-index: 1000;
-}
+ .footer-btns {
+ position: fixed;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: #fff;
+ display: flex;
+ justify-content: space-around;
+ align-items: center;
+ padding: 0.75rem 0;
+ box-shadow: 0 -0.125rem 0.5rem rgba(0, 0, 0, 0.05);
+ z-index: 1000;
+ }
-.cancel-btn {
- font-weight: 400;
- font-size: 1rem;
- color: #FFFFFF;
- width: 6.375rem;
- background: #C7C9CC;
- box-shadow: 0 0.25rem 0.625rem 0 rgba(3,88,185,0.2);
- border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
-}
+ .cancel-btn {
+ font-weight: 400;
+ font-size: 1rem;
+ color: #ffffff;
+ width: 6.375rem;
+ background: #c7c9cc;
+ box-shadow: 0 0.25rem 0.625rem 0 rgba(3, 88, 185, 0.2);
+ border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
+ }
-.save-btn {
- font-weight: 400;
- font-size: 1rem;
- color: #FFFFFF;
- width: 14rem;
- background: linear-gradient( 140deg, #00BAFF 0%, #006CFB 100%);
- box-shadow: 0 0.25rem 0.625rem 0 rgba(3,88,185,0.2);
- border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
-}
+ .save-btn {
+ font-weight: 400;
+ font-size: 1rem;
+ color: #ffffff;
+ width: 14rem;
+ background: linear-gradient(140deg, #00baff 0%, #006cfb 100%);
+ box-shadow: 0 0.25rem 0.625rem 0 rgba(3, 88, 185, 0.2);
+ border-radius: 2.5rem 2.5rem 2.5rem 2.5rem;
+ }
-// 鍝嶅簲寮忚皟鏁�
-@media (max-width: 768px) {
- .submit-section {
- padding: 12px;
- }
-}
+ // 鍝嶅簲寮忚皟鏁�
+ @media (max-width: 768px) {
+ .submit-section {
+ padding: 12px;
+ }
+ }
-.tip-text {
- padding: 4px 16px 0 16px;
- font-size: 12px;
- color: #888;
-}
+ .tip-text {
+ padding: 4px 16px 0 16px;
+ font-size: 12px;
+ 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>
\ No newline at end of file
--
Gitblit v1.9.3