2021-02-25 17:53:31 +08:00

334 lines
9.7 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px">
<el-form-item label="任务名称" prop="taskCode">
<el-select v-model="queryParams.taskCode" size="small">
<el-option
v-for="item in taskOptions"
:key="item.code"
:label="item.taskLable"
:value="item.code"
/>
</el-select>
</el-form-item>
<el-form-item label="标准名称" prop="standardTitle">
<el-input
v-model="queryParams.standardTitle"
placeholder="请输入标准名称"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['benyi:standard:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['benyi:standard:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['benyi:standard:remove']"
>删除</el-button>
</el-col>
</el-row>
<el-table v-loading="loading" :data="standardList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="标准名称" align="center" prop="standardTitle" >
<template slot-scope="scope">
<router-link
:to="'/dayflow/dayflowmanger/dayflowtask/standard/unscramble/' + scope.row.id"
class="link-dayflow"
>
<span>{{ scope.row.standardTitle }}</span>
</router-link>
</template>
</el-table-column>
<el-table-column label="标准排序" align="center" prop="standardSort" />
<el-table-column label="解读数量" align="center" prop="unscrambleCount" />
<el-table-column label="创建时间" align="center" prop="createtime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createtime) }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['benyi:standard:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['benyi:standard:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改一日流程标准对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px">
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="任务名称" prop="taskCode">
<el-select v-model="form.taskCode" :disabled="true" size="small">
<el-option
v-for="item in taskOptions"
:key="item.code"
:label="item.taskLable"
:value="item.code"
/>
</el-select>
</el-form-item>
<el-form-item label="标准名称" prop="standardTitle">
<el-input v-model="form.standardTitle" type="textarea" placeholder="请输入标准的名称" />
</el-form-item>
<el-form-item label="标准排序" prop="standardSort">
<el-input-number v-model="form.standardSort" controls-position="right" :min="0" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listStandard,
getStandard,
delStandard,
addStandard,
updateStandard
} from "@/api/benyi/dayflow/biaozhun/standard";
import {
listDayflowtask,
getDayflowtask
} from "@/api/benyi/dayflow/dayflowtask";
export default {
name: "Standard",
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 总条数
total: 0,
// 一日流程标准表格数据
standardList: [],
// 任务名称集合
taskOptions: [],
// 默认任务名称
defaultTaskName: "",
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
taskCode: undefined,
standardTitle: undefined,
standardSort: undefined,
score: undefined,
createuser: undefined,
createtime: undefined,
updateuser: undefined,
updatetime: undefined
},
// 表单参数
form: {},
// 表单校验
rules: {
standardTitle: [
{ required: true, message: "标准名称不能为空", trigger: "blur" }
],
standardSort: [
{ required: true, message: "标准排序不能为空", trigger: "blur" }
]
}
};
},
created() {
//this.getList();
const taskId = this.$route.params && this.$route.params.code;
this.getDayflowtask(taskId);
this.getTaskList();
},
methods: {
/**查询任务名称详细 */
getDayflowtask(taskId) {
getDayflowtask(taskId).then(response => {
this.queryParams.taskCode = response.data.code;
this.defaultTaskName = response.data.code;
this.getList();
});
},
/** 查询一日流程标准列表 */
getList() {
this.loading = true;
listStandard(this.queryParams).then(response => {
this.standardList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/**查询任务名称列表 */
getTaskList() {
listDayflowtask().then(response => {
this.taskOptions = response.rows;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: undefined,
taskCode: undefined,
standardTitle: undefined,
standardSort: 0,
score: undefined,
createuser: undefined,
createtime: undefined,
updateuser: undefined,
updatetime: undefined
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.queryParams.taskCode = this.defaultTaskName;
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id);
this.single = selection.length != 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加标准";
this.form.taskCode = this.queryParams.taskCode;
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const sid = row.id || this.ids;
getStandard(sid).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改标准";
});
},
/** 提交按钮 */
submitForm: function() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != undefined) {
updateStandard(this.form).then(response => {
if (response.code === 200) {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
} else {
this.msgError(response.msg);
}
});
} else {
addStandard(this.form).then(response => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
} else {
this.msgError(response.msg);
}
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const sids = row.id || this.ids;
this.$confirm(
'是否确认删除一日流程标准编号为"' + sids + '"的数据项?',
"警告",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}
)
.then(function() {
return delStandard(sids);
})
.then(() => {
this.getList();
this.msgSuccess("删除成功");
})
.catch(function() {});
}
}
};
</script>