jufubao-base 1.0.148 → 1.0.149
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
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<view class="jfb-base-login__body">
|
|
20
20
|
<view v-if="showStep === 1" class="panel-login-auth">
|
|
21
21
|
<view class="logo-wrap">
|
|
22
|
-
<image mode="aspectFit" :src="logo" />
|
|
22
|
+
<image mode="aspectFit" :src="logo" @click="openDebugger" />
|
|
23
23
|
<view :style="{ color: logoTextColor, }" >{{ partnerName }}</view>
|
|
24
24
|
</view>
|
|
25
25
|
<view class="login_types">
|
|
@@ -171,10 +171,13 @@
|
|
|
171
171
|
>
|
|
172
172
|
</view>
|
|
173
173
|
<view class="bottom_btn" :style="prod_bottom" v-if="isPreview === 'Y' || isDebugPreview">
|
|
174
|
-
<view
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
174
|
+
<view
|
|
175
|
+
@click="dialogPreview = true"
|
|
176
|
+
:style="{
|
|
177
|
+
color: mainColor,
|
|
178
|
+
border: `1px solid ${mainColor}`
|
|
179
|
+
}"
|
|
180
|
+
>进入体验 ></view>
|
|
178
181
|
</view>
|
|
179
182
|
<xd-dailog
|
|
180
183
|
v-if="dialogPreview"
|
|
@@ -200,6 +203,7 @@ import XdFontIcon from "@/components/XdFontIcon/XdFontIcon";
|
|
|
200
203
|
import { jfbRootExec } from "@/utils/xd.event";
|
|
201
204
|
import JfbBaseLoginMixin from "./JfbBaseLoginMixin";
|
|
202
205
|
import componentsMixins from "@/mixins/componentsMixins";
|
|
206
|
+
import openDebuggerMixins from "@/mixins/openDebuggerMixins";
|
|
203
207
|
import extsMixins from "@/mixins/extsMixins";
|
|
204
208
|
import XdButton from "@/components/XdButton/XdButton";
|
|
205
209
|
import XdFormCheckbox from "@/components/XdFormCheckbox/XdFormCheckbox";
|
|
@@ -231,7 +235,7 @@ export default {
|
|
|
231
235
|
XdFormItem,
|
|
232
236
|
XdDailog
|
|
233
237
|
},
|
|
234
|
-
mixins: [componentsMixins, extsMixins, JfbBaseLoginMixin, privacyMixins],
|
|
238
|
+
mixins: [componentsMixins, extsMixins, JfbBaseLoginMixin, privacyMixins,openDebuggerMixins],
|
|
235
239
|
data() {
|
|
236
240
|
return {
|
|
237
241
|
//体验模式
|
|
@@ -366,7 +370,6 @@ export default {
|
|
|
366
370
|
}
|
|
367
371
|
},
|
|
368
372
|
|
|
369
|
-
|
|
370
373
|
onJfbLoad(options) {
|
|
371
374
|
this.$xdLog.setProject('JfbBaseLogin', 'JfbBaseLogin.onJfbLoad.start')
|
|
372
375
|
this.redirect_url = options.redirect_url ? Base64.decode(options.redirect_url): '';
|