|
@@ -329,17 +329,17 @@
|
|
<td >联系电话</td><td colspan="4">{{form.dh}}</td>
|
|
<td >联系电话</td><td colspan="4">{{form.dh}}</td>
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
- <td>户籍区划</td><td colspan="4">{{form.hjqhName}}</td>
|
|
|
|
|
|
+ <td>户籍区划</td><td colspan="4">{{form.hjqhNames}}</td>
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
- <td>单位所在区划</td><td colspan="4">{{form.dwqhName}}</td>
|
|
|
|
|
|
+ <td>单位所在区划</td><td colspan="4">{{form.dwqhNames}}</td>
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td>
|
|
<td>
|
|
相关证书
|
|
相关证书
|
|
</td>
|
|
</td>
|
|
<td colspan="4">
|
|
<td colspan="4">
|
|
- <file-upload v-model="form.fj" :isFile="false" />
|
|
|
|
|
|
+ <file-upload v-if="form.fj" v-model="form.fj" :isFile="false" />
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tr>
|
|
</table>
|
|
</table>
|
|
@@ -545,14 +545,15 @@
|
|
const id = row.id || this.ids
|
|
const id = row.id || this.ids
|
|
getPdzj(id).then((response) => {
|
|
getPdzj(id).then((response) => {
|
|
this.form = response.data
|
|
this.form = response.data
|
|
- this.form.hjqhId = JSON.stringify(this.form.hjqhId.split(','))
|
|
|
|
- this.form.dwqhId = JSON.stringify(this.form.dwqhId.split(','))
|
|
|
|
|
|
+
|
|
let copyData={
|
|
let copyData={
|
|
...response.data,
|
|
...response.data,
|
|
hjqhId:response.data.hjqhId?response.data.hjqhId.split(',')[response.data.hjqhId.split(',').length-1]:'',
|
|
hjqhId:response.data.hjqhId?response.data.hjqhId.split(',')[response.data.hjqhId.split(',').length-1]:'',
|
|
dwqhId:response.data.dwqhId?response.data.dwqhId.split(',')[response.data.dwqhId.split(',').length-1]:'',
|
|
dwqhId:response.data.dwqhId?response.data.dwqhId.split(',')[response.data.dwqhId.split(',').length-1]:'',
|
|
};
|
|
};
|
|
this.copyForm=this.deepCopy(copyData)
|
|
this.copyForm=this.deepCopy(copyData)
|
|
|
|
+ this.form.hjqhId = JSON.stringify(this.form.hjqhId.split(','))
|
|
|
|
+ this.form.dwqhId = JSON.stringify(this.form.dwqhId.split(','))
|
|
this.oldId = id
|
|
this.oldId = id
|
|
this.open = true
|
|
this.open = true
|
|
this.title = '修改评定专家信息'
|
|
this.title = '修改评定专家信息'
|
|
@@ -565,6 +566,8 @@
|
|
const id = row.id || this.ids
|
|
const id = row.id || this.ids
|
|
getPdzj(id).then((response) => {
|
|
getPdzj(id).then((response) => {
|
|
this.form = response.data
|
|
this.form = response.data
|
|
|
|
+ this.form.hjqhId = JSON.stringify(this.form.hjqhId.split(','))
|
|
|
|
+ this.form.dwqhId = JSON.stringify(this.form.dwqhId.split(','))
|
|
this.oldId = id
|
|
this.oldId = id
|
|
this.openXQ=true
|
|
this.openXQ=true
|
|
})
|
|
})
|
|
@@ -673,9 +676,11 @@
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
::v-deep .custom > .el-dialog__body {
|
|
::v-deep .custom > .el-dialog__body {
|
|
height: 780px;
|
|
height: 780px;
|
|
|
|
+ overflow-y: auto;
|
|
}
|
|
}
|
|
::v-deep .custom2 > .el-dialog__body {
|
|
::v-deep .custom2 > .el-dialog__body {
|
|
height: 780px;
|
|
height: 780px;
|
|
|
|
+ overflow-y: auto;
|
|
}
|
|
}
|
|
::v-deep .custom2{
|
|
::v-deep .custom2{
|
|
.el-dialog__body{
|
|
.el-dialog__body{
|