Files

221 lines
5.7 KiB
Vue
Raw Normal View History

2022-01-12 11:22:02 +08:00
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
v-show="showSearch"
:inline="true"
@submit.native.prevent
>
<el-form-item label="所属站点" prop="tenant_id" v-if="is_super">
<SiteOptions v-model="queryParams" />
2022-01-12 11:22:02 +08:00
</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"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
>新增</el-button
>
</el-col>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="dataList">
<el-table-column label="数据编号" prop="id" width="120" />
<el-table-column label="导航名称" prop="title" width="120" />
<el-table-column label="所属站点" prop="area" align="center" />
<el-table-column label="创建时间" prop="created_at" align="center">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.created_at) }}</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)"
>编辑</el-button
>
<el-button
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.page_num"
:limit.sync="queryParams.page_size"
@pagination="getList"
/>
<!-- 添加或修改对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px">
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="所属站点" prop="tenant_id">
<SiteOptions v-model="form" />
2022-01-12 11:22:02 +08:00
</el-form-item>
<el-form-item label="导航名称:" prop="title">
<el-input v-model="form.title" placeholder="请输入导航名称" />
</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 {
navigationList,
navigationAdd,
navigationEdit,
navigationDelete,
} from "@/api/website/innovate";
export default {
data() {
return {
is_super: this.$store.getters.is_super,
loading: true,
showSearch: true,
queryParams: {
title: undefined,
tenant_id: undefined,
page_num: 1,
page_size: 10,
},
total: 0,
dataList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 表单参数
form: {},
rules: {
title: [
{ required: true, message: "导航名称不能为空", trigger: "blur" },
],
tenant_id: [
{
required: true,
message: "所属站点不能为空",
trigger: ["blur", "change"],
},
2022-01-12 11:22:02 +08:00
],
},
};
},
methods: {
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
handleQuery() {
this.queryParams.page_num = 1;
this.getList();
},
getList() {
this.loading = true;
navigationList(this.queryParams).then((res) => {
this.dataList = res.data.data;
this.total = res.data.count;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.memberOpen = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: undefined,
tenant_id: undefined,
title: undefined,
};
this.resetForm("form");
},
handleAdd() {
this.reset();
this.open = true;
this.title = "新增";
},
handleUpdate(row) {
this.reset();
this.form = Object.assign({}, row);
this.open = true;
this.title = "修改";
},
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
if (this.form.id != undefined) {
navigationEdit(this.form).then((response) => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
navigationAdd(this.form).then((response) => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
this.$modal
.confirm('是否确认删除名为"' + row.title + '"的数据项?')
.then(function () {
return navigationDelete({ id: row.id });
})
.then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
})
.catch(() => {});
},
},
created() {
this.getList();
},
};
</script>