6 changed files with 439 additions and 2 deletions
-
5package.json
-
303src/assets/scss/global.scss
-
3src/router/index.js
-
16src/views/main.vue
-
57src/views/modules/automatedWarehouse/callOut.vue
-
57src/views/modules/automatedWarehouse/demo.vue
@ -0,0 +1,57 @@ |
|||
<template> |
|||
<div> |
|||
<div class="pda-container"> |
|||
<!-- 头部栏 --> |
|||
<div class="header-bar"> |
|||
<div class="header-left" @click="handleBack"> |
|||
<i class="el-icon-arrow-left"></i> |
|||
<span>Call料</span> |
|||
</div> |
|||
<div class="header-right" @click="$router.push({ path: '/' })"> |
|||
首页 |
|||
</div> |
|||
</div> |
|||
<!-- 搜索框 --> |
|||
<!-- <div class="search-container">--> |
|||
<!-- --> |
|||
<!-- </div>--> |
|||
|
|||
<div class="main-content"> |
|||
|
|||
</div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
|
|||
export default { |
|||
data() { |
|||
return { |
|||
scanRma: "", |
|||
rmaList: [], |
|||
returnList: [], // 退货明细列表 |
|||
selectedDetail: null, // 当前选择的RMA明细 |
|||
processType: "inbound", // 固定为入库处理 |
|||
site:localStorage.getItem('site') |
|||
}; |
|||
}, |
|||
computed: { |
|||
|
|||
}, |
|||
methods: { |
|||
handleBack() { |
|||
this.$router.back(); |
|||
}, |
|||
|
|||
|
|||
}, |
|||
mounted() { |
|||
this.$nextTick(() => this.$refs.scanRmaRef && this.$refs.scanRmaRef.focus()); |
|||
} |
|||
}; |
|||
</script> |
|||
|
|||
<style scoped> |
|||
|
|||
</style> |
|||
@ -0,0 +1,57 @@ |
|||
<template> |
|||
<div> |
|||
<div class="pda-container"> |
|||
<!-- 头部栏 --> |
|||
<div class="header-bar"> |
|||
<div class="header-left" @click="handleBack"> |
|||
<i class="el-icon-arrow-left"></i> |
|||
<span>Call料</span> |
|||
</div> |
|||
<div class="header-right" @click="$router.push({ path: '/' })"> |
|||
首页 |
|||
</div> |
|||
</div> |
|||
<!-- 搜索框 --> |
|||
<!-- <div class="search-container">--> |
|||
<!-- --> |
|||
<!-- </div>--> |
|||
|
|||
<div class="main-content"> |
|||
|
|||
</div> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
|
|||
export default { |
|||
data() { |
|||
return { |
|||
scanRma: "", |
|||
rmaList: [], |
|||
returnList: [], // 退货明细列表 |
|||
selectedDetail: null, // 当前选择的RMA明细 |
|||
processType: "inbound", // 固定为入库处理 |
|||
site:localStorage.getItem('site') |
|||
}; |
|||
}, |
|||
computed: { |
|||
|
|||
}, |
|||
methods: { |
|||
handleBack() { |
|||
this.$router.back(); |
|||
}, |
|||
|
|||
|
|||
}, |
|||
mounted() { |
|||
this.$nextTick(() => this.$refs.scanRmaRef && this.$refs.scanRmaRef.focus()); |
|||
} |
|||
}; |
|||
</script> |
|||
|
|||
<style scoped> |
|||
|
|||
</style> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue