ETest-Vue-FastAPI/ruoyi-fastapi-frontend/src/views/system/test_form/condition.vue

210 lines
7.3 KiB
Vue

<template>
<div class="app-container">
<!-- 搜索区域 -->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="80px">
<el-form-item label="表单名称" prop="name">
<el-input v-model="queryParams.name" placeholder="请输入表单名称" clearable @keyup.enter.native="handleQuery" />
</el-form-item>
<el-form-item label="状态" prop="isActive">
<el-select v-model="queryParams.isActive" placeholder="请选择状态" clearable>
<el-option label="启用" :value="1" />
<el-option label="禁用" :value="0" />
</el-select>
</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" v-hasPermi="['system:test_form:add']">新增</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<!-- 表格 -->
<el-table v-loading="loading" :data="testFormList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column type="index" label="序号" align="center" width="80" />
<el-table-column label="表单名称" align="center" prop="name" />
<el-table-column label="表单说明" align="center" prop="description" show-overflow-tooltip />
<el-table-column label="状态" align="center" prop="isActive" width="100">
<template slot-scope="scope">
<el-tag :type="scope.row.isActive === 1 ? 'success' : 'info'">
{{ scope.row.isActive === 1 ? '启用' : '禁用' }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" width="180" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="200">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['system:test_form:edit']">修改</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['system:test_form: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="700px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="表单名称" prop="name">
<el-input v-model="form.name" placeholder="请输入表单名称" />
</el-form-item>
<el-form-item label="表单定义" prop="formJson">
<el-input v-model="form.formJson" type="textarea" :rows="10" placeholder="请输入表单JSON定义" />
</el-form-item>
<el-form-item label="表单说明" prop="description">
<el-input v-model="form.description" type="textarea" :rows="3" placeholder="请输入表单说明" />
</el-form-item>
<el-form-item label="状态" prop="isActive">
<el-radio-group v-model="form.isActive">
<el-radio :label="1">启用</el-radio>
<el-radio :label="0"></el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" :rows="2" placeholder="请输入备注" />
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel"> </el-button>
</div>
</template>
</el-dialog>
</div>
</template>
<script>
import { listTest_form, getTest_form, addTest_form, updateTest_form, delTest_form } from "@/api/system/test_form";
export default {
name: "TestFormCondition",
data() {
return {
loading: true,
ids: [],
single: true,
multiple: true,
showSearch: true,
total: 0,
testFormList: [],
title: "",
open: false,
queryParams: {
pageNum: 1,
pageSize: 10,
name: null,
form_type: 'CONDITION',
isActive: null
},
form: {
id: null,
name: null,
formType: 'CONDITION',
formJson: null,
description: null,
isActive: 1,
remark: null
},
rules: {
name: [{ required: true, message: "表单名称不能为空", trigger: "blur" }],
formJson: [{ required: true, message: "表单定义不能为空", trigger: "blur" }]
}
};
},
created() {
this.getList();
},
methods: {
getList() {
this.loading = true;
listTest_form(this.queryParams).then(response => {
this.testFormList = response.rows;
this.total = response.total;
this.loading = false;
});
},
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
resetQuery() {
this.queryParams.name = null;
this.queryParams.isActive = null;
// 保留 form_type 筛选条件
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 = "添加测试条件表单";
},
handleUpdate(row) {
this.reset();
const id = row.id;
getTest_form(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改测试条件表单";
});
},
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateTest_form(this.form).then(() => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addTest_form(this.form).then(() => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除该表单?').then(() => {
return delTest_form(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
cancel() {
this.open = false;
this.reset();
},
reset() {
this.form = {
id: null,
name: null,
formType: 'CONDITION',
formJson: null,
description: null,
isActive: 1,
remark: null
};
this.resetForm("form");
}
}
};
</script>