add:新增合批软废球磨时间页面
This commit is contained in:
35
mes/qd/src/api/wms/basedata/pdm/wasteBallTime.js
Normal file
35
mes/qd/src/api/wms/basedata/pdm/wasteBallTime.js
Normal file
@@ -0,0 +1,35 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function add(data) {
|
||||
return request({
|
||||
url: 'api/wasteBallTime',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function del(ids) {
|
||||
return request({
|
||||
url: 'api/wasteBallTime/',
|
||||
method: 'delete',
|
||||
data: ids
|
||||
})
|
||||
}
|
||||
|
||||
export function edit(data) {
|
||||
return request({
|
||||
url: 'api/wasteBallTime',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function confirm(data) {
|
||||
return request({
|
||||
url: 'api/wasteBallTime/confirm',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export default { add, edit, del, confirm }
|
||||
359
mes/qd/src/views/wms/basedata/pdm/wasteBallTime/index.vue
Normal file
359
mes/qd/src/views/wms/basedata/pdm/wasteBallTime/index.vue
Normal file
@@ -0,0 +1,359 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<!--工具栏-->
|
||||
<div class="head-container">
|
||||
<div v-if="crud.props.searchToggle">
|
||||
<!-- 搜索 -->
|
||||
<el-form
|
||||
:inline="true"
|
||||
class="demo-form-inline"
|
||||
label-position="right"
|
||||
label-width="80px"
|
||||
label-suffix=":"
|
||||
>
|
||||
<el-form-item label="碳化钨">
|
||||
<el-input
|
||||
v-model="query.material_code"
|
||||
clearable
|
||||
size="mini"
|
||||
placeholder="编码、名称"
|
||||
@keyup.enter.native="crud.toQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<rrOperation />
|
||||
|
||||
<span style="font-size:16px" id="tishiAccount" :style="tishiAccount_style">{{ msg }}</span>
|
||||
</el-form>
|
||||
</div>
|
||||
|
||||
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
|
||||
<crudOperation :permission="permission" />
|
||||
<!--表格渲染-->
|
||||
<el-table ref="table" v-loading="crud.loading" :data="crud.data" size="mini" style="width: 100%;" @selection-change="crud.selectionChangeHandler">
|
||||
<el-table-column type="selection" width="55" />
|
||||
<el-table-column prop="material_code" label="物料编码" min-width="110" align="center" />
|
||||
<el-table-column prop="material_name" label="物料名称" min-width="120" align="center" />
|
||||
<el-table-column prop="material_model" label="型号" align="center" />
|
||||
<el-table-column prop="cf_qty" label="CF" width="95" align="center" >
|
||||
<template scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.cf_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.cf_qty"
|
||||
size="small"
|
||||
v-show="!scope.row.edit"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="yz_qty" label="YZ" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.yz_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.yz_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="cx_qty" label="CX" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.cx_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.cx_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
:controls="false"
|
||||
style="width: 80px"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="yc_qty" label="YC" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.yc_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.yc_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="jy_qty" label="JY" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.jy_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.jy_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="lt_qty" label="LT" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.lt_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.lt_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="sj_qty" label="SJ" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.sj_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.sj_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="ys_qty" label="YS" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.ys_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.ys_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="ds_qty" label="DS" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.ds_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.ds_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="cqx_qty" label="CQX" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.cqx_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.cqx_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="xqx_qty" label="XQX" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.xqx_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.xqx_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="qx_qty" label="QX" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.qx_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.qx_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="jcf_qty" label="JCF" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.jcf_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.jcf_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="tb_qty" label="TB" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.tb_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.tb_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="ycr_qty" label="YCR" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.ycr_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.ycr_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="gz_qty" label="GZ" width="95" align="center" >
|
||||
<template slot-scope="scope">
|
||||
<span v-show="scope.row.edit">{{ scope.row.gz_qty }}</span>
|
||||
<el-input-number
|
||||
v-model="scope.row.gz_qty"
|
||||
v-show="!scope.row.edit"
|
||||
size="small"
|
||||
style="width: 80px"
|
||||
:controls="false"
|
||||
controls-position="right"
|
||||
:precision="2"
|
||||
:min="0"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="create_time" label="维护时间" min-width="140"/>
|
||||
<el-table-column prop="create_name" label="维护人" min-width="120" />
|
||||
<el-table-column label="操作" width="180" align="center" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button v-show="!scope.row.edit" type="primary" size="mini" icon="el-icon-edit" @click="handleEdit(scope.$index, scope.row)">编辑</el-button>
|
||||
<el-button v-show="scope.row.edit" type="success" size="mini" icon="el-icon-check" @click="handleEdit(scope.$index, scope.row)">完成</el-button>
|
||||
<el-button type="success" size="mini" :loading="confirm_flg" icon="el-icon-check" @click="confirm(scope.row)">确认</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<!--分页组件-->
|
||||
<pagination />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import crudWasteBallTime from '@/api/wms/basedata/pdm/wasteBallTime'
|
||||
import CRUD, { presenter, header, form, crud } from '@crud/crud'
|
||||
import rrOperation from '@crud/RR.operation'
|
||||
import crudOperation from '@crud/CRUD.operation'
|
||||
import pagination from '@crud/Pagination'
|
||||
|
||||
const defaultForm = { change_id: null, material_id: null, cf_qty: null, yz_qty: null, cx_qty: null, yc_qty: null, jy_qty: null, lt_qty: null, sj_qty: null, ys_qty: null, ds_qty: null, cqx_qty: null, xqx_qty: null, qx_qty: null, jcf_qty: null, tb_qty: null, ycr_qty: null, gz_qty: null, create_id: null, create_name: null, create_time: null }
|
||||
export default {
|
||||
name: 'WasteBallTime',
|
||||
components: { pagination, crudOperation, rrOperation },
|
||||
mixins: [presenter(), header(), form(defaultForm), crud()],
|
||||
cruds() {
|
||||
return CRUD({
|
||||
title: '合批软废球磨时间维护',
|
||||
url: 'api/wasteBallTime',
|
||||
idField: 'change_id',
|
||||
sort: 'change_id,desc',
|
||||
crudMethod: { ...crudWasteBallTime },
|
||||
optShow: {
|
||||
add: false,
|
||||
edit: false,
|
||||
del: false,
|
||||
download: false,
|
||||
reset: true
|
||||
},
|
||||
query: {}
|
||||
})
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
msg: '(注意:球磨时间单位为小时, 若无此软废,修正填为99)',
|
||||
tishiAccount_style: {
|
||||
color: 'red'
|
||||
},
|
||||
confirm_flg: false,
|
||||
permission: {
|
||||
},
|
||||
rules: {
|
||||
}}
|
||||
},
|
||||
methods: {
|
||||
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
||||
[CRUD.HOOK.beforeRefresh]() {
|
||||
this.crud.data = []
|
||||
return true
|
||||
},
|
||||
handleEdit(index, row) {
|
||||
row.edit = !row.edit
|
||||
this.form.tableData.splice(index, 1, row) // 通过splice 替换数据 触发视图更新
|
||||
},
|
||||
confirm(row) {
|
||||
this.confirm_flg = true
|
||||
crudWasteBallTime.confirm(row).then(res => {
|
||||
this.crud.notify('操作成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
|
||||
this.confirm_flg = false
|
||||
}).catch(() => {
|
||||
this.confirm_flg = false
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user