Order.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <a-card :bordered="false">
  3. <!-- 查询区域 -->
  4. <div class="table-page-search-wrapper" v-if="isShowSelect">
  5. <select-site ref="selectSiteRef" @set-site-info="setSiteInfo" select-width="100%" label="站点选择" />
  6. </div>
  7. <!-- 查询区域-END -->
  8. <a-spin :spinning="confirmLoading">
  9. <iframe
  10. v-if="showiIrame"
  11. ref="iframeRef"
  12. :src="srcUrl"
  13. height="100%"
  14. width="100%"
  15. :style="{ height: iframeHeight + 'px', border: 0, 'overflow-y': 'scroll' }"
  16. >
  17. </iframe>
  18. <a-result
  19. status="403"
  20. v-else-if="showNoResult"
  21. title="网站尚未设置用于处理订单的URL"
  22. :style="{ height: iframeHeight + 'px', border: 0, 'overflow-y': 'scroll' }"
  23. />
  24. </a-spin>
  25. </a-card>
  26. </template>
  27. <script lang="ts" name="SiteOrderData" setup>
  28. import { getAction } from '/@/api/manage/manage';
  29. import { computed, nextTick, onBeforeMount, onMounted, reactive, ref } from 'vue';
  30. import { RoleEnum } from '@/enums/roleEnum';
  31. import { getTenantById } from '@/views/system/tenant/tenant.api';
  32. import { getAuthCache } from '@/utils/auth';
  33. import { TENANT_ID } from '@/enums/cacheEnum';
  34. import { useUserStore } from '/src/store/modules/user';
  35. import SelectSite from '@/components/Adweb/selectSite.vue';
  36. const srcUrl = ref('');
  37. const showiIrame = ref(false);
  38. const showNoResult = ref(false);
  39. const confirmLoading = ref(false);
  40. const isShowSelect = ref(false);
  41. const windowHeight = ref(window.innerHeight);
  42. const iframeHeight = ref(window.innerHeight);
  43. const userStore = useUserStore();
  44. const iframeRef = ref();
  45. // 管理员角色
  46. const isAdmin = computed(() => {
  47. return (
  48. userStore.getRoleList.includes(RoleEnum.ADWEB_CHANNEL_ADMIN) ||
  49. userStore.getRoleList.includes(RoleEnum.ADMIN) ||
  50. userStore.getRoleList.includes(RoleEnum.ADWEB_ADMIN) ||
  51. userStore.getRoleList.includes(RoleEnum.SEO_ADMIN) ||
  52. userStore.getRoleList.includes(RoleEnum.ADWEB_SITE_MANAGER) ||
  53. userStore.getRoleList.includes(RoleEnum.ADWEB_SEO_MANAGER)
  54. );
  55. });
  56. // 是否是苏豪纺织的租户
  57. const isSohoeb2b = ref(false);
  58. onBeforeMount(async () => {
  59. isSohoeb2bTenant();
  60. });
  61. onMounted(() => {
  62. window.addEventListener('resize', () => {
  63. windowHeight.value = window.innerHeight;
  64. iframeHeight.value = isShowSelect.value ? windowHeight.value - 59 - 24 - 24 - 20 - 44 : windowHeight.value - 59 - 24 - 24 - 20;
  65. });
  66. iframeHeight.value = isShowSelect.value ? windowHeight.value - 59 - 24 - 24 - 20 - 44 : windowHeight.value - 59 - 24 - 24 - 20;
  67. });
  68. // 判断当前登录的租户是否是苏豪通的租户
  69. function isSohoeb2bTenant() {
  70. getTenantById({ id: getAuthCache(TENANT_ID) }).then((res) => {
  71. isSohoeb2b.value = res.name.includes('苏豪纺织集团');
  72. // 针对租户管理员,并且是苏豪纺织的租户
  73. if (isAdmin.value && isSohoeb2b.value) {
  74. isShowSelect.value = true;
  75. }
  76. });
  77. }
  78. // 调用方法
  79. function iframeLoad() {
  80. nextTick(() => {
  81. confirmLoading.value = true;
  82. const iframe = iframeRef.value;
  83. iframe.onload = () => {
  84. confirmLoading.value = false;
  85. };
  86. });
  87. }
  88. function setSiteInfo() {
  89. confirmLoading.value = true;
  90. let url = location.href;
  91. let i = url.lastIndexOf('/');
  92. let siteId = url.substring(i + 1, url.length);
  93. let siteCode = '';
  94. if (localStorage.getItem('siteCode') !== null) {
  95. siteCode = localStorage.getItem('siteCode');
  96. }
  97. getAction('/adweb/adwebSiteManage/getSiteOrderInfo?siteCode=' + siteCode, {}).then(function (res) {
  98. if (res.code == 200) {
  99. showiIrame.value = true;
  100. srcUrl.value = res.result.orderUrl;
  101. iframeLoad();
  102. } else {
  103. showiIrame.value = false;
  104. showNoResult.value = true;
  105. confirmLoading.value = false;
  106. }
  107. });
  108. }
  109. </script>
  110. <style scoped>
  111. .table-page-search-wrapper {
  112. margin-bottom: 20px;
  113. :deep(.ant-form-item-label) {
  114. width: 100px;
  115. text-align: left;
  116. }
  117. :deep(.ant-form-item-control) {
  118. width: 30%;
  119. min-width: 200px;
  120. flex-grow: initial;
  121. }
  122. }
  123. </style>