123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- <template>
- <div class="app-container">
- <el-card class="box-card">
- <save-form
- ref="listQuery"
- :model="listQuery"
- @submit="handleQuery"
- :inline="true"
- >
- <el-form-item label="分类名称">
- <el-input
- v-model="listQuery.name"
- placeholder="请输入分类名称"
- clearable
- size="small"
- style="width: 240px"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item>
- <el-button
- type="primary"
- icon="el-icon-search"
- size="small"
- native-type="submit"
- >搜索</el-button
- >
- </el-form-item>
- </save-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- v-permisaction="['process:admin:classify:add']"
- type="primary"
- icon="el-icon-plus"
- size="mini"
- @click="handleCreate"
- >新增</el-button
- >
- </el-col>
- <!-- <el-col :span="1.5">
- <el-button
- v-permisaction="['system:sysrole:edit']"
- type="success"
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- >编辑</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- v-permisaction="['system:sysrole:remove']"
- type="danger"
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- >删除</el-button>
- </el-col> -->
- </el-row>
- <el-table
- v-loading="loading"
- border
- :data="classifyList"
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column label="ID" prop="id" width="120" />
- <el-table-column
- label="名称"
- prop="name"
- :show-overflow-tooltip="true"
- />
- <el-table-column
- label="创建者"
- prop="create_name"
- :show-overflow-tooltip="true"
- width="150"
- />
- <el-table-column
- label="创建时间"
- align="center"
- prop="create_time"
- width="180"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.create_time) }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- align="center"
- class-name="small-padding fixed-width"
- >
- <template slot-scope="scope">
- <el-button
- v-permisaction="['process:admin:classify:edit']"
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleEdit(scope.row)"
- >编辑</el-button
- >
- <el-button
- v-permisaction="['process:admin:classify:delete']"
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="queryParams.pageIndex"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <el-dialog
- :title="dialogFormVisibleName === 1 ? '新建分类' : '编辑分类'"
- :visible.sync="open"
- width="600px"
- >
- <div class="tpl-create-content">
- <el-form
- ref="ruleForm"
- :model="ruleForm"
- :rules="rules"
- label-width="100px"
- >
- <el-form-item label="分类名称" prop="name" style="width: 95%">
- <el-input v-model="ruleForm.name" />
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer" style="text-align: right">
- <el-button
- type="primary"
- @click="
- dialogFormVisibleName === 1
- ? submitForm('ruleForm')
- : editForm('ruleForm')
- "
- >提交</el-button
- >
- <el-button @click="open = false">取 消</el-button>
- </div>
- </div>
- </el-dialog>
- </el-card>
- </div>
- </template>
- <script>
- import {
- createClassify,
- classifyList,
- updateClassify,
- deleteClassify
- } from "@/api/process/admin/classify";
- import SaveForm from "@/components/save-form";
- export default {
- name: "Classify",
- components: {
- SaveForm
- },
- data() {
- return {
- dialogFormVisibleName: 1,
- queryParams: {},
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 总条数
- total: 0,
- // 是否显示弹出层
- open: false,
- // 查询参数
- classifyList: [],
- listQuery: {
- page: 1,
- per_page: 10
- },
- ruleForm: {
- id: undefined,
- name: ""
- },
- rules: {
- name: [{ required: true, message: "请输入流程分类", trigger: "blur" }]
- }
- };
- },
- mounted() {
- this.getList();
- },
- methods: {
- /** 查询角色列表 */
- getList() {
- this.loading = true;
- this.listQuery.page = this.queryParams.pageIndex;
- this.listQuery.per_page = this.queryParams.pageSize;
- classifyList(this.listQuery).then(response => {
- this.classifyList = response.data.data;
- this.queryParams.pageIndex = response.data.page;
- this.queryParams.pageSize = response.data.per_page;
- this.total = response.data.total_count;
- this.loading = false;
- });
- },
- handleCreate() {
- this.ruleForm = {
- id: undefined,
- name: ""
- };
- this.dialogFormVisibleName = 1;
- this.open = true;
- },
- handleEdit(row) {
- this.dialogFormVisibleName = 2;
- this.ruleForm.id = row.id;
- this.ruleForm.name = row.name;
- this.open = true;
- },
- submitForm(formName) {
- this.$refs[formName].validate(valid => {
- if (valid) {
- createClassify(this.ruleForm).then(response => {
- if (response !== undefined) {
- this.getList();
- this.$message({
- type: "success",
- message: "分类已增加!"
- });
- this.open = false;
- }
- });
- }
- });
- },
- editForm(formName) {
- this.$refs[formName].validate(valid => {
- if (valid) {
- updateClassify(this.ruleForm).then(response => {
- if (response !== undefined) {
- this.getList();
- this.$message({
- type: "success",
- message: "分类已更新!"
- });
- this.open = false;
- }
- });
- }
- });
- },
- handleQuery() {
- this.queryParams.pageIndex = 1;
- this.queryParams.pageSize = 10;
- this.getList();
- },
- handleDelete(row) {
- this.$confirm("此操作将永久删除该数据, 是否继续?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- deleteClassify({
- classifyId: row.id
- }).then(response => {
- if (response !== undefined) {
- this.getList();
- this.$message({
- type: "success",
- message: "分类已删除!"
- });
- }
- });
- })
- .catch(() => {
- this.$message({
- type: "info",
- message: "已取消删除"
- });
- });
- },
- handleSelectionChange() {}
- }
- };
- </script>
|