user.js 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. import { defineStore } from "pinia";
  2. import { storage, storageSystem } from "@/utils/storage";
  3. import { getToken, setToken, removeToken } from "@/utils/auth";
  4. // 接口引用
  5. import { login, logout, getInfo, getMobileTenantConfig, getCodeImg } from "@/api/login";
  6. import { getUserProfile, appAdd, appDel, getPageAuthorization } from "@/api/system/user";
  7. import { phoneVerify } from "@/api/common/index.js";
  8. // 组件引用
  9. import config from "@/config";
  10. import tab from "@/plugins/modal.plugins.js";
  11. import modal from "@/plugins/modal.plugins.js";
  12. import common from "@/plugins/common.plugins.js";
  13. import setting from "@/plugins/setting.plugins.js";
  14. const useStores = defineStore("useStores", {
  15. state: () => ({
  16. token: getToken(),
  17. wxOpenId: storage.get("wxOpenId"),//微信openId
  18. userId: storage.get("userId"),//用户ID
  19. name: storage.get("name"),//用户名称
  20. nickName: storage.get("nickName"),//用户昵称
  21. phonenumber: storage.get("phonenumber"),//用户手机号
  22. avatar: storage.get("avatar"),//用户头像
  23. roles: storage.get("roles"),//用户权限
  24. permissions: storage.get("permissions"),
  25. loginTitle: storage.get("loginTitle"),
  26. loginBottomTitle: storage.get("loginBottomTitle"),
  27. loginBg: storage.get("loginBg"),
  28. loginLogo: storage.get("loginLogo"),
  29. tenantId: storage.get("tenantId"),
  30. user: {},
  31. userArr: {},
  32. postGroup: "", //岗位
  33. roleGroup: "", //角色
  34. codeTime: 0,//验证码倒计时
  35. codeTimeInterval: null,//验证码倒计时定时器
  36. }),
  37. actions: {
  38. // 登录
  39. Login(data) {
  40. return new Promise((resolve, reject) => {
  41. login(data)
  42. .then((res) => {
  43. this.SET_TOKEN(res.data.access_token)
  44. setToken(res.data.access_token);
  45. this.codeTime = 0
  46. resolve();
  47. })
  48. .catch((error) => {
  49. modal.closeLoading();
  50. modal.msg(error);
  51. reject(error);
  52. });
  53. });
  54. },
  55. //获取登录页数据
  56. GetMobileTenantConfig(params) {
  57. getMobileTenantConfig(params).then((res) => {
  58. if (res.data.length > 0) {
  59. let data = res.data[0];
  60. this.SET_STORAGE_OBJECT_KEYS({
  61. loginTitle: data.loginTitle,
  62. loginBottomTitle: data.loginFooter,
  63. loginBg: data.loginBackUrl,
  64. loginLogo: data.loginLogo,
  65. tenantId: data.tenantId,
  66. })
  67. }
  68. });
  69. },
  70. // 获取用户信息
  71. GetUser() {
  72. getUserProfile().then((response) => {
  73. this.user = JSON.parse(JSON.stringify(response.data.user));
  74. this.user.phonenumber = this.user.phonenumber ? this.user.phonenumber.substr(0, 3) + "******" + this.user.phonenumber.substr(9) : "";
  75. this.userArr = JSON.parse(JSON.stringify(response.data.user));
  76. this.postGroup = response.postGroup;
  77. this.roleGroup = response.roleGroup;
  78. });
  79. },
  80. // 获取用户信息
  81. GetInfo() {
  82. return new Promise((resolve, reject) => {
  83. getInfo()
  84. .then((res) => {
  85. var data = res.data;
  86. if (data.roles && data.roles.length > 0) {
  87. this.SET_ROLES(data.roles);
  88. this.SET_PERMISSIONS(data.permissions);
  89. } else {
  90. this.SET_ROLES(["ROLE_DEFAULT"]);
  91. }
  92. this.SET_STORAGE_OBJECT_KEYS({
  93. userId: data.user.userId,//用户ID
  94. name: data.user.userName,//用户名称
  95. nickName: data.user.nickName,//用户昵称
  96. phonenumber: data.user.phonenumber ? data.user.phonenumber.substr(0, 3) + "******" + data.user.phonenumber.substr(9) : "",//手机号码
  97. avatar: data.user.avatar,//头像
  98. })
  99. resolve(res);
  100. })
  101. .catch((error) => {
  102. modal.msgError(error);
  103. reject(error);
  104. });
  105. });
  106. },
  107. /**
  108. * @获取手机验证码
  109. * @param { 手机号 } phone
  110. * @param { 成功 } success
  111. * @param { 失败 } error
  112. */
  113. GetCodeImg({ phone, success, error }) {
  114. if (!phone) {
  115. modal.msg("请输入手机号");
  116. return;
  117. }
  118. if (!/^1(?:3\d|4[4-9]|5[0-35-9]|6[67]|7[013-8]|8\d|9\d)\d{8}$/.test(phone)) {
  119. modal.msg("请输入正确的手机号");
  120. return;
  121. }
  122. if (this.codeTime > 0) {
  123. modal.msg("不能重复获取");
  124. return;
  125. } else {
  126. modal.loading("加载中");
  127. getCodeImg({
  128. phone: phone,
  129. }).then((res) => {
  130. if (res.status === "SUCCESS") {
  131. success(res)
  132. modal.closeLoading();
  133. } else {
  134. error(res)
  135. }
  136. });
  137. this.codeTime = 60;
  138. this.SetInterval("codeTime");
  139. }
  140. },
  141. // 手机验证码倒计时定时器
  142. SetInterval(key) {
  143. if (this.codeTimeInterval) {
  144. clearInterval(this.codeTimeInterval);
  145. }
  146. this.codeTimeInterval = setInterval(() => {
  147. this[key]--;
  148. if (this[key] < 1) {
  149. clearInterval(this.codeTimeInterval);
  150. this[key] = 0;
  151. }
  152. }, 1000);
  153. },
  154. /**
  155. * @手机验证码校验
  156. * @param { 数据 } data
  157. * @param { 成功 } success
  158. * @param { 失败 } error
  159. */
  160. PhoneVerify({ data, success, error }) {
  161. if (!data.phone) {
  162. modal.msg("请输入手机号");
  163. return;
  164. }
  165. if (!/^1(?:3\d|4[4-9]|5[0-35-9]|6[67]|7[013-8]|8\d|9\d)\d{8}$/.test(data.phone)) {
  166. modal.msg("请输入正确的手机号");
  167. return;
  168. }
  169. if (!data.verify) {
  170. modal.msg("请输入验证码");
  171. return;
  172. }
  173. phoneVerify({
  174. phone: data.phone,
  175. verify: data.verify,
  176. }).then((res) => {
  177. if (res.status === "SUCCESS") {
  178. success(res)
  179. } else {
  180. error(res)
  181. }
  182. modal.closeLoading();
  183. });
  184. },
  185. /**
  186. * @注册
  187. * @param { 数据 } data
  188. * @param { 成功 } success
  189. * @param { 失败 } error
  190. */
  191. UserAdd({ data, success, error }) {
  192. if (!data.nickName) {
  193. modal.showToast("昵称不能为空");
  194. return;
  195. }
  196. if (!data.newPassword) {
  197. modal.showToast("新密码不能为空");
  198. return;
  199. }
  200. if (data.newPassword.length < 6 || data.newPassword.length > 20) {
  201. modal.showToast("密码长度在 6 到 20 个字符");
  202. return;
  203. }
  204. if (!data.confirmPassword) {
  205. modal.showToast("确认密码不能为空");
  206. return;
  207. }
  208. if (data.confirmPassword != data.newPassword) {
  209. modal.showToast("两次输入的密码不一致");
  210. return;
  211. }
  212. modal.loading("加载中");
  213. appAdd({
  214. tenantId: this.tenantId,
  215. nickName: data.nickName,
  216. phonenumber: data.phone,
  217. userName: data.phone,
  218. status: "0",
  219. password: data.newPassword,
  220. }).then((res) => {
  221. if (res.status === "SUCCESS") {
  222. success(res)
  223. modal.closeLoading();
  224. }
  225. })
  226. },
  227. /**
  228. * @用户注销
  229. * @param { 数据 } data
  230. * @param { 成功 } success
  231. * @param { 失败 } error
  232. */
  233. UserDel({ data, success, error }) {
  234. modal.loading("加载中");
  235. appDel(data).then((res) => {
  236. if (res.status === "SUCCESS") {
  237. success(res)
  238. modal.closeLoading();
  239. }
  240. })
  241. },
  242. // 退出系统
  243. LogOut() {
  244. return new Promise((resolve, reject) => {
  245. logout()
  246. .then(() => {
  247. setting.setBadge(0); // 设置角标值
  248. this.SET_TOKEN("");//清空token
  249. this.SET_ROLES([]);
  250. this.SET_PERMISSIONS([]);
  251. removeToken();
  252. storage.clean();
  253. resolve();
  254. })
  255. .catch((error) => {
  256. modal.msgError(error);
  257. reject(error);
  258. });
  259. });
  260. },
  261. /**
  262. * @获取微信OpenId
  263. * @param { 类型 } type
  264. */
  265. GetWxOpenId(type, options) {
  266. let url = "https://manager.usky.cn/mobile/#/"
  267. if (type == 1 && common.isWechatMp()) {
  268. if (localStorage.getItem("wxOpenId") && getToken()) {
  269. getPageAuthorization({ openId: localStorage.getItem("wxOpenId") }).then((res) => {
  270. if (res.data?.openid) {
  271. window.location.href = `${url}pages/index`;
  272. } else {
  273. this.LogOut().then(() => {
  274. localStorage.removeItem("wxOpenId")
  275. window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
  276. })
  277. }
  278. })
  279. } else {
  280. if (window.location.href.indexOf("openId=") == -1) {
  281. window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
  282. } else {
  283. localStorage.setItem("wxOpenId", common.getUrlList().openId)
  284. }
  285. }
  286. } else if (type == 2 && common.isWechatMp()) {
  287. if (localStorage.getItem("wxOpenId") && getToken()) {
  288. getPageAuthorization({ openId: localStorage.getItem("wxOpenId") }).then((res) => {
  289. if (!res.data?.openid) {
  290. this.LogOut().then(() => {
  291. localStorage.removeItem("wxOpenId")
  292. window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
  293. })
  294. }
  295. })
  296. } else {
  297. window.location.href = config.baseUrl + "/service-iot/weChat/getFirst1";
  298. }
  299. }
  300. },
  301. SET_TOKEN(token) {
  302. this.token = token;
  303. },
  304. SET_ROLES(roles) {
  305. this.roles = roles;
  306. storage.set("roles", roles);
  307. },
  308. SET_PERMISSIONS(permissions) {
  309. this.permissions = permissions;
  310. storage.set("permissions", permissions);
  311. },
  312. SET_STORAGE_OBJECT_KEYS(LIST) {
  313. Object.keys(LIST).forEach(function (key) {
  314. storage.set(key, LIST[key]);
  315. useStores()[key] = LIST[key];
  316. });
  317. },
  318. },
  319. });
  320. export default useStores;