|
@@ -280,11 +280,11 @@
|
|
|
<el-input v-model="inputForm.evaluationPersonTwo" placeholder="请填写签字评估师2" ></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="12">
|
|
|
+ <!--<el-col :span="12">
|
|
|
<el-form-item label="项目状态" prop="status"
|
|
|
:rules="[
|
|
|
]">
|
|
|
- <!-- <el-input v-model="inputForm.status" placeholder="请填写项目状态" ></el-input>-->
|
|
|
+ <!– <el-input v-model="inputForm.status" placeholder="请填写项目状态" ></el-input>–>
|
|
|
<el-select v-model="inputForm.status" placeholder="请选择" style="width:100%;">
|
|
|
<el-option
|
|
|
v-for="item in $dictUtils.getDictList('project_status')"
|
|
@@ -294,7 +294,8 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- </el-col>
|
|
|
+ </el-col>-->
|
|
|
+ </el-row>
|
|
|
<el-upload ref="upload" style="display: inline-block; margin-left: 5em; :show-header='status'" action=""
|
|
|
:limit="999" :http-request="httpRequest"
|
|
|
multiple
|
|
@@ -614,6 +615,11 @@
|
|
|
this.inputForm.workAttachments.push(item)
|
|
|
})
|
|
|
console.log('workAttachments', this.inputForm.workAttachments)
|
|
|
+ if (this.inputForm.evaluationReportDateUi === null || this.inputForm.evaluationReportDateUi === undefined || this.inputForm.evaluationReportDateUi === undefined) {
|
|
|
+ this.inputForm.status = '5'
|
|
|
+ } else {
|
|
|
+ this.inputForm.status = '1'
|
|
|
+ }
|
|
|
this.projectService.save(this.inputForm).then(({data}) => {
|
|
|
this.close()
|
|
|
this.$message.success(data)
|