|
@@ -119,7 +119,7 @@
|
|
</div>
|
|
</div>
|
|
<!--动态信息-->
|
|
<!--动态信息-->
|
|
<el-dialog
|
|
<el-dialog
|
|
- width="30%"
|
|
|
|
|
|
+ width="40%"
|
|
title="查看动态信息"
|
|
title="查看动态信息"
|
|
:visible.sync="dialogFormVisible"
|
|
:visible.sync="dialogFormVisible"
|
|
:append-to-body="true"
|
|
:append-to-body="true"
|
|
@@ -138,7 +138,9 @@
|
|
{{ SettledCompanyDynamicsList.city }}
|
|
{{ SettledCompanyDynamicsList.city }}
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="附件" :label-width="formLabelWidth">
|
|
<el-form-item label="附件" :label-width="formLabelWidth">
|
|
- <img width="50%" :src="SettledCompanyDynamicsList.address" alt />
|
|
|
|
|
|
+ <div :key="index" v-for="(item, index) in SettledCompanyDynamicsList.address">
|
|
|
|
+ <img style="float:left" v-if="item" :src="item" class="avatar">
|
|
|
|
+ </div>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -256,6 +258,9 @@ export default {
|
|
// }
|
|
// }
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ // close(index) {
|
|
|
|
+ // this.addressUrls.splice(index, 1)
|
|
|
|
+ // },
|
|
//删除
|
|
//删除
|
|
deleteclick(row) {
|
|
deleteclick(row) {
|
|
this.$confirm(`动态信息删除后不可恢复,是否确定删除?`, {
|
|
this.$confirm(`动态信息删除后不可恢复,是否确定删除?`, {
|
|
@@ -284,6 +289,9 @@ export default {
|
|
.toPromise()
|
|
.toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
this.SettledCompanyDynamicsList = response
|
|
this.SettledCompanyDynamicsList = response
|
|
|
|
+ if(response.address!=null){
|
|
|
|
+ this.SettledCompanyDynamicsList.address=response.address.split(',')
|
|
|
|
+ }
|
|
this.id = response.id
|
|
this.id = response.id
|
|
})
|
|
})
|
|
this.dialogFormVisible = true
|
|
this.dialogFormVisible = true
|
|
@@ -603,4 +611,9 @@ export default {
|
|
/deep/.typeselect .el-input__inner {
|
|
/deep/.typeselect .el-input__inner {
|
|
color: #8890b1;
|
|
color: #8890b1;
|
|
}
|
|
}
|
|
|
|
+.avatar {
|
|
|
|
+ width: 178px;
|
|
|
|
+ height: 178px;
|
|
|
|
+ display: block;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|