| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <web-view :src="src"></web-view>
- </template>
- <script>
- import { mapGetters } from 'vuex';
- // import { getSelfInfo } from '@/utils/auth'
- export default {
- data() {
- return {
- src: '',
- roleName: ''
- };
- },
- computed: {
- // ...mapGetters({ userInfo: 'getSelfInfo' })
- },
- onLoad(option) {
- if (option.url) {
- console.log(option.url);
- this.src = decodeURIComponent(option.url);
- }
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function (option) {
- let shareObj = {};
- shareObj = {
- title: this.userInfo.nick_name + this.userInfo.role_name,
- path: `/pages/design/designCompany/indexNew?${params}`
- };
- return shareObj;
- },
- methods: {
- init() {}
- }
- };
- </script>
- <style lang="scss" scoped></style>
|