@jx3box/jx3box-editor 1.1.8 → 1.1.9
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/Buff.vue +1 -1
- package/src/Item.vue +2 -2
- package/src/Npc.vue +1 -1
- package/src/Skill.vue +1 -1
package/package.json
CHANGED
package/src/Buff.vue
CHANGED
package/src/Item.vue
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<span v-text="`精炼等级:0 / ${source.MaxStrengthLevel}`"></span>
|
|
14
14
|
</div>
|
|
15
15
|
<!-- 物品名称 -->
|
|
16
|
-
<
|
|
16
|
+
<div class="u-title" :style="{ color: color(source.Quality) }" v-text="source.Name"></div>
|
|
17
17
|
<!-- 绑定状态 -->
|
|
18
18
|
<div v-if="source.BindType > 1" class="u-bind" v-text="bind(source.BindType)"></div>
|
|
19
19
|
<!-- 唯一 -->
|
|
@@ -324,6 +324,6 @@ export default {
|
|
|
324
324
|
};
|
|
325
325
|
</script>
|
|
326
326
|
|
|
327
|
-
<style lang="less"
|
|
327
|
+
<style lang="less">
|
|
328
328
|
@import "../assets/css/module/item.less";
|
|
329
329
|
</style>
|
package/src/Npc.vue
CHANGED