|
|
|
@ -1,6 +1,12 @@
|
|
|
|
|
<template> |
|
|
|
|
<basic-container> |
|
|
|
|
<div class="avue-crud"> |
|
|
|
|
<div class="maxbox"> |
|
|
|
|
<el-button class="itemtype" type="primary">商配</el-button> |
|
|
|
|
<el-button class="itemtype" type="primary">市配</el-button> |
|
|
|
|
<el-button class="itemtype" type="primary">自提</el-button> |
|
|
|
|
<el-button class="itemtype" type="primary">全部</el-button> |
|
|
|
|
</div> |
|
|
|
|
<el-row :hidden="!search" style="padding:6px 18px"> |
|
|
|
|
<!-- 查询模块 --> |
|
|
|
|
<el-form :inline="true" :model="query"> |
|
|
|
@ -507,7 +513,18 @@ export default {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
<style scoped> |
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
.maxbox{ |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
.itemtype{ |
|
|
|
|
max-width: 490px; |
|
|
|
|
width: 20%; |
|
|
|
|
min-width: 150px; |
|
|
|
|
height: 70px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-button--text { |
|
|
|
|
margin-right: 15px; |
|
|
|
|
} |
|
|
|
|