<template>
|
<view class="inspection-sheet">
|
<!-- 头部信息 -->
|
<view class="sheet-header">
|
<h1>首检检验单</h1>
|
<view class="inspection-number">首检单号:{{formData.billNo}}</view>
|
</view>
|
|
<!-- 基本信息区 -->
|
<view class="basic-info">
|
<view class="info-row">
|
<span class="info-label">创建时间:</span>
|
<span class="info-value">{{formData.createTime}}</span>
|
<span class="info-label">检验类型:</span>
|
<span class="info-value">{{formData.sJ_MJ}}</span>
|
</view>
|
<view class="info-row" v-if="isUpdate">
|
<span class="info-label">检验类型:</span>
|
<picker class="info-picker" :range="SJ_MJList" :value="SJ_MJIndex" @change="onSJ_MJChange">
|
<view>{{ SJ_MJList[SJ_MJIndex] }}</view>
|
</picker>
|
</view>
|
</view>
|
|
<!-- 生产信息区 -->
|
<view class="material-info">
|
<view class="info-block">
|
<view class="info-label">生产线别:</view>
|
<superwei-combox v-if="isUpdate" :candidates="DAA020List" placeholder="请选择或输入"
|
v-model="formData.line" @select="onDaa020Change" class="info-picker-input"></superwei-combox>
|
<view v-else class="info-value">{{formData.line}}</view>
|
</view>
|
|
<view class="info-block">
|
<view class="info-label">物料编码:</view>
|
<superwei-combox v-if="isUpdate" :candidates="boardItems" placeholder="请选择或输入"
|
v-model="formData.itemNo" :isJSON="true" keyName="itemName" @select="onItemChange"
|
class="info-picker-input"></superwei-combox>
|
<view v-else class="info-value">{{formData.itemNo}}</view>
|
</view>
|
|
<view class="info-block">
|
<view class="info-label">工单单号:</view>
|
<picker v-if="isUpdate" class="info-picker" name="selector" :range="DAA001List"
|
@change="onDaa001Change">
|
<text>{{ DAA001List[DAA001Index] }}</text>
|
</picker>
|
<view v-else class="info-value">{{formData.daa001}}</view>
|
</view>
|
|
|
|
|
|
<view class="info-block">
|
<view class="info-label">产品名称:</view>
|
<view class="info-value">{{formData.daa003}}</view>
|
</view>
|
|
<view class="info-block">
|
<view class="info-label">规格型号:</view>
|
<view class="info-value">{{formData.daa004}}</view>
|
</view>
|
|
<view class="info-block">
|
<view class="info-label">工单数量:</view>
|
<view class="info-value highlight">{{formData.daa008}}</view>
|
</view>
|
|
<view class="info-block" v-if="formData.remarks">
|
<view class="info-label">不合格描述:</view>
|
<view class="info-value">{{formData.remarks}}</view>
|
</view>
|
</view>
|
|
<!-- 检验项目表格 -->
|
<view class="inspection-table">
|
<table v-if="tableData.length > 0">
|
<thead>
|
<tr>
|
<th width="20%" style="text-align: center;">检验项目</th>
|
<th width="50%" style="text-align: center;">检验描述</th>
|
<th width="15%" style="text-align: center;">记录(点击)</th>
|
</tr>
|
</thead>
|
<tbody>
|
<tr v-for="(item, index) in tableData" :key="index">
|
<td>{{ item.projName }}</td>
|
<td>
|
<view v-if="item.result=='合格'" class="watermark approved">
|
{{ getStatusText(item.result) }}
|
</view>
|
<view v-if="item.result=='不合格'" class="watermark rejected">
|
{{ getStatusText(item.result) }}
|
</view>
|
<view v-if="item.result==null || item.result==''" class="watermark pending">
|
{{ getStatusText(item.result) }}
|
</view>
|
<view class="description-text">{{ getInspectionDescription(item) }}</view>
|
</td>
|
<td>
|
<button class="record-btn" @click="toDetail(item)">
|
{{ getTotalCount(item) + '/' + item.isCheck }}
|
</button>
|
</td>
|
</tr>
|
</tbody>
|
</table>
|
<!-- 空状态显示 -->
|
<view v-else class="empty-state">
|
<view class="empty-icon">📋</view>
|
<view class="empty-text">暂无检验项目</view>
|
<view class="empty-desc">该检验单还没有检验项目</view>
|
</view>
|
</view>
|
<!-- 表单上方操作按钮区 -->
|
<view class="top-action-buttons">
|
<button class="action-btn" v-if="isUpdate && !isShowTable" @click="save">创建检验单并生成部分默认值</button>
|
<button class="action-btn" v-if="isShowTable" @click="getTable">获取检验项目</button>
|
<button class="action-btn" v-if="isShowTable && isUpdate" @click="saveTable">生成检验项目</button>
|
</view>
|
|
<!-- 表单下方操作按钮区 -->
|
<view class="bottom-action-buttons">
|
<button class="action-btn small" v-if="!isUpdate && !isShowTable" @click="toImage">上传/查看图片</button>
|
<button class="action-btn small" v-if="!isUpdate && !isShowTable" @click="viewAttachmentInfo">查看附件信息</button>
|
<button class="action-btn small" v-if="!isUpdate && !isShowTable" @click="fetchDrawingNumber(formData.itemNo)">调取PLM图纸</button>
|
<button class="action-btn small" v-if="!isUpdate && !isShowTable" @click="getBom">Bom用料清单</button>
|
<button class="action-btn small" v-if="!isUpdate && !isShowTable && formData.xjGenFlag == 0" @click="saveXJ">生成巡检</button>
|
<button class="action-btn small danger" v-if="!isUpdate && !isShowTable && formData.fsubmit !== 1" @click="showDeleteConfirmDialog">删除单据</button>
|
<button class="action-btn small" v-if="!isUpdate && !isShowTable" @click="saveRemarks">添加不合格描述</button>
|
<button class="action-btn small" v-if="!isUpdate && formData.fsubmit == 0 && !isShowTable" @click="getGenUpdate">获取检验项目</button>
|
<button class="action-btn small primary" v-if="!isUpdate && formData.fsubmit ==0 && !isShowTable" @click="submitInspection">提交检验</button>
|
</view>
|
|
<view class="barcode">
|
<u-modal :show="itemShow" title="物料明细" @confirm="drawingConfirm" @cancel="itemCancel"
|
showCancelButton :z-index="1000">
|
<uni-table border stripe emptyText="暂无更多数据" style="margin-left: 5px;margin-right: 5px;height: 400px;max-height: 60vh;overflow-y: auto;">
|
<uni-tr>
|
<uni-th align="center">料号</uni-th>
|
<uni-th align="center" width="90">名称</uni-th>
|
<uni-th align="center" width="90">规格型号</uni-th>
|
<uni-th align="center" width="150">调取PLM图纸</uni-th>
|
</uni-tr>
|
<uni-tr v-for="(item,index) in (drawing || [])" style="height: 100px;">
|
<uni-td align="center">{{item.itemNo}}</uni-td>
|
<uni-td align="center" >
|
<div >{{item.itemName}}</div>
|
</uni-td>
|
<uni-td align="center" >
|
<div>{{item.itemModel}}</div>
|
</uni-td>
|
<uni-td align="center" class="click-wd">
|
<div @click="fetchDrawingNumber(item.itemNo)">调取图纸</div>
|
</uni-td>
|
</uni-tr>
|
</uni-table>
|
</u-modal>
|
</view>
|
|
<view class="barcode">
|
<u-modal :show="drawingShow" title="图纸明细" @confirm="drawingConfirm" @cancel="drawingCancel"
|
showCancelButton :z-index="1000">
|
<uni-table border stripe emptyText="暂无更多数据" style="margin-left: 5px;margin-right: 5px;height: 400px;max-height: 60vh;overflow-y: auto;">
|
<uni-tr>
|
<uni-th align="center">相关文档</uni-th>
|
<uni-th align="center" width="90">有无关联PDF文件</uni-th>
|
<uni-th align="center" width="90">能否打开文件</uni-th>
|
<uni-th align="center" width="150">操作(点击)</uni-th>
|
</uni-tr>
|
<uni-tr v-for="(item,index) in (drawing || [])" style="height: 100px;">
|
<uni-td align="center">{{item.fName}}</uni-td>
|
<uni-td align="center" style="font-size:25px;">
|
<div v-if="item.fRelevantObject==' '" style="color: #E47470;">×</div>
|
<div style="color: #90BA87;" v-else>√</div>
|
</uni-td>
|
<uni-td align="center" style="font-size:25px;">
|
<div v-if="item.isSupported || item.fRelevantObject!=' '" style="color: #90BA87;">√</div>
|
<div style="color: #E47470;" v-else>×</div>
|
</uni-td>
|
<uni-td align="center" class="click-wd">
|
<div @click="openDrawings(item)">打开文档</div>
|
</uni-td>
|
</uni-tr>
|
</uni-table>
|
</u-modal>
|
</view>
|
|
<!-- 弹出框 -->
|
<view v-if="remarksPopup" class="overlay">
|
<view class="popup">
|
<view class="popup-header">
|
<h3>修改不合格描述</h3>
|
</view>
|
<view class="popup-content">
|
<view class="info-block">
|
<view class="info-label">不合格描述:</view>
|
<input class="info-input" 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="showAttachmentPopup" class="overlay">
|
<view class="popup attachment-list-popup">
|
<div class="attachment-popup-header">
|
<h3 class="attachment-popup-title">附件列表</h3>
|
<button class="attachment-close-btn" @click="closeAttachmentPopup">关闭</button>
|
</div>
|
|
<div class="attachment-popup-content">
|
<div v-if="attachmentsLoading" class="attachment-loading">
|
<div class="loading-spinner"></div>
|
<span class="loading-text">正在加载附件...</span>
|
</div>
|
|
<div v-else-if="attachments.length === 0" class="attachment-empty">
|
<div class="empty-icon">📁</div>
|
<div class="empty-text">暂无附件</div>
|
<div class="empty-hint">该物料暂未上传任何附件</div>
|
</div>
|
|
<div v-else class="attachment-list">
|
<div v-for="item in attachments" :key="item.id" class="attachment-item">
|
<div class="attachment-info">
|
<div class="file-type-badge" :class="getFileTypeClass(item.fattach)">
|
{{ getFileTypeIcon(item.fattach) }}
|
</div>
|
<div class="attachment-details">
|
<div class="attachment-name" @click="showAttachmentDetailDialog(item)">
|
{{ item.fattach }}
|
</div>
|
<div class="attachment-meta">
|
<span class="meta-type">{{ item.ftype || '未知类型' }}</span>
|
<span v-if="item.fversion" class="meta-version">v{{ item.fversion }}</span>
|
<span v-if="item.fdate" class="meta-date">{{ formatDate(item.fdate) }}</span>
|
</div>
|
</div>
|
</div>
|
|
<div class="attachment-actions">
|
<button class="btn-secondary" @click="showAttachmentDetailDialog(item)">详情</button>
|
<button v-if="isPreviewable(item.fattach)"
|
class="btn-primary"
|
@click="previewFtpFile(item)">预览</button>
|
<button class="btn-success" @click="downloadAttachment(item)">下载</button>
|
</div>
|
</div>
|
</div>
|
</div>
|
</view>
|
</view>
|
|
<!-- 附件详情弹窗 -->
|
<view v-if="showAttachmentDetail" class="overlay">
|
<view class="popup attachment-detail-popup">
|
<div class="attachment-popup-header">
|
<h3 class="attachment-popup-title">附件详情</h3>
|
<button class="attachment-close-btn" @click="closeAttachmentDetail">返回</button>
|
</div>
|
|
<div class="attachment-popup-content">
|
<div v-if="selectedAttachment" class="attachment-detail-content">
|
<div class="attachment-detail-header">
|
<div class="file-type-badge large" :class="getFileTypeClass(selectedAttachment.fattach)">
|
{{ getFileTypeIcon(selectedAttachment.fattach) }}
|
</div>
|
<div class="attachment-detail-title">
|
{{ selectedAttachment.fattach }}
|
</div>
|
</div>
|
|
<div class="attachment-detail-info">
|
<div class="info-row">
|
<div class="info-item">
|
<text class="info-label">ID</text>
|
<text class="info-content">{{ Math.trunc(selectedAttachment.id) }}</text>
|
</div>
|
<div class="info-item">
|
<text class="info-label">类型</text>
|
<text class="info-content">{{ selectedAttachment.ftype || '未知类型' }}</text>
|
</div>
|
</div>
|
|
<div class="info-row" v-if="selectedAttachment.fversion">
|
<div class="info-item">
|
<text class="info-label">版本</text>
|
<text class="info-content">{{ selectedAttachment.fversion }}</text>
|
</div>
|
<div class="info-item" v-if="selectedAttachment.fdate">
|
<text class="info-label">受控日期</text>
|
<text class="info-content">{{ formatDate(selectedAttachment.fdate) }}</text>
|
</div>
|
</div>
|
|
<div class="info-row" v-if="selectedAttachment.createBy">
|
<div class="info-item">
|
<text class="info-label">上传人</text>
|
<text class="info-content">{{ selectedAttachment.createBy }}</text>
|
</div>
|
<div class="info-item" v-if="selectedAttachment.createDate">
|
<text class="info-label">上传时间</text>
|
<text class="info-content">{{ formatDate(selectedAttachment.createDate) }}</text>
|
</div>
|
</div>
|
</div>
|
|
<div class="attachment-detail-actions">
|
<button v-if="isPreviewable(selectedAttachment.fattach)"
|
class="btn-primary"
|
@click="previewFtpFile(selectedAttachment)">预览</button>
|
<button class="btn-success" @click="downloadAttachment(selectedAttachment)">下载</button>
|
</div>
|
</div>
|
<div v-else class="attachment-detail-empty">
|
<div class="empty-icon">❌</div>
|
<div class="empty-text">暂无附件信息</div>
|
</div>
|
</div>
|
</view>
|
</view>
|
|
<!-- 文件预览弹窗 -->
|
<view v-if="showFilePreviewPopup" class="overlay">
|
<view class="popup file-preview-popup">
|
<h3 class="file-preview-title">{{ previewTitle }}</h3>
|
<div class="file-preview-divider"></div>
|
<div class="file-preview-content">
|
<!-- 文本内容预览 -->
|
<pre v-if="previewType === 'text'">{{ previewContent }}</pre>
|
|
<!-- 图片内容预览 -->
|
<view v-else-if="previewType === 'image'" class="image-preview-container">
|
<image
|
:src="previewContent"
|
mode="aspectFit"
|
class="preview-image-clickable"
|
@click="previewImageInPopup"
|
style="width: 100%; max-height: 400px; cursor: pointer;"
|
/>
|
<div class="image-zoom-hint">点击图片可放大查看</div>
|
</view>
|
|
<!-- Excel 等 Office 文件提示 -->
|
<view v-else-if="previewType === 'excel'" class="unsupported-preview">
|
<view class="unsupported-icon">📊</view>
|
<view class="unsupported-text">Excel 文件暂不支持在线预览</view>
|
<view class="unsupported-hint">请点击下载按钮获取完整文件</view>
|
</view>
|
|
<!-- 不支持的文件类型 -->
|
<view v-else class="unsupported-preview">
|
<view class="unsupported-icon">📄</view>
|
<view class="unsupported-text">此文件格式暂不支持预览</view>
|
<view class="unsupported-hint">请点击下载按钮获取完整文件</view>
|
</view>
|
</div>
|
<div class="file-preview-actions">
|
<button v-if="previewType !== 'text'" class="file-preview-btn download-btn" @click="downloadPreviewFile">📥 下载文件</button>
|
<button class="file-preview-btn close-btn" @click="closeFilePreview">关闭</button>
|
</div>
|
</view>
|
</view>
|
|
<!-- 删除确认弹窗 -->
|
<view v-if="showDeleteConfirm" class="overlay">
|
<view class="popup delete-confirm-popup">
|
<h3 class="delete-confirm-title">⚠️ 确认删除</h3>
|
<div class="delete-confirm-divider"></div>
|
<div class="delete-confirm-content">
|
<view class="delete-warning-icon">🗑️</view>
|
<view class="delete-warning-text">您确定要删除此检验单吗?</view>
|
<view class="delete-warning-detail">删除后将无法恢复,请谨慎操作!</view>
|
<view class="delete-countdown">
|
<view class="countdown-text">确认按钮将在 <text class="countdown-number">{{ deleteCountdown }}</text> 秒后可用</view>
|
<view class="countdown-progress">
|
<view class="countdown-bar" :style="{ width: countdownProgress + '%' }"></view>
|
</view>
|
</view>
|
</div>
|
<div class="delete-confirm-actions">
|
<button class="delete-confirm-btn cancel-btn" @click="cancelDelete">取消</button>
|
<button class="delete-confirm-btn confirm-btn"
|
:disabled="deleteCountdown > 0"
|
:class="{ 'disabled': deleteCountdown > 0 }"
|
@click="confirmDelete">确认删除</button>
|
</div>
|
</view>
|
</view>
|
</view>
|
</template>
|
<script>
|
export default {
|
data() {
|
return {
|
formData: {
|
createTime: "",
|
id: "",
|
billNo: "",
|
itemNo: "",
|
itemName: "",
|
workshopCode: "",
|
workshopName: "",
|
line: "",
|
lineName: "",
|
comments: "",
|
statusUser: "",
|
SJ_MJ: '首检',
|
fsubmit:"",
|
mnum: 1, // 添加 mnum 字段
|
dnum: "", // 添加 dnum 字段
|
},
|
|
DAA020List: [],
|
|
DAA001List: [],
|
schemeResult: [],
|
DAA001Index: -1,
|
|
ItemList: [],
|
|
boardItems: [],
|
|
womdaaList: [],
|
|
tableData: [],
|
|
drawing: [],
|
|
isSubmit: true,
|
|
isUpdate: true,
|
|
isShowTable: false,
|
|
drawingShow: false,
|
itemShow: false,
|
|
remarks: "",
|
remarksPopup: false,
|
|
SJ_MJList: ['首检', '末检'],
|
SJ_MJIndex: 0,
|
|
// 附件相关数据
|
showAttachmentPopup: false,
|
showAttachmentDetail: false,
|
showFilePreviewPopup: false,
|
attachments: [],
|
attachmentsLoading: false,
|
selectedAttachment: null,
|
previewTitle: '',
|
previewContent: '',
|
previewType: '',
|
previewFileUrl: '',
|
|
// 删除确认相关数据
|
showDeleteConfirm: false,
|
deleteCountdown: 5,
|
countdownProgress: 0,
|
deleteTimer: null
|
};
|
},
|
onLoad(options) {
|
//options中包含了url附带的参数
|
|
let params = options;
|
|
if (params["id"]) {
|
this.isUpdate = false;
|
this.formData.id = params["id"];
|
this.formData.billNo = params["billNo"];
|
this.init();
|
} else {
|
//初始化检验单号
|
this.$post({
|
url: "/SJ/GetMaxBillNo"
|
}).then(res => {
|
this.formData.billNo = res.data.tbBillList;
|
this.formData.createTime = this.$getDate("yyyy-mm-dd");
|
});
|
|
//产品编码下拉框的初始化
|
this.$post({
|
url: "/XJ/getLineAll"
|
}).then(res => {
|
this.lineList = res.data.tbBillList;
|
this.DAA020List = res.data.tbBillList.map(item => item.lineName);
|
this.formData.itemNo = "";
|
this.formData.itemName = "";
|
this.formData.workshopCode = "";
|
this.formData.workshopName = "";
|
this.formData.line = "";
|
this.formData.lineName = "";
|
this.formData.pbaid = null;
|
})
|
}
|
},
|
methods: {
|
getResultClass(result) {
|
if (result === '合格') return 'result-pass';
|
if (result === '不合格') return 'result-fail';
|
return 'result-pending';
|
},
|
getStatusText(status) {
|
if (status === '合格') return '合格';
|
if (status === '不合格') return '不合格';
|
return '未完成';
|
},
|
getTotalCount(item) {
|
// 如果有穴号信息,使用穴号信息的总数量减去堵穴数量
|
if (item.holeNumbers && item.holeNumbers.length > 0) {
|
// 计算非堵穴的数量
|
const nonBlockedCount = item.holeNumbers.filter(hole => !hole.isBlocked).length;
|
return nonBlockedCount;
|
}
|
// 否则使用levelNum
|
return item.levelNum || 0;
|
},
|
getInspectionDescription(item) {
|
// 直接取ITEM_MOD字段的值
|
if (item.itemMod && item.itemMod.trim() !== '') {
|
return item.itemMod;
|
} else {
|
return '检验项目详情';
|
}
|
},
|
// 显示删除确认弹窗
|
showDeleteConfirmDialog() {
|
this.showDeleteConfirm = true;
|
this.deleteCountdown = 5;
|
this.countdownProgress = 0;
|
this.startDeleteCountdown();
|
},
|
|
// 开始倒计时
|
startDeleteCountdown() {
|
this.deleteTimer = setInterval(() => {
|
this.deleteCountdown--;
|
this.countdownProgress = ((5 - this.deleteCountdown) / 5) * 100;
|
|
if (this.deleteCountdown <= 0) {
|
clearInterval(this.deleteTimer);
|
this.deleteTimer = null;
|
}
|
}, 1000);
|
},
|
|
// 取消删除
|
cancelDelete() {
|
this.showDeleteConfirm = false;
|
if (this.deleteTimer) {
|
clearInterval(this.deleteTimer);
|
this.deleteTimer = null;
|
}
|
this.deleteCountdown = 5;
|
this.countdownProgress = 0;
|
},
|
|
// 确认删除
|
confirmDelete() {
|
if (this.deleteCountdown > 0) {
|
return;
|
}
|
|
this.showDeleteConfirm = false;
|
if (this.deleteTimer) {
|
clearInterval(this.deleteTimer);
|
this.deleteTimer = null;
|
}
|
|
this.removeXJ();
|
},
|
|
removeXJ() {
|
if (this.formData.id) {
|
this.$post({
|
url: "/SJ/removeSJ",
|
data: {
|
id: this.formData.id
|
}
|
}).then(res => {
|
if (res.data.tbBillList > 0) {
|
this.$showMessage("删除成功");
|
//关闭当前页面,返回上一页面或多级页面
|
uni.navigateBack();
|
} else {
|
this.$showMessage("删除失败");
|
}
|
});
|
} else {
|
this.$showMessage("请先选择检验单号");
|
}
|
},
|
|
saveXJ() {
|
//qaSubmit
|
if (this.formData.id) {
|
this.$post({
|
url: "/SJ/qaSubmit",
|
data: {
|
id: this.formData.id,
|
userNo: this.$loginInfo.account
|
}
|
}).then(res => {
|
if (res.data.tbBillList) {
|
this.$showMessage("首检生成成功");
|
this.init();
|
}
|
});
|
}
|
},
|
init() {
|
if (this.formData.id) {
|
this.$post({
|
url: "/SJ/GetPage",
|
data: {
|
pageIndex: 1,
|
limit: 1,
|
id: this.formData.id
|
}
|
}).then(res => {
|
let tbBillListElement = res.data.tbBillList[0];
|
if (tbBillListElement) {
|
// 保留原有的 mnum 和 dnum 默认值
|
const originalMnum = this.formData.mnum;
|
const originalDnum = this.formData.dnum;
|
this.formData = tbBillListElement;
|
// 如果后端没有返回这些字段,使用默认值
|
if (this.formData.mnum === undefined || this.formData.mnum === null) {
|
this.formData.mnum = originalMnum || 1;
|
}
|
if (this.formData.dnum === undefined || this.formData.dnum === null) {
|
this.formData.dnum = originalDnum || "";
|
}
|
this.$post({
|
url: "/SJ/getQSItems",
|
data: {
|
pid: this.formData.id
|
}
|
}).then(res => {
|
this.tableData = res.data.tbBillList;
|
|
this.tableData.sort((a, b) => {
|
if (a.result === '未完成' && b.result === '合格') {
|
return -1;
|
} else if (a.result === '合格' && b.result === '未完成') {
|
return 1;
|
} else {
|
return 0;
|
}
|
});
|
|
if (this.tableData.length <= 0) {
|
this.isShowTable = true; // 没有检验项目时显示生成按钮
|
} else {
|
this.isShowTable = false; // 有检验项目时直接进入填写阶段
|
this.isUpdate = false; // 设置为非更新状态,可以直接填写
|
}
|
})
|
}
|
})
|
}
|
},
|
onDaa020Change(event) {
|
//获取生产线别的下标地址
|
//this.formData.line = event;
|
|
this.lineNo = this.lineList[this.DAA020List.indexOf(event)].lineNo;
|
|
this.formData.line = this.lineNo;
|
|
this.formData.itemNo = '';
|
this.formData.daa001 = '';
|
|
this.$post({
|
url: "/XJ/getBoardItem",
|
data: {
|
lineNo: this.lineNo
|
}
|
}).then(res => {
|
//填充工单号的数据源
|
this.boardItems = res.data.tbBillList;
|
|
this.ItemList = this.boardItems.map(item => item.itemName);
|
})
|
|
},
|
onItemChange(event) {
|
|
this.formData.itemNo = event.itemNo;
|
|
this.$post({
|
url: "/XJ/getDaa001",
|
data: {
|
daa020: this.lineNo,
|
item: this.formData.itemNo
|
}
|
}).then(res => {
|
//填充工单号的数据源
|
this.schemeResult = res.data.tbBillList;
|
this.DAA001List = this.schemeResult.map(s => s.daa001);
|
//变为默认空值的状态
|
this.DAA001Index = -1;
|
this.formData.daa001 = "";
|
})
|
},
|
//选取工单填充物料号和其他信息
|
onDaa001Change(event) {
|
this.DAA001Index = event.mp.detail.value;
|
|
this.formData.daa001 = this.schemeResult[this.DAA001Index].daa001;
|
|
//表单中的部分字段赋值
|
this.$post({
|
url: "/XJ/getItem",
|
data: {
|
daa001: this.formData.daa001
|
}
|
}).then(res => {
|
let data = res.data.tbBillList[0];
|
//当返回的结果集为空时置空原有的值
|
if (!data) {
|
this.formData.billNo = "";
|
this.formData.taskNo = "";
|
this.formData.itemNo = "";
|
this.tableData = [];
|
return;
|
}
|
//不为空时赋值
|
this.formData.daa001 = data.daa001;
|
this.formData.daa003 = data.daa003;
|
this.formData.daa004 = data.daa004;
|
this.formData.daa008 = data.daa008;
|
this.formData.pbaid = data.id;
|
|
|
this.$post({
|
url: "/SJ/SetQSItems",
|
data: {
|
itemNo: this.formData.itemNo,
|
lineNo: this.lineNo
|
}
|
}).then(res => {
|
if (res.data.tbBillList.length > 0) {
|
this.tableData = res.data.tbBillList; // 在箭头函数中,this 指向外层作用域的 this
|
this.isSubmit = false;
|
// 注意:这里不自动保存,因为还没有创建检验单,需要先调用save()创建检验单
|
this.isShowTable = false; // 直接进入填写阶段
|
this.isUpdate = false; // 设置为非更新状态,可以直接填写
|
} else {
|
this.$showMessage("此物料没有启用的检验项目,请维护!");
|
this.isSubmit = true;
|
this.tableData = [];
|
this.isShowTable = true; // 没有检验项目时显示生成按钮
|
}
|
});
|
|
});
|
},
|
toDetail(item) {
|
if (this.isUpdate) {
|
uni.showToast({
|
icon: "none",
|
title: "请先生成检验项目",
|
duration: 2000,
|
});
|
} else {
|
uni.navigateTo({
|
url: 'detail?id=' + item.id + '&billNo=' + this.formData.billNo + '&gid=' + this.formData
|
.id
|
});
|
}
|
},
|
getTable() {
|
this.$post({
|
url: "/SJ/SetQSItems",
|
data: {
|
itemNo: this.formData.itemNo,
|
lineNo: this.formData.line
|
}
|
}).then(res => {
|
if (res.data.tbBillList.length > 0) {
|
this.tableData = res.data.tbBillList; // 在箭头函数中,this 指向外层作用域的 this
|
// 自动保存检验项目到数据库
|
this.saveTable();
|
} else {
|
this.$showMessage("此物料没有启用的检验项目,请维护!");
|
this.isShowTable = true;
|
this.isUpdate = false;
|
this.tableData = [];
|
}
|
});
|
},
|
saveTable() {
|
if (this.tableData.length === 0) {
|
return;
|
}
|
|
this.$post({
|
url: "/SJ/SaveItem",
|
data: {
|
gid: this.formData.id,
|
items: this.tableData,
|
statusUser: this.$loginInfo.account
|
}
|
}).then(res => {
|
this.tableData = res.data.tbBillList.items;
|
this.isShowTable = false;
|
this.isUpdate = false;
|
})
|
},
|
save() {
|
|
//if (this.tableData.length === 0) {
|
//this.$showMessage(this.formData.itemNo + "物料没有检验项目");
|
//return;
|
//}
|
|
if (!this.formData.daa001) {
|
this.$showMessage("请选择计划编号");
|
return;
|
}
|
|
this.formData.statusUser = this.$loginInfo.account;
|
|
this.$post({
|
url: "/SJ/Save",
|
data: {
|
from: this.formData,
|
items: this.tableData
|
}
|
}).then(res => {
|
this.formData = res.data.tbBillList.result;
|
this.tableData = res.data.tbBillList.items;
|
this.isUpdate = false;
|
})
|
},
|
saveRemarks() {
|
this.remarksPopup = !this.remarksPopup;
|
this.remarks = this.formData.remarks;
|
},
|
editRemarks() {
|
if (this.remarks) {
|
//saveRemarksGid
|
this.$post({
|
url: "/SJ/saveRemarksGid",
|
data: {
|
gid: this.formData.id,
|
remarks: this.remarks
|
}
|
}).then(res => {
|
if (res.data.tbBillList > 0) {
|
this.formData.remarks = this.remarks;
|
this.remarksPopup = !this.remarksPopup;
|
this.$showMessage("保存成功");
|
}
|
})
|
}
|
},
|
toImage() {
|
uni.navigateTo({
|
url: 'ImageItem?id=' + this.formData.id
|
});
|
},
|
onSJ_MJChange(e) {
|
this.SJ_MJIndex = e.mp.detail.value;
|
this.formData.SJ_MJ = this.SJ_MJList[this.SJ_MJIndex];
|
},
|
async submitInspection() {
|
if (this.formData.id) {
|
try {
|
// 验证不合格检验项目
|
await this.validateUnqualifiedItems();
|
|
// 显示确认提示框
|
uni.showModal({
|
title: '确认提交',
|
content: '确定要提交检验结果吗?提交后将无法修改。',
|
confirmText: '确定提交',
|
cancelText: '取消',
|
success: (res) => {
|
if (res.confirm) {
|
// 用户确认后执行提交
|
this.$post({
|
url: "/SJ/SjSubmit",
|
data: {
|
id: this.formData.id,
|
userNo: this.$loginInfo.account
|
}
|
}).then(res => {
|
if (res.data.tbBillList) {
|
this.$showMessage("提交成功");
|
this.init();
|
}
|
});
|
}
|
}
|
});
|
} catch (error) {
|
this.$showMessage(error.message);
|
}
|
}
|
},
|
|
// 验证不合格检验项目
|
async validateUnqualifiedItems() {
|
const unqualifiedItems = this.tableData.filter(item => item.result === '不合格');
|
|
if (unqualifiedItems.length === 0) {
|
return Promise.resolve();
|
}
|
|
// 检查每个不合格项目是否有图片和描述
|
for (const item of unqualifiedItems) {
|
try {
|
const detail = await this.getInspectionItemDetail(item.id);
|
if (!detail.hasImage || !detail.hasRemarks) {
|
const missingItems = [];
|
if (!detail.hasImage) missingItems.push('图片');
|
if (!detail.hasRemarks) missingItems.push('不良描述');
|
|
throw new Error(`检验项目"${item.projName}"不合格,但缺少:${missingItems.join('、')},请完善后重新提交!`);
|
}
|
} catch (error) {
|
throw error;
|
}
|
}
|
},
|
|
// 获取检验项目详细信息
|
async getInspectionItemDetail(itemId) {
|
return new Promise((resolve, reject) => {
|
this.$post({
|
url: "/SJ/getQSItems",
|
data: {
|
pid: this.formData.id,
|
id: itemId
|
}
|
}).then(res => {
|
const item = res.data.tbBillList[0];
|
if (item) {
|
resolve({
|
hasImage: item.imageData && item.imageData.length > 0,
|
hasRemarks: item.remarks && item.remarks.trim() !== ''
|
});
|
} else {
|
reject(new Error('无法获取检验项目详情'));
|
}
|
}).catch(err => {
|
reject(err);
|
});
|
});
|
},
|
|
drawingConfirm() {
|
this.drawingShow = false
|
this.imageShow = false
|
this.productionShow = false
|
this.itemShow=false
|
},
|
drawingCancel() {
|
this.drawingShow = false
|
this.imageShow = false
|
this.productionShow = false
|
// const item = '83040700101'
|
const item = this.formData.billNo;
|
console.log(this.formData.billNo );
|
console.log('daa001:', item);
|
console.log('ItemNo:', this.formData.itemNo);
|
|
const url = this.$store.state.serverInfo.serverAPI + "/LLJ/getWomdab";
|
// 或者如果路径不同,请使用正确的端点
|
// const url = "http://192.168.0.100:10054/api/getWomdab"
|
|
let _this = this;
|
|
uni.request({
|
url: url,
|
method: 'POST',
|
header: {
|
'Content-Type': 'application/json'
|
},
|
data: {
|
daa001: item, // 根据DTO属性名传递
|
ItemNo: this.formData.itemNo // 注意大小写匹配
|
},
|
success: (response) => {
|
console.log(response);
|
console.log("-------------------------------------");
|
// 根据后端返回的数据结构进行调整
|
if (response.data.status === 1) {
|
// 状态为1表示没有数据
|
_this.drawing = [];
|
} else if (response.data.status === 0) {
|
// 状态为0表示成功
|
if (response.data.data && response.data.data.tbBillList) {
|
_this.drawing = response.data.data.tbBillList;
|
|
// 遍历数据,判断文件后缀并添加字段
|
_this.drawing.forEach((file) => {
|
// 获取文件名的后缀
|
const fileExtension = file.fName ? file.fName.split('.').pop().toLowerCase() : '';
|
|
// 定义支持的文件类型
|
const supportedExtensions = ['jpg', 'pdf', 'xlsx', 'doc', 'docx', 'xls'];
|
|
// 判断是否支持该文件类型
|
file.isSupported = supportedExtensions.includes(fileExtension);
|
});
|
} else {
|
_this.drawing = [];
|
}
|
} else {
|
// 其他状态码处理
|
_this.drawing = [];
|
uni.showToast({
|
title: response.data.message || '请求失败',
|
icon: 'none'
|
});
|
}
|
},
|
fail: (error) => {
|
uni.showToast({
|
title: '请求图纸链接失败',
|
icon: 'none'
|
});
|
console.error('请求失败:', error);
|
}
|
});
|
},
|
itemCancel() {
|
this.itemShow=false
|
},
|
|
|
fetchDrawingNumber(itemNo) {
|
// const item = '83040700101'
|
const item = itemNo;
|
console.log(itemNo)
|
// console.log(item)
|
const url = this.$store.state.serverInfo.serverAPI +"/PLM/RetrieveDrawings?ItemNo=" + item
|
|
// const item = '5.06.04.4002';
|
// const url = "http://192.168.0.100:10054/api/PLM/RetrieveDrawings?ItemNo=" + item
|
|
let _this = this;
|
|
uni.request({
|
url: url,
|
method: 'POST',
|
success: (response) => {
|
console.log(response)
|
if (response.data.data == '返回结果为空') {
|
_this.drawing = []
|
} else {
|
_this.drawing = response.data.data
|
// 遍历数据,判断文件后缀并添加字段
|
_this.drawing.forEach((file) => {
|
// 获取文件名的后缀
|
const fileExtension = file.fName.split('.').pop()
|
.toLowerCase();
|
|
// 定义支持的文件类型
|
const supportedExtensions = ['jpg', 'pdf', 'xlsx', 'doc',
|
'docx',
|
'xls'
|
];
|
|
// 判断是否支持该文件类型
|
file.isSupported = supportedExtensions.includes(fileExtension);
|
});
|
}
|
},
|
fail: (error) => {
|
uni.showToast({
|
title: '请求图纸链接失败',
|
icon: 'none'
|
});
|
}
|
});
|
this.drawingShow = true
|
},
|
|
getBom(){
|
// const item = '83040700101'
|
const item = this.formData.daa001;
|
console.log(this.formData.daa001 );
|
console.log('daa001:', item);
|
console.log('ItemNo:', this.formData.itemNo);
|
|
const url = this.$store.state.serverInfo.serverAPI + "/LLJ/getWomdab";
|
// 或者如果路径不同,请使用正确的端点
|
// const url = "http://192.168.0.100:10054/api/getWomdab"
|
|
let _this = this;
|
|
uni.request({
|
url: url,
|
method: 'POST',
|
header: {
|
'Content-Type': 'application/json'
|
},
|
data: {
|
daa001: item, // 根据DTO属性名传递
|
ItemNo: this.formData.itemNo // 注意大小写匹配
|
},
|
success: (response) => {
|
console.log(response);
|
console.log("-------------------------------------");
|
// 根据后端返回的数据结构进行调整
|
if (response.data.status === 1) {
|
// 状态为1表示没有数据
|
_this.drawing = [];
|
uni.showToast({
|
title: response.data.message || '该检验单未上传附件信息',
|
icon: 'none'
|
});
|
} else if (response.data.status === 0) {
|
// 状态为0表示成功
|
if (response.data.data && response.data.data.tbBillList) {
|
_this.drawing = response.data.data.tbBillList;
|
|
// 遍历数据,判断文件后缀并添加字段
|
_this.drawing.forEach((file) => {
|
// 获取文件名的后缀
|
const fileExtension = file.fName ? file.fName.split('.').pop().toLowerCase() : '';
|
|
// 定义支持的文件类型
|
const supportedExtensions = ['jpg', 'pdf', 'xlsx', 'doc', 'docx', 'xls'];
|
|
// 判断是否支持该文件类型
|
file.isSupported = supportedExtensions.includes(fileExtension);
|
});
|
} else {
|
_this.drawing = [];
|
}
|
} else {
|
// 其他状态码处理
|
_this.drawing = [];
|
uni.showToast({
|
title: response.data.message || '请求失败',
|
icon: 'none'
|
});
|
}
|
},
|
fail: (error) => {
|
uni.showToast({
|
title: '请求图纸链接失败',
|
icon: 'none'
|
});
|
console.error('请求失败:', error);
|
}
|
});
|
this.itemShow = true
|
},
|
|
//图纸相关文档
|
openDrawings(item) {
|
console.log("jkjoi", item)
|
if (item.fRelevantObject.length > 2) {
|
// 生成请求URL(简化编码逻辑)
|
const encodedName = encodeURIComponent(item.fName);
|
const url = this.$store.state.serverInfo.serverAPI+`/PLM/OpenDrawingsGet?fileId=${item.fRelevantObject}&fName=${encodedName}`;
|
console.log('请求URL:', url);
|
|
const now = new Date();
|
const timestamp = [
|
now.getFullYear(),
|
String(now.getMonth() + 1).padStart(2, '0'),
|
String(now.getDate()).padStart(2, '0'),
|
String(now.getHours()).padStart(2, '0'),
|
String(now.getMinutes()).padStart(2, '0'),
|
String(now.getSeconds()).padStart(2, '0')
|
].join('');
|
|
// 生成新文件名(基础名_时间戳.后缀)
|
this.fileName = `${item.fName}_${timestamp}.pdf`;
|
console.log('新文件名:', this.fileName);
|
|
uni.downloadFile({
|
url: url,
|
success: (res) => {
|
console.log(res);
|
let fileName = this.fileName;
|
let fileExt = fileName.split('.').pop();
|
// let newFilePath = "_doc/uniapp_temp_1742877118745/download" + "/" + fileName;
|
// console.log('newFilePath', newFilePath)
|
if (fileExt === 'xls' || fileExt === 'xlsx' || fileExt === 'pdf'|| fileExt === 'jpg'|| fileExt === 'png') {
|
plus.io.resolveLocalFileSystemURL(res.tempFilePath, (entry) => {
|
// 获取文件所在的目录
|
entry.getParent((parentEntry) => {
|
let newFileName = this.fileName; // 新的文件名
|
|
// 移动并重命名文件
|
entry.moveTo(
|
parentEntry,
|
newFileName,
|
(newEntry) => {
|
console.log('重命名成功:', newEntry.fullPath);
|
|
// 打开 Excel 文件
|
plus.runtime.openFile(newEntry.fullPath, {}, (e) => {
|
console.error('无法打开 Excel 文件:', e);
|
});
|
|
// let pages = getCurrentPages();
|
// let beforePage = pages[pages.length - 2];
|
// uni.navigateBack({
|
// delta: 1, //返回的页面数,如果为1表示返回上一页
|
// success: (event) => {
|
// beforePage.$vm.reload()
|
// }
|
// });
|
|
},
|
(err) => {
|
console.error('重命名失败:', err);
|
}
|
);
|
}, (err) => {
|
console.error('获取父目录失败:', err);
|
});
|
}, (err) => {
|
console.error('获取文件失败:', err);
|
});
|
} else {
|
console.error('文件格式不匹配:', fileExt);
|
uni.showToast({
|
title: '文件格式不支持',
|
icon: 'none'
|
});
|
}
|
}
|
})
|
uni.request({
|
url: url,
|
method: 'POST',
|
responseType: 'arraybuffer',
|
success: (response) => {
|
console.log(response.data)
|
if (!response) {
|
uni.showToast({
|
title: "协议预览失败",
|
duration: 2000
|
});
|
}
|
|
},
|
fail: (error) => {
|
console.log(error)
|
uni.showToast({
|
title: '请求预览链接失败',
|
icon: 'none'
|
});
|
}
|
});
|
}
|
|
else
|
{
|
uni.showToast({
|
title: '请求预览链接失败',
|
icon: 'none'
|
});
|
}
|
},
|
|
getGenUpdate() {
|
if (!this.formData.id || !this.formData.billNo) {
|
this.$showMessage("请先保存检验单!");
|
return;
|
}
|
|
// 参数验证
|
if (!this.$loginInfo.account) {
|
this.$showMessage("用户信息不完整,无法获取检验项目");
|
return;
|
}
|
|
// 直接使用 formData 中的值
|
const requestData = {
|
id: this.formData.id,
|
no: this.formData.billNo,
|
user: this.$loginInfo.account,
|
mnum: this.formData.mnum || 1,
|
dnum: this.formData.dnum || null
|
};
|
|
// 添加调试日志
|
console.log("SJ GenUpdate 请求参数:", requestData);
|
|
this.$post({
|
url: "/SJ/GenUpdate",
|
data: requestData
|
}).then(genRes => {
|
console.log("SJ GenUpdate 响应:", genRes);
|
if (genRes.data.result === 0) {
|
this.$showMessage("获取检验项目成功");
|
this.init();
|
// 获取成功后直接进入填写阶段
|
this.isShowTable = false;
|
this.isUpdate = false;
|
} else {
|
this.$showMessage(genRes.data.message || "获取失败");
|
}
|
}).catch(err => {
|
console.error("SJ GenUpdate 错误:", err);
|
this.$showMessage("获取检验项目失败:" + (err.message || "未知错误"));
|
});
|
},
|
|
// 附件相关方法
|
viewAttachmentInfo() {
|
this.showAttachmentPopup = true;
|
this.attachmentsLoading = true;
|
this.attachments = [];
|
this.$post({
|
url: "/SJ/getAttachments",
|
data: {
|
itemNo: this.formData.itemNo,
|
fromPage: 'Add' // 标识来自Add页面,不过滤
|
}
|
}).then(res => {
|
this.attachmentsLoading = false;
|
if (res.status === 0) {
|
this.attachments = res.data.tbBillList;
|
// 为每个附件设置默认可用状态
|
this.attachments.forEach((item, index) => {
|
this.$set(item, 'ftpAvailable', true);
|
this.$set(item, 'checking', false);
|
});
|
} else if (res.status === 1 && res.message === "该检验单未上传附件信息!") {
|
uni.showToast({ title: res.message, icon: "none" });
|
} else {
|
uni.showToast({ title: "获取附件失败", icon: "none" });
|
}
|
});
|
},
|
|
closeAttachmentPopup() {
|
this.showAttachmentPopup = false;
|
},
|
|
showAttachmentDetailDialog(item) {
|
this.selectedAttachment = item;
|
this.showAttachmentPopup = false;
|
this.showAttachmentDetail = true;
|
},
|
|
closeAttachmentDetail() {
|
this.showAttachmentDetail = false;
|
this.selectedAttachment = null;
|
this.showAttachmentPopup = true;
|
},
|
|
isPreviewable(filename) {
|
if (!filename) return false;
|
const ext = filename.trim().split('.').pop().toLowerCase();
|
return [
|
'pdf',
|
'jpg', 'jpeg', 'png', 'gif', 'bmp', 'webp',
|
'txt', 'log', 'md',
|
'doc', 'docx',
|
'xls', 'xlsx',
|
'ppt', 'pptx',
|
'csv'
|
].includes(ext);
|
},
|
|
// 获取文件类型图标
|
getFileTypeIcon(filename) {
|
if (!filename) return '📄';
|
const ext = filename.trim().split('.').pop().toLowerCase();
|
const iconMap = {
|
'pdf': '📕',
|
'jpg': '🖼️', 'jpeg': '🖼️', 'png': '🖼️', 'gif': '🖼️', 'bmp': '🖼️', 'webp': '🖼️',
|
'txt': '📝', 'log': '📝', 'md': '📝',
|
'doc': '📘', 'docx': '📘',
|
'xls': '📊', 'xlsx': '📊',
|
'ppt': '📙', 'pptx': '📙',
|
'csv': '📊',
|
'zip': '📦', 'rar': '📦', '7z': '📦',
|
'dwg': '🏗️', 'dxf': '🏗️'
|
};
|
return iconMap[ext] || '📄';
|
},
|
|
// 获取文件类型CSS类
|
getFileTypeClass(filename) {
|
if (!filename) return 'file-unknown';
|
const ext = filename.trim().split('.').pop().toLowerCase();
|
const classMap = {
|
'pdf': 'file-pdf',
|
'jpg': 'file-image', 'jpeg': 'file-image', 'png': 'file-image', 'gif': 'file-image', 'bmp': 'file-image', 'webp': 'file-image',
|
'txt': 'file-text', 'log': 'file-text', 'md': 'file-text',
|
'doc': 'file-word', 'docx': 'file-word',
|
'xls': 'file-excel', 'xlsx': 'file-excel',
|
'ppt': 'file-powerpoint', 'pptx': 'file-powerpoint',
|
'csv': 'file-excel',
|
'zip': 'file-archive', 'rar': 'file-archive', '7z': 'file-archive',
|
'dwg': 'file-cad', 'dxf': 'file-cad'
|
};
|
return classMap[ext] || 'file-unknown';
|
},
|
|
// 格式化日期
|
formatDate(dateString) {
|
if (!dateString) return '';
|
try {
|
const date = new Date(dateString);
|
return date.toLocaleDateString('zh-CN', {
|
year: 'numeric',
|
month: '2-digit',
|
day: '2-digit',
|
hour: '2-digit',
|
minute: '2-digit'
|
});
|
} catch (e) {
|
return dateString;
|
}
|
},
|
|
downloadAttachment(item) {
|
const fileName = item.fattach.replace(/[\s\u3000\r\n]+/g, '').trim();
|
const downloadUrl = this.$store.state.serverInfo.serverAPI + "/SJ/DownloadFtpFile?itemNo=" +
|
encodeURIComponent(item.itemNo) + "&fileName=" + encodeURIComponent(fileName) +
|
"&ftpServer=" + encodeURIComponent(this.$store.state.serverInfo.ftpServer);
|
|
uni.downloadFile({
|
url: downloadUrl,
|
success: (res) => {
|
if (res.statusCode === 200) {
|
uni.showToast({ title: '下载成功', icon: 'success' });
|
} else {
|
uni.showToast({ title: '下载失败', icon: 'none' });
|
}
|
},
|
fail: (err) => {
|
console.error('下载失败:', err);
|
uni.showToast({ title: '下载失败,请重试', icon: 'none' });
|
}
|
});
|
},
|
|
previewFtpFile(item) {
|
const fileName = item.fattach.replace(/[\s\u3000\r\n]+/g, '').trim();
|
const fileExt = fileName.split('.').pop().toLowerCase();
|
|
if (!this.isPreviewable(fileName)) {
|
uni.showModal({
|
title: '不支持预览',
|
content: '该文件类型不支持在线预览,请下载后查看',
|
showCancel: false
|
});
|
return;
|
}
|
|
const previewUrl = this.$store.state.serverInfo.serverAPI + "/SJ/PreviewFtpFile?itemNo=" +
|
encodeURIComponent(item.itemNo) + "&fileName=" + encodeURIComponent(fileName) +
|
"&ftpServer=" + encodeURIComponent(this.$store.state.serverInfo.ftpServer);
|
|
if (['pdf'].includes(fileExt)) {
|
this.previewPdfFile(previewUrl, fileName);
|
} else if (['jpg', 'jpeg', 'png', 'gif', 'bmp'].includes(fileExt)) {
|
this.previewImageFile(previewUrl, fileName);
|
} else if (['txt'].includes(fileExt)) {
|
this.previewTextFile(previewUrl, fileName);
|
} else {
|
this.previewOfficeFile(previewUrl, fileName);
|
}
|
},
|
|
previewPdfFile(url, fileName) {
|
this.previewTitle = fileName;
|
this.previewContent = url;
|
this.previewType = 'pdf';
|
this.previewFileUrl = url;
|
this.showFilePreviewPopup = true;
|
this.showAttachmentDetail = false;
|
},
|
|
previewImageFile(url, fileName) {
|
this.previewTitle = fileName;
|
this.previewContent = url;
|
this.previewType = 'image';
|
this.previewFileUrl = url;
|
this.showFilePreviewPopup = true;
|
this.showAttachmentDetail = false;
|
},
|
|
previewTextFile(url, fileName) {
|
this.previewTitle = fileName;
|
this.previewType = 'text';
|
this.previewFileUrl = url;
|
this.showFilePreviewPopup = true;
|
this.showAttachmentDetail = false;
|
|
uni.request({
|
url: url,
|
method: 'GET',
|
success: (res) => {
|
this.previewContent = res.data;
|
},
|
fail: (err) => {
|
this.previewContent = '预览失败,请下载后查看';
|
}
|
});
|
},
|
|
previewOfficeFile(url, fileName) {
|
this.previewTitle = fileName;
|
this.previewContent = '';
|
this.previewType = 'excel';
|
this.previewFileUrl = url;
|
this.showFilePreviewPopup = true;
|
this.showAttachmentDetail = false;
|
},
|
|
closeFilePreview() {
|
this.showFilePreviewPopup = false;
|
this.showAttachmentDetail = true;
|
},
|
|
downloadPreviewFile() {
|
if (this.previewFileUrl && this.selectedAttachment) {
|
this.downloadAttachment(this.selectedAttachment);
|
}
|
},
|
|
previewImageInPopup() {
|
// 在新窗口中打开图片进行放大查看
|
if (this.previewContent) {
|
uni.previewImage({
|
urls: [this.previewContent],
|
current: this.previewContent
|
});
|
}
|
}
|
},
|
onShow() {
|
//每次进入页面都会执行的方法
|
this.init();
|
}
|
};
|
</script>
|
|
<style scoped>
|
/* 基础样式 */
|
.inspection-sheet {
|
padding: 10px;
|
background-color: #f5f7fa;
|
min-height: 100vh;
|
padding-bottom: 120px; /* 为底部固定按钮留出空间 */
|
}
|
|
/* 头部样式 */
|
.sheet-header {
|
background-color: white;
|
padding: 20px;
|
border-radius: 8px;
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
|
margin-bottom: 20px;
|
}
|
|
.sheet-header h1 {
|
font-size: 24px;
|
font-weight: 600;
|
color: #2c3e50;
|
margin-bottom: 10px;
|
}
|
|
.inspection-number {
|
font-size: 16px;
|
color: #3498db;
|
font-weight: 500;
|
}
|
|
/* 基本信息区 */
|
.basic-info {
|
background-color: white;
|
padding: 20px;
|
border-radius: 8px;
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
|
margin-bottom: 20px;
|
}
|
|
.info-row {
|
display: flex;
|
align-items: center;
|
margin-bottom: 15px;
|
}
|
|
.info-label {
|
font-size: 14px;
|
color: #7f8c8d;
|
margin-right: 10px;
|
min-width: 80px;
|
}
|
|
.info-value {
|
font-size: 14px;
|
color: #2c3e50;
|
margin-right: 20px;
|
}
|
|
.info-picker {
|
padding: 8px 12px;
|
border: 1px solid #ddd;
|
border-radius: 4px;
|
background-color: white;
|
font-size: 14px;
|
margin-right: 20px;
|
}
|
|
/* 物料信息区 */
|
.material-info {
|
background-color: white;
|
padding: 20px;
|
border-radius: 8px;
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
|
margin-bottom: 20px;
|
}
|
|
.info-block {
|
display: flex;
|
align-items: center;
|
margin-bottom: 15px;
|
}
|
|
.info-block .info-label {
|
min-width: 100px;
|
font-size: 14px;
|
color: #7f8c8d;
|
}
|
|
.info-block .info-value {
|
font-size: 14px;
|
color: #2c3e50;
|
flex: 1;
|
}
|
|
.info-picker-input {
|
flex: 1;
|
padding: 8px 12px;
|
border: 1px solid #ddd;
|
border-radius: 4px;
|
background-color: white;
|
font-size: 14px;
|
}
|
|
.info-input {
|
flex: 1;
|
padding: 8px 12px;
|
border: 1px solid #ddd;
|
border-radius: 4px;
|
background-color: white;
|
font-size: 14px;
|
}
|
|
.highlight {
|
font-weight: 600;
|
color: #e74c3c;
|
font-size: 16px;
|
}
|
|
/* 检验项目表格 */
|
.inspection-table {
|
margin: 25px 0;
|
border-radius: 8px;
|
overflow: hidden;
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
background: #fff;
|
}
|
|
.inspection-table table {
|
width: 100%;
|
border-collapse: collapse;
|
}
|
|
.inspection-table th, .inspection-table td {
|
padding: 16px 20px;
|
border: none;
|
text-align: left;
|
border-bottom: 1px solid #eee;
|
}
|
|
.inspection-table th {
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
font-weight: 600;
|
color: #fff;
|
font-size: 14px;
|
letter-spacing: 0.5px;
|
position: relative;
|
}
|
|
.inspection-table tbody tr {
|
transition: all 0.3s ease;
|
border-left: 4px solid transparent;
|
}
|
|
.inspection-table tbody tr:nth-child(even) {
|
background-color: #f8fafc;
|
}
|
|
.inspection-table tbody tr:hover {
|
background-color: #e8f4fd;
|
border-left-color: #3498db;
|
transform: translateY(-1px);
|
box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
|
}
|
|
/* 检验描述列特殊样式 */
|
.inspection-table td:nth-child(2) {
|
position: relative;
|
min-height: 80px;
|
vertical-align: top;
|
padding: 16px 20px;
|
}
|
|
/* 水印样式 */
|
.watermark {
|
position: absolute;
|
font-size: 32px;
|
font-weight: bold;
|
opacity: 0.4;
|
z-index: 3;
|
pointer-events: none;
|
top: 50%;
|
left: 50%;
|
transform: translate(-50%, -50%) rotate(-15deg);
|
text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
|
min-width: 60px;
|
text-align: center;
|
}
|
|
.watermark.approved {
|
color: #27ae60; /* 更淡的绿色 */
|
}
|
|
.watermark.rejected {
|
color: #e67e22; /* 更淡的红色 */
|
}
|
|
.watermark.pending {
|
color: #f39c12; /* 橙色 */
|
}
|
|
/* 描述文本样式 */
|
.description-text {
|
position: relative;
|
z-index: 2;
|
padding: 12px 16px;
|
background: transparent;
|
line-height: 1.6;
|
font-size: 14px;
|
color: #555;
|
margin: 0;
|
word-wrap: break-word;
|
word-break: break-word;
|
max-width: 100%;
|
/* 确保文字不会太长遮挡水印 */
|
padding-right: 80px;
|
min-height: 20px;
|
display: block;
|
}
|
|
.record-btn {
|
padding: 8px 16px;
|
background: linear-gradient(135deg, #3498db, #2980b9);
|
color: #fff;
|
border: none;
|
border-radius: 6px;
|
cursor: pointer;
|
transition: all 0.3s ease;
|
font-weight: 500;
|
font-size: 13px;
|
box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
|
}
|
|
.record-btn:hover {
|
background: linear-gradient(135deg, #2980b9, #1f618d);
|
transform: translateY(-1px);
|
box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
|
}
|
|
.record-btn:active {
|
transform: translateY(0);
|
}
|
|
/* 表单上方操作按钮区样式 */
|
.top-action-buttons {
|
display: flex;
|
justify-content: flex-end;
|
gap: 10px;
|
margin: 20px 0;
|
padding: 15px;
|
background-color: #f8f9fa;
|
border-radius: 8px;
|
border: 1px solid #e9ecef;
|
}
|
|
/* 表单下方操作按钮区样式 */
|
.bottom-action-buttons {
|
display: flex;
|
justify-content: center;
|
gap: 8px;
|
padding: 12px;
|
flex-wrap: wrap;
|
align-items: center;
|
position: fixed; /* 固定在屏幕底部 */
|
bottom: 0; /* 距离底部0px */
|
left: 0; /* 距离左边0px */
|
right: 0; /* 距离右边0px */
|
background-color: #fff; /* 背景色 */
|
border-top: 1px solid #e9ecef; /* 顶部边框 */
|
z-index: 1000; /* 确保在最上层 */
|
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* 顶部阴影 */
|
}
|
|
.action-btn {
|
background-color: #ecf0f1;
|
color: #34495e;
|
padding: 12px 15px;
|
border: none;
|
border-radius: 6px;
|
cursor: pointer;
|
font-size: 14px;
|
font-weight: 500;
|
transition: all 0.3s ease;
|
text-align: center;
|
min-height: 44px;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
}
|
|
.action-btn:hover {
|
background-color: #d5dbdb;
|
transform: translateY(-1px);
|
}
|
|
.action-btn.primary {
|
background-color: #3498db;
|
color: #fff;
|
}
|
|
.action-btn.primary:hover {
|
background-color: #2980b9;
|
}
|
|
.action-btn.danger {
|
background-color: #e74c3c;
|
color: #fff;
|
}
|
|
.action-btn.danger:hover {
|
background-color: #c0392b;
|
}
|
|
/* 小尺寸按钮样式 */
|
.action-btn.small {
|
padding: 10px 12px;
|
font-size: 14px;
|
min-height: 44px;
|
white-space: nowrap;
|
flex-shrink: 0;
|
min-width: 80px;
|
max-width: 120px;
|
flex: 1;
|
}
|
|
/* 原有按钮样式保持兼容 */
|
.action-buttons {
|
display: flex;
|
gap: 10px;
|
margin: 15px 0;
|
justify-content: flex-end;
|
}
|
|
.overlay {
|
position: fixed;
|
top: 0;
|
left: 0;
|
width: 100%;
|
height: 100%;
|
background-color: rgba(0, 0, 0, 0.5);
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
z-index: 1000; /* 提高层级,确保在固定按钮上方 */
|
}
|
|
/* 弹窗整体美化 */
|
.popup {
|
background: #fff;
|
border-radius: 16px;
|
box-shadow: 0 8px 32px rgba(60,60,60,0.18);
|
padding: 28px 28px 18px 28px;
|
border: none;
|
position: relative;
|
min-width: 260px;
|
z-index: 1001; /* 确保弹窗内容在最上层 */
|
max-height: 80vh; /* 限制最大高度,避免被底部按钮遮挡 */
|
overflow-y: auto; /* 内容过多时可滚动 */
|
}
|
|
.popup-header {
|
padding: 20px;
|
border-bottom: 1px solid #eee;
|
}
|
|
.popup-header h3 {
|
font-size: 18px;
|
font-weight: 600;
|
color: #2c3e50;
|
margin: 0;
|
}
|
|
.popup-content {
|
padding: 20px;
|
}
|
|
.popup-actions {
|
padding: 20px;
|
border-top: 1px solid #eee;
|
display: flex;
|
gap: 10px;
|
justify-content: flex-end;
|
}
|
|
/* 空状态样式 */
|
.empty-state {
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
justify-content: center;
|
padding: 60px 20px;
|
text-align: center;
|
background-color: #fafafa;
|
border-radius: 8px;
|
margin: 20px 0;
|
}
|
|
.empty-icon {
|
font-size: 48px;
|
margin-bottom: 16px;
|
opacity: 0.6;
|
}
|
|
.empty-text {
|
font-size: 18px;
|
font-weight: 600;
|
color: #666;
|
margin-bottom: 8px;
|
}
|
|
.empty-desc {
|
font-size: 14px;
|
color: #999;
|
line-height: 1.5;
|
}
|
|
/* 响应式设计 */
|
@media (max-width: 500px) {
|
.inspection-sheet {
|
padding-bottom: 100px; /* 小屏幕设备上减少底部内边距 */
|
}
|
|
.info-row,
|
.info-block {
|
flex-direction: column;
|
align-items: flex-start;
|
}
|
|
.top-action-buttons {
|
flex-direction: column;
|
align-items: stretch;
|
}
|
|
.bottom-action-buttons {
|
flex-direction: row;
|
align-items: center;
|
justify-content: center;
|
padding: 8px;
|
gap: 6px;
|
position: fixed; /* 保持固定在屏幕底部 */
|
bottom: 0;
|
left: 0;
|
right: 0;
|
background-color: #fff;
|
border-top: 1px solid #e9ecef;
|
z-index: 1000;
|
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
|
}
|
|
.action-btn.small {
|
min-width: 70px;
|
max-width: 100px;
|
padding: 8px 10px;
|
font-size: 13px;
|
min-height: 40px;
|
}
|
|
.inspection-table table {
|
display: block;
|
overflow-x: auto;
|
}
|
}
|
|
/* 附件相关样式 */
|
.attachment-list-popup {
|
width: 80vw;
|
max-width: 800px;
|
max-height: 85vh;
|
}
|
|
.attachment-detail-popup {
|
width: 70vw;
|
max-width: 600px;
|
}
|
|
.attachment-popup-header {
|
padding: 16px;
|
border-bottom: 1px solid #eee;
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
background-color: white;
|
}
|
|
.attachment-popup-title {
|
font-size: 16px;
|
font-weight: 600;
|
color: #2c3e50;
|
margin: 0;
|
}
|
|
.attachment-close-btn {
|
padding: 8px 16px;
|
border: 1px solid #ddd;
|
border-radius: 4px;
|
background-color: white;
|
font-size: 14px;
|
transition: all 0.2s;
|
color: #2c3e50;
|
}
|
|
.attachment-close-btn:hover {
|
background-color: #f8f9fa;
|
}
|
|
.attachment-popup-content {
|
padding: 16px;
|
max-height: 60vh;
|
overflow-y: auto;
|
}
|
|
/* 加载状态 */
|
.attachment-loading {
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
justify-content: center;
|
padding: 40px 20px;
|
gap: 16px;
|
}
|
|
.loading-spinner {
|
width: 32px;
|
height: 32px;
|
border: 3px solid #f3f3f3;
|
border-top: 3px solid #3498db;
|
border-radius: 50%;
|
animation: spin 1s linear infinite;
|
}
|
|
@keyframes spin {
|
0% { transform: rotate(0deg); }
|
100% { transform: rotate(360deg); }
|
}
|
|
.loading-text {
|
font-size: 14px;
|
color: #7f8c8d;
|
}
|
|
/* 空状态 */
|
.attachment-empty {
|
display: flex;
|
flex-direction: column;
|
align-items: center;
|
justify-content: center;
|
padding: 40px 20px;
|
gap: 12px;
|
text-align: center;
|
}
|
|
.empty-icon {
|
font-size: 36px;
|
opacity: 0.6;
|
}
|
|
.empty-text {
|
font-size: 16px;
|
color: #7f8c8d;
|
font-weight: 500;
|
}
|
|
.empty-hint {
|
font-size: 14px;
|
color: #95a5a6;
|
}
|
|
/* 附件列表布局 */
|
.attachment-list {
|
display: flex;
|
flex-direction: column;
|
gap: 16px;
|
}
|
|
.attachment-item {
|
background-color: white;
|
border-radius: 8px;
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
|
overflow: hidden;
|
transition: all 0.3s;
|
border: 1px solid #eee;
|
}
|
|
.attachment-item:hover {
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
}
|
|
.attachment-info {
|
padding: 16px;
|
border-bottom: 1px solid #eee;
|
display: flex;
|
align-items: center;
|
gap: 16px;
|
}
|
|
.file-type-badge {
|
width: 40px;
|
height: 40px;
|
border-radius: 8px;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
font-size: 20px;
|
background: #f8f9fa;
|
border: 2px solid #e9ecef;
|
flex-shrink: 0;
|
}
|
|
.file-type-badge.large {
|
width: 56px;
|
height: 56px;
|
font-size: 28px;
|
}
|
|
.file-type-badge.file-pdf { background: #ffe6e6; border-color: #ffcccc; }
|
.file-type-badge.file-image { background: #e6f3ff; border-color: #cce7ff; }
|
.file-type-badge.file-text { background: #e6ffe6; border-color: #ccffcc; }
|
.file-type-badge.file-word { background: #e6f0ff; border-color: #cce0ff; }
|
.file-type-badge.file-excel { background: #e6ffe6; border-color: #ccffcc; }
|
.file-type-badge.file-powerpoint { background: #fff0e6; border-color: #ffe0cc; }
|
.file-type-badge.file-archive { background: #f0e6ff; border-color: #e0ccff; }
|
.file-type-badge.file-cad { background: #e6fff0; border-color: #ccffe0; }
|
.file-type-badge.file-unknown { background: #f5f5f5; border-color: #e0e0e0; }
|
|
.attachment-details {
|
flex: 1;
|
min-width: 0;
|
}
|
|
.attachment-name {
|
font-size: 16px;
|
font-weight: 600;
|
color: #2c3e50;
|
cursor: pointer;
|
overflow: hidden;
|
text-overflow: ellipsis;
|
white-space: nowrap;
|
margin-bottom: 8px;
|
transition: color 0.2s;
|
}
|
|
.attachment-name:hover {
|
color: #3498db;
|
}
|
|
.attachment-meta {
|
display: flex;
|
gap: 16px;
|
font-size: 12px;
|
color: #95a5a6;
|
}
|
|
.meta-type {
|
background-color: #ecf0f1;
|
padding: 2px 6px;
|
border-radius: 10px;
|
color: #7f8c8d;
|
}
|
|
.meta-version {
|
background-color: #e8f5e8;
|
padding: 2px 6px;
|
border-radius: 10px;
|
color: #2e7d32;
|
}
|
|
.meta-date {
|
background-color: #fff3e0;
|
padding: 2px 6px;
|
border-radius: 10px;
|
color: #f57c00;
|
}
|
|
.attachment-actions {
|
padding: 12px 16px;
|
border-top: 1px solid #eee;
|
display: flex;
|
gap: 8px;
|
background-color: #f8f9fa;
|
}
|
|
/* 按钮样式 */
|
.btn-secondary {
|
padding: 8px 16px;
|
border: 1px solid #ddd;
|
border-radius: 4px;
|
background-color: white;
|
font-size: 14px;
|
transition: all 0.2s;
|
color: #2c3e50;
|
flex: 1;
|
}
|
|
.btn-secondary:hover {
|
background-color: #f8f9fa;
|
}
|
|
.btn-primary {
|
padding: 8px 16px;
|
border: 1px solid #3498db;
|
border-radius: 4px;
|
background-color: #3498db;
|
color: white;
|
font-size: 14px;
|
transition: all 0.2s;
|
flex: 1;
|
}
|
|
.btn-primary:hover {
|
background-color: #2980b9;
|
}
|
|
.btn-success {
|
padding: 8px 16px;
|
border: 1px solid #2ecc71;
|
border-radius: 4px;
|
background-color: #2ecc71;
|
color: white;
|
font-size: 14px;
|
transition: all 0.2s;
|
flex: 1;
|
}
|
|
.btn-success:hover {
|
background-color: #27ae60;
|
}
|
|
/* 附件详情样式 */
|
.attachment-detail-header {
|
display: flex;
|
align-items: center;
|
gap: 20px;
|
margin-bottom: 20px;
|
padding-bottom: 16px;
|
border-bottom: 1px solid #eee;
|
}
|
|
.attachment-detail-title {
|
font-size: 18px;
|
font-weight: 600;
|
color: #2c3e50;
|
flex: 1;
|
word-break: break-all;
|
}
|
|
.attachment-detail-info {
|
margin-bottom: 20px;
|
}
|
|
.info-row {
|
display: flex;
|
margin-bottom: 12px;
|
gap: 16px;
|
}
|
|
.info-item {
|
flex: 1;
|
}
|
|
.info-label {
|
display: block;
|
font-size: 12px;
|
color: #7f8c8d;
|
margin-bottom: 4px;
|
}
|
|
.info-content {
|
font-size: 14px;
|
color: #2c3e50;
|
line-height: 1.5;
|
}
|
|
.attachment-detail-actions {
|
padding: 12px 16px;
|
border-top: 1px solid #eee;
|
display: flex;
|
gap: 8px;
|
background-color: #f8f9fa;
|
}
|
|
/* 文件预览弹窗样式 */
|
.file-preview-popup {
|
width: 80vw;
|
max-width: 800px;
|
max-height: 80vh;
|
}
|
|
.file-preview-title {
|
padding: 20px;
|
margin: 0;
|
font-size: 16px;
|
font-weight: 600;
|
color: #2c3e50;
|
border-bottom: 1px solid #eee;
|
word-break: break-all;
|
}
|
|
.file-preview-content {
|
padding: 20px;
|
max-height: 60vh;
|
overflow-y: auto;
|
}
|
|
.file-preview-content pre {
|
white-space: pre-wrap;
|
word-wrap: break-word;
|
font-family: 'Courier New', monospace;
|
font-size: 12px;
|
line-height: 1.4;
|
background: #f8f9fa;
|
padding: 15px;
|
border-radius: 4px;
|
border: 1px solid #e9ecef;
|
}
|
|
.image-preview-container {
|
text-align: center;
|
}
|
|
.image-zoom-hint {
|
margin-top: 10px;
|
font-size: 12px;
|
color: #7f8c8d;
|
}
|
|
.unsupported-preview {
|
text-align: center;
|
padding: 40px 20px;
|
}
|
|
.unsupported-icon {
|
font-size: 48px;
|
margin-bottom: 16px;
|
}
|
|
.unsupported-text {
|
font-size: 16px;
|
color: #7f8c8d;
|
margin-bottom: 8px;
|
}
|
|
.unsupported-hint {
|
font-size: 14px;
|
color: #95a5a6;
|
}
|
|
.file-preview-actions {
|
padding: 15px 20px;
|
border-top: 1px solid #eee;
|
display: flex;
|
gap: 10px;
|
justify-content: center;
|
}
|
|
.file-preview-btn {
|
padding: 8px 16px;
|
border-radius: 4px;
|
border: none;
|
font-size: 14px;
|
cursor: pointer;
|
transition: all 0.2s;
|
}
|
|
.file-preview-btn.download-btn {
|
background: #2ecc71;
|
color: white;
|
}
|
|
.file-preview-btn.close-btn {
|
background: #95a5a6;
|
color: white;
|
}
|
|
.file-preview-btn:hover {
|
transform: translateY(-1px);
|
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
|
}
|
|
/* 删除确认弹窗样式 */
|
.delete-confirm-popup {
|
width: 90vw;
|
max-width: 400px;
|
max-height: 70vh;
|
display: flex;
|
flex-direction: column;
|
}
|
|
.delete-confirm-title {
|
font-size: 20px;
|
font-weight: 700;
|
color: #e74c3c;
|
margin-bottom: 8px;
|
text-align: center;
|
letter-spacing: 1px;
|
}
|
|
.delete-confirm-divider {
|
height: 2px;
|
background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
|
margin-bottom: 20px;
|
}
|
|
.delete-confirm-content {
|
text-align: center;
|
margin-bottom: 20px;
|
}
|
|
.delete-warning-icon {
|
font-size: 48px;
|
margin-bottom: 16px;
|
animation: shake 0.5s ease-in-out infinite alternate;
|
}
|
|
@keyframes shake {
|
0% { transform: translateX(-2px); }
|
100% { transform: translateX(2px); }
|
}
|
|
.delete-warning-text {
|
font-size: 18px;
|
font-weight: 600;
|
color: #2c3e50;
|
margin-bottom: 8px;
|
}
|
|
.delete-warning-detail {
|
font-size: 14px;
|
color: #7f8c8d;
|
margin-bottom: 20px;
|
line-height: 1.4;
|
}
|
|
.delete-countdown {
|
background: #f8f9fa;
|
border-radius: 8px;
|
padding: 16px;
|
margin: 16px 0;
|
border: 1px solid #e9ecef;
|
}
|
|
.countdown-text {
|
font-size: 14px;
|
color: #495057;
|
margin-bottom: 8px;
|
text-align: center;
|
}
|
|
.countdown-number {
|
font-weight: 700;
|
color: #e74c3c;
|
font-size: 16px;
|
}
|
|
.countdown-progress {
|
width: 100%;
|
height: 6px;
|
background: #e9ecef;
|
border-radius: 3px;
|
overflow: hidden;
|
}
|
|
.countdown-bar {
|
height: 100%;
|
background: linear-gradient(90deg, #e74c3c, #c0392b);
|
border-radius: 3px;
|
transition: width 1s ease;
|
}
|
|
.delete-confirm-actions {
|
display: flex;
|
gap: 12px;
|
justify-content: center;
|
}
|
|
.delete-confirm-btn {
|
padding: 12px 24px;
|
border: none;
|
border-radius: 8px;
|
font-size: 16px;
|
font-weight: 600;
|
cursor: pointer;
|
transition: all 0.3s ease;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
min-width: 120px;
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
}
|
|
.delete-confirm-btn.cancel-btn {
|
background: linear-gradient(135deg, #95a5a6, #7f8c8d);
|
color: white;
|
}
|
|
.delete-confirm-btn.cancel-btn:hover {
|
background: linear-gradient(135deg, #7f8c8d, #6c7b7d);
|
transform: translateY(-1px);
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
|
}
|
|
.delete-confirm-btn.confirm-btn {
|
background: linear-gradient(135deg, #e74c3c, #c0392b);
|
color: white;
|
}
|
|
.delete-confirm-btn.confirm-btn:hover:not(.disabled) {
|
background: linear-gradient(135deg, #c0392b, #a93226);
|
transform: translateY(-1px);
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
|
}
|
|
.delete-confirm-btn.disabled {
|
background: #bdc3c7;
|
color: #7f8c8d;
|
cursor: not-allowed;
|
transform: none;
|
box-shadow: none;
|
}
|
</style>
|