index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
  4. <el-form-item label="字典名称" prop="dictName">
  5. <el-input
  6. v-model="queryParams.dictName"
  7. placeholder="请输入字典名称"
  8. clearable
  9. size="small"
  10. style="width: 240px"
  11. @keyup.enter.native="handleQuery"
  12. />
  13. </el-form-item>
  14. <el-form-item label="字典类型" prop="dictType">
  15. <el-input
  16. v-model="queryParams.dictType"
  17. placeholder="请输入字典类型"
  18. clearable
  19. size="small"
  20. style="width: 240px"
  21. @keyup.enter.native="handleQuery"
  22. />
  23. </el-form-item>
  24. <el-form-item label="状态" prop="status">
  25. <el-select
  26. v-model="queryParams.status"
  27. placeholder="字典状态"
  28. clearable
  29. size="small"
  30. style="width: 240px"
  31. >
  32. <el-option
  33. v-for="dict in statusOptions"
  34. :key="dict.dictValue"
  35. :label="dict.dictLabel"
  36. :value="dict.dictValue"
  37. />
  38. </el-select>
  39. </el-form-item>
  40. <el-form-item label="创建时间">
  41. <el-date-picker
  42. v-model="dateRange"
  43. size="small"
  44. style="width: 240px"
  45. value-format="yyyy-MM-dd"
  46. type="daterange"
  47. range-separator="-"
  48. start-placeholder="开始日期"
  49. end-placeholder="结束日期"
  50. ></el-date-picker>
  51. </el-form-item>
  52. <el-form-item>
  53. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  54. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  55. </el-form-item>
  56. </el-form>
  57. <el-row :gutter="10" class="mb8">
  58. <el-col :span="1.5">
  59. <el-button
  60. type="primary"
  61. plain
  62. icon="el-icon-plus"
  63. size="mini"
  64. @click="handleAdd"
  65. v-hasPermi="['system:dict:add']"
  66. >新增</el-button>
  67. </el-col>
  68. <el-col :span="1.5">
  69. <el-button
  70. type="success"
  71. plain
  72. icon="el-icon-edit"
  73. size="mini"
  74. :disabled="single"
  75. @click="handleUpdate"
  76. v-hasPermi="['system:dict:edit']"
  77. >修改</el-button>
  78. </el-col>
  79. <el-col :span="1.5">
  80. <el-button
  81. type="danger"
  82. plain
  83. icon="el-icon-delete"
  84. size="mini"
  85. :disabled="multiple"
  86. @click="handleDelete"
  87. v-hasPermi="['system:dict:remove']"
  88. >删除</el-button>
  89. </el-col>
  90. <el-col :span="1.5">
  91. <el-button
  92. type="warning"
  93. plain
  94. icon="el-icon-download"
  95. size="mini"
  96. :loading="exportLoading"
  97. @click="handleExport"
  98. v-hasPermi="['system:dict:export']"
  99. >导出</el-button>
  100. </el-col>
  101. <el-col :span="1.5">
  102. <el-button
  103. type="danger"
  104. plain
  105. icon="el-icon-refresh"
  106. size="mini"
  107. @click="handleRefreshCache"
  108. v-hasPermi="['system:dict:remove']"
  109. >刷新缓存</el-button>
  110. </el-col>
  111. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  112. </el-row>
  113. <el-table v-loading="loading" :data="typeList" @selection-change="handleSelectionChange">
  114. <el-table-column type="selection" width="55" align="center" />
  115. <el-table-column label="字典编号" align="center" prop="dictId" />
  116. <el-table-column label="字典名称" align="center" prop="dictName" :show-overflow-tooltip="true" />
  117. <el-table-column label="字典类型" align="center" :show-overflow-tooltip="true">
  118. <template slot-scope="scope">
  119. <router-link :to="'/system/dict-data/index/' + scope.row.dictId" class="link-type">
  120. <span>{{ scope.row.dictType }}</span>
  121. </router-link>
  122. </template>
  123. </el-table-column>
  124. <el-table-column label="状态" align="center" prop="status">
  125. <template slot-scope="scope">
  126. <dict-tag :options="statusOptions" :value="scope.row.status"/>
  127. </template>
  128. </el-table-column>
  129. <el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true" />
  130. <el-table-column label="创建时间" align="center" prop="createTime" width="180">
  131. <template slot-scope="scope">
  132. <span>{{ parseTime(scope.row.createTime) }}</span>
  133. </template>
  134. </el-table-column>
  135. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  136. <template slot-scope="scope">
  137. <el-button
  138. size="mini"
  139. type="text"
  140. icon="el-icon-edit"
  141. @click="handleUpdate(scope.row)"
  142. v-hasPermi="['system:dict:edit']"
  143. >修改</el-button>
  144. <el-button
  145. size="mini"
  146. type="text"
  147. icon="el-icon-delete"
  148. @click="handleDelete(scope.row)"
  149. v-hasPermi="['system:dict:remove']"
  150. >删除</el-button>
  151. </template>
  152. </el-table-column>
  153. </el-table>
  154. <pagination
  155. v-show="total>0"
  156. :total="total"
  157. :page.sync="queryParams.pageNum"
  158. :limit.sync="queryParams.pageSize"
  159. @pagination="getList"
  160. />
  161. <!-- 添加或修改参数配置对话框 -->
  162. <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
  163. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  164. <el-form-item label="字典名称" prop="dictName">
  165. <el-input v-model="form.dictName" placeholder="请输入字典名称" />
  166. </el-form-item>
  167. <el-form-item label="字典类型" prop="dictType">
  168. <el-input v-model="form.dictType" placeholder="请输入字典类型" />
  169. </el-form-item>
  170. <el-form-item label="状态" prop="status">
  171. <el-radio-group v-model="form.status">
  172. <el-radio
  173. v-for="dict in statusOptions"
  174. :key="dict.dictValue"
  175. :label="dict.dictValue"
  176. >{{dict.dictLabel}}</el-radio>
  177. </el-radio-group>
  178. </el-form-item>
  179. <el-form-item label="备注" prop="remark">
  180. <el-input v-model="form.remark" type="textarea" placeholder="请输入内容"></el-input>
  181. </el-form-item>
  182. </el-form>
  183. <div slot="footer" class="dialog-footer">
  184. <el-button type="primary" @click="submitForm">确 定</el-button>
  185. <el-button @click="cancel">取 消</el-button>
  186. </div>
  187. </el-dialog>
  188. </div>
  189. </template>
  190. <script>
  191. import { listType, getType, delType, addType, updateType, exportType, refreshCache } from "@/api/system/dict/type";
  192. export default {
  193. name: "Dict",
  194. data() {
  195. return {
  196. // 遮罩层
  197. loading: true,
  198. // 导出遮罩层
  199. exportLoading: false,
  200. // 选中数组
  201. ids: [],
  202. // 非单个禁用
  203. single: true,
  204. // 非多个禁用
  205. multiple: true,
  206. // 显示搜索条件
  207. showSearch: true,
  208. // 总条数
  209. total: 0,
  210. // 字典表格数据
  211. typeList: [],
  212. // 弹出层标题
  213. title: "",
  214. // 是否显示弹出层
  215. open: false,
  216. // 状态数据字典
  217. statusOptions: [],
  218. // 日期范围
  219. dateRange: [],
  220. // 查询参数
  221. queryParams: {
  222. pageNum: 1,
  223. pageSize: 10,
  224. reasonable: true,
  225. dictName: undefined,
  226. dictType: undefined,
  227. status: undefined
  228. },
  229. // 表单参数
  230. form: {},
  231. // 表单校验
  232. rules: {
  233. dictName: [
  234. { required: true, message: "字典名称不能为空", trigger: "blur" }
  235. ],
  236. dictType: [
  237. { required: true, message: "字典类型不能为空", trigger: "blur" }
  238. ]
  239. }
  240. };
  241. },
  242. created() {
  243. this.getList();
  244. this.getDicts("sys_normal_disable").then(response => {
  245. this.statusOptions = response.data;
  246. });
  247. },
  248. methods: {
  249. /** 查询字典类型列表 */
  250. getList() {
  251. this.loading = true;
  252. listType(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
  253. this.typeList = response.rows;
  254. this.total = response.total;
  255. this.loading = false;
  256. }
  257. );
  258. },
  259. // 取消按钮
  260. cancel() {
  261. this.open = false;
  262. this.reset();
  263. },
  264. // 表单重置
  265. reset() {
  266. this.form = {
  267. dictId: undefined,
  268. dictName: undefined,
  269. dictType: undefined,
  270. status: "0",
  271. remark: undefined
  272. };
  273. this.resetForm("form");
  274. },
  275. /** 搜索按钮操作 */
  276. handleQuery() {
  277. this.queryParams.pageNum = 1;
  278. this.getList();
  279. },
  280. /** 重置按钮操作 */
  281. resetQuery() {
  282. this.dateRange = [];
  283. this.resetForm("queryForm");
  284. this.handleQuery();
  285. },
  286. /** 新增按钮操作 */
  287. handleAdd() {
  288. this.reset();
  289. this.open = true;
  290. this.title = "添加字典类型";
  291. },
  292. // 多选框选中数据
  293. handleSelectionChange(selection) {
  294. this.ids = selection.map(item => item.dictId)
  295. this.single = selection.length!=1
  296. this.multiple = !selection.length
  297. },
  298. /** 修改按钮操作 */
  299. handleUpdate(row) {
  300. this.reset();
  301. const dictId = row.dictId || this.ids
  302. getType(dictId).then(response => {
  303. this.form = response.data;
  304. this.open = true;
  305. this.title = "修改字典类型";
  306. });
  307. },
  308. /** 提交按钮 */
  309. submitForm: function() {
  310. this.$refs["form"].validate(valid => {
  311. if (valid) {
  312. if (this.form.dictId != undefined) {
  313. updateType(this.form).then(response => {
  314. this.msgSuccess("修改成功");
  315. this.open = false;
  316. this.getList();
  317. });
  318. } else {
  319. addType(this.form).then(response => {
  320. this.msgSuccess("新增成功");
  321. this.open = false;
  322. this.getList();
  323. });
  324. }
  325. }
  326. });
  327. },
  328. /** 删除按钮操作 */
  329. handleDelete(row) {
  330. const dictIds = row.dictId || this.ids;
  331. this.$confirm('是否确认删除字典编号为"' + dictIds + '"的数据项?', "警告", {
  332. confirmButtonText: "确定",
  333. cancelButtonText: "取消",
  334. type: "warning"
  335. }).then(function() {
  336. return delType(dictIds);
  337. }).then(() => {
  338. this.getList();
  339. this.msgSuccess("删除成功");
  340. }).catch(() => {});
  341. },
  342. /** 导出按钮操作 */
  343. handleExport() {
  344. const queryParams = this.queryParams;
  345. this.$confirm('是否确认导出所有类型数据项?', "警告", {
  346. confirmButtonText: "确定",
  347. cancelButtonText: "取消",
  348. type: "warning"
  349. }).then(() => {
  350. this.exportLoading = true;
  351. return exportType(queryParams);
  352. }).then(response => {
  353. this.download(response.msg);
  354. this.exportLoading = false;
  355. }).catch(() => {});
  356. },
  357. /** 刷新缓存按钮操作 */
  358. handleRefreshCache() {
  359. refreshCache().then(() => {
  360. this.msgSuccess("刷新成功");
  361. });
  362. }
  363. }
  364. };
  365. </script>