@shijiu/jsview-vue 0.9.310-alpha.0 → 0.9.311-alpha.0
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
|
@@ -1674,12 +1674,12 @@ class TemplateParser {
|
|
|
1674
1674
|
const check_item = this._Template.List[configures.baseIdx + offset];
|
|
1675
1675
|
const key_pos = be_vertical_template ? check_item.xPos : check_item.yPos;
|
|
1676
1676
|
const key_width = be_vertical_template
|
|
1677
|
-
? check_item.width
|
|
1678
|
-
: check_item.height;
|
|
1677
|
+
? check_item.width + check_item.marginRight
|
|
1678
|
+
: check_item.height + check_item.marginBottom;
|
|
1679
1679
|
const second_pos = be_vertical_template ? check_item.yPos : check_item.xPos;
|
|
1680
1680
|
const second_width = be_vertical_template
|
|
1681
|
-
? check_item.height
|
|
1682
|
-
: check_item.width;
|
|
1681
|
+
? check_item.height + check_item.marginBottom
|
|
1682
|
+
: check_item.width + check_item.marginRight;
|
|
1683
1683
|
// console.log(
|
|
1684
1684
|
// "idx=" +
|
|
1685
1685
|
// (configures.baseIdx + offset) +
|