|
|
@@ -1,91 +1,93 @@
|
|
|
<!-- 搜索表单 -->
|
|
|
<template>
|
|
|
- <el-form label-width="90px" class="ele-form-search" @keyup.enter.native="search" @submit.native.prevent>
|
|
|
- <el-row :gutter="15">
|
|
|
- <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
- <el-form-item label="工单编码:">
|
|
|
- <el-input clearable v-model="where.workOrderCode" placeholder="请输入" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
+ <el-form label-width="90px" class="ele-form-search" @keyup.enter.native="search" @submit.native.prevent>
|
|
|
+ <el-row :gutter="15">
|
|
|
+ <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
+ <el-form-item label="工单编码:">
|
|
|
+ <el-input clearable v-model="where.workOrderCode" placeholder="请输入"/>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
- <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
- <el-form-item label="仓库名称:">
|
|
|
- <el-input clearable v-model="where.warehouseName" placeholder="请输入" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
+ <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
+ <el-form-item label="仓库名称:">
|
|
|
+ <el-input clearable v-model="where.warehouseName" placeholder="请输入"/>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
- <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
- <el-form-item label="物品名称:">
|
|
|
- <el-input clearable v-model="where.categoryName" placeholder="请输入" />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
+ <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
+ <el-form-item label="物品名称:">
|
|
|
+ <el-input clearable v-model="where.categoryName" placeholder="请输入"/>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
+ <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
+ <el-form-item label="组织机构:">
|
|
|
+ <auth-selection v-model="where.deptIds" style="width: 100%"></auth-selection>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
- <el-form-item label-width="0px">
|
|
|
- <el-button type="primary" icon="el-icon-search" class="ele-btn-icon" @click="search">
|
|
|
- 查询
|
|
|
- </el-button>
|
|
|
- <el-button @click="reset" icon="el-icon-refresh-left" type="primary">重置</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </el-form>
|
|
|
+ <el-col style="display: flex;justify-content: flex-end"
|
|
|
+ v-bind="styleResponsive ? { lg: 24, md: 24 } : { span: 24 }">
|
|
|
+ <el-form-item label-width="0px">
|
|
|
+ <el-button type="primary" icon="el-icon-search" class="ele-btn-icon" @click="search">
|
|
|
+ 查询
|
|
|
+ </el-button>
|
|
|
+ <el-button @click="reset" icon="el-icon-refresh-left" type="primary">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </el-form>
|
|
|
</template>
|
|
|
-
|
|
|
+
|
|
|
<script>
|
|
|
|
|
|
export default {
|
|
|
- props: [],
|
|
|
- data() {
|
|
|
- // 默认表单数据
|
|
|
- const defaultWhere = {
|
|
|
- workOrderCode: '',
|
|
|
- warehouseName: '',
|
|
|
- categoryName: ''
|
|
|
+ props: [],
|
|
|
+ data() {
|
|
|
+ // 默认表单数据
|
|
|
+ const defaultWhere = {
|
|
|
+ workOrderCode: '',
|
|
|
+ warehouseName: '',
|
|
|
+ categoryName: ''
|
|
|
|
|
|
|
|
|
- };
|
|
|
- return {
|
|
|
- // 表单数据
|
|
|
- where: { ...defaultWhere },
|
|
|
+ };
|
|
|
+ return {
|
|
|
+ // 表单数据
|
|
|
+ where: {...defaultWhere},
|
|
|
|
|
|
- };
|
|
|
- },
|
|
|
- computed: {
|
|
|
- // 是否开启响应式布局
|
|
|
- styleResponsive() {
|
|
|
- return this.$store.state.theme.styleResponsive;
|
|
|
- }
|
|
|
- },
|
|
|
- watch: {},
|
|
|
- created() {
|
|
|
+ };
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ // 是否开启响应式布局
|
|
|
+ styleResponsive() {
|
|
|
+ return this.$store.state.theme.styleResponsive;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {},
|
|
|
+ created() {
|
|
|
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /* 搜索 */
|
|
|
+ search() {
|
|
|
+ this.$emit('search', this.where);
|
|
|
+ },
|
|
|
+ /* 重置 */
|
|
|
+ reset() {
|
|
|
+ this.where = {...this.defaultWhere};
|
|
|
+ this.search();
|
|
|
},
|
|
|
- methods: {
|
|
|
- /* 搜索 */
|
|
|
- search() {
|
|
|
- this.$emit('search', this.where);
|
|
|
- },
|
|
|
- /* 重置 */
|
|
|
- reset() {
|
|
|
- this.where = { ...this.defaultWhere };
|
|
|
- this.search();
|
|
|
- },
|
|
|
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.ele-form-actions {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: flex-end;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: flex-end;
|
|
|
}
|
|
|
</style>
|
|
|
-
|