Compare commits

..

No commits in common. 'fe224e2b2a56972c6aecb7f97747a15127c960ff' and 'f844da1041c88137e03329f8ad4085c935cafb54' have entirely different histories.

@ -14,8 +14,7 @@
.sidebar-container {
-webkit-transition: width .28s;
transition: width 0.28s;
//width: $base-sidebar-width !important;
width: $base-sidebar-width ;
width: $base-sidebar-width !important;
background-color: $base-menu-background;
height: 100%;
position: fixed;
@ -110,7 +109,7 @@
.hideSidebar {
.sidebar-container {
//width: 54px !important;
width: 54px !important;
}
.main-container {
@ -170,8 +169,7 @@
.sidebar-container {
transition: transform .28s;
width: $base-sidebar-width ;
//width: $base-sidebar-width !important;
width: $base-sidebar-width !important;
}
&.hideSidebar {

@ -1,10 +1,8 @@
<template>
<div :class="classObj" class="app-wrapper" :style="{'--current-color': theme}">
<div v-if="device==='mobile'&&sidebar.opened" class="drawer-bg" @click="handleClickOutside"/>
<sidebar v-if="!sidebar.hide" class="sidebar-container" :style="`width:${sidebarWidth}px`"/>
<div :class="{hasTagsView:needTagsView,sidebarHide:sidebar.hide}" class="main-container"
:style="`margin-left:${sidebarWidth}px`"
>
<sidebar v-if="!sidebar.hide" class="sidebar-container"/>
<div :class="{hasTagsView:needTagsView,sidebarHide:sidebar.hide}" class="main-container">
<div :class="{'fixed-header':fixedHeader}">
<navbar/>
<tags-view v-if="needTagsView"/>
@ -14,9 +12,6 @@
<settings/>
</right-panel>
</div>
<div v-if="!sidebar.hide" class="layout-line" :style="`left:${sidebarWidth}px`" ref="layoutLine"
@mousedown="layoutLineMouseDown"
></div>
</div>
</template>
@ -29,11 +24,6 @@ import variables from '@/assets/styles/variables.scss'
export default {
name: 'Layout',
data: () => {
return {
sidebarWidth: 54
}
},
components: {
AppMain,
Navbar,
@ -43,18 +33,6 @@ export default {
TagsView
},
mixins: [ResizeMixin],
watch: {
'sidebar.opened': {
handler: function() {
console.log(this.sidebar.opened)
if (this.sidebar.opened) {
this.sidebarWidth = 200
} else {
this.sidebarWidth = 54
}
}
}
},
computed: {
...mapState({
theme: state => state.settings.theme,
@ -73,92 +51,61 @@ export default {
}
},
variables() {
return variables
return variables;
}
},
methods: {
handleClickOutside() {
this.$store.dispatch('app/closeSideBar', { withoutAnimation: false })
},
setLineLeft(e) {
console.log(e)
let left = e.pageX
if (left < 54) {
left = 54
}
if (left > 1000) {
left = 1000
}
// if(left <100){
// this.needTagsView = true
// }
// if(left >210){
// this.needTagsView = false
// }
this.sidebarWidth = left
},
layoutLineMouseDown(e) {
window.addEventListener('mousemove', this.setLineLeft)
window.addEventListener('mouseup', ()=>{window.removeEventListener('mousemove', this.setLineLeft)})
},
}
}
}
</script>
<style lang="scss" scoped>
@import "~@/assets/styles/mixin.scss";
@import "~@/assets/styles/variables.scss";
@import "~@/assets/styles/mixin.scss";
@import "~@/assets/styles/variables.scss";
.layout-line {
//transition: all .28s;
position: absolute;
top: 0;
width: 3px;
height: 100%;
background-color: #00afff;
cursor: ew-resize;
}
.app-wrapper {
@include clearfix;
position: relative;
height: 100%;
width: 100%;
&.mobile.openSidebar {
position: fixed;
top: 0;
}
}
.app-wrapper {
@include clearfix;
position: relative;
height: 100%;
width: 100%;
.drawer-bg {
background: #000;
opacity: 0.3;
width: 100%;
top: 0;
height: 100%;
position: absolute;
z-index: 999;
}
&.mobile.openSidebar {
.fixed-header {
position: fixed;
top: 0;
right: 0;
z-index: 9;
width: calc(100% - #{$base-sidebar-width});
transition: width 0.28s;
}
}
.drawer-bg {
background: #000;
opacity: 0.3;
width: 100%;
top: 0;
height: 100%;
position: absolute;
z-index: 999;
}
.fixed-header {
position: fixed;
top: 0;
right: 0;
z-index: 9;
width: calc(100% - #{$base-sidebar-width});
transition: width 0.28s;
}
.hideSidebar .fixed-header {
width: calc(100% - 54px);
}
.hideSidebar .fixed-header {
width: calc(100% - 54px);
}
.sidebarHide .fixed-header {
width: 100%;
}
.sidebarHide .fixed-header {
width: 100%;
}
.mobile .fixed-header {
width: 100%;
}
.mobile .fixed-header {
width: 100%;
}
</style>

@ -203,6 +203,9 @@
size="mini"
type="primary"
@click="handleApplyRawOutstock(scope.row)"
v-if="scope.row.processType === PROCESS_TYPE.AUTO && scope.row.planId!=null && scope.row.planId!==''
&& scope.row.planStatus !== PLAN_STATUS.FINISHED
&& form.orderStatus!==ORDER_STATUS.FINISHED && form.orderStatus!==ORDER_STATUS.RECALLED && form.orderStatus!==ORDER_STATUS.DELETED"
>投料
</el-button>
@ -1405,14 +1408,14 @@ export default {
},
handleApplyRawOutstock(row) {
// if (row.processType === this.PROCESS_TYPE.AUTO) {
if (row.processType === this.PROCESS_TYPE.AUTO) {
this.applyRawOutstockOpen = true;
this.productPlanData.planCode = row.planCode;
this.productPlanData.planId = row.planId;
this.productPlanData.dispatchAmount = row.dispatchAmount;
this.productPlanData.saleOrderId = this.form.saleOrderId;
this.productPlanData.materialBomId = this.form.materialBomId;
// }
}
},
closeRawOutstockDialog() {

Loading…
Cancel
Save