|
@@ -999,7 +999,7 @@
|
|
</el-form>
|
|
</el-form>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
|
|
|
- <el-dialog :visible.sync="productionWriteDialogVisible" @open="clearassetsProductionFormValidate()"
|
|
|
|
|
|
+ <el-dialog :visible.sync="productionWriteDialogVisible" @open="clearassetsProductionFormValidate(),byAssetEvaluator()"
|
|
@close="resetProductionForm()">
|
|
@close="resetProductionForm()">
|
|
<el-form ref="assetsProductionForm" :model="assetsProductionForm" :rules="assetsProductionFormRules"
|
|
<el-form ref="assetsProductionForm" :model="assetsProductionForm" :rules="assetsProductionFormRules"
|
|
:disabled="productionDisabledStatus">
|
|
:disabled="productionDisabledStatus">
|
|
@@ -1045,7 +1045,7 @@
|
|
<el-col>
|
|
<el-col>
|
|
<el-form-item label="签字人:" prop="signatory" label-width="140px" class="postInfo-container-item">
|
|
<el-form-item label="签字人:" prop="signatory" label-width="140px" class="postInfo-container-item">
|
|
<el-select v-model="assetsProductionForm.signatory" placeholder="请选择" multiple>
|
|
<el-select v-model="assetsProductionForm.signatory" placeholder="请选择" multiple>
|
|
- <el-option v-for="(u, id) in allUsers" :label="u.name" :value="u.id" :key="u.id"></el-option>
|
|
|
|
|
|
+ <el-option v-for="(u, id) in assetEvaluator" :label="u.name" :value="u.id" :key="u.id"></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
@@ -1609,6 +1609,8 @@ export default {
|
|
principals: [],
|
|
principals: [],
|
|
// 用户下拉列表
|
|
// 用户下拉列表
|
|
allUsers: [],
|
|
allUsers: [],
|
|
|
|
+ // 资产评估师
|
|
|
|
+ assetEvaluator: [],
|
|
// 资产评估对象信息
|
|
// 资产评估对象信息
|
|
assetsEvaluationTarget: [],
|
|
assetsEvaluationTarget: [],
|
|
writeProductionStatementNos: [],
|
|
writeProductionStatementNos: [],
|
|
@@ -2190,6 +2192,14 @@ export default {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ // 获取资产评估师用户
|
|
|
|
+ byAssetEvaluator(){
|
|
|
|
+ this.$api.user.byAssetEvaluator().then(res => {
|
|
|
|
+ if (res.code === 200) {
|
|
|
|
+ this.assetEvaluator = res.data;
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
// 获取流程节点信息
|
|
// 获取流程节点信息
|
|
getCurrentNodeInfo() {
|
|
getCurrentNodeInfo() {
|
|
if (this.pageParams.row.assetsId) {
|
|
if (this.pageParams.row.assetsId) {
|