Commit 951b397e by denyu

Merge remote-tracking branch 'origin/master'

parents e502893d 8a10cd57
......@@ -75,4 +75,13 @@ export default {
},
async continueEdit(row){
let rtnmsg = await Api.post("sptsel/getPendingData",{params:{'selsptinr':row[0]}})
if (rtnmsg.respCode == "AAAAAA") {
var cacheFileName = rtnmsg.data.cacheFileName;
let viewurl ="/business/ditopn?cacheFileName="+cacheFileName;
this.$router.push(viewurl);
}
}
}
\ No newline at end of file
......@@ -213,7 +213,7 @@ export default {
},
mounted:async function(){
console.log("进入ditopn交易");
let rtnmsg = await this.init()
let rtnmsg = await this.init(this.$route.query)
// let rtnmsg = {respCode: ''}
if(rtnmsg.respCode == SUCCESS)
{
......
......@@ -203,7 +203,16 @@
</el-col>
</el-col>
<c-istream-table :list="stmData.data" :columns="stmData.columns"></c-istream-table>
<c-istream-table :list="stmData.data" :columns="stmData.columns">
<el-table-column
prop="op"
label="OP"
width="100">
<template slot-scope="scope">
<a href="javascript:void(0)" @click="continueEdit(scope.row)">继续编辑</a>
</template>
</el-table-column>
</c-istream-table>
</div>
</template>
<script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment