From 0000e935d6c7f74cb6682aea1bbf24d8deade390 Mon Sep 17 00:00:00 2001 From: wwl <xchao828@163.com> Date: 星期四, 03 七月 2025 17:49:18 +0800 Subject: [PATCH] 1 --- src/views/system/keyword/index.vue | 298 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 298 insertions(+), 0 deletions(-) diff --git a/src/views/system/keyword/index.vue b/src/views/system/keyword/index.vue new file mode 100644 index 0000000..5ba2d1b --- /dev/null +++ b/src/views/system/keyword/index.vue @@ -0,0 +1,298 @@ +<template> + <div class="app-container"> + <el-form + :model="queryParams" + ref="queryForm" + size="small" + :inline="true" + v-show="showSearch" + label-width="68px" + @submit.native.prevent + > + <el-form-item label="鍏抽敭瀛�" prop="gjz"> + <el-input + v-model="queryParams.gjz" + placeholder="璇疯緭鍏ュ叧閿瓧" + clearable + @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" + plain + icon="el-icon-plus" + size="mini" + @click="handleAdd" + v-hasPermi="['system:jcycpdgjz:add']" + >鏂板 + </el-button> + </el-col> + <el-col :span="1.5"> + <el-button + type="success" + plain + icon="el-icon-edit" + size="mini" + :disabled="single" + @click="handleUpdate" + v-hasPermi="['system:jcycpdgjz:edit']" + >淇敼 + </el-button> + </el-col> + <el-col :span="1.5"> + <el-button + type="danger" + plain + icon="el-icon-delete" + size="mini" + :disabled="multiple" + @click="handleDelete" + v-hasPermi="['system:jcycpdgjz:remove']" + >鍒犻櫎 + </el-button> + </el-col> + <el-col :span="1.5"> + <!-- <el-button + type="warning" + plain + icon="el-icon-download" + size="mini" + @click="handleExport" + v-hasPermi="['system:jcycpdgjz:export']" + >瀵煎嚭 + </el-button> --> + </el-col> + <right-toolbar + :showSearch.sync="showSearch" + @queryTable="getList" + ></right-toolbar> + </el-row> + + <el-table + v-loading="loading" + :data="jcycpdgjzList" + @selection-change="handleSelectionChange" + > + <el-table-column type="selection" width="55" align="center" /> + <el-table-column label="搴忓彿" align="center" prop="id" width="80" /> + <el-table-column label="鍏抽敭瀛�" align="center" prop="gjz" /> + <el-table-column + label="鎿嶄綔" + align="center" + class-name="small-padding fixed-width" + width="120" + > + <template slot-scope="scope"> + <el-button + size="mini" + type="text" + icon="el-icon-edit" + @click="handleUpdate(scope.row)" + v-hasPermi="['system:jcycpdgjz:edit']" + >淇敼 + </el-button> + <el-button + size="mini" + type="text" + icon="el-icon-delete" + @click="handleDelete(scope.row)" + v-hasPermi="['system:jcycpdgjz: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" append-to-body> + <el-form ref="form" :model="form" :rules="rules" label-width="80px"> + <el-form-item label="鍏抽敭瀛�" prop="gjz"> + <el-input v-model="form.gjz" 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 { + listJcycpdgjz, + getJcycpdgjz, + delJcycpdgjz, + addJcycpdgjz, + updateJcycpdgjz, +} from "@/api/system/jcycpdgjz"; + +export default { + name: "Jcycpdgjz", + data() { + return { + // 閬僵灞� + loading: true, + // 閫変腑鏁扮粍 + ids: [], + // 闈炲崟涓鐢� + single: true, + // 闈炲涓鐢� + multiple: true, + // 鏄剧ず鎼滅储鏉′欢 + showSearch: true, + // 鎬绘潯鏁� + total: 0, + // 鍏抽敭瀛楄〃鏍兼暟鎹� + jcycpdgjzList: [], + // 寮瑰嚭灞傛爣棰� + title: "", + // 鏄惁鏄剧ず寮瑰嚭灞� + open: false, + // 鏌ヨ鍙傛暟 + queryParams: { + pageNum: 1, + pageSize: 10, + gjz: null, + }, + // 琛ㄥ崟鍙傛暟 + form: {}, + // 琛ㄥ崟鏍¢獙 + rules: {}, + }; + }, + created() { + this.getList(); + }, + methods: { + /** 鏌ヨ鍏抽敭瀛楀垪琛� */ + getList() { + this.loading = true; + listJcycpdgjz(this.queryParams).then((response) => { + this.jcycpdgjzList = response.rows; + this.total = response.total; + this.loading = false; + }); + }, + // 鍙栨秷鎸夐挳 + cancel() { + this.open = false; + this.reset(); + }, + // 琛ㄥ崟閲嶇疆 + reset() { + this.form = { + id: null, + gjz: null, + createTime: null, + createBy: null, + updateTime: null, + updateBy: null, + deleted: null, + }; + this.resetForm("form"); + }, + /** 鎼滅储鎸夐挳鎿嶄綔 */ + handleQuery() { + this.queryParams.pageNum = 1; + this.getList(); + }, + /** 閲嶇疆鎸夐挳鎿嶄綔 */ + resetQuery() { + this.resetForm("queryForm"); + 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 || this.ids; + getJcycpdgjz(id).then((response) => { + this.form = response.data; + this.open = true; + this.title = "淇敼鍏抽敭瀛�"; + }); + }, + /** 鏂板淇敼鎿嶄綔 */ + submitForm() { + this.$refs["form"].validate((valid) => { + if (valid) { + // 濡傛灉鏈夊閫夋瀛楁锛坈heckbox锛夛紝杩欓噷澶勭悊涓洪�楀彿鎷兼帴锛堝鏈夐渶瑕佸彲娣诲姞锛� + if (!this.form.id || this.form.id === "") { + addJcycpdgjz(this.form).then((response) => { + this.$modal.msgSuccess("鏂板鎴愬姛"); + this.open = false; + this.getList(); + }); + } else { + updateJcycpdgjz(this.form).then((response) => { + this.$modal.msgSuccess("淇敼鎴愬姛"); + this.open = false; + this.getList(); + }); + } + } + }); + }, + /** 鍒犻櫎鎸夐挳鎿嶄綔 */ + handleDelete(row) { + const id = row.id; + this.$modal + .confirm('鏄惁纭鍒犻櫎"' + id + '"鐨勬暟鎹」锛�') + .then(function () { + return delJcycpdgjz(id); + }) + .then(() => { + this.getList(); + this.$modal.msgSuccess("鍒犻櫎鎴愬姛"); + }) + .catch(() => {}); + }, + /** 瀵煎嚭鎸夐挳鎿嶄綔 */ + /* handleExport() { + this.download( + "hosp/detail/export", + { + ...this.queryParams, + }, + `detail_${new Date().getTime()}.xlsx` + ); + }, */ + }, +}; +</script> -- Gitblit v1.8.0