index.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <template>
  2. <div class="app-wrapper">
  3. <sidebar id="sidebar-containers" class="sidebar-container" />
  4. <div class="main-container">
  5. <navbar />
  6. <app-main id="main-containers" />
  7. </div>
  8. <!--修改密码弹框-->
  9. <Dialog width="496px" custom-class="dataStoreInfoDialog" :flag="pwdflag">
  10. <div class="dialog-public-background">
  11. <div class="title">修改密码</div>
  12. <div class="content">
  13. <div class="ruleZf">
  14. 特殊字符:`、!、@、#、$、%、^、&、*、(、)、_、+、{、}、"、:、?、>、&lt;、`、,、.、/、'、;、=、-
  15. </div>
  16. <div class="ruleZf">
  17. 密码规则:长度为8-20个字符,并且必须包含数字、大写字母、小写字母、特殊字符
  18. </div>
  19. <el-form ref="dataForm" :model="dataForm" :rules="dataRules" class="demo-dataForm">
  20. <el-form-item label="旧密码" prop="old">
  21. <el-input v-model="dataForm.old" size="medium" placeholder="请输入旧密码" show-password />
  22. </el-form-item>
  23. <el-form-item label="新密码" prop="new">
  24. <el-input v-model="dataForm.new" size="medium" placeholder="请输入新密码" show-password />
  25. </el-form-item>
  26. <el-form-item label="再次确认新密码" prop="again">
  27. <el-input v-model="dataForm.again" size="medium" placeholder="请再次确认新密码" show-password />
  28. </el-form-item>
  29. </el-form>
  30. </div>
  31. <div class="foot center t30">
  32. <el-button size="medium" type="primary" class="r24" @click="addSubmit('dataForm')">保存</el-button>
  33. <el-button v-if="!restFlag" size="medium" @click="resetForm('dataForm')">取消</el-button>
  34. </div>
  35. </div>
  36. </Dialog>
  37. <!--退出弹框-->
  38. <Dialog :flag="outflag">
  39. <div class="airportInfoDialog">
  40. <div class="flx">退出系统</div>
  41. <div class="content">是否确认退出系统?</div>
  42. <div class="foot right t30" style="margin-top: 24px">
  43. <el-button size="medium" class="r25 r26" type="primary" @click="outQd">确定</el-button>
  44. <el-button size="medium" class="r26" @click="outQx">取消</el-button>
  45. </div>
  46. </div>
  47. </Dialog>
  48. <PassengerDialog />
  49. <AbnormalBaggageDialog />
  50. <WarningDialog />
  51. <ErrorDialog />
  52. </div>
  53. </template>
  54. <script>
  55. import { Navbar, Sidebar, AppMain } from './components'
  56. import ResizeMixin from './mixin/ResizeHandler'
  57. import { mapGetters } from 'vuex'
  58. // import { changePassword } from "@/api/newLogin";
  59. // import { removeToken } from "@/utils/auth";
  60. import { modifyData, Query } from '@/api/webApi'
  61. import Dialog from '@/layout/components/Dialog'
  62. import MD5 from 'blueimp-md5'
  63. import PassengerDialog from '@/components/PassengerDialog'
  64. import AbnormalBaggageDialog from '@/components/AbnormalBaggageDialog'
  65. import WarningDialog from '@/components/WarningDialog'
  66. import ErrorDialog from '@/components/ErrorDialog'
  67. //import '@/config/staticConfig' // 按钮权限 全局自定义指令v-is
  68. export default {
  69. name: 'Layout',
  70. components: {
  71. Navbar,
  72. Sidebar,
  73. AppMain,
  74. Dialog,
  75. PassengerDialog,
  76. AbnormalBaggageDialog,
  77. WarningDialog,
  78. ErrorDialog
  79. },
  80. mixins: [ResizeMixin],
  81. data () {
  82. return {
  83. dataForm: {
  84. // 数据项表单
  85. old: '',
  86. new: '',
  87. again: '',
  88. },
  89. // leup: true,
  90. dataRules: {
  91. // 数据项表单验证
  92. old: [{ required: true, message: '请输入旧密码', trigger: 'blur' }],
  93. new: [{ required: true, message: '请输入新密码', trigger: 'blur' }],
  94. again: [
  95. { required: true, message: '请再次确认新密码', trigger: 'blur' },
  96. ],
  97. },
  98. restFlag: false
  99. }
  100. },
  101. computed: {
  102. ...mapGetters(['pwdflag', 'outflag', 'name', 'UserId']),
  103. },
  104. mounted () {
  105. this.getLastLoginTime()
  106. },
  107. methods: {
  108. // 获取最后登录时间
  109. async getLastLoginTime () {
  110. try {
  111. const { code, returnData } = await Query({
  112. serviceId: SERVICE_ID.getUserTableId,
  113. dataContent: { user_id: this.UserId },
  114. event: '0',
  115. })
  116. if (code == 0 && returnData.length) {
  117. const { lastPasswordModificationTime } = returnData[0]
  118. if (!lastPasswordModificationTime) {
  119. this.restFlag = true
  120. this.$store.dispatch('app/togglePwdflag', true)
  121. } else {
  122. const lastTime = this.$moment(lastPasswordModificationTime).format('YYYY-MM-DD HH:mm:ss')
  123. const newTime = this.$moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
  124. if (this.$moment(newTime).diff(lastTime, 'hours') > PLATFROM_CONFIG.loseTimeHour) {
  125. this.restFlag = true
  126. this.$store.dispatch('app/togglePwdflag', true)
  127. }
  128. }
  129. } else {
  130. this.restFlag = false
  131. this.$store.dispatch('app/togglePwdflag', false)
  132. }
  133. } catch (error) {
  134. console.log(error)
  135. }
  136. },
  137. // 存储数据项-提交
  138. addSubmit (formName) {
  139. this.$refs[formName].validate(valid => {
  140. if (valid) {
  141. const r = PLATFROM_CONFIG.editRule
  142. const b = r.test(this.dataForm.new)
  143. if (b) {
  144. if (this.dataForm.new !== this.dataForm.again) {
  145. this.$message.error('两次输入的密码不一致,请重新输入')
  146. return false
  147. }
  148. this.editPwd()
  149. } else {
  150. this.$message.error('请根据密码规则设置密码')
  151. }
  152. } else {
  153. return false
  154. }
  155. })
  156. },
  157. // 存储数据项-取消
  158. resetForm (formName) {
  159. this.$store.dispatch('app/togglePwdflag', false)
  160. this.$refs[formName].resetFields()
  161. },
  162. // 退出系统-取消
  163. outQx () {
  164. this.$store.dispatch('app/toggleOutflag', false)
  165. },
  166. // 退出系统-确定
  167. async outQd () {
  168. const res = await this.$store.dispatch('user/logout')
  169. const that = this
  170. if (res) {
  171. that.$store.dispatch('app/toggleOutflag', false)
  172. this.$message({
  173. type: 'success',
  174. message: '退出登录成功',
  175. duration: 1000,
  176. onClose: () => {
  177. sessionStorage.removeItem('userName')
  178. that.$router.push(`/login`)
  179. },
  180. })
  181. } else {
  182. this.$message.error('退出登录失败')
  183. }
  184. },
  185. // 修改密码
  186. async editPwd () {
  187. try {
  188. const res = await modifyData({
  189. serviceId: SERVICE_ID.changePwd,
  190. dataContent: {
  191. filter: [
  192. {
  193. left: '(',
  194. column: 'user_id',
  195. comparator: '=',
  196. value: sessionStorage.getItem('User_Id'),
  197. right: ')',
  198. connector: 'and',
  199. },
  200. {
  201. left: '(',
  202. column: 'user_pwd',
  203. comparator: '=',
  204. value: MD5(this.dataForm.old),
  205. right: ')',
  206. connector: 'and',
  207. },
  208. ],
  209. Value: {
  210. user_pwd: MD5(this.dataForm.again),
  211. lastPasswordModificationTime: this.$moment().format('YYYY-MM-DD HH:mm:ss')
  212. },
  213. },
  214. })
  215. if (res.code == 0 && res.sql.includes('update')) {
  216. this.$message.success(res.message ?? '成功')
  217. this.$store.dispatch('app/togglePwdflag', false)
  218. setTimeout(() => {
  219. this.outQd()
  220. }, 2000)
  221. } else {
  222. this.$message.error(res.message ?? '密码修改失败')
  223. }
  224. } catch (error) {
  225. this.$message.error('失败')
  226. }
  227. },
  228. },
  229. }
  230. </script>
  231. <style lang="scss" scoped>
  232. @import "~@/styles/mixin.scss";
  233. @import "~@/styles/variables.scss";
  234. .app-wrapper {
  235. @include clearfix;
  236. position: relative;
  237. height: 100%;
  238. width: 100%;
  239. &.mobile.openSidebar {
  240. position: fixed;
  241. top: 0;
  242. }
  243. }
  244. .drawer-bg {
  245. background: #000;
  246. opacity: 0.3;
  247. width: 100%;
  248. top: 0;
  249. height: 100%;
  250. position: absolute;
  251. z-index: 999;
  252. }
  253. .fixed-header {
  254. position: fixed;
  255. top: 0;
  256. right: 0;
  257. z-index: 9;
  258. width: calc(100% - #{$sideBarWidth});
  259. transition: width 0.28s;
  260. }
  261. .hideSidebar .fixed-header {
  262. width: calc(100% - 54px);
  263. }
  264. .mobile .fixed-header {
  265. width: 100%;
  266. }
  267. .ruleZf {
  268. line-height: 2;
  269. margin-bottom: 22px;
  270. color: #101611;
  271. }
  272. </style>