|
|
@ -1,16 +1,20 @@ |
|
|
|
<template> |
|
|
|
<div class="padpageBox isPadForNotifyOutTaskBackPage" v-loading="loading"> |
|
|
|
<currenForm |
|
|
|
:labelWidth="'90px'" |
|
|
|
ref="compeletHandleForm_Ref" |
|
|
|
:style="'width:calc(100% - 100px)'" |
|
|
|
size="large" |
|
|
|
:searchData="taskBackFormData" |
|
|
|
:searchForm="taskBackForm" |
|
|
|
:rules="taskBackRule" |
|
|
|
:searchHandle="taskBackHandle" |
|
|
|
@submitForm="submitForm" |
|
|
|
></currenForm> |
|
|
|
<div class="padListPageOuter isPadForNotifyOutTaskBackPage" v-loading="loading"> |
|
|
|
<p class="pageTitle">{{pageTitle}}</p> |
|
|
|
<div class="bottomBox"> |
|
|
|
<currenForm |
|
|
|
:labelWidth="'90px'" |
|
|
|
|
|
|
|
ref="compeletHandleForm_Ref" |
|
|
|
:style="'width:calc(100% - 100px)'" |
|
|
|
size="large" |
|
|
|
:searchData="taskBackFormData" |
|
|
|
:searchForm="taskBackForm" |
|
|
|
:rules="taskBackRule" |
|
|
|
:searchHandle="taskBackHandle" |
|
|
|
@submitForm="submitForm" |
|
|
|
></currenForm> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<script> |
|
|
@ -21,6 +25,7 @@ export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
loading:false, |
|
|
|
pageTitle:'回库', |
|
|
|
taskBackFormData: { |
|
|
|
endPosition:"", |
|
|
|
returnQty:"", |
|
|
@ -75,11 +80,22 @@ export default { |
|
|
|
<style lang="scss" scoped> |
|
|
|
@import "@/styles/padMain.scss"; |
|
|
|
.isPadForNotifyOutTaskBackPage{ |
|
|
|
padding:20px; |
|
|
|
::v-deep .formButton{ |
|
|
|
.el-button{ |
|
|
|
width:160px !important |
|
|
|
} |
|
|
|
} |
|
|
|
.pageTitle{ |
|
|
|
text-align:center; |
|
|
|
height:40px; |
|
|
|
line-height:40px; |
|
|
|
overflow:hidden; |
|
|
|
font-weight:bold; |
|
|
|
// box-shadow: 1px 1px 5px #ddd; |
|
|
|
margin:0; |
|
|
|
border-bottom: #efefef solid 1px; |
|
|
|
margin-bottom:30px; |
|
|
|
background:#fff; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |