|
|
|
@ -1,32 +1,34 @@
|
|
|
|
|
<template> |
|
|
|
|
<basic-container> |
|
|
|
|
<div class="avue-crud"> |
|
|
|
|
<el-row v-if="!search" style="padding:6px 18px"> |
|
|
|
|
<el-row v-if="!search"> |
|
|
|
|
<!-- 查询模块 --> |
|
|
|
|
<el-form :inline="true" :model="query"> |
|
|
|
|
<el-form :inline="true" :model="query" class='fr-fo'> |
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
<el-form-item> |
|
|
|
|
<el-form-item class='el-btn'> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
|
|
|
|
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
</el-row> |
|
|
|
|
<el-row style="margin-top: 30px"> |
|
|
|
|
<el-button-group> |
|
|
|
|
<el-button type="primary" icon="el-icon-warning" @click="aaa">待确认</el-button> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-check" @click="bbb">已确认<i |
|
|
|
|
class="el-icon-arrow-right el-icon--right"></i></el-button> |
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-view" @click="ccc">全部</el-button>--> |
|
|
|
|
</el-button-group> |
|
|
|
|
<el-row> |
|
|
|
|
|
|
|
|
|
<div class="avue-crud__header"> |
|
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__left" style="margin-top: 20px"> |
|
|
|
|
<div class="avue-crud__left"> |
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="handleAdd">添加预约</el-button> |
|
|
|
|
<el-button v-if="this.query.reservationStatus==='1'" type="danger" icon="el-icon-delete" @click="handleConfirmReservations" plain>批量确认 |
|
|
|
|
</el-button> |
|
|
|
|
<el-button v-if="this.query.reservationStatus==='2'" type="danger" icon="el-icon-delete" @click="handleStockUp" plain>批量转备货</el-button> |
|
|
|
|
<el-button v-if="this.query.reservationStatus==='2'" type="danger" icon="el-icon-delete" @click="handleDeliverys" plain>批量转配送</el-button> |
|
|
|
|
<el-button-group> |
|
|
|
|
<el-button type="primary" icon="el-icon-warning" @click="aaa">待确认</el-button> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-check" @click="bbb">已确认<i |
|
|
|
|
class="el-icon-arrow-right el-icon--right"></i></el-button> |
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-view" @click="ccc">全部</el-button>--> |
|
|
|
|
</el-button-group> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__right"> |
|
|
|
|
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button> |
|
|
|
@ -829,3 +831,14 @@
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped lang='scss'> |
|
|
|
|
.fr-fo { |
|
|
|
|
width: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: flex-end; |
|
|
|
|
} |
|
|
|
|
.el-btn { |
|
|
|
|
margin-right: 0; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|