|
|
|
@ -7,7 +7,21 @@
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
name: "PopupOfficeApp",
|
|
|
|
|
props: ['appId', 'notice_id'],
|
|
|
|
|
props: [
|
|
|
|
|
'appId',
|
|
|
|
|
'notice_id',
|
|
|
|
|
//公文办理使用
|
|
|
|
|
'data_flag',
|
|
|
|
|
'flow_id',
|
|
|
|
|
'run_id',
|
|
|
|
|
'step_id',
|
|
|
|
|
'person_id',
|
|
|
|
|
'operator_flag',
|
|
|
|
|
'run_node_id',
|
|
|
|
|
'run_status',
|
|
|
|
|
'run_name',
|
|
|
|
|
'flow_sequence',
|
|
|
|
|
],
|
|
|
|
|
data: function () {
|
|
|
|
|
return {
|
|
|
|
|
url: this.BaseConfig.contextpath + '/pro_integration/reactProject/dailyOfficeWork/index.html?isShowMenu=false&showDetailApp=true&appId=' + this.appId
|
|
|
|
@ -22,6 +36,26 @@
|
|
|
|
|
case "view_public_notice":
|
|
|
|
|
this.url += "¬ice_id=" + this.$props.notice_id;
|
|
|
|
|
break;
|
|
|
|
|
case "handle_document"://公文办理
|
|
|
|
|
/*
|
|
|
|
|
* data_flag
|
|
|
|
|
* flow_id
|
|
|
|
|
* run_id
|
|
|
|
|
* step_id
|
|
|
|
|
* person_id
|
|
|
|
|
* */
|
|
|
|
|
this.url +=
|
|
|
|
|
"&data_flag=" + this.$props.data_flag +
|
|
|
|
|
"&flow_id=" + this.$props.flow_id +
|
|
|
|
|
"&run_id=" + this.$props.run_id +
|
|
|
|
|
"&step_id=" + this.$props.step_id +
|
|
|
|
|
"&operator_flag=" + this.$props.operator_flag +
|
|
|
|
|
"&run_node_id=" + this.$props.run_node_id +
|
|
|
|
|
"&run_status=" + this.$props.run_status +
|
|
|
|
|
"&run_name=" + this.$props.run_name +
|
|
|
|
|
"&flow_sequence=" + this.$props.flow_sequence +
|
|
|
|
|
"&person_id=" + this.$props.person_id;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|