index.vue 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
  4. <el-form-item label="单位名称" prop="title">
  5. <el-input v-model="queryParams.depName" placeholder="请输入单位名称"></el-input>
  6. </el-form-item>
  7. <el-form-item label="联系电话" prop="title">
  8. <el-input v-model="queryParams.telphone" placeholder="请输入联系电话"></el-input>
  9. </el-form-item>
  10. <el-form-item label="邮箱" prop="email">
  11. <el-input v-model="queryParams.email" placeholder="请输入邮箱"></el-input>
  12. </el-form-item>
  13. <el-form-item>
  14. <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
  15. <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
  16. </el-form-item>
  17. </el-form>
  18. <el-row :gutter="10" class="mb8">
  19. <!-- <el-col :span="1.5">
  20. <el-button type="primary" icon="el-icon-plus" @click="handleAdd" v-hasPermi="['business:CONTACTUS:add']">新增</el-button>
  21. </el-col> -->
  22. <el-col :span="1.5">
  23. <el-button type="success" icon="el-icon-edit" :disabled="single" @click="handleUpdate" v-hasPermi="['business:CONTACTUS:edit']">修改</el-button>
  24. </el-col>
  25. <!-- <el-col :span="1.5">
  26. <el-button type="danger" icon="el-icon-delete" :disabled="multiple" @click="handleDelete" v-hasPermi="['business:CONTACTUS:remove']">删除</el-button>
  27. </el-col> -->
  28. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  29. </el-row>
  30. <el-table :data="CONTACTUSList" @selection-change="handleSelectionChange">
  31. <el-table-column type="selection" width="55" align="center" />
  32. <el-table-column label="单位名称" align="center" prop="depName">
  33. <template slot-scope="scope">
  34. {{ scope.row.depName }}
  35. </template>
  36. </el-table-column>
  37. <el-table-column label="联系电话" align="center" prop="telphone">
  38. <template slot-scope="scope">
  39. {{ scope.row.telphone }}
  40. </template>
  41. </el-table-column>
  42. <el-table-column label="位置" align="center" prop="location">
  43. <template slot-scope="scope">
  44. {{ scope.row.location }}
  45. </template>
  46. </el-table-column>
  47. <el-table-column label="邮箱" align="center" prop="email">
  48. <template slot-scope="scope">
  49. {{ scope.row.email }}
  50. </template>
  51. </el-table-column>
  52. <el-table-column label="创建时间" align="center" prop="createTime">
  53. <template slot-scope="scope">
  54. {{ scope.row.createTime }}
  55. </template>
  56. </el-table-column>
  57. <el-table-column label="创建人" align="center" prop="createBy">
  58. <template slot-scope="scope">
  59. {{ scope.row.createBy }}
  60. </template>
  61. </el-table-column>
  62. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  63. <template slot-scope="scope">
  64. <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['business:CONTACTUS:edit']">修改</el-button>
  65. <!-- <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['business:CONTACTUS:remove']">删除</el-button> -->
  66. </template>
  67. </el-table-column>
  68. </el-table>
  69. <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
  70. <!-- 添加或修改联系我们对话框 -->
  71. <el-dialog :title="title" :visible.sync="open" width="550px" :close-on-click-modal="false" append-to-body>
  72. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  73. <el-form-item label="单位名称" prop="title">
  74. <el-input v-model="form.depName" placeholder="请输入单位名称"></el-input>
  75. </el-form-item>
  76. <el-form-item label="联系电话" prop="telphone">
  77. <el-input v-model="form.telphone" placeholder="请输入联系电话"></el-input>
  78. </el-form-item>
  79. <el-form-item label="邮箱" prop="email">
  80. <el-input v-model="form.email" placeholder="请输入邮箱"></el-input>
  81. </el-form-item>
  82. <el-form-item label="位置" prop="location">
  83. <el-input v-model="form.location" placeholder="请输入位置" rows="5" type="textarea"></el-input>
  84. </el-form-item>
  85. </el-form>
  86. <div slot="footer" class="dialog-footer">
  87. <el-button type="primary" @click="submitForm">确 定</el-button>
  88. <el-button @click="cancel">取 消</el-button>
  89. </div>
  90. </el-dialog>
  91. </div>
  92. </template>
  93. <script>
  94. import { listCONTACTUS, getCONTACTUS, delCONTACTUS, addCONTACTUS, updateCONTACTUS } from '@/api/portal/CONTACTUS/CONTACTUS.js';
  95. import { validEmail } from "@/utils/validate.js"
  96. export default {
  97. name: 'CONTACTUS',
  98. data() {
  99. return {
  100. validEmail,
  101. // 根路径
  102. baseURL: process.env.VUE_APP_BASE_API,
  103. // 遮罩层
  104. loading: true,
  105. // 选中数组
  106. ids: [],
  107. // 非单个禁用
  108. single: true,
  109. // 非多个禁用
  110. multiple: true,
  111. // 显示搜索条件
  112. showSearch: true,
  113. // 总条数
  114. total: 0,
  115. // 联系我们表格数据
  116. CONTACTUSList: [],
  117. // 弹出层标题
  118. title: '',
  119. // 是否显示弹出层
  120. open: false,
  121. // 查询参数
  122. queryParams: {
  123. pageNum: 1,
  124. pageSize: 10,
  125. id: null,
  126. createTime: null,
  127. createBy: null,
  128. updateTime: null,
  129. updateBy: null,
  130. delFlag: null,
  131. deptId: null,
  132. depName: null,
  133. telphone: null,
  134. location: null,
  135. email: null
  136. },
  137. // 表单参数
  138. form: {},
  139. // 表单校验
  140. rules: {
  141. id: [{ required: true, message: '主键不能为空', trigger: 'blur' }],
  142. delFlag: [{ required: true, message: '删除标志不能为空', trigger: 'blur' }],
  143. deptId: [{ required: true, message: '部门ID不能为空', trigger: 'blur' }],
  144. depName: [{ required: true, message: '单位名称不能为空', trigger: 'blur' }],
  145. telphone: [{ required: true, message: '联系电话不能为空', trigger: 'blur' },
  146. { validator: this.validateMobile, trigger: 'blur' }],
  147. location: [{ required: true, message: '位置不能为空', trigger: 'blur' }],
  148. email: [{ required: true, message: '邮箱不能为空', trigger: 'blur' },
  149. { validator: this.validEmailFun, trigger: 'blur' }
  150. ]
  151. }
  152. };
  153. },
  154. created() {
  155. this.getList();
  156. },
  157. methods: {
  158. validEmailFun(rule, value, callback) {
  159. if(this.validEmail(value)) {
  160. callback()
  161. }else {
  162. callback(new Error('邮件格式不正确!'));
  163. }
  164. },
  165. validateMobile(rule, value, callback) {
  166. let reg1 = /^1[3|4|5|7|8][0-9]\d{8}$/;//11位手机号
  167. let reg2 = /^(\d{3,4}-)?\d{6,8}$/;//座机和传真格式是一样的:区号-号码
  168. if(!value && value!=='0'){
  169. callback()
  170. }else{
  171. if (reg1.test(value) || reg2.test(value)) {
  172. callback()
  173. } else {
  174. callback(new Error('请输入正确手机号!'));
  175. }
  176. }
  177. },
  178. /** 查询联系我们列表 */
  179. getList() {
  180. this.loading = true;
  181. listCONTACTUS(this.queryParams).then(response => {
  182. this.CONTACTUSList = response.rows;
  183. this.total = response.total;
  184. this.loading = false;
  185. });
  186. },
  187. // 取消按钮
  188. cancel() {
  189. this.open = false;
  190. this.reset();
  191. },
  192. // 表单重置
  193. reset() {
  194. this.form = {
  195. id: null,
  196. delFlag: null,
  197. deptId: null,
  198. depName: null,
  199. telphone: null,
  200. location: null,
  201. email: null
  202. };
  203. this.resetForm('form');
  204. },
  205. /** 搜索按钮操作 */
  206. handleQuery() {
  207. this.queryParams.pageNum = 1;
  208. this.getList();
  209. },
  210. /** 重置按钮操作 */
  211. resetQuery() {
  212. this.resetForm('queryForm');
  213. this.handleQuery();
  214. },
  215. // 多选框选中数据
  216. handleSelectionChange(selection) {
  217. this.ids = selection.map(item => item.id);
  218. this.single = selection.length !== 1;
  219. this.multiple = !selection.length;
  220. },
  221. /** 新增按钮操作 */
  222. handleAdd() {
  223. this.reset();
  224. this.open = true;
  225. this.title = '添加联系我们';
  226. },
  227. /** 修改按钮操作 */
  228. handleUpdate(row) {
  229. this.reset();
  230. const id = row.id || this.ids;
  231. getCONTACTUS(id).then(response => {
  232. this.form = response.data;
  233. this.open = true;
  234. this.title = '修改联系我们';
  235. });
  236. },
  237. /** 提交按钮 */
  238. submitForm() {
  239. this.$refs['form'].validate(valid => {
  240. if (valid) {
  241. if (this.form.id != null) {
  242. updateCONTACTUS(this.form).then(response => {
  243. this.$modal.msgSuccess('修改成功');
  244. this.open = false;
  245. this.getList();
  246. });
  247. } else {
  248. addCONTACTUS(this.form).then(response => {
  249. this.$modal.msgSuccess('新增成功');
  250. this.open = false;
  251. this.getList();
  252. });
  253. }
  254. }
  255. });
  256. },
  257. /** 删除按钮操作 */
  258. handleDelete(row) {
  259. const ids = row.id || this.ids;
  260. this.$modal
  261. .confirm('确定删除吗?')
  262. .then(function () {
  263. return delCONTACTUS(ids);
  264. })
  265. .then(() => {
  266. this.getList();
  267. this.$modal.msgSuccess('删除成功');
  268. })
  269. .catch(() => {});
  270. },
  271. /** 导出按钮操作 */
  272. handleExport() {
  273. this.download(
  274. 'business/CONTACTUS/export',
  275. {
  276. ...this.queryParams
  277. },
  278. `CONTACTUS_${new Date().getTime()}.xlsx`
  279. );
  280. }
  281. }
  282. };
  283. </script>