1234567891011121314151617181920212223 |
- <template>
- <view>
- <web-view :src="href"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- href: "http://ningdongyunying.nxjiewei.com:8011" + '/admin/article/list/view?id='
- // href:"http://webdevelop.nxjiewei.com/assets/html/news/#/pages/detail/detail?id="
- };
- },
- onLoad(option) {
- this.href = this.href + option.id
- }
- }
- </script>
- <style lang="scss">
- </style>
|