123456789101112131415161718192021222324252627282930313233 |
- <template>
- <iframe
- :src="`https://biking.okenx.com/biking/kline.html?legal_id=${currencyVal.legal_id}¤cy_id=${currencyVal.currency_id}&symbol=${currencyVal.currency_name}/${currencyVal.legal_name}`"
- frameborder="0"></iframe>
- <!-- <web-view :src="'/k/index.html' + `?legal_id=${currencyVal.legal_id}¤cy_id=${currencyVal.currency_id}&symbol=${currencyVal.currency_name}/${currencyVal.legal_name}`"></web-view> -->
- <!-- <web-view src="/hybrid/html/local.html"></web-view> -->
- </template>
- <script>
- import {
- mapGetters
- } from 'vuex'
- export default {
- name: "k-line",
- data() {
- return {
- };
- },
- computed: {
- ...mapGetters([
- 'currencyVal'
- ]),
- },
- }
- </script>
- <style lang="scss" scoped>
- iframe {
- width: 100%;
- height: 100%;
- }
- </style>
|