@uxda/appkit 4.2.91 → 4.2.92
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/index.js
CHANGED
|
@@ -3475,7 +3475,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
3475
3475
|
1
|
|
3476
3476
|
/* TEXT */
|
|
3477
3477
|
),
|
|
3478
|
-
item.id && !isAppEnv.value ? (openBlock(), createElementBlock("div", _hoisted_12$2, [
|
|
3478
|
+
item.id && (!isAppEnv.value || isAppEnv.value && !unref(isIOS)()) ? (openBlock(), createElementBlock("div", _hoisted_12$2, [
|
|
3479
3479
|
withDirectives((openBlock(), createElementBlock("div", {
|
|
3480
3480
|
onClick: ($event) => gotoTrade(item)
|
|
3481
3481
|
}, [..._cache[11] || (_cache[11] = [
|
|
@@ -3538,7 +3538,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
3538
3538
|
1
|
|
3539
3539
|
/* TEXT */
|
|
3540
3540
|
),
|
|
3541
|
-
item.id && !isAppEnv.value ? (openBlock(), createElementBlock("div", _hoisted_18$1, [
|
|
3541
|
+
item.id && (!isAppEnv.value || isAppEnv.value && !unref(isIOS)()) ? (openBlock(), createElementBlock("div", _hoisted_18$1, [
|
|
3542
3542
|
withDirectives((openBlock(), createElementBlock("div", {
|
|
3543
3543
|
onClick: ($event) => gotoTrade(item)
|
|
3544
3544
|
}, [..._cache[14] || (_cache[14] = [
|
package/package.json
CHANGED
|
@@ -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>
|