@jx3box/jx3box-editor 2.2.22 → 2.2.24
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/Item.vue +9 -40
package/package.json
CHANGED
package/src/Item.vue
CHANGED
|
@@ -142,47 +142,11 @@
|
|
|
142
142
|
v-if="source.furniture_attributes">
|
|
143
143
|
<div
|
|
144
144
|
class="u-field u-green"
|
|
145
|
-
v-if="source.furniture_attributes.
|
|
145
|
+
v-if="source.furniture_attributes.record">
|
|
146
146
|
<span
|
|
147
147
|
class="u-value"
|
|
148
148
|
v-text="
|
|
149
|
-
|
|
150
|
-
"></span>
|
|
151
|
-
</div>
|
|
152
|
-
<div
|
|
153
|
-
class="u-field u-green"
|
|
154
|
-
v-if="source.furniture_attributes.practical">
|
|
155
|
-
<span
|
|
156
|
-
class="u-value"
|
|
157
|
-
v-text="
|
|
158
|
-
`实用提高${source.furniture_attributes.practical}`
|
|
159
|
-
"></span>
|
|
160
|
-
</div>
|
|
161
|
-
<div
|
|
162
|
-
class="u-field u-green"
|
|
163
|
-
v-if="source.furniture_attributes.hard">
|
|
164
|
-
<span
|
|
165
|
-
class="u-value"
|
|
166
|
-
v-text="
|
|
167
|
-
`坚固提高${source.furniture_attributes.hard}`
|
|
168
|
-
"></span>
|
|
169
|
-
</div>
|
|
170
|
-
<div
|
|
171
|
-
class="u-field u-green"
|
|
172
|
-
v-if="source.furniture_attributes.geomantic">
|
|
173
|
-
<span
|
|
174
|
-
class="u-value"
|
|
175
|
-
v-text="
|
|
176
|
-
`风水提高${source.furniture_attributes.geomantic}`
|
|
177
|
-
"></span>
|
|
178
|
-
</div>
|
|
179
|
-
<div
|
|
180
|
-
class="u-field u-green"
|
|
181
|
-
v-if="source.furniture_attributes.interesting">
|
|
182
|
-
<span
|
|
183
|
-
class="u-value"
|
|
184
|
-
v-text="
|
|
185
|
-
`趣味提高${source.furniture_attributes.interesting}`
|
|
149
|
+
`装修评分:${source.furniture_attributes.record}`
|
|
186
150
|
"></span>
|
|
187
151
|
</div>
|
|
188
152
|
</div>
|
|
@@ -250,8 +214,9 @@
|
|
|
250
214
|
:key="key"
|
|
251
215
|
:class="{
|
|
252
216
|
'u-yellow':
|
|
253
|
-
sibling
|
|
254
|
-
sibling
|
|
217
|
+
sibling &&
|
|
218
|
+
(sibling == source.Name ||
|
|
219
|
+
sibling.includes(source.Name)),
|
|
255
220
|
}">
|
|
256
221
|
{{
|
|
257
222
|
sibling
|
|
@@ -356,6 +321,10 @@
|
|
|
356
321
|
v-if="source.GetType"
|
|
357
322
|
class="u-get-type"
|
|
358
323
|
v-text="`物品来源:${source.GetType}`"></div>
|
|
324
|
+
<div
|
|
325
|
+
v-if="source.furniture_attributes && source.furniture_attributes.limit"
|
|
326
|
+
class="u-get-type"
|
|
327
|
+
v-text="`摆放上限:${source.furniture_attributes.limit}`"></div>
|
|
359
328
|
</div>
|
|
360
329
|
</div>
|
|
361
330
|
</template>
|