@jx3box/jx3box-editor 1.9.1 → 1.9.2
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/BoxResource.vue +3 -3
- package/src/components/Combo.vue +1 -1
package/package.json
CHANGED
package/src/BoxResource.vue
CHANGED
|
@@ -124,13 +124,13 @@
|
|
|
124
124
|
show-icon
|
|
125
125
|
></el-alert>
|
|
126
126
|
</el-tab-pane>
|
|
127
|
-
<el-tab-pane label="
|
|
127
|
+
<el-tab-pane label="连招" name="combo">
|
|
128
128
|
<span slot="label" class="u-tab-label">
|
|
129
129
|
<i
|
|
130
|
-
class="el-icon-
|
|
130
|
+
class="el-icon-lollipop"
|
|
131
131
|
style="margin-right: 5px"
|
|
132
132
|
></i>
|
|
133
|
-
<b
|
|
133
|
+
<b>连招</b>
|
|
134
134
|
</span>
|
|
135
135
|
<ComboVue :query="query" ref="combo" :client="comboClient"></ComboVue>
|
|
136
136
|
</el-tab-pane>
|
package/src/components/Combo.vue
CHANGED
|
@@ -246,7 +246,7 @@ export default {
|
|
|
246
246
|
renderVal() {
|
|
247
247
|
const {selected} = this;
|
|
248
248
|
return `<ul class="e-skill-combo w-skill-combo">${selected.map(item => {
|
|
249
|
-
return `<li class="w-skill-combo-item">${item.SkillID},${item.Name},${item.IconID},{gcd:${item.WithoutGcd ?
|
|
249
|
+
return `<li class="w-skill-combo-item">${item.SkillID},${item.Name},${item.IconID},{gcd:${item.WithoutGcd ? 0: 1}}</li>`
|
|
250
250
|
})}</ul>`
|
|
251
251
|
},
|
|
252
252
|
},
|