Commit dc42979c5318316d6483b23e8a6bdd60116e1dc8
1 parent
aab9afee
联系方式
Showing
1 changed file
with
1 additions
and
1 deletions
src/views/baseComapnyInfo/index.vue
| ... | ... | @@ -177,7 +177,7 @@ export default { |
| 177 | 177 | toUpload(response, file, fileList) { |
| 178 | 178 | this.$message({ |
| 179 | 179 | showClose: true, |
| 180 | - message: response.msg, | |
| 180 | + message: response.code == 200 ? '上传成功' : '上传失败', | |
| 181 | 181 | type: response.code == 200 ? 'success' : 'error', |
| 182 | 182 | close: () => { |
| 183 | 183 | response.code == 200 && this.initData(); | ... | ... |