干物质系数前端界面
This commit is contained in:
parent
8f34688b35
commit
b0ca2d334b
46
src/api/dryMatterCorrection/dryMatterCorrection.js
Normal file
46
src/api/dryMatterCorrection/dryMatterCorrection.js
Normal file
@ -0,0 +1,46 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询干物质校正列表
|
||||
export function listDryMatterCorrection(query) {
|
||||
return request({
|
||||
url: '/dryMatterCorrection/dryMatterCorrection/list',
|
||||
method: 'get',
|
||||
params: {
|
||||
datetime: query.datetime // 只传递年月参数
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 查询干物质校正详细
|
||||
export function getDryMatterCorrection(id) {
|
||||
return request({
|
||||
url: '/dryMatterCorrection/dryMatterCorrection/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增干物质校正
|
||||
export function addDryMatterCorrection(data) {
|
||||
return request({
|
||||
url: '/dryMatterCorrection/dryMatterCorrection',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改干物质校正
|
||||
export function updateDryMatterCorrection(data) {
|
||||
return request({
|
||||
url: '/dryMatterCorrection/dryMatterCorrection',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除干物质校正
|
||||
export function delDryMatterCorrection(id) {
|
||||
return request({
|
||||
url: '/dryMatterCorrection/dryMatterCorrection/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
311
src/views/dryMatterCorrection/dryMatterCorrection/index.vue
Normal file
311
src/views/dryMatterCorrection/dryMatterCorrection/index.vue
Normal file
@ -0,0 +1,311 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="年月" prop="datetime">
|
||||
<el-date-picker clearable
|
||||
v-model="queryParams.datetime"
|
||||
type="date"
|
||||
value-format="YYYY-MM-DD"
|
||||
placeholder="请选择年月">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="Plus"
|
||||
@click="handleAdd"
|
||||
v-hasPermi="['dryMatterCorrection:dryMatterCorrection:add']"
|
||||
>新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
icon="Edit"
|
||||
:disabled="single"
|
||||
@click="handleUpdate"
|
||||
v-hasPermi="['dryMatterCorrection:dryMatterCorrection:edit']"
|
||||
>修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="Delete"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['dryMatterCorrection:dryMatterCorrection:remove']"
|
||||
>删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="Download"
|
||||
@click="handleExport"
|
||||
v-hasPermi="['dryMatterCorrection:dryMatterCorrection:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="dryMatterCorrectionList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="年月" align="center" prop="datetime" width="180">
|
||||
<template #default="scope">
|
||||
<span>{{ parseTime(scope.row.datetime, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="厂区" align="center" prop="factory" />
|
||||
<el-table-column label="干物质含量" align="center" prop="content" />
|
||||
<el-table-column label="干物质标准" align="center" prop="standard" />
|
||||
<!-- 新增干物质系数列 -->
|
||||
<el-table-column label="干物质系数" align="center">
|
||||
<template #default="scope">
|
||||
<span>{{ calculateCoefficient(scope.row.content, scope.row.standard) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['dryMatterCorrection:dryMatterCorrection:edit']">修改</el-button>
|
||||
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['dryMatterCorrection:dryMatterCorrection:remove']">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
v-model:page="queryParams.pageNum"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改干物质校正对话框 -->
|
||||
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
||||
<el-form ref="dryMatterCorrectionRef" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="年月" prop="datetime">
|
||||
<el-date-picker clearable
|
||||
v-model="form.datetime"
|
||||
type="date"
|
||||
value-format="YYYY-MM-DD"
|
||||
placeholder="请选择年月">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<!-- 新增厂区字段 -->
|
||||
<el-form-item label="厂区" prop="factory">
|
||||
<el-input v-model="form.factory" placeholder="请输入厂区" />
|
||||
</el-form-item>
|
||||
<el-form-item label="干物质含量" prop="content">
|
||||
<el-input v-model="form.content" placeholder="请输入干物质含量" @input="calculateCoefficientInForm" />
|
||||
</el-form-item>
|
||||
<el-form-item label="干物质标准" prop="standard">
|
||||
<el-input v-model="form.standard" placeholder="请输入干物质标准" @input="calculateCoefficientInForm" />
|
||||
</el-form-item>
|
||||
<!-- 显示计算后的干物质系数 -->
|
||||
<el-form-item label="干物质系数">
|
||||
<el-input v-model="form.coefficient" placeholder="自动计算" readonly />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="DryMatterCorrection">
|
||||
import { listDryMatterCorrection, getDryMatterCorrection, delDryMatterCorrection, addDryMatterCorrection, updateDryMatterCorrection } from "@/api/dryMatterCorrection/dryMatterCorrection"
|
||||
|
||||
const { proxy } = getCurrentInstance()
|
||||
|
||||
const dryMatterCorrectionList = ref([])
|
||||
const open = ref(false)
|
||||
const loading = ref(true)
|
||||
const showSearch = ref(true)
|
||||
const ids = ref([])
|
||||
const single = ref(true)
|
||||
const multiple = ref(true)
|
||||
const total = ref(0)
|
||||
const title = ref("")
|
||||
|
||||
const data = reactive({
|
||||
form: {},
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
datetime: null,
|
||||
factory: null,
|
||||
content: null,
|
||||
standard: null
|
||||
},
|
||||
rules: {
|
||||
datetime: [
|
||||
{ required: true, message: "年月不能为空", trigger: "blur" }
|
||||
],
|
||||
factory: [
|
||||
{ required: true, message: "厂区不能为空", trigger: "blur" }
|
||||
],
|
||||
content: [
|
||||
{ required: true, message: "干物质含量不能为空", trigger: "blur" }
|
||||
],
|
||||
standard: [
|
||||
{ required: true, message: "干物质标准不能为空", trigger: "blur" }
|
||||
]
|
||||
}
|
||||
})
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data)
|
||||
|
||||
/** 查询干物质校正列表 */
|
||||
function getList() {
|
||||
loading.value = true
|
||||
listDryMatterCorrection(queryParams.value).then(response => {
|
||||
dryMatterCorrectionList.value = response.rows
|
||||
total.value = response.total
|
||||
loading.value = false
|
||||
})
|
||||
}
|
||||
|
||||
// 取消按钮
|
||||
function cancel() {
|
||||
open.value = false
|
||||
reset()
|
||||
}
|
||||
|
||||
// 表单重置
|
||||
function reset() {
|
||||
form.value = {
|
||||
id: null,
|
||||
datetime: null,
|
||||
factory: null,
|
||||
content: null,
|
||||
standard: null,
|
||||
coefficient: null // 新增系数字段
|
||||
}
|
||||
proxy.resetForm("dryMatterCorrectionRef")
|
||||
}
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
function handleQuery() {
|
||||
queryParams.value.pageNum = 1
|
||||
getList()
|
||||
}
|
||||
|
||||
/** 重置按钮操作 */
|
||||
function resetQuery() {
|
||||
proxy.resetForm("queryRef")
|
||||
handleQuery()
|
||||
}
|
||||
|
||||
// 多选框选中数据
|
||||
function handleSelectionChange(selection) {
|
||||
ids.value = selection.map(item => item.id)
|
||||
single.value = selection.length != 1
|
||||
multiple.value = !selection.length
|
||||
}
|
||||
|
||||
/** 新增按钮操作 */
|
||||
function handleAdd() {
|
||||
reset()
|
||||
open.value = true
|
||||
title.value = "添加干物质校正"
|
||||
}
|
||||
|
||||
/** 修改按钮操作 */
|
||||
function handleUpdate(row) {
|
||||
reset()
|
||||
const _id = row.id || ids.value
|
||||
getDryMatterCorrection(_id).then(response => {
|
||||
form.value = response.data
|
||||
// 计算修改时的干物质系数
|
||||
form.value.coefficient = calculateCoefficient(form.value.content, form.value.standard)
|
||||
open.value = true
|
||||
title.value = "修改干物质校正"
|
||||
})
|
||||
}
|
||||
|
||||
/** 表单中计算干物质系数 */
|
||||
function calculateCoefficientInForm() {
|
||||
if (form.value.content && form.value.standard) {
|
||||
const content = parseFloat(form.value.content)
|
||||
const standard = parseFloat(form.value.standard)
|
||||
if (!isNaN(content) && !isNaN(standard) && standard !== 0) {
|
||||
form.value.coefficient = (content / standard).toFixed(4)
|
||||
} else {
|
||||
form.value.coefficient = null
|
||||
}
|
||||
} else {
|
||||
form.value.coefficient = null
|
||||
}
|
||||
}
|
||||
|
||||
/** 表格中计算干物质系数 */
|
||||
function calculateCoefficient(content, standard) {
|
||||
if (content && standard) {
|
||||
const contentVal = parseFloat(content)
|
||||
const standardVal = parseFloat(standard)
|
||||
if (!isNaN(contentVal) && !isNaN(standardVal) && standardVal !== 0) {
|
||||
return (contentVal / standardVal).toFixed(4)
|
||||
}
|
||||
}
|
||||
return 'N/A'
|
||||
}
|
||||
|
||||
/** 提交按钮 */
|
||||
function submitForm() {
|
||||
proxy.$refs["dryMatterCorrectionRef"].validate(valid => {
|
||||
if (valid) {
|
||||
// 提交前确保系数已计算
|
||||
if (!form.value.coefficient) {
|
||||
calculateCoefficientInForm()
|
||||
}
|
||||
|
||||
if (form.value.id != null) {
|
||||
updateDryMatterCorrection(form.value).then(response => {
|
||||
proxy.$modal.msgSuccess("修改成功")
|
||||
open.value = false
|
||||
getList()
|
||||
})
|
||||
} else {
|
||||
addDryMatterCorrection(form.value).then(response => {
|
||||
proxy.$modal.msgSuccess("新增成功")
|
||||
open.value = false
|
||||
getList()
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
/** 删除按钮操作 */
|
||||
function handleDelete(row) {
|
||||
const _ids = row.id || ids.value
|
||||
proxy.$modal.confirm('是否确认删除干物质校正编号为"' + _ids + '"的数据项?').then(function() {
|
||||
return delDryMatterCorrection(_ids)
|
||||
}).then(() => {
|
||||
getList()
|
||||
proxy.$modal.msgSuccess("删除成功")
|
||||
}).catch(() => {})
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
function handleExport() {
|
||||
proxy.download('dryMatterCorrection/dryMatterCorrection/export', {
|
||||
...queryParams.value
|
||||
}, `dryMatterCorrection_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
|
||||
getList()
|
||||
</script>
|
Loading…
x
Reference in New Issue
Block a user