index.vue 11 KB

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