|
@@ -52,10 +52,27 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
- <el-form-item v-if="inputForm.status !=='2'" label="项目经理" prop="projectMasterId"
|
|
|
|
|
|
+ <el-form-item v-if="inputForm.status !=='2'" label="项目经理" prop="projectMasterName"
|
|
:rules="[
|
|
:rules="[
|
|
]">
|
|
]">
|
|
- <el-input :disabled="true" v-model="inputForm.projectMasterId" placeholder="请填写项目经理" clearable></el-input>
|
|
|
|
|
|
+ <el-input :disabled="true" v-model="inputForm.projectMasterName" placeholder="请填写项目经理" clearable></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="盖章类型" prop="signatureType"
|
|
|
|
+ :rules="[
|
|
|
|
+ {required: true, message: '盖章类型不能为空', trigger: 'blur'}
|
|
|
|
+ ]">
|
|
|
|
+ <!-- <el-input v-model="inputForm.signatureType" placeholder="请填写盖章类型" clearable></el-input>-->
|
|
|
|
+ <el-select v-model="inputForm.signatureType" placeholder="请选择盖章类型" clearable style="width: 100%;">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in $dictUtils.getDictList('cw_signature_type')"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
|
@@ -98,23 +115,6 @@
|
|
</el-col>
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
- <el-form-item label="盖章类型" prop="signatureType"
|
|
|
|
- :rules="[
|
|
|
|
- {required: true, message: '盖章类型不能为空', trigger: 'blur'}
|
|
|
|
- ]">
|
|
|
|
-<!-- <el-input v-model="inputForm.signatureType" placeholder="请填写盖章类型" clearable></el-input>-->
|
|
|
|
- <el-select v-model="inputForm.signatureType" placeholder="请选择盖章类型" clearable style="width: 100%;">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in $dictUtils.getDictList('cw_signature_type')"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value">
|
|
|
|
- </el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-col>
|
|
|
|
-
|
|
|
|
- <el-col :span="12">
|
|
|
|
<el-form-item label="创建时间" prop="createDate"
|
|
<el-form-item label="创建时间" prop="createDate"
|
|
:rules="[
|
|
:rules="[
|
|
]">
|
|
]">
|
|
@@ -302,7 +302,7 @@
|
|
signatureAnnotator1: '',
|
|
signatureAnnotator1: '',
|
|
signatureAnnotator2: '',
|
|
signatureAnnotator2: '',
|
|
signatureType: '',
|
|
signatureType: '',
|
|
- projectMasterId: '',
|
|
|
|
|
|
+ projectMasterName: '',
|
|
cwProjectInfoList: [],
|
|
cwProjectInfoList: [],
|
|
cwFileInfoList: [],
|
|
cwFileInfoList: [],
|
|
servedUnitId: '',
|
|
servedUnitId: '',
|
|
@@ -444,7 +444,7 @@
|
|
signatureAnnotator1: '',
|
|
signatureAnnotator1: '',
|
|
signatureAnnotator2: '',
|
|
signatureAnnotator2: '',
|
|
signatureType: '',
|
|
signatureType: '',
|
|
- projectMasterId: '',
|
|
|
|
|
|
+ projectMasterName: '',
|
|
cwProjectInfoList: []
|
|
cwProjectInfoList: []
|
|
}
|
|
}
|
|
this.inputForm.id = id
|
|
this.inputForm.id = id
|
|
@@ -486,7 +486,7 @@
|
|
this.inputForm.projectName = row.projectName // 项目名称
|
|
this.inputForm.projectName = row.projectName // 项目名称
|
|
this.inputForm.projectId = row.id // 项目id
|
|
this.inputForm.projectId = row.id // 项目id
|
|
this.inputForm.projectNumber = row.projectNumber // 项目编号
|
|
this.inputForm.projectNumber = row.projectNumber // 项目编号
|
|
- this.inputForm.projectMasterId = row.projectMasterName // 项目经理
|
|
|
|
|
|
+ this.inputForm.projectMasterName = row.projectMasterName // 项目经理
|
|
this.clearClientList()
|
|
this.clearClientList()
|
|
this.$forceUpdate()
|
|
this.$forceUpdate()
|
|
this.inputForm.cwProjectInfoList = []
|
|
this.inputForm.cwProjectInfoList = []
|
|
@@ -655,7 +655,7 @@
|
|
signatureAnnotator1: '',
|
|
signatureAnnotator1: '',
|
|
signatureAnnotator2: '',
|
|
signatureAnnotator2: '',
|
|
signatureType: '',
|
|
signatureType: '',
|
|
- projectMasterId: ''
|
|
|
|
|
|
+ projectMasterName: ''
|
|
}
|
|
}
|
|
// this.$refs.uploadComponent.clearUpload()
|
|
// this.$refs.uploadComponent.clearUpload()
|
|
this.$refs.inputForm.resetFields()
|
|
this.$refs.inputForm.resetFields()
|