linwenxin vor 5 Monaten
Ursprung
Commit
79260c57f3

+ 1 - 1
src/store/modules/app.js

@@ -36,7 +36,7 @@ const mutations = {
   SET_UNREAD_NOTICE: (state, num) => {
     state.allUnreadNum = num
   },
-  SET_SHOW:(state,bool)=>{
+  SET_SHOW: (state, bool) => {
     state.show = bool
   }
 }

+ 1 - 3
src/store/modules/user.js

@@ -221,13 +221,12 @@ const actions = {
     return new Promise((resolve, reject) => {
       getInfo(state.userid)
         .then(response => {
-
           const { data } = response
 
           if (!data) {
             return reject('Verification failed, please Login again.')
           }
-          console.log(data);
+          console.log(data)
           const { nickName, userName } = data
 
           commit('SET_NAME', nickName)
@@ -236,7 +235,6 @@ const actions = {
           localStorage.setItem('greemall_user', JSON.stringify(data))
 
           resolve(data)
-
         })
         .catch(error => {
           reject(error)

+ 10 - 6
src/views/workOrder/workOrderPool/detailModule/workOrderInfo/buttons/cloudCall.vue

@@ -40,9 +40,10 @@
 <script>
 import { commonUnicomeCall, commonUnicomeConfigSave } from '@/api/cloudCall.js'
 import buttonMixin from './button_mixin.js'
+import { getUserInfo } from '@/api/setting'
+import { mapGetters } from 'vuex'
 export default {
   mixins: [buttonMixin],
-
   props: {
     phone: {
       type: [String, Number],
@@ -63,6 +64,9 @@ export default {
       }
     }
   },
+  computed: {
+    ...mapGetters(['userid'])
+  },
   methods: {
     letClick() {
       if (this.phone) {
@@ -84,10 +88,11 @@ export default {
       }
     },
     rigClick() {
-      var { unicomIntegratedId, unicomIntegratedType } = JSON.parse(localStorage.getItem('greemall_user'))
-      this.form.unicomIntegratedId = unicomIntegratedId || ''
-      this.form.unicomIntegratedType = unicomIntegratedType || ''
-      this.dialogbol = true
+      getUserInfo({ adminUserId: this.userid }).then(res => {
+        this.form.unicomIntegratedId = res?.data?.unicomIntegratedId || ''
+        this.form.unicomIntegratedType = res?.data?.unicomIntegratedType || ''
+        this.dialogbol = true
+      })
     },
     Cancel() {
       this.dialogbol = false
@@ -96,7 +101,6 @@ export default {
       this.$refs.ruleForm.validate(valid => {
         if (valid) {
           commonUnicomeConfigSave(this.form).then(res => {
-            location.reload(true)
             this.$message({
               type: 'success',
               message: '设置成功'