|
@@ -122,7 +122,7 @@ import {
|
|
import { mixinVisited } from '@/utils/mixins/visited'
|
|
import { mixinVisited } from '@/utils/mixins/visited'
|
|
import Empty from '@/components/common/Empty.vue'
|
|
import Empty from '@/components/common/Empty.vue'
|
|
import GroupCard from '@/components/selector/GroupSelector.vue'
|
|
import GroupCard from '@/components/selector/GroupSelector.vue'
|
|
-import { dateFormatter, openSelfLink } from '@/utils'
|
|
|
|
|
|
+import { dateFormatter, openSelfLink, getAssetsFile } from '@/utils'
|
|
import {
|
|
import {
|
|
setFollowEnt,
|
|
setFollowEnt,
|
|
setCancelEnt,
|
|
setCancelEnt,
|
|
@@ -165,7 +165,7 @@ export default {
|
|
},
|
|
},
|
|
isFollow: '1',
|
|
isFollow: '1',
|
|
tips: '', // 空状态提示
|
|
tips: '', // 空状态提示
|
|
- tipimages: import('@/assets/images/empty/jy-cry.png'),
|
|
|
|
|
|
+ tipimages: getAssetsFile('jy-cry.png'),
|
|
dialog: {
|
|
dialog: {
|
|
group: false
|
|
group: false
|
|
},
|
|
},
|
|
@@ -370,14 +370,14 @@ export default {
|
|
this.myDataObj.initTotal === 0
|
|
this.myDataObj.initTotal === 0
|
|
) {
|
|
) {
|
|
this.tips = '暂未认领任何经销商'
|
|
this.tips = '暂未认领任何经销商'
|
|
- this.tipimages = import('@/assets/images/empty/jy-back.png')
|
|
|
|
|
|
+ this.tipimages = getAssetsFile('jy-back.png')
|
|
} else if (
|
|
} else if (
|
|
this.myDataObj &&
|
|
this.myDataObj &&
|
|
this.myDataObj.list.length === 0 &&
|
|
this.myDataObj.list.length === 0 &&
|
|
this.myDataObj.initTotal !== 0
|
|
this.myDataObj.initTotal !== 0
|
|
) {
|
|
) {
|
|
this.tips = '暂无匹配数据'
|
|
this.tips = '暂无匹配数据'
|
|
- this.tipimages = import('@/assets/images/empty/jy-back.png')
|
|
|
|
|
|
+ this.tipimages = getAssetsFile('jy-back.png')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|