Commit 0e0cebea by lixiaomin

修改原料提示

parent 8e9bce61
......@@ -13,7 +13,6 @@
:value="item.value">
</el-option>
</el-select>
<!-- <el-input v-model="queryParams.materialCode" placeholder="状态" clearable @keyup.enter.native="handleQuery" /> -->
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery" v-hasPermi="['system:material:query']">搜索
......@@ -28,23 +27,8 @@
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
v-hasPermi="['system:material:add']">新增</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
v-hasPermi="['system:material:edit']">修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete"
v-hasPermi="['system:material:remove']">删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
v-hasPermi="['system:material:export']">导出</el-button>
</el-col> -->
<!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> -->
</el-row>
<!-- <el-table v-loading="loading" :data="materialList" @selection-change="handleSelectionChange"> -->
<!-- <el-table-column type="selection" width="55" align="center" /> -->
<el-table v-loading="loading" :data="materialList" >
<el-table-column label="原料名称" width="150" align="center" prop="name">
<template slot-scope="scope">
......@@ -248,6 +232,10 @@ export default {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.id != null) {
if(this.form.state=="1"){
this.$message.error("停用之后才可以修改");
return;
}
updateMaterial(this.form).then((response) => {
if(response.code=="200"){
this.$modal.msgSuccess("修改成功");
......@@ -270,6 +258,10 @@ export default {
},
/** 删除按钮操作 */
handleDelete(row) {
if(row.state=="1"){
this.$message.error("停用状态才能删除!");
return;
}
const ids = row.id || this.ids;
this.$modal
.confirm('是否确认删除编码为' + row.code + '的数据项?')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment