1140 lines
26 KiB
Vue
1140 lines
26 KiB
Vue
<template>
|
||
<view class="typing-container">
|
||
<!-- 扫码按钮 -->
|
||
<view class="scan-section" v-if="!form.coilId">
|
||
<view class="scan-btn-wrapper" @click="handleScan">
|
||
<view class="scan-icon">
|
||
<text class="icon-camera">📷</text>
|
||
</view>
|
||
<text class="scan-tip">点击扫描二维码</text>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 钢卷基本信息 -->
|
||
<view class="info-card" v-if="form.coilId">
|
||
<view class="card-title">
|
||
<text class="title-dot"></text>
|
||
<text class="title-text">钢卷信息</text>
|
||
<view class="status-badge" :class="'status-' + coilDetail.dataType" v-if="coilDetail.dataType !== undefined">
|
||
{{ coilDetail.dataType === 1 ? '当前数据' : '历史数据' }}
|
||
</view>
|
||
<view class="more-btn" @click.stop="showBomDialog" v-if="bomItemList && bomItemList.length > 0">
|
||
<text class="icon-more">⚙</text>
|
||
<text class="more-text">参数</text>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="info-grid">
|
||
<view class="info-item">
|
||
<text class="item-label">入场钢卷号</text>
|
||
<text class="item-value">{{ coilDetail.enterCoilNo || '-' }}</text>
|
||
</view>
|
||
<view class="info-item">
|
||
<text class="item-label">当前库区</text>
|
||
<text class="item-value">{{ currentWarehouseName || '未分配' }}</text>
|
||
</view>
|
||
<view class="info-item" v-if="materialDetail">
|
||
<text class="item-label">原材料</text>
|
||
<text class="item-value">{{ materialDetail.rawMaterialName || '-' }}</text>
|
||
</view>
|
||
<view class="info-item" v-if="materialDetail">
|
||
<text class="item-label">规格</text>
|
||
<text class="item-value">{{ materialDetail.specification || '-' }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 历史码提示 -->
|
||
<view class="warning-card" v-if="form.coilId && qrcodeStatus === 0">
|
||
<view class="warning-icon">⚠️</view>
|
||
<view class="warning-content">
|
||
<text class="warning-title">历史二维码</text>
|
||
<text class="warning-desc">此二维码已失效,已为您加载最新物料信息,仅可查看,无法修改</text>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 历史数据提示 -->
|
||
<view class="warning-card" v-if="form.coilId && coilDetail.dataType === 0 && qrcodeStatus !== 0">
|
||
<view class="warning-icon">⚠️</view>
|
||
<view class="warning-content">
|
||
<text class="warning-title">历史数据</text>
|
||
<text class="warning-desc">此钢卷为历史数据,仅可查看,无法修改</text>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 表单区域 -->
|
||
<view class="form-card" v-if="form.coilId" @click="closeWarehouseList">
|
||
<view class="card-title">
|
||
<text class="title-dot"></text>
|
||
<text class="title-text">录入信息</text>
|
||
</view>
|
||
|
||
<!-- 当前钢卷号 -->
|
||
<view class="form-item">
|
||
<text class="form-label">当前钢卷号</text>
|
||
<input
|
||
v-model="form.currentCoilNo"
|
||
placeholder="请输入当前钢卷号"
|
||
class="form-input"
|
||
:disabled="coilDetail.dataType === 0 || qrcodeStatus === 0"
|
||
:class="{ 'form-input-disabled': coilDetail.dataType === 0 || qrcodeStatus === 0 }"
|
||
/>
|
||
</view>
|
||
|
||
<!-- 班组 -->
|
||
<view class="form-item">
|
||
<text class="form-label">班组</text>
|
||
<input
|
||
v-model="form.team"
|
||
placeholder="请输入班组名称"
|
||
class="form-input"
|
||
:disabled="coilDetail.dataType === 0 || qrcodeStatus === 0"
|
||
:class="{ 'form-input-disabled': coilDetail.dataType === 0 || qrcodeStatus === 0 }"
|
||
/>
|
||
</view>
|
||
|
||
<!-- 库区选择 - 滚筒选择器 -->
|
||
<view class="form-item form-item-optional">
|
||
<text class="form-label-optional">目标库区</text>
|
||
<view
|
||
class="picker-input"
|
||
@click="(coilDetail.dataType !== 0 && qrcodeStatus !== 0) && showWarehousePicker()"
|
||
:class="{ 'picker-input-disabled': coilDetail.dataType === 0 || qrcodeStatus === 0 }"
|
||
>
|
||
<text class="picker-text" :class="{ 'picker-placeholder': !currentWarehouseName }">
|
||
{{ currentWarehouseName || '请选择目标库区' }}
|
||
</text>
|
||
<text class="picker-arrow" v-if="coilDetail.dataType !== 0 && qrcodeStatus !== 0">▼</text>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 毛重 -->
|
||
<view class="form-item form-item-optional">
|
||
<text class="form-label-optional">毛重 (kg)</text>
|
||
<input
|
||
v-model="form.grossWeight"
|
||
type="digit"
|
||
placeholder="请输入毛重(选填)"
|
||
class="form-input"
|
||
:disabled="coilDetail.dataType === 0 || qrcodeStatus === 0"
|
||
:class="{ 'form-input-disabled': coilDetail.dataType === 0 || qrcodeStatus === 0 }"
|
||
/>
|
||
</view>
|
||
|
||
<!-- 净重 -->
|
||
<view class="form-item form-item-optional">
|
||
<text class="form-label-optional">净重 (kg)</text>
|
||
<input
|
||
v-model="form.netWeight"
|
||
type="digit"
|
||
placeholder="请输入净重(选填)"
|
||
class="form-input"
|
||
:disabled="coilDetail.dataType === 0 || qrcodeStatus === 0"
|
||
:class="{ 'form-input-disabled': coilDetail.dataType === 0 || qrcodeStatus === 0 }"
|
||
/>
|
||
</view>
|
||
|
||
<!-- 操作者信息 -->
|
||
<view class="operator-info">
|
||
<text class="operator-label">操作人:</text>
|
||
<text class="operator-name">{{ operatorName }}</text>
|
||
</view>
|
||
|
||
<!-- 操作按钮 -->
|
||
<view class="action-buttons">
|
||
<button class="btn btn-secondary" @click="handleReset">重新扫码</button>
|
||
<button
|
||
v-if="coilDetail.dataType === 1 && qrcodeStatus === 1"
|
||
class="btn btn-primary"
|
||
@click="handleConfirm"
|
||
:disabled="loading"
|
||
>
|
||
{{ loading ? '提交中...' : '保存' }}
|
||
</button>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 库区选择弹窗 -->
|
||
<uni-popup ref="warehousePopup" type="bottom">
|
||
<view class="warehouse-popup">
|
||
<view class="popup-header">
|
||
<text class="popup-title">选择库区</text>
|
||
<text class="popup-close" @click="closeWarehousePicker">✕</text>
|
||
</view>
|
||
<view class="popup-search">
|
||
<input
|
||
v-model="warehouseSearchKeyword"
|
||
@input="filterWarehousesInPicker"
|
||
placeholder="搜索库区名称"
|
||
class="search-input"
|
||
/>
|
||
</view>
|
||
<scroll-view class="popup-body" scroll-y>
|
||
<view
|
||
class="warehouse-item"
|
||
v-for="warehouse in filteredWarehousesInPicker"
|
||
:key="warehouse.warehouseId"
|
||
@click="selectWarehouseFromPicker(warehouse)"
|
||
>
|
||
<text class="warehouse-name">{{ warehouse.warehouseName }}</text>
|
||
<text class="warehouse-check" v-if="form.warehouseId === warehouse.warehouseId">✓</text>
|
||
</view>
|
||
<view class="empty-tip" v-if="!filteredWarehousesInPicker || filteredWarehousesInPicker.length === 0">
|
||
<text>未找到匹配的库区</text>
|
||
</view>
|
||
</scroll-view>
|
||
</view>
|
||
</uni-popup>
|
||
|
||
<!-- BOM弹窗 -->
|
||
<uni-popup ref="bomPopup" type="bottom">
|
||
<view class="bom-popup">
|
||
<view class="popup-header">
|
||
<text class="popup-title">BOM 清单</text>
|
||
<text class="popup-close" @click="closeBomDialog">✕</text>
|
||
</view>
|
||
<scroll-view class="popup-body" scroll-y>
|
||
<view class="bom-item" v-for="(item, index) in bomItemList" :key="index">
|
||
<view class="bom-index">{{ index + 1 }}</view>
|
||
<view class="bom-content">
|
||
<view class="bom-row">
|
||
<text class="bom-label">{{ item.attrKey }}:</text>
|
||
<text class="bom-value">{{ item.attrValue }}</text>
|
||
</view>
|
||
<view class="bom-row" v-if="item.remark">
|
||
<text class="bom-label">备注:</text>
|
||
<text class="bom-value">{{ item.remark }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="empty-tip" v-if="!bomItemList || bomItemList.length === 0">
|
||
<text>暂无参数数据</text>
|
||
</view>
|
||
</scroll-view>
|
||
</view>
|
||
</uni-popup>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import { getGenerateRecord } from '@/api/wms/code.js'
|
||
import { updateMaterialCoil, getMaterialCoil, getMaterialCoilTrace } from '@/api/wms/coil.js'
|
||
import { listWarehouse } from '@/api/wms/warehouse.js'
|
||
import { getRawMaterial } from '@/api/wms/rawMaterial.js'
|
||
|
||
export default {
|
||
data() {
|
||
return {
|
||
form: {
|
||
coilId: undefined,
|
||
itemType: '',
|
||
itemId: undefined,
|
||
team: '',
|
||
currentCoilNo: '',
|
||
warehouseId: undefined,
|
||
warehouseName: '',
|
||
grossWeight: '',
|
||
netWeight: ''
|
||
},
|
||
coilDetail: {},
|
||
materialDetail: null,
|
||
bomItemList: [],
|
||
warehouses: [],
|
||
filteredWarehouses: [],
|
||
warehouseKeyword: '',
|
||
showWarehouseList: false,
|
||
currentWarehouseName: '',
|
||
warehouseSearchKeyword: '',
|
||
filteredWarehousesInPicker: [],
|
||
loading: false,
|
||
qrcodeStatus: 1 // 二维码状态:0=历史码,1=当前有效码
|
||
}
|
||
},
|
||
|
||
computed: {
|
||
// 获取当前操作者昵称
|
||
operatorName() {
|
||
return this.$store.state.user.nickName || this.$store.state.user.name || '未知'
|
||
}
|
||
},
|
||
|
||
onLoad() {
|
||
this.loadWarehouses();
|
||
},
|
||
|
||
mounted() {
|
||
this.loadWarehouses();
|
||
},
|
||
|
||
methods: {
|
||
// 加载库区列表
|
||
async loadWarehouses() {
|
||
console.log('开始加载库区...');
|
||
try {
|
||
const res = await listWarehouse({ pageNum: 1, pageSize: 1000 });
|
||
console.log("库区返回值", res);
|
||
if (res.code === 200) {
|
||
this.warehouses = res.data || [];
|
||
this.filteredWarehouses = this.warehouses;
|
||
console.log('库区加载成功,数量:', this.warehouses.length);
|
||
} else {
|
||
console.error('库区加载失败:', res.msg);
|
||
}
|
||
} catch (err) {
|
||
console.error('加载库区异常:', err);
|
||
}
|
||
},
|
||
|
||
// 过滤库区
|
||
filterWarehouses() {
|
||
console.log('过滤库区,关键词:', this.warehouseKeyword);
|
||
console.log('当前库区列表:', this.warehouses);
|
||
const keyword = this.warehouseKeyword.trim().toLowerCase();
|
||
if (!keyword) {
|
||
this.filteredWarehouses = this.warehouses;
|
||
} else {
|
||
this.filteredWarehouses = this.warehouses.filter(item => {
|
||
const name = (item.warehouseName || '').toLowerCase();
|
||
return name.includes(keyword);
|
||
});
|
||
}
|
||
console.log('过滤后库区数量:', this.filteredWarehouses.length);
|
||
this.showWarehouseList = true;
|
||
},
|
||
|
||
// 选择库区
|
||
selectWarehouse(warehouse) {
|
||
this.form.warehouseId = warehouse.warehouseId;
|
||
this.form.warehouseName = warehouse.warehouseName;
|
||
this.warehouseKeyword = warehouse.warehouseName;
|
||
// 关闭搜索结果列表
|
||
this.$nextTick(() => {
|
||
this.showWarehouseList = false;
|
||
});
|
||
},
|
||
|
||
// 显示库区选择器
|
||
showWarehousePicker() {
|
||
this.warehouseSearchKeyword = '';
|
||
this.filteredWarehousesInPicker = [...this.warehouses];
|
||
this.$refs.warehousePopup.open();
|
||
},
|
||
|
||
// 关闭库区选择器
|
||
closeWarehousePicker() {
|
||
this.$refs.warehousePopup.close();
|
||
},
|
||
|
||
// 在选择器中过滤库区
|
||
filterWarehousesInPicker() {
|
||
const keyword = this.warehouseSearchKeyword.trim().toLowerCase();
|
||
if (!keyword) {
|
||
this.filteredWarehousesInPicker = [...this.warehouses];
|
||
} else {
|
||
this.filteredWarehousesInPicker = this.warehouses.filter(warehouse => {
|
||
const name = (warehouse.warehouseName || '').toLowerCase();
|
||
return name.includes(keyword);
|
||
});
|
||
}
|
||
},
|
||
|
||
// 从选择器中选择库区
|
||
selectWarehouseFromPicker(warehouse) {
|
||
this.form.warehouseId = warehouse.warehouseId;
|
||
this.form.warehouseName = warehouse.warehouseName;
|
||
this.currentWarehouseName = warehouse.warehouseName;
|
||
this.closeWarehousePicker();
|
||
},
|
||
|
||
// 扫码
|
||
handleScan() {
|
||
uni.scanCode({
|
||
success: async (res) => {
|
||
console.log('扫码结果:', res.result);
|
||
try {
|
||
// 扫码结果是二维码ID (recordId)
|
||
const qrcodeId = res.result;
|
||
|
||
// 1. 通过二维码ID获取二维码详情
|
||
const qrcodeRes = await getGenerateRecord(qrcodeId);
|
||
if (qrcodeRes.code !== 200) {
|
||
throw new Error('未找到二维码记录');
|
||
}
|
||
|
||
// 2. 解析二维码的content,获取enter_coil_no和current_coil_no
|
||
const qrcodeRecord = qrcodeRes.data;
|
||
const content = JSON.parse(qrcodeRecord.content);
|
||
const enterCoilNo = content.enter_coil_no;
|
||
const currentCoilNo = content.current_coil_no;
|
||
|
||
// 保存二维码状态(0=历史码,1=当前有效码)
|
||
this.qrcodeStatus = qrcodeRecord.status || 1;
|
||
|
||
if (!enterCoilNo) {
|
||
throw new Error('二维码中未包含有效的入场钢卷号');
|
||
}
|
||
|
||
// 3. 如果是历史码,提示用户并加载最新数据
|
||
if (this.qrcodeStatus === 0) {
|
||
uni.showToast({
|
||
title: '历史二维码,已加载最新信息',
|
||
icon: 'none',
|
||
duration: 2000
|
||
});
|
||
}
|
||
|
||
// 4. 通过入场钢卷号查询最新的钢卷详情(不传currentCoilNo,获取所有相关钢卷)
|
||
// 如果是历史码,查询该入场钢卷号的最新数据
|
||
const traceRes = await getMaterialCoilTrace(enterCoilNo, this.qrcodeStatus === 0 ? null : currentCoilNo);
|
||
if (traceRes.code !== 200 || !traceRes.data || !traceRes.data.records || traceRes.data.records.length === 0) {
|
||
throw new Error('未找到钢卷信息');
|
||
}
|
||
|
||
// 5. 从追溯结果中找到当前数据(dataType = 1)
|
||
let coilData = null;
|
||
if (this.qrcodeStatus === 0) {
|
||
// 历史码:找到最新的当前数据(dataType = 1)
|
||
for (const record of traceRes.data.records) {
|
||
if (record.dataType === 1) {
|
||
coilData = record;
|
||
break;
|
||
}
|
||
}
|
||
} else {
|
||
// 当前码:找到匹配当前钢卷号的记录
|
||
for (const record of traceRes.data.records) {
|
||
if (record.dataType === 1 && record.currentCoilNo === currentCoilNo) {
|
||
coilData = record;
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
// 如果没有找到精确匹配的,取第一个当前数据
|
||
if (!coilData) {
|
||
for (const record of traceRes.data.records) {
|
||
if (record.dataType === 1) {
|
||
coilData = record;
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
|
||
// 如果还是没有找到,取第一个记录(可能是历史数据)
|
||
if (!coilData) {
|
||
coilData = traceRes.data.records[0];
|
||
}
|
||
|
||
// 保存钢卷详情
|
||
this.coilDetail = coilData;
|
||
|
||
// 填充表单数据
|
||
this.form.coilId = coilData.coilId;
|
||
this.form.currentCoilNo = coilData.currentCoilNo || '';
|
||
this.form.team = coilData.team || '';
|
||
this.form.itemType = coilData.itemType || '';
|
||
this.form.itemId = coilData.itemId;
|
||
this.form.warehouseId = coilData.warehouseId;
|
||
this.form.grossWeight = coilData.grossWeight || '';
|
||
this.form.netWeight = coilData.netWeight || '';
|
||
|
||
// 设置当前库区名称(用于显示)
|
||
if (coilData.warehouse && coilData.warehouse.warehouseName) {
|
||
this.currentWarehouseName = coilData.warehouse.warehouseName;
|
||
}
|
||
|
||
// 保存原材料详情
|
||
if (coilData.rawMaterial) {
|
||
this.materialDetail = coilData.rawMaterial;
|
||
}
|
||
|
||
// 保存BOM项目列表
|
||
if (coilData.bomItemList) {
|
||
this.bomItemList = coilData.bomItemList;
|
||
}
|
||
|
||
console.log('钢卷详情:', coilData);
|
||
uni.showToast({
|
||
title: '扫码成功',
|
||
icon: 'success'
|
||
});
|
||
} catch (err) {
|
||
console.error('扫码处理失败:', err);
|
||
uni.showToast({
|
||
title: err.message || '扫码信息解析失败',
|
||
icon: 'none',
|
||
duration: 2000
|
||
});
|
||
}
|
||
},
|
||
fail: (err) => {
|
||
console.error('扫码失败:', err);
|
||
uni.showToast({
|
||
title: '扫码失败,请重试',
|
||
icon: 'none'
|
||
});
|
||
}
|
||
});
|
||
},
|
||
|
||
// 显示BOM弹窗
|
||
showBomDialog() {
|
||
this.$refs.bomPopup.open();
|
||
},
|
||
|
||
// 关闭BOM弹窗
|
||
closeBomDialog() {
|
||
this.$refs.bomPopup.close();
|
||
},
|
||
|
||
// 关闭库区搜索列表
|
||
closeWarehouseList() {
|
||
this.showWarehouseList = false;
|
||
},
|
||
|
||
// 重新扫码
|
||
handleReset() {
|
||
uni.showModal({
|
||
title: '确认重新扫码',
|
||
content: '是否要清空当前数据并重新扫码?',
|
||
success: (res) => {
|
||
if (res.confirm) {
|
||
this.form = {
|
||
coilId: undefined,
|
||
itemType: '',
|
||
itemId: undefined,
|
||
team: '',
|
||
currentCoilNo: '',
|
||
warehouseId: undefined,
|
||
warehouseName: '',
|
||
grossWeight: '',
|
||
netWeight: ''
|
||
};
|
||
this.coilDetail = {};
|
||
this.materialDetail = null;
|
||
this.bomItemList = [];
|
||
this.warehouseKeyword = '';
|
||
this.currentWarehouseName = '';
|
||
this.filteredWarehouses = this.warehouses;
|
||
this.qrcodeStatus = 1; // 重置二维码状态
|
||
}
|
||
}
|
||
});
|
||
},
|
||
|
||
// 提交
|
||
handleConfirm() {
|
||
// 历史数据不允许修改
|
||
if (this.coilDetail.dataType === 0) {
|
||
uni.showToast({ title: '历史数据不允许修改', icon: 'none' });
|
||
return;
|
||
}
|
||
|
||
// 历史二维码不允许修改
|
||
if (this.qrcodeStatus === 0) {
|
||
uni.showToast({ title: '历史二维码不允许修改', icon: 'none' });
|
||
return;
|
||
}
|
||
|
||
// 验证必填项
|
||
if (!this.form.currentCoilNo) {
|
||
uni.showToast({ title: '请输入当前钢卷号', icon: 'none' });
|
||
return;
|
||
}
|
||
if (!this.form.team) {
|
||
uni.showToast({ title: '请输入班组', icon: 'none' });
|
||
return;
|
||
}
|
||
|
||
this.loading = true;
|
||
const submitData = {
|
||
coilId: this.form.coilId,
|
||
enterCoilNo: this.coilDetail.enterCoilNo, // 添加入场钢卷号
|
||
supplierCoilNo: this.coilDetail.supplierCoilNo, // 保留厂家原料卷号
|
||
currentCoilNo: this.form.currentCoilNo,
|
||
itemType: this.form.itemType,
|
||
itemId: this.form.itemId,
|
||
team: this.form.team,
|
||
warehouseId: this.form.warehouseId,
|
||
grossWeight: this.form.grossWeight ? Number(this.form.grossWeight) : null,
|
||
netWeight: this.form.netWeight ? Number(this.form.netWeight) : null
|
||
};
|
||
|
||
updateMaterialCoil(submitData).then(res => {
|
||
if (res.code === 200) {
|
||
uni.showToast({
|
||
title: '保存成功',
|
||
icon: 'success'
|
||
});
|
||
setTimeout(() => {
|
||
this.handleReset();
|
||
}, 1500);
|
||
} else {
|
||
uni.showToast({
|
||
title: res.msg || '保存失败',
|
||
icon: 'none'
|
||
});
|
||
}
|
||
}).catch(err => {
|
||
console.error('提交失败:', err);
|
||
uni.showToast({
|
||
title: '保存失败,请重试',
|
||
icon: 'none'
|
||
});
|
||
}).finally(() => {
|
||
this.loading = false;
|
||
});
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.typing-container {
|
||
padding-bottom: 30rpx;
|
||
}
|
||
|
||
/* 扫码区域 */
|
||
.scan-section {
|
||
padding: 80rpx 40rpx;
|
||
background: #fff;
|
||
border-radius: 16rpx;
|
||
margin-bottom: 20rpx;
|
||
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.04);
|
||
|
||
.scan-btn-wrapper {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
gap: 30rpx;
|
||
|
||
.scan-icon {
|
||
width: 160rpx;
|
||
height: 160rpx;
|
||
border-radius: 50%;
|
||
background: linear-gradient(135deg, #007aff 0%, #0051d5 100%);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
box-shadow: 0 8rpx 24rpx rgba(0, 122, 255, 0.3);
|
||
|
||
&:active {
|
||
transform: scale(0.95);
|
||
}
|
||
}
|
||
|
||
.icon-camera {
|
||
font-size: 70rpx;
|
||
}
|
||
|
||
.scan-tip {
|
||
font-size: 28rpx;
|
||
color: #666;
|
||
}
|
||
}
|
||
}
|
||
|
||
/* 卡片样式 */
|
||
.info-card,
|
||
.material-card,
|
||
.form-card {
|
||
background: #fff;
|
||
border-radius: 16rpx;
|
||
padding: 30rpx;
|
||
margin-bottom: 20rpx;
|
||
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.04);
|
||
}
|
||
|
||
/* 警告卡片 */
|
||
.warning-card {
|
||
background: #fff2f0;
|
||
border: 2rpx solid #ffccc7;
|
||
border-radius: 16rpx;
|
||
padding: 30rpx;
|
||
margin-bottom: 20rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 20rpx;
|
||
|
||
.warning-icon {
|
||
font-size: 48rpx;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.warning-content {
|
||
flex: 1;
|
||
|
||
.warning-title {
|
||
display: block;
|
||
font-size: 28rpx;
|
||
font-weight: 600;
|
||
color: #cf1322;
|
||
margin-bottom: 8rpx;
|
||
}
|
||
|
||
.warning-desc {
|
||
display: block;
|
||
font-size: 24rpx;
|
||
color: #a8071a;
|
||
line-height: 1.4;
|
||
}
|
||
}
|
||
}
|
||
|
||
.card-title {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
margin-bottom: 25rpx;
|
||
padding-bottom: 20rpx;
|
||
border-bottom: 1rpx solid #f0f0f0;
|
||
|
||
.title-dot {
|
||
width: 8rpx;
|
||
height: 28rpx;
|
||
background: #007aff;
|
||
border-radius: 4rpx;
|
||
margin-right: 12rpx;
|
||
}
|
||
|
||
.title-text {
|
||
flex: 1;
|
||
font-size: 32rpx;
|
||
font-weight: 600;
|
||
color: #333;
|
||
}
|
||
|
||
.status-badge {
|
||
font-size: 22rpx;
|
||
padding: 4rpx 12rpx;
|
||
border-radius: 12rpx;
|
||
margin-right: 10rpx;
|
||
|
||
&.status-1 {
|
||
background: #d1f2eb;
|
||
color: #0c6957;
|
||
}
|
||
|
||
&.status-0 {
|
||
background: #f8d7da;
|
||
color: #721c24;
|
||
}
|
||
}
|
||
|
||
.more-btn {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8rpx;
|
||
padding: 8rpx 16rpx;
|
||
background: #f0f7ff;
|
||
border-radius: 20rpx;
|
||
border: 1rpx solid #007aff;
|
||
|
||
.icon-more {
|
||
font-size: 24rpx;
|
||
color: #007aff;
|
||
}
|
||
|
||
.more-text {
|
||
font-size: 24rpx;
|
||
color: #007aff;
|
||
}
|
||
}
|
||
}
|
||
|
||
/* 信息网格 */
|
||
.info-grid {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 20rpx;
|
||
|
||
.info-item {
|
||
flex: 1;
|
||
min-width: 45%;
|
||
background: #f8f9fa;
|
||
padding: 20rpx;
|
||
border-radius: 12rpx;
|
||
|
||
.item-label {
|
||
display: block;
|
||
font-size: 24rpx;
|
||
color: #999;
|
||
margin-bottom: 10rpx;
|
||
}
|
||
|
||
.item-value {
|
||
display: block;
|
||
font-size: 28rpx;
|
||
color: #333;
|
||
font-weight: 500;
|
||
}
|
||
}
|
||
}
|
||
|
||
/* 详情网格 */
|
||
.detail-grid {
|
||
.detail-item {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 24rpx 0;
|
||
border-bottom: 1rpx solid #f5f5f5;
|
||
|
||
&:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.detail-label {
|
||
font-size: 28rpx;
|
||
color: #666;
|
||
}
|
||
|
||
.detail-value {
|
||
font-size: 28rpx;
|
||
color: #333;
|
||
font-weight: 500;
|
||
}
|
||
}
|
||
}
|
||
|
||
/* 表单项 */
|
||
.form-item {
|
||
margin-bottom: 30rpx;
|
||
|
||
&:last-of-type {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.form-label {
|
||
display: block;
|
||
font-size: 28rpx;
|
||
color: #333;
|
||
margin-bottom: 15rpx;
|
||
font-weight: 500;
|
||
|
||
&::before {
|
||
content: '*';
|
||
color: #ff4d4f;
|
||
margin-right: 6rpx;
|
||
}
|
||
}
|
||
|
||
.form-label-optional {
|
||
display: block;
|
||
font-size: 28rpx;
|
||
color: #333;
|
||
margin-bottom: 15rpx;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.form-input {
|
||
width: 100%;
|
||
height: 88rpx;
|
||
padding: 0 24rpx;
|
||
background: #f8f9fa;
|
||
border: 2rpx solid #e8e8e8;
|
||
border-radius: 12rpx;
|
||
font-size: 28rpx;
|
||
color: #333;
|
||
box-sizing: border-box;
|
||
transition: all 0.3s;
|
||
|
||
&:focus {
|
||
background: #fff;
|
||
border-color: #007aff;
|
||
}
|
||
|
||
&.form-input-disabled {
|
||
background: #f5f5f5;
|
||
color: #999;
|
||
cursor: not-allowed;
|
||
}
|
||
}
|
||
}
|
||
|
||
/* 选择器输入框 */
|
||
.picker-input {
|
||
width: 100%;
|
||
height: 88rpx;
|
||
padding: 0 24rpx;
|
||
background: #f8f9fa;
|
||
border: 2rpx solid #e8e8e8;
|
||
border-radius: 12rpx;
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
transition: all 0.3s;
|
||
|
||
&:active {
|
||
background: #fff;
|
||
border-color: #007aff;
|
||
}
|
||
|
||
&.picker-input-disabled {
|
||
background: #f5f5f5;
|
||
color: #999;
|
||
cursor: not-allowed;
|
||
}
|
||
|
||
.picker-text {
|
||
flex: 1;
|
||
font-size: 28rpx;
|
||
color: #333;
|
||
|
||
&.picker-placeholder {
|
||
color: #999;
|
||
}
|
||
}
|
||
|
||
.picker-arrow {
|
||
font-size: 24rpx;
|
||
color: #999;
|
||
margin-left: 10rpx;
|
||
}
|
||
}
|
||
|
||
/* 库区选择弹窗 */
|
||
.warehouse-popup {
|
||
background: #fff;
|
||
border-radius: 24rpx 24rpx 0 0;
|
||
max-height: 70vh;
|
||
|
||
.popup-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 30rpx;
|
||
border-bottom: 1rpx solid #f0f0f0;
|
||
|
||
.popup-title {
|
||
font-size: 32rpx;
|
||
color: #333;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.popup-close {
|
||
font-size: 40rpx;
|
||
color: #999;
|
||
width: 60rpx;
|
||
height: 60rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
}
|
||
|
||
.popup-search {
|
||
padding: 20rpx 30rpx;
|
||
border-bottom: 1rpx solid #f0f0f0;
|
||
|
||
.search-input {
|
||
width: 100%;
|
||
height: 80rpx;
|
||
padding: 0 20rpx;
|
||
background: #f8f9fa;
|
||
border: 2rpx solid #e8e8e8;
|
||
border-radius: 10rpx;
|
||
font-size: 28rpx;
|
||
color: #333;
|
||
box-sizing: border-box;
|
||
|
||
&:focus {
|
||
background: #fff;
|
||
border-color: #007aff;
|
||
}
|
||
}
|
||
}
|
||
|
||
.popup-body {
|
||
max-height: 400rpx;
|
||
|
||
.warehouse-item {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 30rpx;
|
||
border-bottom: 1rpx solid #f5f5f5;
|
||
|
||
&:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
&:active {
|
||
background: #f0f7ff;
|
||
}
|
||
|
||
.warehouse-name {
|
||
flex: 1;
|
||
font-size: 28rpx;
|
||
color: #333;
|
||
}
|
||
|
||
.warehouse-check {
|
||
font-size: 32rpx;
|
||
color: #007aff;
|
||
font-weight: bold;
|
||
}
|
||
}
|
||
|
||
.empty-tip {
|
||
text-align: center;
|
||
padding: 60rpx 0;
|
||
color: #999;
|
||
font-size: 28rpx;
|
||
}
|
||
}
|
||
}
|
||
|
||
/* 操作者信息 */
|
||
.operator-info {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 20rpx 0;
|
||
margin-top: 20rpx;
|
||
|
||
.operator-label {
|
||
font-size: 26rpx;
|
||
color: #999;
|
||
}
|
||
|
||
.operator-name {
|
||
font-size: 26rpx;
|
||
color: #007aff;
|
||
font-weight: 500;
|
||
}
|
||
}
|
||
|
||
/* 操作按钮 */
|
||
.action-buttons {
|
||
display: flex;
|
||
gap: 20rpx;
|
||
margin-top: 30rpx;
|
||
|
||
.btn {
|
||
flex: 1;
|
||
height: 88rpx;
|
||
border-radius: 12rpx;
|
||
font-size: 30rpx;
|
||
font-weight: 500;
|
||
border: none;
|
||
transition: all 0.2s;
|
||
|
||
&:active {
|
||
transform: scale(0.98);
|
||
}
|
||
|
||
&[disabled] {
|
||
opacity: 0.6;
|
||
}
|
||
}
|
||
|
||
.btn-secondary {
|
||
background: #f5f5f5;
|
||
color: #666;
|
||
}
|
||
|
||
.btn-primary {
|
||
background: linear-gradient(135deg, #007aff 0%, #0051d5 100%);
|
||
color: #fff;
|
||
box-shadow: 0 4rpx 16rpx rgba(0, 122, 255, 0.3);
|
||
}
|
||
}
|
||
|
||
/* BOM弹窗 */
|
||
.bom-popup {
|
||
background: #fff;
|
||
border-radius: 24rpx 24rpx 0 0;
|
||
max-height: 70vh;
|
||
|
||
.popup-header {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 30rpx;
|
||
border-bottom: 1rpx solid #f0f0f0;
|
||
|
||
.popup-title {
|
||
font-size: 32rpx;
|
||
color: #333;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.popup-close {
|
||
font-size: 40rpx;
|
||
color: #999;
|
||
width: 60rpx;
|
||
height: 60rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
}
|
||
|
||
.popup-body {
|
||
padding: 30rpx;
|
||
max-height: 500rpx;
|
||
|
||
.bom-item {
|
||
display: flex;
|
||
gap: 20rpx;
|
||
padding: 24rpx;
|
||
background: #f8f9fa;
|
||
border-radius: 12rpx;
|
||
margin-bottom: 20rpx;
|
||
|
||
&:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.bom-index {
|
||
width: 60rpx;
|
||
height: 60rpx;
|
||
background: #007aff;
|
||
color: #fff;
|
||
border-radius: 50%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 24rpx;
|
||
font-weight: bold;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.bom-content {
|
||
flex: 1;
|
||
|
||
.bom-row {
|
||
display: flex;
|
||
margin-bottom: 10rpx;
|
||
|
||
&:last-child {
|
||
margin-bottom: 0;
|
||
}
|
||
|
||
.bom-label {
|
||
font-size: 26rpx;
|
||
color: #666;
|
||
min-width: 120rpx;
|
||
}
|
||
|
||
.bom-value {
|
||
font-size: 26rpx;
|
||
color: #333;
|
||
font-weight: 500;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
.empty-tip {
|
||
text-align: center;
|
||
padding: 60rpx 0;
|
||
color: #999;
|
||
font-size: 28rpx;
|
||
}
|
||
}
|
||
}
|
||
</style>
|