|
@@ -24,13 +24,13 @@
|
|
|
v-model="seleValue"
|
|
|
placeholder="请选择协作单位"
|
|
|
@change="handleChange"
|
|
|
- >
|
|
|
+ >
|
|
|
<!-- style="width: 100%" -->
|
|
|
<el-option
|
|
|
v-for="item in deptList"
|
|
|
:key="item.deptId"
|
|
|
:label="item.deptName"
|
|
|
- :value="item.deptId+''"
|
|
|
+ :value="item.deptId"
|
|
|
>
|
|
|
</el-option>
|
|
|
</el-select>
|
|
@@ -86,7 +86,7 @@
|
|
|
<script>
|
|
|
import { getDept } from "@/api/portal/CONFERENCEREPLY/CONFERENCEREPLY.js";
|
|
|
import { listDept } from "@/api/system/dept";
|
|
|
-import { getUserInfo } from "@/api/portal/ARTICLE/ARTICLE";
|
|
|
+import { getInfo } from "@/api/login";
|
|
|
|
|
|
import {
|
|
|
addJOINTCONFERENCE,
|
|
@@ -114,6 +114,7 @@ export default {
|
|
|
}
|
|
|
};
|
|
|
return {
|
|
|
+ user: null,
|
|
|
// 状态选择
|
|
|
status: null,
|
|
|
// 限期日期
|
|
@@ -163,8 +164,7 @@ export default {
|
|
|
this.form = response.data;
|
|
|
this.seleValue = this.form.deptIds;
|
|
|
let arr = eval("(" + this.form.deptIds + ")");
|
|
|
- this.seleValue = arr.toString();
|
|
|
- console.log(this.seleValue);
|
|
|
+ this.seleValue = arr[0];
|
|
|
this.deptId = JSON.parse(this.form.deptIds);
|
|
|
});
|
|
|
}
|
|
@@ -180,10 +180,54 @@ export default {
|
|
|
});
|
|
|
});
|
|
|
|
|
|
+ getInfo().then((res) => {
|
|
|
+ if (res.user.dept.type == 1 && res.user.userId == 1) {
|
|
|
+ getDept(2).then((res) => {
|
|
|
+ this.deptList = res.data;
|
|
|
+ });
|
|
|
+ } else if(res.user.dept.type == 2) {
|
|
|
+ this.deptList = [
|
|
|
+ {
|
|
|
+ searchValue: null,
|
|
|
+ createBy: "admin",
|
|
|
+ createTime: "2023-07-20 14:40:52",
|
|
|
+ updateBy: "admin",
|
|
|
+ updateTime: "2023-09-18 18:46:44",
|
|
|
+ params: {},
|
|
|
+ deptId: 100,
|
|
|
+ parentId: 0,
|
|
|
+ ancestors: "0",
|
|
|
+ deptName: "广西壮族自治区北部湾办公室",
|
|
|
+ type: 1,
|
|
|
+ orderNum: 0,
|
|
|
+ leader: "XXX",
|
|
|
+ phone: "15888888888",
|
|
|
+ biaoCang: "23",
|
|
|
+ email: "ry@qq.com",
|
|
|
+ status: "0",
|
|
|
+ delFlag: "0",
|
|
|
+ parentName: null,
|
|
|
+ industryOrientation: null,
|
|
|
+ planningArea: null,
|
|
|
+ acceptanceArea: null,
|
|
|
+ useArea: null,
|
|
|
+ usageRate: null,
|
|
|
+ warehouse: null,
|
|
|
+ oilDepot: null,
|
|
|
+ refrigeratory: null,
|
|
|
+ workshop: null,
|
|
|
+ approvalTime: null,
|
|
|
+ children: [],
|
|
|
+ createBy_dictText: "管理员",
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
// if (this.user.type == 1) {
|
|
|
- getDept(2).then((res) => {
|
|
|
- this.deptList = res.data;
|
|
|
- });
|
|
|
+ getDept(2).then((res) => {
|
|
|
+ this.deptList = res.data;
|
|
|
+ });
|
|
|
// }else{
|
|
|
// getDept(1).then((res) => {
|
|
|
// this.deptList = res.data;
|
|
@@ -242,14 +286,12 @@ export default {
|
|
|
return tree;
|
|
|
},
|
|
|
selectChange(val) {
|
|
|
- // console.log(val);
|
|
|
},
|
|
|
handleChange(val) {
|
|
|
this.form.cooperativeUnitId = this.seleValue;
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
- console.log(this.form);
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
if (this.seleValue.length == 0) {
|
|
|
this.$message.error("请选择协作单位");
|
|
@@ -296,4 +338,8 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
-<style></style>
|
|
|
+<style lang="scss" scoped>
|
|
|
+p{
|
|
|
+ margin: 0;
|
|
|
+}
|
|
|
+</style>
|