|
@@ -83,6 +83,8 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column align="center" prop="realName" label="乐团主管">
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="center" prop="linkman" label="联系人">
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="job" label="职位">
|
|
@@ -101,12 +103,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <!-- <el-table-column align='center' prop='ownershipType'
|
|
|
- label="权属类型">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ scope.row.ownershipType | branchType }}
|
|
|
- </template>
|
|
|
- </el-table-column> -->
|
|
|
+
|
|
|
<el-table-column align="center" label="操作" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
@@ -168,14 +165,14 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item
|
|
|
+ <el-form-item
|
|
|
label="乐团主管"
|
|
|
prop="educationUserId"
|
|
|
:label-width="formLabelWidth"
|
|
|
:rules="[{ required: true, message: '乐团主管不能为空' }]"
|
|
|
>
|
|
|
<el-select
|
|
|
- :disabled="!form.organId"
|
|
|
+ :disabled="!form.organId"
|
|
|
v-model.trim="form.educationUserId"
|
|
|
filterable
|
|
|
clearable
|
|
@@ -429,7 +426,7 @@ export default {
|
|
|
// 重置数据
|
|
|
this.teachingStatus = true;
|
|
|
this.formActionTitle = type;
|
|
|
- this.changeOrgan(rows.organId)
|
|
|
+ this.changeOrgan(rows.organId);
|
|
|
// 修改的时候赋值
|
|
|
if (type == "update") {
|
|
|
this.form = {
|
|
@@ -442,7 +439,7 @@ export default {
|
|
|
organId: rows.organId,
|
|
|
fullJobResource: rows.fullJobResource,
|
|
|
isEnable: rows.isEnable,
|
|
|
- educationUserId:rows.educationUserId
|
|
|
+ educationUserId: rows.educationUserId,
|
|
|
};
|
|
|
}
|
|
|
},
|
|
@@ -458,7 +455,7 @@ export default {
|
|
|
fullJobResource: null,
|
|
|
organId: null,
|
|
|
isEnable: null,
|
|
|
- educationUserId:null
|
|
|
+ educationUserId: null,
|
|
|
};
|
|
|
this.$refs[formName].resetFields();
|
|
|
},
|