buildUser.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. <!--
  2. revit扫楼人员管理
  3. -->
  4. <template>
  5. <div id="build_user">
  6. <div class="search_header">
  7. <build-input :placeholder="placeholder" @search="search"></build-input>
  8. <div class="inline_block" @click="tableAddUser">
  9. <i class="iconfont icon-addpeople_fill"></i>
  10. <i>添加扫楼人员</i>
  11. </div>
  12. <div class="inline_block" @click="undo">
  13. <i class="iconfont icon-undo"></i>
  14. <i>撤回</i>
  15. </div>
  16. <div class="inline_block" @click="refresh">
  17. <i class="iconfont icon-shuaxin"></i>
  18. <i>刷新</i>
  19. </div>
  20. </div>
  21. <div class="user_view" v-loading="loading">
  22. <div id="user"></div>
  23. <div class="no_data" v-show="noData">暂无数据</div>
  24. </div>
  25. <div class="user_page">
  26. <el-pagination
  27. @size-change="handleSizeChange"
  28. @current-change="handleCurrentChange"
  29. :current-page.sync="currentPage"
  30. :page-sizes="pageSizeArr"
  31. :page-size="pageSize"
  32. layout="total, sizes, prev, pager, next, jumper"
  33. :total="pageCount"
  34. ></el-pagination>
  35. </div>
  36. <el-dialog title="提示" :visible.sync="dialogVisible" :before-close="handleClose">
  37. <span>{{msg}}</span>
  38. <span slot="footer" class="dialog-footer">
  39. <el-button @click="dialogVisible = false">取 消</el-button>
  40. <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
  41. </span>
  42. </el-dialog>
  43. <el-dialog title="提示" :visible.sync="deldialog">
  44. <span>你确定删除用户{{delString}}吗?</span>
  45. <span slot="footer" class="dialog-footer">
  46. <el-button @click="refresh">取 消</el-button>
  47. <el-button type="primary" @click="delTrue">确 定</el-button>
  48. </span>
  49. </el-dialog>
  50. </div>
  51. </template>
  52. <script>
  53. import buildInput from "@/components/input";
  54. import buildTime from "@/components/selectTime";
  55. import {
  56. getUser, //获取扫楼用户
  57. loadUser, //修改
  58. delUser, //删除
  59. addUser //添加
  60. } from "../api/request";
  61. export default {
  62. components: {
  63. "build-input": buildInput,
  64. "build-time": buildTime
  65. },
  66. data() {
  67. return {
  68. placeholder: "请输入姓名、联系电话、登录名、备注等关键字搜索",
  69. checkTimeArr: [], //选择到的时间周期
  70. myHot: "", //表格实例
  71. row: "",
  72. col: "",
  73. dialogVisible: false,
  74. deldialog: false,
  75. msg: "",
  76. pageNum: 1,
  77. pageSize: 10,
  78. pageSizeArr: [5, 10, 20, 30, 50],
  79. pageCount: 0,
  80. currentPage: 1,
  81. filter: "",
  82. userData: [],
  83. delString: "",
  84. delArr: [],
  85. noData: false,
  86. ProjId: this.$route.query.projId, //url获取项目id this.$route.query.projId /Pj1101080047/Pj1101080001
  87. UserId: this.$route.query.userId, //url获取用户id this.$route.query.userId/25518428919955458
  88. loading: false, //loading动画
  89. deepArr: [] //删除时使用的数组
  90. };
  91. },
  92. mounted() {
  93. this.getUserTable();
  94. // this.populateHot()
  95. },
  96. methods: {
  97. //获取用户表格
  98. getUserTable() {
  99. let param = {
  100. filter: this.filter,
  101. pageNum: this.pageNum,
  102. pageSize: this.pageSize,
  103. ProjId: this.ProjId,
  104. UserId: this.UserId
  105. };
  106. getUser(param).then(result => {
  107. this.userData = result.data.UserList;
  108. this.pageCount = result.data.Count;
  109. this.loading = false;
  110. //存储一个数组防止删除操作找寻不到删除的该数组
  111. this.deepArr = this.deepCopy(result.data.UserList);
  112. if (this.userData.length) {
  113. this.noData = false;
  114. if (this.myHot) {
  115. this.myHot.loadData(result.data.UserList);
  116. } else {
  117. this.populateHot();
  118. }
  119. } else {
  120. this.noData = true;
  121. if (this.myHot) {
  122. this.myHot.destroy();
  123. this.myHot = "";
  124. }
  125. }
  126. });
  127. },
  128. //删除用户
  129. delUser(UserList) {
  130. let param = {
  131. ProjId: this.ProjId,
  132. UserId: this.UserId,
  133. UserList: UserList
  134. };
  135. delUser(param).then(result => {
  136. if (result.data.Result == "success") {
  137. this.getUserTable();
  138. return;
  139. } else {
  140. this.msg = "请求出错";
  141. this.dialogVisible = true;
  142. }
  143. });
  144. },
  145. //更新用户
  146. loadUser(UserList) {
  147. let param = {
  148. ProjId: this.ProjId,
  149. UserId: this.UserId,
  150. UserList: UserList
  151. };
  152. loadUser(param).then(result => {
  153. if (result.data.Result == "success") {
  154. return;
  155. } else {
  156. this.msg = "请求出错";
  157. this.dialogVisible = true;
  158. }
  159. });
  160. },
  161. //请求接口添加用户
  162. addUser(User) {
  163. let param = {
  164. ProjId: this.ProjId,
  165. UserId: this.UserId,
  166. User: User
  167. };
  168. addUser(param).then(result => {
  169. if (result.data.Result == "success") {
  170. this.userData[0].UserId = result.data.UserId;
  171. this.userData[0].ProjId = this.ProjId;
  172. return;
  173. } else {
  174. this.msg = "请确定手机号码未重复";
  175. this.dialogVisible = true;
  176. }
  177. });
  178. },
  179. //表格添加用户
  180. tableAddUser() {
  181. let param = {
  182. Note: "",
  183. Phone: "",
  184. UserName: ""
  185. };
  186. //判断是否有第一个用户
  187. if (this.userData[0]) {
  188. //有的话判断第一个用户是否是空值,空值禁止再次添加
  189. if (this.userData[0].Phone && this.userData[0].UserName) {
  190. this.userData.unshift(param);
  191. this.deepArr.unshift(param);
  192. this.pageCount += 1;
  193. this.myHot.destroy();
  194. this.myHot = "";
  195. this.populateHot();
  196. this.noData = false;
  197. } else {
  198. return;
  199. }
  200. } else {
  201. //没有第一个用户再次生成表格
  202. this.userData.unshift(param);
  203. this.deepArr.unshift(param);
  204. this.pageCount += 1;
  205. this.myHot = "";
  206. this.populateHot();
  207. this.noData = false;
  208. }
  209. },
  210. //撤回
  211. undo() {
  212. this.myHot.undo();
  213. },
  214. //搜索
  215. search(val) {
  216. this.loading = true;
  217. if (this.myHot) {
  218. this.myHot.destroy();
  219. this.myHot = "";
  220. }
  221. this.filter = val;
  222. this.pageNum = this.currentPage = 1;
  223. this.getUserTable();
  224. },
  225. //一页的个数
  226. handleSizeChange(val) {
  227. this.loading = true;
  228. this.pageSize = val;
  229. this.myHot.destroy();
  230. this.myHot = "";
  231. this.getUserTable();
  232. },
  233. //当前页
  234. handleCurrentChange(val) {
  235. this.loading = true;
  236. this.pageNum = val;
  237. this.myHot.destroy();
  238. this.myHot = "";
  239. this.getUserTable();
  240. },
  241. //刷新
  242. refresh() {
  243. this.loading = true;
  244. this.myHot.destroy();
  245. this.myHot = "";
  246. this.deldialog = false;
  247. this.getUserTable();
  248. },
  249. //弹窗关闭
  250. handleClose(done) { },
  251. //表格单元格单击时触发
  252. callBack(event, coords, td) {
  253. var row = coords.row;
  254. var col = coords.col;
  255. if (row != 0 && col != 0) {
  256. var ss = this.myHot.getCell(row, col, true); //取出点击Cell
  257. (this.row = row), (this.col = col);
  258. }
  259. },
  260. //单元格修改内容触发
  261. tdClick(changeData, source) {
  262. // changeData 是一个数组,第一个元素(数组),记录所有修改信息
  263. if (!changeData) return;
  264. let rep = /^(13[0-9]|14[579]|15[0-3,5-9]|16[6]|17[0135678]|18[0-9]|19[89])\d{8}$/;
  265. let indexArr = changeData.map(item => {
  266. return item[0];
  267. });
  268. // let dataArr
  269. let param = indexArr.map((item, index) => {
  270. if (
  271. !rep.test(this.userData[item].Phone) &&
  272. this.userData[item].ProjId
  273. ) {
  274. this.msg = "手机号码格式错误";
  275. this.dialogVisible = true;
  276. return this.userData[item];
  277. } else if (this.userData[item].UserName.length < 0) {
  278. this.msg = "姓名不可少于一个字符";
  279. this.dialogVisible = true;
  280. return this.userData[item];
  281. } else {
  282. return this.userData[item];
  283. }
  284. });
  285. //处理好数据,请求接口
  286. if (param[0].ProjId) {
  287. this.loadUser(param);
  288. } else {
  289. //当数据没有projId时走添加接口
  290. if (param[0].Phone != "" && param[0].UserName.length != "") {
  291. if (rep.test(param[0].Phone)) {
  292. this.addUser(param[0]);
  293. } else {
  294. this.msg = "手机号码格式错误";
  295. this.dialogVisible = true;
  296. return;
  297. }
  298. } else {
  299. return;
  300. }
  301. }
  302. },
  303. delTrue() {
  304. this.delUser(this.delArr);
  305. this.deldialog = false;
  306. },
  307. //处理右键删除
  308. removeUser(index, amout) {
  309. this.deldialog = true;
  310. this.delString = "";
  311. this.delArr = [];
  312. let i = index + amout;
  313. for (; index < i; index++) {
  314. if (index + 1 == i) {
  315. this.delString += this.deepArr[index].UserName;
  316. } else {
  317. this.delString += this.deepArr[index].UserName + "、";
  318. }
  319. this.delArr.push(this.deepArr[index].UserId);
  320. }
  321. },
  322. //表格渲染生成
  323. populateHot() {
  324. var container1 = document.getElementById("user");
  325. let maxRow = "";
  326. //当当前页数*当前页个数小于总个数时,当前表格行数为当前页数
  327. if (this.pageCount >= this.pageSize * this.currentPage) {
  328. maxRow = this.pageSize;
  329. } else {
  330. maxRow = this.pageCount % this.pageSize;
  331. }
  332. var options = {
  333. data: this.userData,
  334. colHeaders: ["姓名", "联系电话/登录名", "备注"],
  335. manualColumnResize: true, //允许改变表头宽度
  336. manualColumnMove: true, //允许拉动表头
  337. stretchH: "last", //最后一行填充
  338. maxRows: maxRow,
  339. contextMenu: {
  340. items: {
  341. remove_row: {
  342. name: "删除用户"
  343. }
  344. }
  345. },
  346. columns: [
  347. {
  348. data: "UserName"
  349. },
  350. {
  351. data: "Phone",
  352. type: "numeric"
  353. },
  354. {
  355. data: "Note"
  356. }
  357. ],
  358. // beforeRemoveRow: this.removeUser,
  359. afterRemoveRow: this.removeUser
  360. };
  361. this.myHot = new Handsontable(container1, options);
  362. //表格数据发生改变
  363. this.myHot.addHook("afterChange", this.tdClick);
  364. // this.myHot.afterRemoveRow()
  365. //删除前
  366. // this.myHot.removeHook('beforeInit', this.removeUser);
  367. //添加单击事件
  368. // Handsontable.hooks.add('afterOnCellMouseDown',this.callBack,this.myHot)
  369. document.getElementById("hot-display-license-info").style.display =
  370. "none";
  371. },
  372. //工具函数浅复制深拷贝,防止共用存储空间
  373. deepCopy(obj) {
  374. var out = [],
  375. i = 0,
  376. len = obj.length;
  377. for (; i < len; i++) {
  378. if (obj[i] instanceof Array) {
  379. out[i] = deepcopy(obj[i]);
  380. } else out[i] = obj[i];
  381. }
  382. return out;
  383. }
  384. }
  385. };
  386. </script>
  387. <style lang="less" scoped>
  388. #app {
  389. min-width: 1098px;
  390. min-height: 767px;
  391. position: relative;
  392. overflow-x: auto;
  393. }
  394. #build_user {
  395. width: 100%;
  396. // padding-top: .4rem;
  397. // padding-left: 1rem;
  398. // padding-right: 1rem;
  399. box-sizing: border-box;
  400. .search_header {
  401. position: fixed;
  402. min-width: 1098px;
  403. top: 0;
  404. left: 0;
  405. right: 0;
  406. height: 3rem;
  407. padding-top: 0.4rem;
  408. box-sizing: border-box;
  409. padding-left: 1rem;
  410. padding-right: 1rem;
  411. background-color: #eee;
  412. width: 100%;
  413. .derived_btn {
  414. width: 8rem;
  415. border: 1px solid #777;
  416. text-align: center;
  417. font-size: 0.6rem;
  418. height: 1.6rem;
  419. line-height: 1.6rem;
  420. cursor: pointer;
  421. background-color: #ccc;
  422. border-radius: 0.1rem;
  423. float: right;
  424. margin-right: 3rem;
  425. margin-top: 0.2rem;
  426. .icon-excelwenjian {
  427. font-size: 1rem;
  428. margin-bottom: -0.1rem;
  429. }
  430. }
  431. .inline_block {
  432. float: right;
  433. margin-left: 3rem;
  434. padding: 0 0.8rem;
  435. font-size: 0.8rem;
  436. height: 2rem;
  437. line-height: 2rem;
  438. color: #000;
  439. text-align: center;
  440. border-radius: 0.8rem;
  441. cursor: pointer;
  442. .iconfont {
  443. font-size: 1rem;
  444. }
  445. }
  446. }
  447. .user_view {
  448. position: absolute;
  449. width: 100%;
  450. top: 3.5rem;
  451. left: 0;
  452. right: 0;
  453. bottom: 0;
  454. overflow-y: auto;
  455. // #user{
  456. // table{
  457. // tr{
  458. // td:first-child{
  459. // text-align: center;
  460. // }
  461. // }
  462. // }
  463. // }
  464. }
  465. .user_page {
  466. position: fixed;
  467. height: 3rem;
  468. left: 0;
  469. bottom: 0;
  470. right: 0;
  471. width: 100%;
  472. }
  473. }
  474. </style>