|
@@ -295,6 +295,7 @@
|
|
|
<el-table-column prop="assigneeName" label="处理角色" width="180" />
|
|
|
<el-table-column prop="opTime" label="处理时间" />
|
|
|
</el-table>
|
|
|
+ <el-button class="diobtn" @click="dlogStatus()">查看详情</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
<!-- 查看发起弹窗 -->
|
|
@@ -454,6 +455,23 @@ export default {
|
|
|
}).then((res) => {
|
|
|
this.DoneList = res.data;
|
|
|
});
|
|
|
+ this.$http({
|
|
|
+ url: "/market/cwo/redirectDealPage",
|
|
|
+ method: "post",
|
|
|
+ headers: {
|
|
|
+ "Content-Type": "application/json",
|
|
|
+ },
|
|
|
+ data: {
|
|
|
+ procId: v.procId,
|
|
|
+ },
|
|
|
+ }).then((res) => {
|
|
|
+ this.urlllll = res.data[0].jspUrl;
|
|
|
+ // console.log(this.urlllll)
|
|
|
+ // if(this.urlllll=="#"){
|
|
|
+ // this.urlllll=res.data[1].jspUrl
|
|
|
+ // }
|
|
|
+ console.log(this.urlllll);
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
//我的发起查看按钮
|