| 123456789101112131415161718192021222324252627282930313233343536 |
- <!-- 搜索表单 -->
- <template>
- <seekPage :seekList="seekList" :formLength="3" @search="search"></seekPage>
- </template>
- <script>
- export default {
- data() {
- return {
- // 表格列配置
- seekList: [
- {
- label: '名称:',
- value: 'pointName',
- type: 'input',
- placeholder: '请输入'
- },
- {
- label: '编码:',
- value: 'pointCode',
- type: 'input',
- placeholder: '请输入'
- }
- ]
- };
- },
- computed: {
- },
- methods: {
- /* 搜索 */
- search(e) {
- this.$emit('search', { ...e });
- },
- }
- };
- </script>
|