questions.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. <template>
  2. <div class="app-container">
  3. <el-row :gutter="20">
  4. <!--用户数据-->
  5. <el-col :span="24" :xs="24">
  6. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
  7. <el-form-item label="用户名称" prop="name">
  8. <el-input
  9. v-model="queryParams.name"
  10. placeholder="请输入用户名称"
  11. clearable
  12. style="width: 240px"
  13. @keyup.enter.native="handleQuery"
  14. />
  15. </el-form-item>
  16. <el-form-item label="手机号码" prop="mobile">
  17. <el-input
  18. v-model="queryParams.mobile"
  19. placeholder="请输入手机号码"
  20. clearable
  21. style="width: 240px"
  22. @keyup.enter.native="handleQuery"
  23. />
  24. </el-form-item>
  25. <el-form-item label="状态" prop="status">
  26. <el-select
  27. v-model="queryParams.status"
  28. placeholder="用户状态"
  29. clearable
  30. style="width: 240px"
  31. >
  32. <el-option
  33. v-for="dict in dict.type.sys_normal_disable"
  34. :key="dict.value"
  35. :label="dict.label"
  36. :value="dict.value"
  37. />
  38. </el-select>
  39. </el-form-item>
  40. <el-form-item label="创建时间">
  41. <el-date-picker
  42. v-model="dateRange"
  43. style="width: 240px"
  44. value-format="yyyy-MM-dd"
  45. type="daterange"
  46. range-separator="-"
  47. start-placeholder="开始日期"
  48. end-placeholder="结束日期"
  49. ></el-date-picker>
  50. </el-form-item>
  51. <el-form-item>
  52. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  53. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  54. </el-form-item>
  55. </el-form>
  56. <el-row :gutter="10" class="mb8">
  57. <el-col :span="1.5">
  58. <el-button
  59. type="primary"
  60. plain
  61. icon="el-icon-plus"
  62. size="mini"
  63. @click="handleAdd"
  64. v-hasPermi="configPermi.add"
  65. >新增</el-button>
  66. </el-col>
  67. <el-col :span="1.5">
  68. <el-button
  69. type="danger"
  70. plain
  71. icon="el-icon-delete"
  72. size="mini"
  73. :disabled="multiple"
  74. @click="handleDelete"
  75. v-hasPermi="configPermi.delect"
  76. >删除</el-button>
  77. </el-col>
  78. <el-col :span="1.5">
  79. <el-button
  80. type="info"
  81. plain
  82. icon="el-icon-upload2"
  83. size="mini"
  84. @click="handleImport"
  85. v-hasPermi="configPermi.upload"
  86. >导入</el-button>
  87. </el-col>
  88. <el-col :span="1.5">
  89. <el-button
  90. type="warning"
  91. plain
  92. icon="el-icon-download"
  93. size="mini"
  94. @click="handleExport"
  95. v-hasPermi="configPermi.export"
  96. >导出</el-button>
  97. </el-col>
  98. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
  99. </el-row>
  100. <el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
  101. <el-table-column type="selection" width="50" align="center" />
  102. <el-table-column label="用户编号" align="center" key="id" prop="id" v-if="columns[0].visible" />
  103. <el-table-column label="用户名称" align="center" key="name" prop="name" v-if="columns[1].visible" :show-overflow-tooltip="true" />
  104. <el-table-column label="用户昵称" align="center" key="nickName" prop="nickName" v-if="columns[2].visible" :show-overflow-tooltip="true" />
  105. <el-table-column label="部门" align="center" key="deptName" prop="dept.deptName" v-if="columns[3].visible" :show-overflow-tooltip="true" />
  106. <el-table-column label="手机号码" align="center" key="mobile" prop="mobile" v-if="columns[4].visible" width="120" />
  107. <el-table-column label="状态" align="center" key="status" v-if="columns[5].visible">
  108. <template slot-scope="scope">
  109. <el-switch
  110. v-model="scope.row.status"
  111. active-value="0"
  112. inactive-value="1"
  113. @change="handleStatusChange(scope.row)"
  114. ></el-switch>
  115. </template>
  116. </el-table-column>
  117. <el-table-column label="创建时间" align="center" prop="createTime" v-if="columns[6].visible" width="160">
  118. <template slot-scope="scope">
  119. <span>{{ parseTime(scope.row.createTime) }}</span>
  120. </template>
  121. </el-table-column>
  122. <el-table-column
  123. label="操作"
  124. align="center"
  125. width="160"
  126. class-name="small-padding fixed-width"
  127. >
  128. <template slot-scope="scope" v-if="scope.row.id !== 1">
  129. <el-button
  130. size="mini"
  131. type="text"
  132. icon="el-icon-document"
  133. @click="handleDetails(scope.row)"
  134. v-hasPermi="configPermi.details"
  135. >详情</el-button>
  136. <el-button
  137. size="mini"
  138. type="text"
  139. icon="el-icon-edit"
  140. @click="handleUpdate(scope.row)"
  141. v-hasPermi="configPermi.edit"
  142. >修改</el-button>
  143. <el-button
  144. size="mini"
  145. type="text"
  146. icon="el-icon-delete"
  147. @click="handleDelete(scope.row)"
  148. v-hasPermi="configPermi.delect"
  149. >删除</el-button>
  150. </template>
  151. </el-table-column>
  152. </el-table>
  153. <pagination
  154. v-show="total>0"
  155. :total="total"
  156. :page.sync="queryParams.pageNum"
  157. :limit.sync="queryParams.pageSize"
  158. @pagination="getList"
  159. />
  160. </el-col>
  161. </el-row>
  162. <!-- 导入 -->
  163. <uploadBox ref="upload" @refresh="handleQuery" />
  164. <!-- 新增或修改 -->
  165. <addAndEdit ref="addAndEdit" @refresh="getList" />
  166. <!-- 详情 -->
  167. <detailsBox ref="detailsBox" @refresh="getList" />
  168. </div>
  169. </template>
  170. <script>
  171. import {
  172. listTableApi,
  173. delTableApi,
  174. } from "@/api/CURD";
  175. import addAndEdit from "./formBox/navigationManagementForm.vue"
  176. import detailsBox from "./detailsBox/navigationManagementDetails.vue"
  177. export default {
  178. name: "User",
  179. dicts: ['sys_normal_disable', 'sys_user_sex'],
  180. components: {addAndEdit,detailsBox},
  181. data() {
  182. return {
  183. title: "导览管理",// 通用标题
  184. configPermi: {
  185. add: ['system:user:edit'], // 新增权限
  186. details: ['system:user:details'], // 详情权限
  187. delect: ['system:user:remove'], // 删除权限
  188. edit: ['system:user:edit'], // 编辑权限
  189. upload: ['system:user:upload'],// 导入权限
  190. export: ['system:user:export'],// 导出权限
  191. },
  192. configUrl: {
  193. list: '/merchant/merchantSysuser/pageList', // 列表地址
  194. delect: '/merchant/merchantSysuser/', // 删除地址
  195. upload: 'system/user/importTemplate',// 导入地址
  196. download:'system/user/importTemplate', // 下载模板地址
  197. export: '/system/user/importData',// 导出地址
  198. },
  199. // 遮罩层
  200. loading: true,
  201. // 选中数组
  202. ids: [],
  203. // 非单个禁用
  204. single: true,
  205. // 非多个禁用
  206. multiple: true,
  207. // 显示搜索条件
  208. showSearch: true,
  209. // 总条数
  210. total: 0,
  211. // 用户表格数据
  212. tableList: null,
  213. // 查询参数
  214. queryParams: {
  215. pageNum: 1,
  216. pageSize: 10,
  217. },
  218. dateRange: [],
  219. // 控制列表是否显示
  220. columns: [
  221. { key: 0, label: `用户编号`, visible: true },
  222. { key: 1, label: `用户名称`, visible: true },
  223. { key: 2, label: `用户昵称`, visible: true },
  224. { key: 3, label: `部门`, visible: true },
  225. { key: 4, label: `手机号码`, visible: true },
  226. { key: 5, label: `状态`, visible: true },
  227. { key: 6, label: `创建时间`, visible: true }
  228. ],
  229. };
  230. },
  231. created() {
  232. this.getList();
  233. },
  234. methods: {
  235. /** 查询用户列表 */
  236. getList() {
  237. this.loading = true;
  238. listTableApi(
  239. this.configUrl.list,
  240. this.addDateRange(
  241. this.queryParams,
  242. this.dateRange)).then(response => {
  243. this.tableList = response.data.rows;
  244. this.total = response.data.total;
  245. this.loading = false;
  246. }
  247. ).catch (error=>{
  248. console.error('获取列表失败!!!!',error)
  249. this.tableList = [];
  250. this.total = 0;
  251. this.loading = false
  252. })
  253. },
  254. /** 搜索按钮操作 */
  255. handleQuery() {
  256. this.queryParams.pageNum = 1;
  257. this.getList();
  258. },
  259. /** 重置按钮操作 */
  260. resetQuery() {
  261. this.dateRange = [];
  262. this.handleQuery();
  263. },
  264. // 多选框选中数据
  265. handleSelectionChange(selection) {
  266. this.ids = selection.map(item => item.id);
  267. this.single = selection.length != 1;
  268. this.multiple = !selection.length;
  269. },
  270. /** 新增按钮操作 */
  271. handleAdd() {
  272. if(this.$refs.addAndEdit) {
  273. this.$refs.addAndEdit.initData(this.title + '新增', "EDIT",{})
  274. }
  275. },
  276. /** 修改按钮操作 */
  277. handleUpdate(row) {
  278. if(this.$refs.addAndEdit) {
  279. this.$refs.addAndEdit.initData(this.title + '编辑', "EDITInit",{...row})
  280. }
  281. },
  282. handleDetails(row){
  283. if(this.$refs.detailsBox) {
  284. this.$refs.detailsBox.initData(this.title + '详情',"DEATILSInit", row)
  285. }
  286. },
  287. /** 删除按钮操作 */
  288. handleDelete(row) {
  289. const ids = row.id || this.ids;
  290. this.$modal.confirm('是否确认删除用户编号为"' + ids + '"的数据项?').then( ()=> {
  291. return delTableApi(this.configUrl.delect,ids);
  292. }).then(() => {
  293. this.getList();
  294. this.$modal.msgSuccess("删除成功");
  295. }).catch(() => {});
  296. },
  297. /** 导出按钮操作 */
  298. handleExport() {
  299. this.download(this.configUrl.export, {
  300. ...this.queryParams
  301. }, `${this.title }_${new Date().getTime()}.xlsx`)
  302. },
  303. /** 导入按钮操作 */
  304. handleImport() {
  305. if(this.$refs.upload) {
  306. this.$refs.upload.initData({
  307. width: '400px',
  308. // 弹出层标题(用户导入)
  309. title: this.title + "导入",
  310. // 下载模板地址
  311. importTemplate: this.configUrl.download,
  312. // 上传的地址
  313. url: this.configUrl.upload
  314. })
  315. }
  316. },
  317. }
  318. };
  319. </script>