|
|
@ -3,7 +3,14 @@ |
|
|
|
<boardHeader |
|
|
|
ref="boardHeader_Ref" |
|
|
|
:title="'发运看板'" |
|
|
|
></boardHeader> |
|
|
|
> |
|
|
|
<!-- <template> |
|
|
|
<div class="dockCodeSearch"> |
|
|
|
<el-input v-model="dockCodeSearch" placeholder="请输入发货口"></el-input> |
|
|
|
<div class="searchBtn" @click="searchHandle">查询</div> |
|
|
|
</div> |
|
|
|
</template> --> |
|
|
|
</boardHeader> |
|
|
|
<dv-loading v-show="dataLoading">Loading...</dv-loading> |
|
|
|
<div class="lineContain"> |
|
|
|
<dv-scroll-board :config="config" ref="shippingBoard_Ref" style="height:100%"/> |
|
|
@ -44,6 +51,7 @@ export default { |
|
|
|
oddRowBGC: 'rgba(10, 29, 50, 0.9)' |
|
|
|
}, |
|
|
|
config: {}, |
|
|
|
dockCodeSearch:"", |
|
|
|
} |
|
|
|
}, |
|
|
|
created() { |
|
|
@ -89,6 +97,10 @@ export default { |
|
|
|
this.getList() |
|
|
|
util.addEventResizeFlesh() |
|
|
|
}, |
|
|
|
searchHandle(){ |
|
|
|
this.currentPage = 1 |
|
|
|
this.init() |
|
|
|
}, |
|
|
|
initConfig(data){ |
|
|
|
this.config = { |
|
|
|
header: this.configDefult.header, |
|
|
@ -156,6 +168,8 @@ export default { |
|
|
|
async getList(){ |
|
|
|
this.dataLoading = true |
|
|
|
this.initConfig() |
|
|
|
// todo:传参 |
|
|
|
console.log(this.dockCodeSearch) |
|
|
|
axiosUtil.ajax_post('/api/wms/store/board/deliver-board').then(res => { |
|
|
|
this.dataLoading = false |
|
|
|
if(res.length <= 0){ |
|
|
@ -516,6 +530,30 @@ export default { |
|
|
|
|
|
|
|
<style lang="less"> |
|
|
|
.shippingBoardPage{ |
|
|
|
.dockCodeSearch{ |
|
|
|
position:absolute; |
|
|
|
left:2.5rem; |
|
|
|
top:0.5rem; |
|
|
|
display:flex; |
|
|
|
align-items: center; |
|
|
|
|
|
|
|
.el-input__inner { |
|
|
|
background: transparent !important; |
|
|
|
border-color: #1d36b3 !important; |
|
|
|
color: #fff !important; |
|
|
|
height:2.5rem; |
|
|
|
line-height:2.5rem; |
|
|
|
} |
|
|
|
|
|
|
|
.searchBtn{ |
|
|
|
background:#1981f6; |
|
|
|
color:#fff; |
|
|
|
width:6rem; |
|
|
|
height:2.5rem; |
|
|
|
line-height:2.5rem; |
|
|
|
border-radius:0 0.2rem 0.2rem 0 |
|
|
|
} |
|
|
|
} |
|
|
|
.header-item{ |
|
|
|
font-size: 1rem; |
|
|
|
font-weight: bold; |
|
|
|