@uxda/appkit 4.2.91 → 4.2.93
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/dist/appkit.css
CHANGED
|
@@ -2178,12 +2178,12 @@ page {
|
|
|
2178
2178
|
--nut-cell-padding: 0;
|
|
2179
2179
|
}
|
|
2180
2180
|
.user-binding-img {
|
|
2181
|
-
width:
|
|
2181
|
+
width: 100%;
|
|
2182
2182
|
height: 192px;
|
|
2183
2183
|
}
|
|
2184
2184
|
.user-binding-layout {
|
|
2185
2185
|
position: relative;
|
|
2186
|
-
width:
|
|
2186
|
+
width: 100%;
|
|
2187
2187
|
border-radius: 4px;
|
|
2188
2188
|
background: #fff;
|
|
2189
2189
|
overflow: hidden;
|
package/dist/index.js
CHANGED
|
@@ -3397,7 +3397,8 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
3397
3397
|
-1
|
|
3398
3398
|
/* CACHED */
|
|
3399
3399
|
)),
|
|
3400
|
-
withDirectives((openBlock(), createElementBlock("div", {
|
|
3400
|
+
!isAppEnv.value || isAppEnv.value && !unref(isIOS)() ? withDirectives((openBlock(), createElementBlock("div", {
|
|
3401
|
+
key: 0,
|
|
3401
3402
|
class: "rule",
|
|
3402
3403
|
onClick: _cache[0] || (_cache[0] = ($event) => rulesPopupOpen.value = true)
|
|
3403
3404
|
}, [..._cache[8] || (_cache[8] = [
|
|
@@ -3408,7 +3409,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
3408
3409
|
)
|
|
3409
3410
|
])])), [
|
|
3410
3411
|
[_directive_track_click, "click"]
|
|
3411
|
-
])
|
|
3412
|
+
]) : createCommentVNode("v-if", true)
|
|
3412
3413
|
]),
|
|
3413
3414
|
createElementVNode("div", _hoisted_6$6, [
|
|
3414
3415
|
createElementVNode(
|
|
@@ -3475,7 +3476,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
3475
3476
|
1
|
|
3476
3477
|
/* TEXT */
|
|
3477
3478
|
),
|
|
3478
|
-
item.id && !isAppEnv.value ? (openBlock(), createElementBlock("div", _hoisted_12$2, [
|
|
3479
|
+
item.id && (!isAppEnv.value || isAppEnv.value && !unref(isIOS)()) ? (openBlock(), createElementBlock("div", _hoisted_12$2, [
|
|
3479
3480
|
withDirectives((openBlock(), createElementBlock("div", {
|
|
3480
3481
|
onClick: ($event) => gotoTrade(item)
|
|
3481
3482
|
}, [..._cache[11] || (_cache[11] = [
|
|
@@ -3538,7 +3539,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
3538
3539
|
1
|
|
3539
3540
|
/* TEXT */
|
|
3540
3541
|
),
|
|
3541
|
-
item.id && !isAppEnv.value ? (openBlock(), createElementBlock("div", _hoisted_18$1, [
|
|
3542
|
+
item.id && (!isAppEnv.value || isAppEnv.value && !unref(isIOS)()) ? (openBlock(), createElementBlock("div", _hoisted_18$1, [
|
|
3542
3543
|
withDirectives((openBlock(), createElementBlock("div", {
|
|
3543
3544
|
onClick: ($event) => gotoTrade(item)
|
|
3544
3545
|
}, [..._cache[14] || (_cache[14] = [
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<img class="bean-icon" src="https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png" />
|
|
15
15
|
<div class="bean-tag tag">云豆</div>
|
|
16
16
|
</div>
|
|
17
|
-
<div class="rule" v-track-click="'click'" @click="rulesPopupOpen = true">规则说明</div>
|
|
17
|
+
<div v-if="!isAppEnv || (isAppEnv && !isIOS())" class="rule" v-track-click="'click'" @click="rulesPopupOpen = true">规则说明</div>
|
|
18
18
|
</div>
|
|
19
19
|
<div class="bean-counts spa-between">
|
|
20
20
|
<div class="counts number">{{ formatAmount(balance.total || 0) }}</div>
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
</div>
|
|
32
32
|
<div class="item-title">
|
|
33
33
|
<div>{{ item.title }}</div>
|
|
34
|
-
<div class="item-title-button" v-if="item.id && !isAppEnv">
|
|
34
|
+
<div class="item-title-button" v-if="item.id && (!isAppEnv || (isAppEnv && !isIOS()))">
|
|
35
35
|
<div v-track-click="'click'" @click="gotoTrade(item)">企明星优惠充值</div>
|
|
36
36
|
<img class="button-icon" src="https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg" />
|
|
37
37
|
</div>
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
<div class="item-count">{{ formatAmount(item.count || 0) }}{{ item.unit }}</div>
|
|
47
47
|
<div class="item-title">
|
|
48
48
|
<div>{{ item.title }}</div>
|
|
49
|
-
<div class="item-title-button" v-if="item.id && !isAppEnv">
|
|
49
|
+
<div class="item-title-button" v-if="item.id && (!isAppEnv || (isAppEnv && !isIOS()))">
|
|
50
50
|
<div v-track-click="'click'" @click="gotoTrade(item)">AI审批充值</div>
|
|
51
51
|
<img class="button-icon" src="https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg" />
|
|
52
52
|
</div>
|
|
@@ -165,13 +165,13 @@ const emits = defineEmits(['success'])
|
|
|
165
165
|
--nut-cell-padding: 0;
|
|
166
166
|
|
|
167
167
|
&-img {
|
|
168
|
-
width:
|
|
168
|
+
width: 100%;
|
|
169
169
|
height: 192px;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
&-layout {
|
|
173
173
|
position: relative;
|
|
174
|
-
width:
|
|
174
|
+
width: 100%;
|
|
175
175
|
border-radius: 4px;
|
|
176
176
|
background: #fff;
|
|
177
177
|
overflow: hidden;
|