mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-13 20:12:48 +00:00
no message
This commit is contained in:
parent
b7b933c89d
commit
d571d6e121
@ -26,13 +26,13 @@
|
|||||||
"url": "https://github.com/kuaifan/dootask.git"
|
"url": "https://github.com/kuaifan/dootask.git"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@electron-forge/cli": "^6.0.5",
|
"@electron-forge/cli": "^6.1.0",
|
||||||
"@electron-forge/maker-deb": "^6.0.5",
|
"@electron-forge/maker-deb": "^6.1.0",
|
||||||
"@electron-forge/maker-rpm": "^6.0.5",
|
"@electron-forge/maker-rpm": "^6.1.0",
|
||||||
"@electron-forge/maker-squirrel": "^6.0.5",
|
"@electron-forge/maker-squirrel": "^6.1.0",
|
||||||
"@electron-forge/maker-zip": "^6.0.5",
|
"@electron-forge/maker-zip": "^6.1.0",
|
||||||
"dotenv": "^16.0.3",
|
"dotenv": "^16.0.3",
|
||||||
"electron": "^23.1.4",
|
"electron": "^23.2.1",
|
||||||
"electron-builder": "^23.6.0",
|
"electron-builder": "^23.6.0",
|
||||||
"electron-notarize": "^1.2.2",
|
"electron-notarize": "^1.2.2",
|
||||||
"form-data": "^4.0.0",
|
"form-data": "^4.0.0",
|
||||||
|
|||||||
@ -64,7 +64,7 @@
|
|||||||
const $content = this.$refs.content;
|
const $content = this.$refs.content;
|
||||||
let range = document.createRange();
|
let range = document.createRange();
|
||||||
range.setStart($content, 0);
|
range.setStart($content, 0);
|
||||||
range.setEnd($content, $content.childNodes.length);
|
range.setEnd($content, $content.childNodes?.length || 0);
|
||||||
const rangeWidth = range.getBoundingClientRect().width;
|
const rangeWidth = range.getBoundingClientRect().width;
|
||||||
this.showTooltip = Math.floor(rangeWidth) > Math.floor($content.offsetWidth);
|
this.showTooltip = Math.floor(rangeWidth) > Math.floor($content.offsetWidth);
|
||||||
if (this.showTooltip && this.existSlot) {
|
if (this.showTooltip && this.existSlot) {
|
||||||
|
|||||||
@ -20,6 +20,15 @@
|
|||||||
</Modal>
|
</Modal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
body {
|
||||||
|
.ivu-modal-wrap {
|
||||||
|
&.common-drawer-overlay {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<script>
|
<script>
|
||||||
import DrawerOverlayView from "./view";
|
import DrawerOverlayView from "./view";
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user