|
|
@@ -9,9 +9,9 @@
|
|
|
:disabled="!canadd">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="ProjectName" label="设备名称" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column prop="ProjectName" label="项目名称" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column prop="BearContent" label="主要内容" show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column prop="OwnerUnit" label="业主单位" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column prop="OwnerUnit" label="合作单位" show-overflow-tooltip></el-table-column>
|
|
|
<el-table-column prop="StartTime" label="起始时间" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">
|
|
|
{{ jstimehandle(scope.row.StartTime+'') }}
|
|
|
@@ -39,7 +39,7 @@
|
|
|
<el-form ref="refPerformance" :model="PerformanceForm" label-width="100px">
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="设备名称">
|
|
|
+ <el-form-item label="项目名称">
|
|
|
<el-input v-model="PerformanceForm.ProjectName"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
@@ -49,7 +49,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="业主单位">
|
|
|
+ <el-form-item label="合作单位">
|
|
|
<el-input v-model="PerformanceForm.OwnerUnit"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
@@ -66,7 +66,10 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="有无事故">
|
|
|
+ <el-form-item label="有无事故"
|
|
|
+ :rules="[
|
|
|
+ { required: true, message: '有无事故不能为空', trigger: 'change'}
|
|
|
+ ]" >
|
|
|
<el-select ref="refplace" v-model="PerformanceForm.Tudge" style="width:100%"
|
|
|
placeholder="请选择是否发生过质量、安全、环境事故">
|
|
|
<el-option label="无事故" value="无事故"></el-option>
|
|
|
@@ -176,7 +179,7 @@
|
|
|
})
|
|
|
},
|
|
|
savedata() {
|
|
|
- if (this.Title == '新增近三年主要工程业绩') {
|
|
|
+ if (this.Title == '近三年主要工程业绩') {
|
|
|
this.addPerformance()
|
|
|
} else if (this.Title == '编辑近三年主要工程业绩') {
|
|
|
this.editPerformance()
|
|
|
@@ -259,7 +262,7 @@
|
|
|
.catch(() => {});
|
|
|
},
|
|
|
showDialog() {
|
|
|
- this.Title = '新增近三年主要工程业绩'
|
|
|
+ this.Title = '近三年主要工程业绩'
|
|
|
this.PerformanceForm.Id = 0
|
|
|
this.PerformanceForm.SupplierCertId = this.SupplierCertId
|
|
|
this.PerformanceForm.SupplierTypeCode = this.SupplierTypeCode
|