You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
<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/892282842138808320",
|
|
}
|
|
},
|
|
|
|
created() {
|
|
console.log("aaaaaa",process.env.VUE_APP_REPORT_URL)
|
|
},
|
|
methods: {
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
</style>
|