You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

366 lines
10 KiB

<template>
<div class="app-container">
<div class="head-container">
<!-- 搜索 -->
<el-input
v-model="listQuery.Filter"
clearable
size="small"
placeholder="搜索..."
style="width: 200px;"
class="filter-item"
@keyup.enter.native="handleFilter"
/>
<el-button
class="filter-item"
size="mini"
type="success"
icon="el-icon-search"
@click="handleFilter"
>搜索</el-button>
<div style="padding: 6px 0;">
<router-link :to="'/tool/formCreate'">
<el-button
class="filter-item"
size="mini"
type="primary"
icon="el-icon-plus"
>新增</el-button>
</router-link>
<el-button
class="filter-item"
size="mini"
type="success"
icon="el-icon-edit"
v-permission="['BaseService.Job.Update']"
@click="handleUpdate()"
>修改</el-button>
<el-button
slot="reference"
class="filter-item"
type="danger"
icon="el-icon-delete"
size="mini"
v-permission="['BaseService.Job.Delete']"
@click="handleDelete()"
>删除</el-button>
</div>
</div>
<el-dialog
:visible.sync="dialogFormVisible"
:close-on-click-modal="false"
:title="formTitle"
@close="cancel()"
width="500px"
>
<el-form
ref="form"
:inline="true"
:model="form"
:rules="rules"
size="small"
label-width="66px"
>
<el-form-item label="名称" prop="name">
<el-input v-model="form.name" style="width: 370px;" />
</el-form-item>
<el-form-item label="状态" prop="enabled">
<el-radio-group v-model="form.enabled" style="width: 135px">
<el-radio :label="true">启用</el-radio>
<el-radio :label="false">禁用</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="描述">
<el-input type="textarea" v-model="form.description" style="width: 370px;" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button size="small" type="text" @click="cancel">取消</el-button>
<el-button size="small" v-loading="formLoading" type="primary" @click="save">确认</el-button>
</div>
</el-dialog>
<el-table
ref="multipleTable"
v-loading="listLoading"
:data="list"
size="small"
style="width: 90%;"
@sort-change="sortChange"
@selection-change="handleSelectionChange"
@row-click="handleRowClick"
>
<el-table-column type="selection" width="44px"></el-table-column>
<el-table-column label="表单名称" prop="name" sortable="custom" align="center" width="150px">
<template slot-scope="{row}">
<span class="link-type" @click="handleUpdate(row)">{{row.name}}</span>
</template>
</el-table-column>
<el-table-column label="描述" prop="sort" align="center">
<template slot-scope="scope">
<span>{{scope.row.description}}</span>
</template>
</el-table-column>
<el-table-column label="状态" prop="enable" align="center">
<template slot-scope="scope">
<el-switch
v-model="scope.row.enabled"
active-color="#409EFF"
inactive-color="#F56C6C"
@change="changeEnabled(scope.row, scope.row.enabled,)"
/>
</template>
</el-table-column>
<el-table-column label="操作" align="center">
<template slot-scope="{row}">
<el-button
type="primary"
size="mini"
@click="handleUpdate(row)"
v-permission="['BaseService.Job.Update']"
icon="el-icon-edit"
/>
<el-button
type="danger"
size="mini"
@click="handleDelete(row)"
v-permission="['BaseService.Job.Delete']"
icon="el-icon-delete"
/>
</template>
</el-table-column>
</el-table>
<pagination
v-show="totalCount>0"
:total="totalCount"
:page.sync="page"
:limit.sync="listQuery.MaxResultCount"
@pagination="getList"
/>
</div>
</template>
<script>
import Pagination from "@/components/Pagination";
import permission from "@/directive/permission/index.js";
const defaultForm = {
id: null,
name: null,
description: null,
sort: 999,
enabled: true,
};
export default {
name: "Job",
components: { Pagination },
directives: { permission },
data() {
return {
rules: {
name: [{ required: true, message: "请输入岗位名", trigger: "blur" }],
},
form: Object.assign({}, defaultForm),
list: null,
totalCount: 0,
listLoading: true,
formLoading: false,
listQuery: {
Filter: "",
Sorting: "",
SkipCount: 0,
MaxResultCount: 10,
},
page: 1,
dialogFormVisible: false,
multipleSelection: [],
formTitle: "",
isEdit: false,
};
},
created() {
this.getList();
},
methods: {
getList() {
this.listLoading = true;
this.listQuery.SkipCount = (this.page - 1) * 10;
this.$axios
.gets("/api/base/form", this.listQuery)
.then((response) => {
this.list = response.items;
this.totalCount = response.totalCount;
this.listLoading = false;
});
},
fetchData(id) {
this.$axios.gets("/api/base/form/" + id).then((response) => {
this.form = response;
});
},
handleFilter() {
this.page = 1;
this.getList();
},
save() {
this.$refs.form.validate((valid) => {
if (valid) {
this.formLoading = true;
this.form.roleNames = this.checkedRole;
if (this.isEdit) {
this.$axios
.puts("/api/base/job/" + this.form.id, this.form)
.then((response) => {
this.formLoading = false;
this.$notify({
title: "成功",
message: "更新成功",
type: "success",
duration: 2000,
});
this.dialogFormVisible = false;
this.getList();
})
.catch(() => {
this.formLoading = false;
});
} else {
this.$axios
.posts("/api/base/job", this.form)
.then((response) => {
this.formLoading = false;
this.$notify({
title: "成功",
message: "新增成功",
type: "success",
duration: 2000,
});
this.dialogFormVisible = false;
this.getList();
})
.catch(() => {
this.formLoading = false;
});
}
}
});
},
handleCreate() {
this.formTitle = "新增岗位";
this.isEdit = false;
this.dialogFormVisible = true;
},
handleDelete(row) {
var params = [];
let alert = "";
if (row) {
params.push(row.id);
alert = row.name;
} else {
if (this.multipleSelection.length === 0) {
this.$message({
message: "未选择",
type: "warning",
});
return;
}
this.multipleSelection.forEach((element) => {
let id = element.id;
params.push(id);
});
alert = "选中项";
}
this.$confirm("是否删除" + alert + "?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.$axios
.posts("/api/base/form/delete", params)
.then((response) => {
this.$notify({
title: "成功",
message: "删除成功",
type: "success",
duration: 2000,
});
this.getList();
});
})
.catch(() => {
this.$message({
type: "info",
message: "已取消删除",
});
});
},
handleUpdate(row) {
this.formTitle = "修改岗位";
this.isEdit = true;
if (row) {
this.fetchData(row.id);
this.dialogFormVisible = true;
} else {
if (this.multipleSelection.length != 1) {
this.$message({
message: "编辑必须选择单行",
type: "warning",
});
return;
} else {
this.fetchData(this.multipleSelection[0].id);
this.dialogFormVisible = true;
}
}
},
sortChange(data) {
const { prop, order } = data;
if (!prop || !order) {
this.handleFilter();
return;
}
this.listQuery.Sorting = prop + " " + order;
this.handleFilter();
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
handleRowClick(row, column, event) {
this.$refs.multipleTable.clearSelection();
this.$refs.multipleTable.toggleRowSelection(row);
},
cancel() {
this.form = Object.assign({}, defaultForm);
this.dialogFormVisible = false;
this.$refs.form.clearValidate();
},
changeEnabled(data, val) {
data.active = val ? "启用" : "停用";
this.$confirm("是否" + data.active + data.name + "", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.$axios
.puts("/api/base/job/" + data.id, data)
.then((response) => {
this.$notify({
title: "成功",
message: "更新成功",
type: "success",
duration: 2000,
});
})
.catch(() => {
data.enabled = !data.enabled;
});
})
.catch(() => {
data.enabled = !data.enabled;
});
},
},
};
</script>