@nebulars/sseengine 1.3.62 → 1.3.63
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
|
@@ -70,7 +70,7 @@ export default {
|
|
|
70
70
|
methods: {
|
|
71
71
|
async sharingHandler() {
|
|
72
72
|
if (!this.$store.state.sseengine.choosen.length) {
|
|
73
|
-
return this.$util.toast.info('
|
|
73
|
+
return this.$util.toast.info('请选择问答');
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
const link = await this.$store.dispatch('sseengine/SNAP_SHARING', { session_id: this.app.id, title: this.sseengine.info.title });
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
|
|
31
31
|
<template>
|
|
32
32
|
<div class="fqa-flip" :class="{ freeze }">
|
|
33
|
-
<a-space class="fqa-flip-controller">
|
|
33
|
+
<a-space class="fqa-flip-controller" :class="{ notouch: sseengine.mode === 'snap' }">
|
|
34
34
|
<fqa-icon :class="{ 'fqa-flip-prev': true, 'fqa-flip-disabled': active <= min }" icon="LeftOutlined" @click="prev" />
|
|
35
35
|
<div class="fqa-flip-pagination">{{ active }} / {{ max }}</div>
|
|
36
36
|
<fqa-icon :class="{ 'fqa-flip-next': true, 'fqa-flip-disabled': active >= max }" icon="RightOutlined" @click="next" />
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
display: flex;
|
|
21
21
|
flex-direction: row;
|
|
22
22
|
|
|
23
|
+
height: 30px;
|
|
23
24
|
padding: 0 @atom;
|
|
24
25
|
margin-left: auto;
|
|
25
26
|
transition: all @fast;
|
|
@@ -95,7 +96,7 @@
|
|
|
95
96
|
<div v-else class="fqa-query-content">{{ item.content }}</div>
|
|
96
97
|
|
|
97
98
|
<!-- Control -->
|
|
98
|
-
<div class="fqa-query-control" :class="{ hover: app.mobile }" v-if="!editable && !sseengine.produce">
|
|
99
|
+
<div class="fqa-query-control" :class="{ hover: app.mobile, notouch: sseengine.mode === 'snap' }" v-if="!editable && !sseengine.produce">
|
|
99
100
|
<!-- Copy -->
|
|
100
101
|
<fqa-button :size="30" hover="#e7e8e9" v-clipboard:copy="item.content" v-clipboard:success="copySuccess">
|
|
101
102
|
<fqa-icon :icon="copied ? 'CheckOutlined' : 'CopyOutlined'" />
|