|  | @@ -12,6 +12,7 @@
 | 
											
												
													
														|  |                clearable
 |  |                clearable
 | 
											
												
													
														|  |                filterable
 |  |                filterable
 | 
											
												
													
														|  |                v-model="form.organId"
 |  |                v-model="form.organId"
 | 
											
												
													
														|  | 
 |  | +              :disabled="!isCreate"
 | 
											
												
													
														|  |                placeholder="请选择分部"
 |  |                placeholder="请选择分部"
 | 
											
												
													
														|  |              >
 |  |              >
 | 
											
												
													
														|  |                <el-option v-for="(item,index) in selects.branchs"
 |  |                <el-option v-for="(item,index) in selects.branchs"
 | 
											
										
											
												
													
														|  | @@ -29,6 +30,7 @@
 | 
											
												
													
														|  |            >
 |  |            >
 | 
											
												
													
														|  |              <el-date-picker
 |  |              <el-date-picker
 | 
											
												
													
														|  |                v-model="form.month"
 |  |                v-model="form.month"
 | 
											
												
													
														|  | 
 |  | +              :disabled="!isCreate"
 | 
											
												
													
														|  |                type="month"
 |  |                type="month"
 | 
											
												
													
														|  |                placeholder="请选择工作周期">
 |  |                placeholder="请选择工作周期">
 | 
											
												
													
														|  |              </el-date-picker>
 |  |              </el-date-picker>
 | 
											
										
											
												
													
														|  | @@ -46,6 +48,7 @@
 | 
											
												
													
														|  |                clearable
 |  |                clearable
 | 
											
												
													
														|  |                filterable
 |  |                filterable
 | 
											
												
													
														|  |                v-model="groupItem.userId"
 |  |                v-model="groupItem.userId"
 | 
											
												
													
														|  | 
 |  | +              :disabled="!isCreate"
 | 
											
												
													
														|  |                placeholder="请选择乐团主管"
 |  |                placeholder="请选择乐团主管"
 | 
											
												
													
														|  |              >
 |  |              >
 | 
											
												
													
														|  |                <el-option v-for="(item,index) in technicians"
 |  |                <el-option v-for="(item,index) in technicians"
 | 
											
										
											
												
													
														|  | @@ -129,7 +132,7 @@
 | 
											
												
													
														|  |    </div>
 |  |    </div>
 | 
											
												
													
														|  |  </template>
 |  |  </template>
 | 
											
												
													
														|  |  <script>
 |  |  <script>
 | 
											
												
													
														|  | -import { findTechnician } from '@/api/repairManager'
 |  | 
 | 
											
												
													
														|  | 
 |  | +import { queryEmployByOrganId } from '@/api/systemManage'
 | 
											
												
													
														|  |  import { matterTypes } from '@/views/main/constant'
 |  |  import { matterTypes } from '@/views/main/constant'
 | 
											
												
													
														|  |  import { objectToOptions } from '@/utils'
 |  |  import { objectToOptions } from '@/utils'
 | 
											
												
													
														|  |  import { createRandom } from '@/helpers/uuidv4'
 |  |  import { createRandom } from '@/helpers/uuidv4'
 | 
											
										
											
												
													
														|  | @@ -165,8 +168,9 @@ export default {
 | 
											
												
													
														|  |      async 'form.organId'() {
 |  |      async 'form.organId'() {
 | 
											
												
													
														|  |        if (this.form.organId) {
 |  |        if (this.form.organId) {
 | 
											
												
													
														|  |          try {
 |  |          try {
 | 
											
												
													
														|  | -          const res = await findTechnician({
 |  | 
 | 
											
												
													
														|  | -            organId: this.form.organId
 |  | 
 | 
											
												
													
														|  | 
 |  | +          const res = await queryEmployByOrganId({
 | 
											
												
													
														|  | 
 |  | +            organId: this.form.organId,
 | 
											
												
													
														|  | 
 |  | +            rows: 999
 | 
											
												
													
														|  |            })
 |  |            })
 | 
											
												
													
														|  |            this.technicians = res.data
 |  |            this.technicians = res.data
 | 
											
												
													
														|  |            this.$set(this.form, 'group', group.map(item => ({...item, userId: ''})))
 |  |            this.$set(this.form, 'group', group.map(item => ({...item, userId: ''})))
 |