1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <template>
- <div class="container" id="container">
- <iframe
- height="100%"
- width="100%"
- src="/marketfront/static/views/stockHandle.html"
- frameborder="0"
- :strategyid="strategyId"
- :usrname="usrName"
- :sts="sts"
- :countyFlag="countyFlag"
- :fillFlag = "fillFlag"
- :regionName = "regionName"
- :woName = "woName"
- id="iframeBox"
- ></iframe>
- </div>
- <!-- <div class="container" id="container">
- <iframe
- height="100%"
- width="100%"
- src="/static/views/stockHandle.html"
- frameborder="0"
- :strategyid="strategyId"
- :usrname="usrName"
- :sts="sts"
- :countyFlag="countyFlag"
- :fillFlag = "fillFlag"
- :regionName = "regionName"
- :woName = "woName"
- id="iframeBox"
- ></iframe>
- </div> -->
- </template>
- <script>
- export default {
- data() {
- return {
- strategyId: '',
- usrName:'',
- sts:'',
- query: {},
- countyFlag: '',
- fillFlag:'',
- regionName: '',
- woName: ''
- }
- },
- mounted() {
- if (JSON.stringify(this.$route.query) != "{}") {
- this.strategyId = this.$route.query.strategyId;
- this.usrName = this.$route.query.usrName;
- this.sts = this.$route.query.sts;
- this.countyFlag = this.$route.query.countyFlag;
- this.fillFlag = this.$route.query.fillFlag;
- this.regionName = this.$route.query.regionName;
- this.woName = this.$route.query.woName;
- // this.query = this.$route.query
- }
- }
- };
- </script>
- <style scoped>
- .containerr {
- background: #fff;
- height: calc(100vh);
- width: calc(100vw);
- position: fixed;
- left: 0;
- top: 0;
- overflow: hidden;
- }
- </style>
|