|
@@ -13,7 +13,7 @@
|
|
|
<p>发起人:{{PersonInfo.todoBy.name}}</p>
|
|
|
<p>交办类型:{{PersonInfo.data.assignTypeName}}</p>
|
|
|
<p>问题发生区域:{{PersonInfo.data.problemArea}}</p>
|
|
|
- <p>问题场所:{{}}</p>
|
|
|
+ <p>问题场所:{{PersonInfo.data.siteName}}</p>
|
|
|
<p>详细地址:{{PersonInfo.data.areaSelectName}}</p>
|
|
|
<p>发生时间:{{PersonInfo.data.problemTime}}</p>
|
|
|
<p>截止时间:{{PersonInfo.data.deadlineTime}}</p>
|
|
@@ -49,14 +49,14 @@ export default {
|
|
|
createDepartment:{},
|
|
|
todoBy:{}
|
|
|
})
|
|
|
+ //数据接收
|
|
|
onMounted(()=>{
|
|
|
var item = JSON.parse(router.currentRoute.value.query.data)
|
|
|
PersonInfo.data = item;
|
|
|
PersonInfo.createDepartment = PersonInfo.data.createDepartment
|
|
|
PersonInfo.todoBy = PersonInfo.data.todoBy
|
|
|
- console.log(PersonInfo.data);
|
|
|
+
|
|
|
})
|
|
|
- // console.log(PersonInfo.data);
|
|
|
//返回事件
|
|
|
const goback = () => {
|
|
|
history.back();
|