lyn7568 6 years ago
parent
commit
40926f6d22
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/pages/center/views/myBusiness/companyInformation.vue

+ 1 - 1
src/pages/center/views/myBusiness/companyInformation.vue

@ -160,7 +160,7 @@
160 160
    data() {
161 161
      var checkInterNum = (rule, value, callback) => {
162 162
        const reg = /^[0-9]*$/
163
        if (!value && !reg.test(value)) {
163
        if (value && !reg.test(value)) {
164 164
            return callback(new Error('请输入正确邮编'))
165 165
        } else {
166 166
            callback()