3 changed files with 94 additions and 48 deletions
@ -0,0 +1,56 @@ |
|||||
|
<template> |
||||
|
<div class="main-content"> |
||||
|
<!-- <div class="container"> |
||||
|
<div class="tab-header"> |
||||
|
<el-form :inline="true" :model="page.params" class="demo-form-inline"> |
||||
|
<el-row :gutter="20"> |
||||
|
<el-col :span="21"> |
||||
|
<el-form-item label="起始序列号"> |
||||
|
<el-input v-model="page.params.startnum" placeholder="" clearable /> |
||||
|
|
||||
|
</el-form-item> |
||||
|
<el-form-item label="结束序列号"> |
||||
|
<el-input v-model="page.params.endnum" placeholder="" clearable /> |
||||
|
|
||||
|
</el-form-item> |
||||
|
<el-button type="primary" @click="getPageList()">预 览</el-button> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
</el-form> |
||||
|
</div> |
||||
|
--> |
||||
|
<div style="margin-top: 20px; width: 100%;height: 100%;"> |
||||
|
<iframe :src="spUrl" id="ysOpenDevice" width="100%" height="100%" allowfullscreen> |
||||
|
</iframe> |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
name: 'SupplierBankInfoIndex', |
||||
|
data() { |
||||
|
return { |
||||
|
page:{ |
||||
|
params:{ |
||||
|
startnum:"", |
||||
|
endnum:"" |
||||
|
} |
||||
|
}, |
||||
|
spUrl:process.env.VUE_APP_REPORT_URL+ "/jmreport/view/905306587114299392", |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
created() { |
||||
|
console.log("aaaaaa",process.env.VUE_APP_REPORT_URL) |
||||
|
}, |
||||
|
methods: { |
||||
|
|
||||
|
|
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
<style scoped> |
||||
|
</style> |
Loading…
Reference in new issue