meixioacomponent 0.6.13 → 0.6.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meixioacomponent",
3
- "version": "0.6.13",
3
+ "version": "0.6.14",
4
4
  "private": false,
5
5
  "author": "YuRi",
6
6
  "main": "lib/meixioacomponent.common.js",
@@ -182,7 +182,7 @@ export default {
182
182
  // 状态
183
183
  status: {
184
184
  type: String,
185
- default: 'wait'
185
+ default: 'success'
186
186
  },
187
187
  // 加载文字
188
188
  waitText: {
@@ -41,9 +41,9 @@ export default {
41
41
  if (!content) {
42
42
  return `el-icon-warning`
43
43
  } else {
44
- if (type == 'time') {
44
+ if (type === 'time') {
45
45
  return 'el-icon-time'
46
- } else if (type == 'phone') {
46
+ } else if (type === 'phone') {
47
47
  return 'el-icon-mobile'
48
48
  }
49
49
  }
@@ -60,7 +60,7 @@ export default {
60
60
  return FilterTime(content, 'YYYY-MM-DD HH:mm:ss')
61
61
 
62
62
  }
63
- return content ? content.toString : ''
63
+ return content ? content.toString() : ''
64
64
  },
65
65
  setToolTipFlag() {
66
66
  const scrollWidth = this.$refs.pRef.scrollWidth;