Browse Source

刷新user ,延期处理

lyn7568 6 years ago
parent
commit
94a1947776
4 changed files with 18 additions and 19 deletions
  1. 1 1
      src/libs/util.js
  2. 12 8
      src/pages/center/views/modifyData.vue
  3. 1 1
      src/pages/company/show.vue
  4. 4 9
      src/pages/org/show.vue

+ 1 - 1
src/libs/util.js

@ -255,7 +255,7 @@ export const delayDay = function (t) {
255 255
  dateInvalid.setMonth(parseInt(t.substring(4, 6)) - 1)
256 256
  dateInvalid.setDate(parseInt(t.substring(6, 8)))
257 257
258
  var dateGap = Math.abs(dateToday.getTime() - dateInvalid.getTime())
258
  var dateGap = dateInvalid.getTime() - dateToday.getTime() // Math.abs  delay - today
259 259
  var ifDelay = false
260 260
  if (dateGap < 7 * 24 * 60 * 60 * 1000) {
261 261
    ifDelay = true

+ 12 - 8
src/pages/center/views/modifyData.vue

@ -111,20 +111,24 @@
111 111
    },
112 112
    methods: {
113 113
      submitForm(formName) {
114
        var that = this
114 115
        this.$refs[formName].validate((valid) => {
115 116
          if (valid) {
116
            this.$axios.post('/ajax/sys/user', this.ruleForm2, res => {
117
            that.$axios.post('/ajax/sys/user', this.ruleForm2, res => {
117 118
              if (res.success) {
118
                this.$store.commit('SET_ACCOUNT', this.ruleForm2.account);
119
                this.$store.commit('SET_HEADPHOTO', this.ruleForm2.head);
120
                this.$message({
119
                that.$message({
121 120
                  message: '资料修改成功',
122 121
                  type: 'success'
123
                });
122
                })
123
                that.$axios.get('/ajax/sys/refresh', {}, function(data) {
124
                  if (data.success) {
125
                    that.$store.dispatch('GetUserInfo')
126
                  }
127
                })
124 128
              } else {
125
                this.$store.dispatch('FedLogOut').then(res => {
126
                  this.$message.error('登录状态失效,请重新登录')
127
                  this.$router.push({ path: '/#/loginPlat' })
129
                that.$store.dispatch('FedLogOut').then(res => {
130
                  that.$message.error('登录状态失效,请重新登录')
131
                  that.$router.push({ path: '/#/loginPlat' })
128 132
                })
129 133
              }
130 134
            })

+ 1 - 1
src/pages/company/show.vue

@ -8,7 +8,7 @@
8 8
          </div>
9 9
          <div class="show-info reInfo-box">
10 10
            <div class="info-tit">{{orgInfo.name}}</div>
11
            <div class="info-tag"><span v-if="orgInfo.type === '1'" style="margin-right:10px">{{compType[orgInfo.type]}}</span> {{keywordObj[1] ? keywordObj[1].join(" | ") : ''}}</div>
11
            <div class="info-tag"><span v-if="orgInfo.type === '2'" style="margin-right:10px">{{compType[orgInfo.type]}} </span>{{keywordObj[1] ? keywordObj[1].join(" | ") : ''}}</div>
12 12
            <div class="info-operate">
13 13
              <div class="addr">{{citys[orgInfo.addr]}}</div>
14 14
              <shareOut :tUrl="elurl"></shareOut>

+ 4 - 9
src/pages/org/show.vue

@ -8,7 +8,7 @@
8 8
          </div>
9 9
          <div class="show-info reInfo-box">
10 10
            <div class="info-tit">{{orgInfo.forShort ? orgInfo.forShort : orgInfo.name}}<em class="authicon" :class="{'icon-com': orgInfo.authStatus==='3'}"></em></div>
11
            <div class="info-tag"><span v-if="orgInfo.title" style="margin-right:10px">{{orgInfo.orgType}}</span></div>
11
            <div class="info-tag"><span v-if="orgInfo.orgType === '2'" style="margin-right:10px">{{compType[orgInfo.orgType]}}</span></div>
12 12
            <div class="info-operate">
13 13
              <div class="addr">{{orgInfo.city}}</div>
14 14
              <shareOut :tUrl="elurl"></shareOut>
@ -92,11 +92,11 @@
92 92
                    </el-col>
93 93
                    <el-col :span="12" v-if="orgInfo.orgSize">
94 94
                      <el-col :span="6">机构规模:</el-col>
95
                      <el-col :span="18">{{orgInfo.orgSize}}</el-col>
95
                      <el-col :span="18">{{numRanger[orgInfo.orgSize]}}</el-col>
96 96
                    </el-col>
97 97
                    <el-col :span="12" v-if="orgInfo.orgType">
98 98
                      <el-col :span="6">机构类型:</el-col>
99
                      <el-col :span="18">{{orgInfo.orgType}}</el-col>
99
                      <el-col :span="18">{{compType[orgInfo.orgType]}}</el-col>
100 100
                    </el-col>
101 101
                    <el-col :span="12" v-if="orgInfo.addr">
102 102
                      <el-col :span="6">机构地址:</el-col>
@ -283,12 +283,7 @@
283 283
            if ($info.foundTime) {
284 284
              $info.foundTime = TimeTr($info.foundTime);
285 285
            }
286
            if ($info.orgSize) {
287
              $info.orgSize = this.numRanger[$info.orgSize];
288
            }
289
            if ($info.orgType) {
290
              $info.orgType = this.compType[$info.orgType];
291
            }
286
292 287
            this.orgInfo = $info;
293 288
          };
294 289
        });