@jx3box/jx3box-common-ui 6.2.6 → 6.2.7
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/App.vue +1 -1
- package/src/author/AuthorFollow.vue +12 -6
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
placement="bottom"
|
|
20
20
|
trigger="hover"
|
|
21
21
|
popper-class="c-author-follow-popover"
|
|
22
|
-
:visible-arrow="
|
|
22
|
+
:visible-arrow="true"
|
|
23
23
|
>
|
|
24
24
|
<div class="u-action-list">
|
|
25
25
|
<div class="u-action-item" v-for="item in actions" :key="item.label" @click.stop="item.action">
|
|
@@ -58,7 +58,7 @@ export default {
|
|
|
58
58
|
return this.isFollow ? "已关注" : "关注";
|
|
59
59
|
},
|
|
60
60
|
btnIcon() {
|
|
61
|
-
return this.isSelf ? "" : this.isFollow ? "" : "el-icon-plus";
|
|
61
|
+
return this.isSelf ? "el-icon-plus" : this.isFollow ? "" : "el-icon-plus";
|
|
62
62
|
},
|
|
63
63
|
btnType() {
|
|
64
64
|
return this.isFollow ? "info" : "warning";
|
|
@@ -161,19 +161,25 @@ export default {
|
|
|
161
161
|
background: #ecf5ff;
|
|
162
162
|
}
|
|
163
163
|
}
|
|
164
|
-
|
|
164
|
+
|
|
165
|
+
.u-fans-box {
|
|
166
|
+
cursor: not-allowed;
|
|
167
|
+
&:hover {
|
|
168
|
+
cursor: not-allowed;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
.u-trigger {
|
|
165
172
|
&:hover {
|
|
166
173
|
cursor: default;
|
|
167
|
-
background: unset;
|
|
168
174
|
}
|
|
169
|
-
}
|
|
175
|
+
}
|
|
170
176
|
}
|
|
171
177
|
.c-author-follow-popover {
|
|
172
178
|
//.u-follow-popover {
|
|
173
179
|
&.el-popover {
|
|
174
180
|
min-width: 100px;
|
|
175
181
|
padding: 0;
|
|
176
|
-
margin:
|
|
182
|
+
margin-top: 5px;
|
|
177
183
|
.u-action-list {
|
|
178
184
|
.u-action-item {
|
|
179
185
|
text-align: center;
|