jufubao-base 1.0.297-beta2 → 1.0.297-beta21
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 +1 -1
- package/src/components/JfbBaseChangeCompany/JfbBaseChangeCompany.vue +3 -1
- package/src/components/JfbBaseChoseCompany/JfbBaseChoseCompany.vue +4 -4
- package/src/components/JfbBaseEntry/JfbBaseEntry.vue +2 -12
- package/src/components/JfbBaseTfkCardLogin/JfbBaseTfkCardLogin.vue +0 -5
package/package.json
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
:class="{ editx: isEditx && active }"
|
|
11
11
|
v-if="isEditx && active"
|
|
12
12
|
>
|
|
13
|
-
<view class="jfb-base-change-company__edit-icon" @click="delEdit"
|
|
13
|
+
<view class="jfb-base-change-company__edit-icon" @click="delEdit"
|
|
14
|
+
>删除</view
|
|
15
|
+
>
|
|
14
16
|
</view>
|
|
15
17
|
<!-- #endif -->
|
|
16
18
|
<view class="jfb-base-change-company__body">
|
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
:class="{ editx: isEditx && active }"
|
|
11
11
|
v-if="isEditx && active"
|
|
12
12
|
>
|
|
13
|
-
<view class="jfb-base-chose-company__edit-icon" @click="delEdit"
|
|
13
|
+
<view class="jfb-base-chose-company__edit-icon" @click="delEdit"
|
|
14
|
+
>删除</view
|
|
15
|
+
>
|
|
14
16
|
</view>
|
|
15
17
|
<!-- #endif -->
|
|
16
18
|
<view
|
|
@@ -255,11 +257,9 @@ export default {
|
|
|
255
257
|
company_source_from: item.company_source_from,
|
|
256
258
|
},
|
|
257
259
|
}).then((res) => {
|
|
258
|
-
|
|
259
260
|
//#ifdef MP-WEIXIN
|
|
260
261
|
if (this.jfbAuthorize !== null) {
|
|
261
|
-
this.jfbAuthorize.setAllToken(res)
|
|
262
|
-
this.jfbAuthorize.removeAllCardToken();
|
|
262
|
+
this.jfbAuthorize.setAllToken(res);
|
|
263
263
|
}
|
|
264
264
|
//#endif
|
|
265
265
|
|
|
@@ -26,10 +26,7 @@
|
|
|
26
26
|
</view>
|
|
27
27
|
</view>
|
|
28
28
|
<view v-else class="entry_list" :style="entryStyle">
|
|
29
|
-
<view
|
|
30
|
-
v-if="entryList.length > 0"
|
|
31
|
-
v-for="(item,i) in entryList"
|
|
32
|
-
:key="i"
|
|
29
|
+
<view v-for="(item,i) in entryList" :key="i"
|
|
33
30
|
class="entry_item"
|
|
34
31
|
:class="'row_num_'+rowNum"
|
|
35
32
|
@click="toLink(item)"
|
|
@@ -38,11 +35,6 @@
|
|
|
38
35
|
<image v-if="rowNum == 2" :src="item.image_url2" mode="widthFix"/>
|
|
39
36
|
<image v-if="rowNum == 3" :src="item.image_url3" mode="widthFix"/>
|
|
40
37
|
</view>
|
|
41
|
-
<xd-no-data
|
|
42
|
-
icon-type="empty"
|
|
43
|
-
:scale-size="2"
|
|
44
|
-
v-if="entryList.length === 0"
|
|
45
|
-
>暂无数据</xd-no-data>
|
|
46
38
|
</view>
|
|
47
39
|
</view>
|
|
48
40
|
</view>
|
|
@@ -57,13 +49,11 @@
|
|
|
57
49
|
import componentsMixins from "@/mixins/componentsMixins";
|
|
58
50
|
import extsMixins from "@/mixins/extsMixins";
|
|
59
51
|
import getServiceUrl from "@/common/getServiceUrl";
|
|
60
|
-
import XdNoData from "@/components/XdNoData/XdNoData.vue";
|
|
61
52
|
import {mapState} from "vuex";
|
|
62
53
|
export default {
|
|
63
54
|
name: "JfbBaseEntry",
|
|
64
55
|
components: {
|
|
65
|
-
XdFontIcon
|
|
66
|
-
XdNoData
|
|
56
|
+
XdFontIcon
|
|
67
57
|
},
|
|
68
58
|
mixins: [
|
|
69
59
|
componentsMixins, extsMixins, JfbBaseEntryMixin
|
|
@@ -491,11 +491,6 @@
|
|
|
491
491
|
//登录成功调整地址优先级
|
|
492
492
|
this.inCallback = inCallback || this.allEntryPath || this.settings.index;
|
|
493
493
|
|
|
494
|
-
//检查是否为小程序环境
|
|
495
|
-
//#ifdef H5
|
|
496
|
-
if(this.jfbAuthorize.checkIsH5ToMpEnv(this, this.inCallback ,'card')) return;
|
|
497
|
-
// #endif
|
|
498
|
-
|
|
499
494
|
this.getCardList();
|
|
500
495
|
},
|
|
501
496
|
/**
|