|
|
@@ -7,22 +7,50 @@
|
|
|
@submit.native.prevent
|
|
|
>
|
|
|
<el-row>
|
|
|
-
|
|
|
<el-col v-bind="styleResponsive ? { lg: 5, md: 12 } : { span: 4 }">
|
|
|
<el-form-item label="名称:">
|
|
|
- <el-input
|
|
|
- clearable
|
|
|
- v-model.trim="where.name"
|
|
|
- placeholder="请输入"
|
|
|
- />
|
|
|
+ <el-input clearable v-model.trim="where.name" placeholder="请输入" />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col v-bind="styleResponsive ? { lg: 5, md: 12 } : { span: 4 }">
|
|
|
- <el-form-item label=":">
|
|
|
-
|
|
|
+ <el-form-item label="所属工厂:">
|
|
|
+ <el-select
|
|
|
+ style="width: 100%"
|
|
|
+ clearable
|
|
|
+ v-model="where.factoryId"
|
|
|
+ @change="change_factoryId"
|
|
|
+ filterable
|
|
|
+ placeholder="请选择所属工厂"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in factoryList"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id"
|
|
|
+ :key="item.id"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
+ <el-col v-bind="styleResponsive ? { lg: 5, md: 12 } : { span: 4 }">
|
|
|
+ <el-form-item label="所属厂房:">
|
|
|
+ <el-select
|
|
|
+ style="width: 100%"
|
|
|
+ clearable
|
|
|
+ v-model="where.workshopPlanId"
|
|
|
+ @change="change_workshopPlanId"
|
|
|
+ filterable
|
|
|
+ placeholder="请选择所属厂房"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in workshopPlanList"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id"
|
|
|
+ :key="item.id"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
<el-col v-bind="styleResponsive ? { lg: 4, md: 12 } : { span: 4 }">
|
|
|
<div class="ele-form-actions">
|
|
|
@@ -37,25 +65,32 @@
|
|
|
<el-button @click="reset">重置</el-button>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
-
|
|
|
</el-row>
|
|
|
</el-form>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+ import { getFactoryarea } from '@/api/factoryModel';
|
|
|
export default {
|
|
|
data() {
|
|
|
// 默认表单数据
|
|
|
const defaultWhere = {
|
|
|
-
|
|
|
name: '',
|
|
|
-
|
|
|
+ factoryId: '',
|
|
|
+ workshopPlanId: ''
|
|
|
};
|
|
|
return {
|
|
|
// 表单数据
|
|
|
where: { ...defaultWhere },
|
|
|
+
|
|
|
+ factoryList: [],
|
|
|
+ workshopPlanList: []
|
|
|
};
|
|
|
},
|
|
|
+
|
|
|
+ created() {
|
|
|
+ this.getFactoryList();
|
|
|
+ },
|
|
|
computed: {
|
|
|
// 是否开启响应式布局
|
|
|
styleResponsive() {
|
|
|
@@ -63,6 +98,30 @@
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ async getFactoryList() {
|
|
|
+ const { list } = await getFactoryarea({
|
|
|
+ pageNum: 1,
|
|
|
+ size: 999,
|
|
|
+ type: 1
|
|
|
+ });
|
|
|
+ this.factoryList = list || [];
|
|
|
+ },
|
|
|
+
|
|
|
+ // 获取厂房
|
|
|
+ change_factoryId() {
|
|
|
+ this.where.workshopPlanId = '';
|
|
|
+ this.workshopPlanList = [];
|
|
|
+
|
|
|
+ let par = {
|
|
|
+ type: 2,
|
|
|
+ parentId: this.where.factoryId,
|
|
|
+ size: 9999
|
|
|
+ };
|
|
|
+ getFactoryarea(par).then((res) => {
|
|
|
+ this.workshopPlanList = res.list;
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
/* 搜索 */
|
|
|
search() {
|
|
|
this.$emit('search', this.where);
|