设备信息维护

This commit is contained in:
Vergil
2020-04-01 15:31:33 +08:00
parent 7cef187221
commit 0296ff52f6

View File

@@ -5,7 +5,7 @@
<!--<el-button type="success" size="small" icon="el-icon-search" style="margin-left:30px;background: #ecf5ff;border-color: #2d72d5;color: #2d72d5;" @click="pageCurrent = 1;fetchData()">查询</el-button>--> <!--<el-button type="success" size="small" icon="el-icon-search" style="margin-left:30px;background: #ecf5ff;border-color: #2d72d5;color: #2d72d5;" @click="pageCurrent = 1;fetchData()">查询</el-button>-->
<el-button type="primary" icon="el-icon-search" size="small" style="margin-left: 20px" plain @click="PageSize = 10;PageCurrent = 1;fetchData()">查询</el-button> <el-button type="primary" icon="el-icon-search" size="small" style="margin-left: 20px" plain @click="PageSize = 10;PageCurrent = 1;fetchData()">查询</el-button>
<el-tooltip effect="dark" content="添加新设备" placement="top"> <el-tooltip effect="dark" content="添加新设备" placement="top">
<el-button class="button111" icon="el-icon-circle-plus-outline" size="small" style="margin-left: 10px" @click="ADD()">新增</el-button> <el-button class="button111" icon="el-icon-circle-plus-outline" size="small" style="margin-left: 10px" @click="ADD()">设备</el-button>
<!--<el-button type="primary" size="small" icon="el-icon-circle-plus-outline" plain style="margin-left:10px;background: #fdf6ec;border-color: #ff9759;color: #ff9759;" @click="handleAdd()">新增</el-button>--> <!--<el-button type="primary" size="small" icon="el-icon-circle-plus-outline" plain style="margin-left:10px;background: #fdf6ec;border-color: #ff9759;color: #ff9759;" @click="handleAdd()">新增</el-button>-->
</el-tooltip> </el-tooltip>
<!-- <span style="margin-left: 40px">有效时间</span>--> <!-- <span style="margin-left: 40px">有效时间</span>-->
@@ -111,8 +111,8 @@
<!-- </el-tooltip>--> <!-- </el-tooltip>-->
<!-- </el-card>--> <!-- </el-card>-->
<el-dialog v-el-drag-dialog :title="title" :visible.sync="dialogFormVisible" center style="min-height: 300px" width="800px"> <el-dialog v-el-drag-dialog :title="title" :visible.sync="dialogFormVisible" center style="min-height: 300px" width="700px">
<el-form ref="form" :model="form" :rules="rules" label-position="left" label-width="120px" class="demo-ruleForm"> <el-form ref="form" :model="form" :rules="rules" label-position="right" label-width="110px" class="demo-ruleForm">
<el-row> <el-row>
<el-col :span = "12"> <el-col :span = "12">
<el-form-item label="设备名称" prop="设备名称" > <el-form-item label="设备名称" prop="设备名称" >
@@ -276,7 +276,7 @@ export default {
if (this.$refs['form'] !== undefined) { if (this.$refs['form'] !== undefined) {
this.$refs['form'].resetFields() this.$refs['form'].resetFields()
} }
this.title = '新增车间设备' this.title = '新增设备'
this.form = { this.form = {
设备名称: '', 设备名称: '',
设备编号: '', 设备编号: '',
@@ -295,7 +295,7 @@ export default {
if (this.$refs['form'] !== undefined) { if (this.$refs['form'] !== undefined) {
this.$refs['form'].resetFields() this.$refs['form'].resetFields()
} }
this.title = '编辑' this.title = '编辑设备'
this.dialogFormVisible = true this.dialogFormVisible = true
this.form.设备名称 = row.设备名称 this.form.设备名称 = row.设备名称
this.form.设备编号 = row.设备编号 this.form.设备编号 = row.设备编号
@@ -310,12 +310,11 @@ export default {
this.equipmentSerialNumber = row.设备流水号 this.equipmentSerialNumber = row.设备流水号
}, },
submit(formName) { submit(formName) {
console.log(this.title)
this.$refs[formName].validate((valid) => { this.$refs[formName].validate((valid) => {
if (valid) { if (valid) {
if (this.title === '增加') { if (this.title === '新增设备') {
this.submitAdd() this.submitAdd()
} else if (this.title === '编辑') { } else if (this.title === '编辑设备') {
this.submitEdit() this.submitEdit()
} }
} }