123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- <template>
- <view class="picking-task-page">
- <u-navbar height="40px" title="采购入库" bgColor="#F0F6FB" autoBack placeholder>
- <view class="u-nav-slot btn-right" slot="right" @click="stashClick">
- <view class="cang-name">{{cangName}}</view>
- <u-icon name="arrow-down-fill" color="#999999" size="12"></u-icon>
- </view>
- </u-navbar>
- <view class="container_main">
- <u-sticky :offsetTop="offsetTop" bgColor="#F0F6FB">
- <view class="search-box">
- <u-search placeholder="请输入单据编号" bgColor="#fff" shape="square" v-model="params.number" :showAction="false" @search="searchClick" @clear="searchClick"></u-search>
- <view class="flex_box">
- <view class="scan-text">扫描单据二维码</view>
- <view class="scan-icon">
- <image src="@/static/image/scan-icon.png" mode=""></image>
- </view>
- </view>
- </view>
- <view class="type-box flex_box">
- <view class="type-item" @click="tabClick(1)">
- <view class="type-val">{{type1}}</view>
- <u-icon name="arrow-down-fill" color="#999999" size="12"></u-icon>
- </view>
- <view class="type-item" @click="tabClick(2)">
- <view class="type-val">{{type2}}</view>
- <u-icon name="arrow-down-fill" color="#999999" size="12"></u-icon>
- </view>
- </view>
- </u-sticky>
- <view class="task-cont">
- <block v-for="(item,i) in taskList" :key="i">
- <task-item :item="item" @toStorage="toStorage" @toDetail="toDetail" type="caigou"></task-item>
- </block>
- <u-empty mode="data" v-if="taskList.length == 0"></u-empty>
- </view>
- </view>
- <!-- 中心仓弹窗 -->
- <u-picker :show="stashShow" :defaultIndex="defaultIndex" :columns="stashColumns" @confirm="pickerConfirm" @cancel="stashShow= false"></u-picker>
- <!-- 状态 -->
- <u-picker :show="statusShow" keyName="name" :defaultIndex="defaultIndex2" :columns="statusColumns" @confirm="statusConfirm" @cancel="statusShow= false"></u-picker>
- <!-- 月份 -->
- <u-picker :show="dateShow" :defaultIndex="defaultIndex3" :columns="dateColumns" @confirm="dateConfirm" @cancel="dateShow= false"></u-picker>
-
- </view>
- </template>
- <script>
- import taskItem from '@/components/task-item/task-item.vue'
- import {purchaseInventory, orderStartHandle} from '@/common/request/apis/purchase'
- export default{
- components:{
- taskItem
- },
- data() {
- return {
- offsetTop:0,
- cangName:'鹏越中心仓',
- searchKey:'',
- type1:'全部',
- type2:'月份',
- stashShow:false,
- stashShow:false,
- statusShow:false,
- dateShow:false,
- stashColumns:[
- ['鹏越中心仓','美团中心仓']
- ],
- statusColumns:[
- [{
- name:'全部',
- id:''
- },{
- name:'待入库',
- id:'1'
- },{
- name:'入库中',
- id:'4'
- },{
- name:'已入库',
- id:'2'
- }]
- ],
- dateColumns:[
- ['全年','一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月']
- ],
- defaultIndex:[],
- defaultIndex2:[],
- defaultIndex3:[],
- taskList:[],
- params:{
- beginTime:'',
- endTime:'',
- number:'',
- status:'',
- pageNum:1,
- pageSize:10
- }
- }
- },
- onLoad() {
- let systemInfo = uni.getSystemInfoSync();
- let statusBarHeight = systemInfo.statusBarHeight;
- this.offsetTop = statusBarHeight + 40
- this.init()
- },
- onShow() {
- if(uni.getStorageSync('orderRefresh')) {
- this.init()
- uni.removeStorageSync('orderRefresh')
- }
- },
- methods:{
- init() {
- uni.showLoading()
- this.params.pageNum = 1
- this.getPurchaseInventory()
- },
- searchClick() {
- this.init()
- },
- // 点击操作
- toOrderStartHandle(id) {
- orderStartHandle(id)
- .then(res=>{
- if(res.code == 200) {
- uni.navigateTo({
- url:`/pages/purchase/put-storage?id=${id}`
- })
- }
- })
- },
- tabClick(type) {
- if(type == 1) {
- this.defaultIndex = this.getDefaultIndex(this.type1,this.statusColumns)
- this.statusShow = true
- }else {
- this.defaultIndex = this.getDefaultIndex(this.type2,this.dateColumns)
- this.dateShow = true
- }
- },
- getPurchaseInventory() {
- purchaseInventory(this.params)
- .then(res=>{
- if(res.code == 200) {
- this.taskList = res.data.rows;
- }
- uni.hideLoading()
- })
- .catch(err=>{
- uni.hideLoading()
- })
- },
- stashClick() {
- this.defaultIndex = this.getDefaultIndex(this.cangName,this.stashColumns)
- this.stashShow = true
- },
- pickerConfirm(val) {
- this.cangName = val.value[0]
- this.stashShow = false
- },
- statusConfirm(val) {
- this.type1 = val.value[0].name
- this.params.status = val.value[0].id
- this.statusShow = false
- this.init()
- },
- dateConfirm(val) {
- this.type2 = val.value[0]
- this.dateShow = false
- let month = val.indexs[0]
- this.getLastDayOfMonth(month)
- this.init()
- },
- // 获取开始时间、结束时间
- getLastDayOfMonth(month) {
- let year = new Date().getFullYear()
- if(month !=0) {
- let monthStart = new Date(year, month, 0).getDate();
- this.params.beginTime = `${year}-${month}-01`
- this.params.endTime = `${year}-${month}-${monthStart}`
- }else {
- this.params.beginTime = ''
- this.params.endTime = ''
- }
-
- },
- // 获取picker默认index
- getDefaultIndex(val,list) {
- let arr = []
- let index = list[0].findIndex(item=>item == val)
- arr = [index]
- return arr
- },
- // 入库
- toStorage(val) {
- this.toOrderStartHandle(val.id)
- },
- toDetail(val) {
- uni.navigateTo({
- url:`/pages/purchase/detail?id=${val.id}`
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .btn-right {
- display: flex;
- align-items: center;
- .cang-name {
- color: #0256FF;
- text-align: center;
- font-family: "PingFang SC";
- font-size: 28rpx;
- font-weight: 600;
- margin-right: 10rpx;
- }
- }
- .picking-task-page {
- min-height: 100vh;
- background: #F0F6FB;
- .container_main {
- .search-box {
- display: flex;
- align-items: center;
- padding: 0 32rpx;
- .scan-text {
- color: #333;
- font-family: "PingFang SC";
- font-size: 24rpx;
- font-weight: 400;
- margin-right: 20rpx;
- margin-left: 30rpx;
- }
- .scan-icon {
- width: 36rpx;
- height: 36rpx;
- background-color: #fff;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- image {
- width: 24rpx;
- height: 24rpx;
- }
- }
- }
-
- .type-box {
- .type-item {
- width: 50%;
- height: 88rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- .type-val {
- color: #000;
- font-family: "PingFang SC";
- font-size: 28rpx;
- font-weight: 400;
- margin-right: 10rpx;
- }
- }
- }
-
- .task-cont {
- padding: 0 24rpx;
- }
- }
- }
- </style>
|