2026-05-27 16:38:40 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div class="card">
|
|
|
|
|
|
<div class="card-body" style="padding:10px 14px;">
|
|
|
|
|
|
<div class="flex-row" style="flex-wrap:wrap;gap:12px;">
|
|
|
|
|
|
<div class="flex-row">
|
|
|
|
|
|
<span class="kv-label">状态</span>
|
|
|
|
|
|
<select v-model="query.status" class="kv-input" style="width:110px;">
|
|
|
|
|
|
<option value="">全部</option>
|
|
|
|
|
|
<option v-for="s in statusOptions" :key="s.value" :value="s.value">{{ s.label }}</option>
|
|
|
|
|
|
</select>
|
|
|
|
|
|
</div>
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<div class="flex-row">
|
|
|
|
|
|
<span class="kv-label">冷卷号</span>
|
|
|
|
|
|
<input v-model="query.cold_coil_no" class="kv-input" style="width:140px;" @keyup.enter="fetchData" />
|
|
|
|
|
|
</div>
|
2026-05-27 16:38:40 +08:00
|
|
|
|
<div class="flex-row">
|
|
|
|
|
|
<span class="kv-label">日期</span>
|
|
|
|
|
|
<input v-model="query.start_date" type="date" class="kv-input" style="width:130px;" />
|
|
|
|
|
|
<span class="kv-label">~</span>
|
|
|
|
|
|
<input v-model="query.end_date" type="date" class="kv-input" style="width:130px;" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="flex-row">
|
|
|
|
|
|
<button class="btn btn-primary" @click="fetchData">查询</button>
|
|
|
|
|
|
<button class="btn btn-outline" @click="openDialog()">+ 新增计划</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
|
|
<div class="card-header">
|
|
|
|
|
|
生产计划
|
|
|
|
|
|
<span class="ch-badge">共 {{ total }} 条</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="table-scroll" v-loading="loading">
|
|
|
|
|
|
<table class="data-table">
|
|
|
|
|
|
<thead>
|
|
|
|
|
|
<tr>
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<th style="width:48px;">序号</th>
|
|
|
|
|
|
<th>冷卷号</th>
|
|
|
|
|
|
<th>热卷号</th>
|
|
|
|
|
|
<th>钢种</th>
|
|
|
|
|
|
<th>来料厚度</th>
|
|
|
|
|
|
<th>产品厚度</th>
|
|
|
|
|
|
<th>偏差上限</th>
|
|
|
|
|
|
<th>偏差下限</th>
|
|
|
|
|
|
<th>来料宽度</th>
|
|
|
|
|
|
<th>产品宽度</th>
|
|
|
|
|
|
<th>包装要求</th>
|
|
|
|
|
|
<th>卷径</th>
|
|
|
|
|
|
<th>分卷数</th>
|
|
|
|
|
|
<th>下工序</th>
|
|
|
|
|
|
<th>计划时间</th>
|
|
|
|
|
|
<th>状态</th>
|
|
|
|
|
|
<th>操作</th>
|
2026-05-27 16:38:40 +08:00
|
|
|
|
</tr>
|
|
|
|
|
|
</thead>
|
|
|
|
|
|
<tbody>
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<tr v-for="(row, idx) in tableData" :key="row.id">
|
|
|
|
|
|
<td class="td-num">{{ idx + 1 }}</td>
|
|
|
|
|
|
<td class="td-num">{{ row.cold_coil_no || row.plan_no || '—' }}</td>
|
|
|
|
|
|
<td class="td-num">{{ row.hot_coil_no || '—' }}</td>
|
|
|
|
|
|
<td>{{ row.steel_grade || '—' }}</td>
|
|
|
|
|
|
<td class="td-num">{{ fmtNum(row.incoming_thickness) }}</td>
|
|
|
|
|
|
<td class="td-num">{{ fmtNum(row.product_thickness) }}</td>
|
|
|
|
|
|
<td class="td-num">{{ fmtNum(row.deviation_upper, 3) }}</td>
|
|
|
|
|
|
<td class="td-num">{{ fmtNum(row.deviation_lower, 3) }}</td>
|
|
|
|
|
|
<td class="td-num">{{ fmtNum(row.incoming_width, 0) }}</td>
|
|
|
|
|
|
<td class="td-num">{{ fmtNum(row.product_width, 0) }}</td>
|
|
|
|
|
|
<td>{{ row.packaging_req || '—' }}</td>
|
|
|
|
|
|
<td class="td-num">{{ fmtNum(row.coil_diameter, 0) }}</td>
|
|
|
|
|
|
<td class="td-num">{{ row.split_count != null ? row.split_count : 1 }}</td>
|
|
|
|
|
|
<td class="td-num">{{ row.next_process != null ? row.next_process : '—' }}</td>
|
|
|
|
|
|
<td class="td-muted">{{ fmtTime(row.plan_date) }}</td>
|
2026-05-27 16:38:40 +08:00
|
|
|
|
<td><span :class="['badge', statusBadge(row.status)]">{{ statusLabel(row.status) }}</span></td>
|
|
|
|
|
|
<td>
|
|
|
|
|
|
<span class="action-link" @click="openDialog(row)">编辑</span>
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<span v-if="row.status === 'ready'" class="action-link" style="color:var(--accent-green)" @click="confirmPlan(row)">上线</span>
|
2026-05-27 16:38:40 +08:00
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
<tr v-if="!tableData.length && !loading">
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<td colspan="17" class="td-muted" style="text-align:center;padding:24px;">暂无数据</td>
|
2026-05-27 16:38:40 +08:00
|
|
|
|
</tr>
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
</table>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div v-if="dialogVisible" class="modal-mask" @click.self="dialogVisible=false">
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<div class="modal-box" style="width:780px;">
|
2026-05-27 16:38:40 +08:00
|
|
|
|
<div class="modal-header">
|
|
|
|
|
|
{{ editRow ? '编辑计划' : '新增计划' }}
|
|
|
|
|
|
<span class="modal-close" @click="dialogVisible=false">✕</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="modal-body">
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<div class="grid-3" style="gap:12px;">
|
2026-05-27 16:38:40 +08:00
|
|
|
|
<div class="form-field">
|
|
|
|
|
|
<div class="kv-label">计划号 *</div>
|
|
|
|
|
|
<input v-model="form.plan_no" class="kv-input" :disabled="!!editRow" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<div class="kv-label">冷卷号</div>
|
|
|
|
|
|
<input v-model="form.cold_coil_no" class="kv-input" />
|
2026-05-27 16:38:40 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<div class="kv-label">热卷号</div>
|
|
|
|
|
|
<input v-model="form.hot_coil_no" class="kv-input" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
|
|
|
|
|
<div class="kv-label">钢种</div>
|
|
|
|
|
|
<input v-model="form.steel_grade" class="kv-input" placeholder="QTGLG-2019" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
|
|
|
|
|
<div class="kv-label">来料厚度 (mm)</div>
|
|
|
|
|
|
<input v-model.number="form.incoming_thickness" type="number" step="0.01" class="kv-input" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
|
|
|
|
|
<div class="kv-label">产品厚度 (mm)</div>
|
|
|
|
|
|
<input v-model.number="form.product_thickness" type="number" step="0.01" class="kv-input" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
|
|
|
|
|
<div class="kv-label">偏差上限</div>
|
|
|
|
|
|
<input v-model.number="form.deviation_upper" type="number" step="0.001" class="kv-input" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
|
|
|
|
|
<div class="kv-label">偏差下限</div>
|
|
|
|
|
|
<input v-model.number="form.deviation_lower" type="number" step="0.001" class="kv-input" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
|
|
|
|
|
<div class="kv-label">来料宽度 (mm)</div>
|
|
|
|
|
|
<input v-model.number="form.incoming_width" type="number" class="kv-input" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
|
|
|
|
|
<div class="kv-label">产品宽度 (mm)</div>
|
|
|
|
|
|
<input v-model.number="form.product_width" type="number" class="kv-input" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
|
|
|
|
|
<div class="kv-label">包装要求</div>
|
|
|
|
|
|
<select v-model="form.packaging_req" class="kv-input">
|
|
|
|
|
|
<option value="">—</option>
|
|
|
|
|
|
<option value="裸包">裸包</option>
|
|
|
|
|
|
<option value="筒包">筒包</option>
|
2026-05-27 16:38:40 +08:00
|
|
|
|
</select>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<div class="kv-label">卷径 (mm)</div>
|
|
|
|
|
|
<input v-model.number="form.coil_diameter" type="number" step="1" class="kv-input" />
|
2026-05-27 16:38:40 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<div class="kv-label">分卷数</div>
|
|
|
|
|
|
<input v-model.number="form.split_count" type="number" min="1" class="kv-input" />
|
2026-05-27 16:38:40 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<div class="kv-label">下工序</div>
|
|
|
|
|
|
<input v-model="form.next_process" class="kv-input" />
|
2026-05-27 16:38:40 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<div class="kv-label">计划时间</div>
|
|
|
|
|
|
<input v-model="form.plan_date" type="datetime-local" class="kv-input" />
|
2026-05-27 16:38:40 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-field">
|
2026-06-20 18:19:06 +08:00
|
|
|
|
<div class="kv-label">状态</div>
|
|
|
|
|
|
<select v-model="form.status" class="kv-input">
|
|
|
|
|
|
<option v-for="s in statusOptions" :key="s.value" :value="s.value">{{ s.label }}</option>
|
|
|
|
|
|
</select>
|
2026-05-27 16:38:40 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
|
|
<button class="btn btn-outline" @click="dialogVisible=false">取消</button>
|
|
|
|
|
|
<button class="btn btn-primary" :disabled="saving" @click="save">{{ saving ? '保存中...' : '保存' }}</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import { getPlans, createPlan, updatePlan, confirmPlan as apiConfirm } from '@/api'
|
|
|
|
|
|
|
|
|
|
|
|
const STATUS_MAP = {
|
2026-06-20 18:19:06 +08:00
|
|
|
|
ready: { label: '准备好', badge: 'badge-green' },
|
|
|
|
|
|
online: { label: '在线', badge: 'badge-yellow' },
|
|
|
|
|
|
producing: { label: '生产中', badge: 'badge-yellow' },
|
|
|
|
|
|
produced: { label: '产出', badge: 'badge-blue' },
|
2026-05-27 16:38:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: 'Plan',
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
loading: false, saving: false,
|
|
|
|
|
|
tableData: [], total: 0,
|
2026-06-20 18:19:06 +08:00
|
|
|
|
query: { page: 1, page_size: 50, status: '', cold_coil_no: '', start_date: '', end_date: '' },
|
2026-05-27 16:38:40 +08:00
|
|
|
|
statusOptions: Object.entries(STATUS_MAP).map(([value, { label }]) => ({ value, label })),
|
2026-06-20 18:19:06 +08:00
|
|
|
|
dialogVisible: false, editRow: null, form: { split_count: 1, status: 'ready' },
|
2026-05-27 16:38:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
created() { this.fetchData() },
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
async fetchData() {
|
|
|
|
|
|
this.loading = true
|
2026-06-20 18:19:06 +08:00
|
|
|
|
const params = { page: this.query.page, page_size: this.query.page_size }
|
|
|
|
|
|
if (this.query.status) params.status = this.query.status
|
|
|
|
|
|
if (this.query.start_date) params.start_date = this.query.start_date + 'T00:00:00'
|
|
|
|
|
|
if (this.query.end_date) params.end_date = this.query.end_date + 'T23:59:59'
|
|
|
|
|
|
try {
|
|
|
|
|
|
const res = await getPlans(params)
|
|
|
|
|
|
let items = res.data.items
|
|
|
|
|
|
if (this.query.cold_coil_no) {
|
|
|
|
|
|
items = items.filter(x => (x.cold_coil_no || '').includes(this.query.cold_coil_no))
|
|
|
|
|
|
}
|
|
|
|
|
|
this.tableData = items
|
|
|
|
|
|
this.total = res.data.total
|
|
|
|
|
|
} finally { this.loading = false }
|
2026-05-27 16:38:40 +08:00
|
|
|
|
},
|
2026-06-20 18:19:06 +08:00
|
|
|
|
fmtTime(t) { return t ? t.slice(0, 16).replace('T', ' ') : '—' },
|
|
|
|
|
|
fmtNum(v, n = 2) { return v != null ? Number(v).toFixed(n) : '—' },
|
|
|
|
|
|
statusLabel(s) { return STATUS_MAP[s]?.label || s || '—' },
|
2026-05-27 16:38:40 +08:00
|
|
|
|
statusBadge(s) { return STATUS_MAP[s]?.badge || 'badge-gray' },
|
2026-06-20 18:19:06 +08:00
|
|
|
|
openDialog(row = null) {
|
|
|
|
|
|
this.editRow = row
|
|
|
|
|
|
if (row) {
|
|
|
|
|
|
const r = { ...row }
|
|
|
|
|
|
if (r.plan_date) r.plan_date = r.plan_date.slice(0, 16)
|
|
|
|
|
|
this.form = r
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.form = { plan_no: '', split_count: 1, status: 'ready', plan_date: this.nowDT() }
|
|
|
|
|
|
}
|
|
|
|
|
|
this.dialogVisible = true
|
|
|
|
|
|
},
|
|
|
|
|
|
nowDT() {
|
|
|
|
|
|
const d = new Date(); const p = n => String(n).padStart(2, '0')
|
|
|
|
|
|
return `${d.getFullYear()}-${p(d.getMonth()+1)}-${p(d.getDate())}T${p(d.getHours())}:${p(d.getMinutes())}`
|
2026-05-27 16:38:40 +08:00
|
|
|
|
},
|
|
|
|
|
|
async confirmPlan(row) {
|
2026-06-20 18:19:06 +08:00
|
|
|
|
if (!confirm(`将计划 ${row.plan_no} 上线?`)) return
|
2026-05-27 16:38:40 +08:00
|
|
|
|
await apiConfirm(row.id)
|
2026-06-20 18:19:06 +08:00
|
|
|
|
this.$message.success('已上线')
|
2026-05-27 16:38:40 +08:00
|
|
|
|
this.fetchData()
|
|
|
|
|
|
},
|
|
|
|
|
|
async save() {
|
|
|
|
|
|
if (!this.form.plan_no) { this.$message.error('计划号不能为空'); return }
|
2026-06-20 18:19:06 +08:00
|
|
|
|
if (!this.form.plan_date) { this.$message.error('计划时间不能为空'); return }
|
2026-05-27 16:38:40 +08:00
|
|
|
|
this.saving = true
|
|
|
|
|
|
try {
|
|
|
|
|
|
const d = { ...this.form }
|
2026-06-20 18:19:06 +08:00
|
|
|
|
if (d.plan_date && !d.plan_date.includes(':')) d.plan_date += 'T00:00:00'
|
|
|
|
|
|
else if (d.plan_date && d.plan_date.length === 16) d.plan_date += ':00'
|
2026-05-27 16:38:40 +08:00
|
|
|
|
if (this.editRow) await updatePlan(this.editRow.id, d)
|
|
|
|
|
|
else await createPlan(d)
|
|
|
|
|
|
this.$message.success('保存成功')
|
|
|
|
|
|
this.dialogVisible = false; this.fetchData()
|
|
|
|
|
|
} finally { this.saving = false }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
@import '@/assets/styles/variables';
|
|
|
|
|
|
.action-link { color: $sms-highlight; cursor: pointer; font-size: 12px; margin-right: 12px; &:hover { text-decoration: underline; } }
|
|
|
|
|
|
.form-field { display: flex; flex-direction: column; gap: 5px; }
|
2026-06-20 18:19:06 +08:00
|
|
|
|
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; }
|
2026-05-27 16:38:40 +08:00
|
|
|
|
.modal-mask { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; z-index: 9999; }
|
|
|
|
|
|
.modal-box { background: $bg-card; border: 1px solid $border; border-radius: 6px; max-width: 95vw; max-height: 90vh; display: flex; flex-direction: column; }
|
|
|
|
|
|
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: $bg-panel; border-bottom: 1px solid $border; font-size: 13px; font-weight: 600; color: $sms-highlight; .modal-close { cursor: pointer; color: $text-muted; &:hover { color: $text-primary; } } }
|
|
|
|
|
|
.modal-body { padding: 16px; overflow-y: auto; }
|
|
|
|
|
|
.modal-footer { padding: 10px 16px; background: $bg-panel; border-top: 1px solid $border; display: flex; justify-content: flex-end; gap: 10px; }
|
|
|
|
|
|
</style>
|