|
@@ -1563,9 +1563,9 @@ export default {
|
|
|
estimatedValue: [
|
|
|
{ required: true, message: '请填写评估结论对应的评估值', trigger: 'blur' }
|
|
|
],
|
|
|
- filePath: [
|
|
|
- { required: true, message: '请上传附件资料', trigger: 'change' }
|
|
|
- ],
|
|
|
+ // filePath: [
|
|
|
+ // { required: true, message: '请上传附件资料', trigger: 'change' }
|
|
|
+ // ],
|
|
|
checkValue: [
|
|
|
{ required: true, message: '请填写审核价格', trigger: 'blur' }
|
|
|
]
|
|
@@ -1628,7 +1628,7 @@ export default {
|
|
|
],
|
|
|
signatory: [
|
|
|
{ required: true, message: '请选择签字人', trigger: 'change' },
|
|
|
- { required: true, validator: checkSignatoryLength, trigger: 'change' }
|
|
|
+ { required: true, validator: this.checkSignatoryLength, trigger: 'change' }
|
|
|
],
|
|
|
clientName: [
|
|
|
{ required: true, message: '请填写委托方名称', trigger: 'blur' }
|
|
@@ -2601,8 +2601,11 @@ export default {
|
|
|
},
|
|
|
// 资产撰写产品(意见书和报告都是这个接口)
|
|
|
writeAssetsProduction() {
|
|
|
+ console.log("in function")
|
|
|
this.$refs.assetsProductionForm.validate(valid => {
|
|
|
+ console.log(valid)
|
|
|
if (valid) {
|
|
|
+ console.log("in valid")
|
|
|
this.assetsProductionForm.filePath = JSON.stringify(this.assetsProductionForm.filePath);
|
|
|
if (this.assetsProductionForm.signatory !== null) {
|
|
|
this.assetsProductionForm.signatory = JSON.stringify(this.assetsProductionForm.signatory);
|