@jx3box/jx3box-common-ui 5.6.4 → 5.6.5
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
package/src/author/Avatar.vue
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<img class="u-user-avatar" :src="showAvatar(item.ext_operate_user_info.avatar)" alt />
|
|
30
30
|
<span>{{item.ext_operate_user_info.display_name}}</span>
|
|
31
31
|
</a>
|
|
32
|
-
<a
|
|
32
|
+
<a
|
|
33
33
|
class="u-meta u-user"
|
|
34
34
|
:href="authorLink(item.user_id)"
|
|
35
35
|
target="_blank"
|
|
@@ -141,7 +141,7 @@ export default {
|
|
|
141
141
|
});
|
|
142
142
|
this.list.splice(i,1)
|
|
143
143
|
})
|
|
144
|
-
|
|
144
|
+
|
|
145
145
|
}
|
|
146
146
|
},
|
|
147
147
|
});
|
|
@@ -149,8 +149,8 @@ export default {
|
|
|
149
149
|
authorLink,
|
|
150
150
|
showTime,
|
|
151
151
|
showAvatar: function (val) {
|
|
152
|
-
return showAvatar(val,
|
|
152
|
+
return showAvatar(val, 72);
|
|
153
153
|
},
|
|
154
154
|
},
|
|
155
155
|
};
|
|
156
|
-
</script>
|
|
156
|
+
</script>
|
package/src/single/Creators.vue
CHANGED
|
@@ -104,7 +104,7 @@ export default {
|
|
|
104
104
|
});
|
|
105
105
|
},
|
|
106
106
|
showAvatar: function (val) {
|
|
107
|
-
return showAvatar(val,
|
|
107
|
+
return showAvatar(val, 144);
|
|
108
108
|
},
|
|
109
109
|
authorLink,
|
|
110
110
|
formatLabel : function (str){
|
|
@@ -211,4 +211,4 @@ export default {
|
|
|
211
211
|
.none;
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
|
-
</style>
|
|
214
|
+
</style>
|