1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
| <template>
| <div class="productRegisterForm-container">
| <div class="filter-card">
| <CommonSearch :show-add="false" :amount-view="false" placeholder="请输入关键词" @searchClick="onFilterSearch">
| <template slot="leftButton">
| <el-button size="small" type="primary" @click="addBtnClick">新建</el-button>
| </template>
| </CommonSearch>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| name: "productRegisterForm",
| props: {},
| components: {},
| mixins: [],
| computed: {},
| data() {
| return {}
| },
| created() {},
| methods: {}
| }
| </script>
|
| <!-- Add "scoped" attribute to limit CSS to this component only -->
| <style lang="scss" scoped>
| .productRegisterForm-container {
| .filter-card {
| margin: 20px 30px;
| height: 80px;
| display: flex;
| align-items: center;
| padding: 0 20px 0 20px;
| border-radius: 12px;
| background-color: #fff;
| }
| }
| </style>
|
|