Commit c747000a authored by 赵啸非's avatar 赵啸非

添加窗口人员查询

parent 82e6c8ee
......@@ -16,7 +16,6 @@ export default {
},
];
}
console.log(data);
return data;
},
// 渲染后置处理
......@@ -26,7 +25,6 @@ export default {
data.attachmentPathList && data.attachmentPathList.length > 0
? (data.attachmentPath = data.attachmentPathList[0].url)
: (data.attachmentPath = "");
console.log(data);
return data;
},
......
......@@ -43,7 +43,7 @@
</el-cascader>
</el-form-item>
</el-col>
<!-- <Field
label="部门"
prop="deptId"
......@@ -57,7 +57,7 @@
v-model="form.number"
placeholder="请输入工号"
/> -->
<!-- <Field
label="负责窗口数量"
prop="windowCount"
......@@ -90,7 +90,7 @@
<el-button type="primary" @click="onSubmitSearch">查询</el-button>
</el-form-item>
</el-form>
</div>
</div>
<el-table
......@@ -137,8 +137,8 @@ export default {
mixins: [form],
components: {},
created() {
this.changePath("window/owner");
this.getUser()
// this.changePath("window/owner");
// this.getUser()
},
data() {
return {
......@@ -167,7 +167,7 @@ export default {
]
},
userList:{},
};
},
......
......@@ -82,7 +82,7 @@ public class WindowOwnerController extends BaseCRUDJsonBodyMappingController<Win
siteHallPdu.setSiteId(1L);
Rest<RespData<List<SiteHallPdu>>> rest = siteHallFeign.list(siteHallPdu);
if (YesNoEnum.YES.getValue() == rest.getCode()) {
Map<Long, String> hallMap = rest.getData().getData().stream().collect(Collectors.toMap(x -> x.getId(), y -> y.getHallName(), (o, n) -> n));
Map<String, String> hallMap = rest.getData().getData().stream().collect(Collectors.toMap(x -> x.getId().toString(), y -> y.getHallName(), (o, n) -> n));
this.addDict(model, "hallId", hallMap);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment