| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <!-- 搜索表单 -->
- <template>
- <el-form
- label-width="120px"
- class="ele-form-search"
- @keyup.enter.native="search"
- @submit.native.prevent
- >
- <el-row :gutter="24">
- <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
- <el-form-item label="销售订单号:">
- <el-input v-model="where.code" placeholder="请输入"></el-input>
- </el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
- <el-form-item label="物料编码:">
- <el-input v-model="where.productCode" placeholder="请输入"></el-input>
- </el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
- <el-form-item label="订单类型:">
- <DictSelection
- dictName="订单类型"
- clearable
- v-model="where.orderType"
- >
- </DictSelection>
- </el-form-item>
- </el-col>
- <el-col v-bind="styleResponsive ? { sm: 4 } : { span: 4 }">
- <div class="ele-form-actions">
- <el-button
- type="primary"
- icon="el-icon-search"
- class="ele-btn-icon"
- @click="search"
- >
- 查询
- </el-button>
- <el-button @click="reset">重置</el-button>
- </div>
- </el-col>
- </el-row>
- </el-form>
- </template>
- <script>
- export default {
- data() {
- // 默认表单数据
- const defaultWhere = {
- code: '',
- productCode: ''
- };
- return {
- // 表单数据
- where: { ...defaultWhere }
- };
- },
- props: {},
- computed: {
- // 是否开启响应式布局
- styleResponsive() {
- return this.$store.state.theme.styleResponsive;
- }
- },
- methods: {
- /* 搜索 */
- search() {
- this.$emit('search', this.where);
- },
- /* 重置 */
- reset() {
- this.where = { ...this.defaultWhere };
- this.search();
- }
- }
- };
- </script>
|