index.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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="linkName">
  5. <el-input v-model="queryParams.linkName" placeholder="请输入链接名称" clearable @keyup.enter.native="handleQuery" />
  6. </el-form-item>
  7. <el-form-item>
  8. <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
  9. <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
  10. </el-form-item>
  11. </el-form>
  12. <el-row :gutter="10" class="mb8">
  13. <el-col :span="1.5">
  14. <el-button type="primary" icon="el-icon-plus" @click="handleAdd" v-hasPermi="['business:FRIENDLYLINKS:add']">新增</el-button>
  15. </el-col>
  16. <el-col :span="1.5">
  17. <el-button type="success" icon="el-icon-edit" :disabled="single" @click="handleUpdate" v-hasPermi="['business:FRIENDLYLINKS:edit']">修改</el-button>
  18. </el-col>
  19. <el-col :span="1.5">
  20. <el-button type="danger" icon="el-icon-delete" :disabled="multiple" @click="handleDelete" v-hasPermi="['business:FRIENDLYLINKS:remove']">删除</el-button>
  21. </el-col>
  22. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  23. </el-row>
  24. <el-table :data="FRIENDLYLINKSList" @selection-change="handleSelectionChange">
  25. <el-table-column type="selection" width="55" align="center" />
  26. <el-table-column label="链接名称" align="left" prop="linkName">
  27. <template slot-scope="scope">
  28. <div class="omit">{{ scope.row.linkName }}</div>
  29. </template>
  30. </el-table-column>
  31. <el-table-column label="链接" align="left" prop="linkUrl">
  32. <template slot-scope="scope">
  33. <div class="omit">{{ scope.row.linkUrl }}</div>
  34. </template>
  35. </el-table-column>
  36. <el-table-column label="创建人" align="center" prop="createBy" width="100" />
  37. <el-table-column label="创建时间" align="center" prop="createTime" width="180" />
  38. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  39. <template slot-scope="scope">
  40. <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['business:FRIENDLYLINKS:edit']">修改</el-button>
  41. <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['business:FRIENDLYLINKS:remove']">删除</el-button>
  42. </template>
  43. </el-table-column>
  44. </el-table>
  45. <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
  46. <!-- 添加或修改友情链接对话框 -->
  47. <el-dialog :title="title" :visible.sync="open" width="750px" :close-on-click-modal="false" append-to-body>
  48. <el-form ref="form" :model="form" :rules="rules" label-width="100px">
  49. <el-form-item label="部门编码" prop="deptId">
  50. <el-input v-model="form.deptId" placeholder="请输入部门编码" type="number" />
  51. </el-form-item>
  52. <el-form-item label="链接名称" prop="linkName">
  53. <el-input v-model="form.linkName" placeholder="请输入链接名称" />
  54. </el-form-item>
  55. <el-form-item label="链接" prop="linkUrl">
  56. <el-input v-model="form.linkUrl" placeholder="请输入链接" @blur="validateUrl(form.linkUrl)" />
  57. </el-form-item>
  58. </el-form>
  59. <div slot="footer" class="dialog-footer">
  60. <el-button type="primary" @click="submitForm">确 定</el-button>
  61. <el-button @click="cancel">取 消</el-button>
  62. </div>
  63. </el-dialog>
  64. </div>
  65. </template>
  66. <script>
  67. import { listFRIENDLYLINKS, getFRIENDLYLINKS, delFRIENDLYLINKS, addFRIENDLYLINKS, updateFRIENDLYLINKS } from '@/api/portal/FRIENDLYLINKS/FRIENDLYLINKS';
  68. export default {
  69. name: 'FRIENDLYLINKS',
  70. data() {
  71. return {
  72. // 根路径
  73. baseURL: process.env.VUE_APP_BASE_API,
  74. // 遮罩层
  75. loading: true,
  76. // 选中数组
  77. ids: [],
  78. // 非单个禁用
  79. single: true,
  80. // 非多个禁用
  81. multiple: true,
  82. // 显示搜索条件
  83. showSearch: true,
  84. // 总条数
  85. total: 0,
  86. // 友情链接表格数据
  87. FRIENDLYLINKSList: [],
  88. // 弹出层标题
  89. title: '',
  90. // 是否显示弹出层
  91. open: false,
  92. // 查询参数
  93. queryParams: {
  94. pageNum: 1,
  95. pageSize: 10,
  96. id: null,
  97. createTime: null,
  98. createBy: null,
  99. updateTime: null,
  100. updateBy: null,
  101. delFlag: null,
  102. deptId: null,
  103. linkName: null,
  104. linkUrl: null
  105. },
  106. // 表单参数
  107. form: {},
  108. // 表单校验
  109. rules: {
  110. id: [{ required: true, message: 'id主键不能为空', trigger: 'blur' }],
  111. delFlag: [{ required: true, message: '删除标记不能为空', trigger: 'blur' }],
  112. deptId: [{ required: true, message: '部门id不能为空', trigger: 'blur' }],
  113. linkName: [{ required: true, message: '友情链接名称不能为空', trigger: 'blur' }],
  114. linkUrl: [{ required: true, message: '友情链接url不能为空', trigger: 'blur' },
  115. {pattern: /^(?:http(s)?:\/\/)?[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~:/?#[\]@!\$&'\*\+,;=.]+$/, message: '请输入正确的url链接', trigger: 'blur' }
  116. ]
  117. }
  118. };
  119. },
  120. created() {
  121. this.getList();
  122. },
  123. methods: {
  124. /** 查询友情链接列表 */
  125. getList() {
  126. this.loading = true;
  127. listFRIENDLYLINKS(this.queryParams).then(response => {
  128. this.FRIENDLYLINKSList = response.rows;
  129. this.total = response.total;
  130. this.loading = false;
  131. });
  132. },
  133. // 取消按钮
  134. cancel() {
  135. this.open = false;
  136. this.reset();
  137. },
  138. // 表单重置
  139. reset() {
  140. this.form = {
  141. id: null,
  142. delFlag: null,
  143. deptId: null,
  144. linkName: null,
  145. linkUrl: null
  146. };
  147. this.resetForm('form');
  148. },
  149. /** 搜索按钮操作 */
  150. handleQuery() {
  151. this.queryParams.pageNum = 1;
  152. this.getList();
  153. },
  154. /** 重置按钮操作 */
  155. resetQuery() {
  156. this.resetForm('queryForm');
  157. this.handleQuery();
  158. },
  159. // 多选框选中数据
  160. handleSelectionChange(selection) {
  161. this.ids = selection.map(item => item.id);
  162. this.single = selection.length !== 1;
  163. this.multiple = !selection.length;
  164. },
  165. /** 新增按钮操作 */
  166. handleAdd() {
  167. this.reset();
  168. this.open = true;
  169. this.title = '添加友情链接';
  170. },
  171. /** 修改按钮操作 */
  172. handleUpdate(row) {
  173. this.reset();
  174. const id = row.id || this.ids;
  175. getFRIENDLYLINKS(id).then(response => {
  176. this.form = response.data;
  177. this.open = true;
  178. this.title = '修改友情链接';
  179. });
  180. },
  181. /** 检验url的正确性 */
  182. validateUrl(url) {
  183. if (url && !/^https?:\/\/.*/.test(url)) {
  184. this.$modal.msgError('请输入正确的 HTTP 或 HTTPS 链接');
  185. return false;
  186. }
  187. return true;
  188. },
  189. /** 提交按钮 */
  190. submitForm() {
  191. this.$refs['form'].validate(valid => {
  192. if (valid) {
  193. if (this.validateUrl(this.form.linkUrl)) {
  194. if (this.form.id != null) {
  195. updateFRIENDLYLINKS(this.form).then(response => {
  196. this.$modal.msgSuccess('修改成功');
  197. this.open = false;
  198. this.getList();
  199. });
  200. } else {
  201. addFRIENDLYLINKS(this.form).then(response => {
  202. this.$modal.msgSuccess('新增成功');
  203. this.open = false;
  204. this.getList();
  205. });
  206. }
  207. }
  208. }
  209. });
  210. },
  211. /** 删除按钮操作 */
  212. handleDelete(row) {
  213. const ids = row.id || this.ids;
  214. this.$modal
  215. .confirm('是否确认删除友情链接编号为"' + ids + '"的数据项?')
  216. .then(function () {
  217. return delFRIENDLYLINKS(ids);
  218. })
  219. .then(() => {
  220. this.getList();
  221. this.$modal.msgSuccess('删除成功');
  222. })
  223. .catch(() => {});
  224. },
  225. /** 导出按钮操作 */
  226. handleExport() {
  227. this.download(
  228. 'business/FRIENDLYLINKS/export',
  229. {
  230. ...this.queryParams
  231. },
  232. `FRIENDLYLINKS_${new Date().getTime()}.xlsx`
  233. );
  234. }
  235. }
  236. };
  237. </script>