selectSite.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <template>
  2. <span>
  3. <a-select show-search
  4. option-filter-prop="children"
  5. :filterOption="filterOption"
  6. v-model="siteCode" @change="changeUser" :style="'width:'+selectWidth">
  7. <a-select-option v-for="data in siteinfo" :key="data.code" :value="data.code" :info="data">
  8. {{ data.name }}
  9. </a-select-option>
  10. </a-select>
  11. <a-modal
  12. title="温馨提示"
  13. :visible="visible"
  14. :closable="false"
  15. :keyboard="false"
  16. :maskClosable="false"
  17. :footer="null"
  18. centered
  19. dialogClass="wp-tips"
  20. >
  21. <div style="text-align: center;line-height: 2">
  22. <p>您当前选择的是 WordPress 嵌套网站,需要在系统操作之前,请返回首页重新选择站点操作。本网站的产品类型是 {{
  23. productType
  24. }}。</p>
  25. <router-link :to="{ path: '/websiteManage/dashboard/analysis' }">
  26. <a-button type="primary">返回首页</a-button>
  27. </router-link>
  28. </div>
  29. </a-modal>
  30. </span>
  31. </template>
  32. <script>
  33. import {getAction, postAction} from '/@/api/manage/manage'
  34. import {useMessage} from '/@/hooks/web/useMessage';
  35. const {createMessage, createConfirm} = useMessage();
  36. export default {
  37. data() {
  38. return {
  39. siteinfo: [],
  40. siteCode: '',
  41. selectSiteInfo: {},
  42. visible: false,
  43. productType: ''
  44. }
  45. },
  46. props: {
  47. comProps: {},
  48. siteListUrl: {
  49. default: '/adweb/adwebSite/getSiteListByUid'
  50. },
  51. selectWidth: {
  52. default: '300px'
  53. }
  54. },
  55. mounted() {
  56. this.getSiteInfo()
  57. },
  58. methods: {
  59. //进入获取站点code
  60. getSiteInfo() {
  61. let route = this.$route.name
  62. let that = this
  63. getAction(that.siteListUrl).then(function (res) {
  64. if (res.code == 200) {
  65. that.siteinfo = res.result
  66. let isInSite = false
  67. for (let i in res.result) {
  68. if (localStorage.getItem('siteCode') !== null && res.result[i].code === localStorage.getItem('siteCode')) {
  69. isInSite = true
  70. that.selectSiteInfo = res.result[i]
  71. }
  72. }
  73. if (localStorage.getItem('siteCode') !== null && isInSite) {
  74. that.siteCode = localStorage.getItem("siteCode")
  75. } else {
  76. that.siteCode = res.result[0].code
  77. that.selectSiteInfo = res.result[0]
  78. localStorage.setItem("siteCode", res.result[0].code)
  79. }
  80. that.$nextTick(() => {
  81. that.$emit('setSiteInfo', res.result, that.selectSiteInfo)
  82. })
  83. // if(route == 'websiteManage-dashboard-analysis'){
  84. // that.getPermissionList(that.siteCode)
  85. // }
  86. // that.getAllInfo()
  87. } else {
  88. createMessage.error('站点获取失败,请刷新重试');
  89. }
  90. })
  91. },
  92. //改变站点
  93. changeUser(value, e) {
  94. let that = this
  95. let route = this.$route.name
  96. that.siteCode = value
  97. localStorage.setItem("siteCode", value)
  98. postAction('/adweb/adwebSiteManage/queryWordPressConfig', {siteCode: value}).then(function (res) {
  99. if (res.code == 200 && res.result.wordpressSwitch && res.result.wordpressSwitch == 1
  100. && (route == 'pageManage-allPage'
  101. || route == 'pageManage-addPage'
  102. || route == 'website-enterpriseInfo-baseInfo'
  103. || route == 'website-enterpriseInfo-bannerAdv'
  104. || route == 'website-enterpriseInfo-customRevier'
  105. || route == 'website-enterpriseInfo-enterpriseintroduction'
  106. || route == 'company-advantage'
  107. || route == 'website-enterpriseInfo-projectApplication'
  108. || route == 'website-enterpriseInfo-honor'
  109. || route == 'website-productSummary-productList5684'
  110. || route == 'website-productSummary-category'
  111. || route == 'website-productSummary-productsTag'
  112. || route == 'product-draft'
  113. || route == 'website-productSummary-productList'
  114. || route == 'website-productSummary-downloadDocument'
  115. || route == 'website-productSummary-faq'
  116. || route == 'website-productSummary-productAdd'
  117. || route == 'website-newsSummary-category'
  118. || route == 'website-newsSummary-contentTag'
  119. || route == 'website-newsSummary-AdwebMaterialNewsList'
  120. || route == 'websit-newsSummary-addContent'
  121. || route == 'website-enterpriseInfo-enterprisehistory'
  122. || route == 'website-enterpriseInfo-FactoryEnvironment'
  123. || route == 'website-enterpriseInfo-serviceGuarantee'
  124. || route == 'website-enterpriseInfo-QuestionList'
  125. || route == 'website-enterpriseInfo-socialmedialinks'
  126. || route == 'website-productSummary-category1'
  127. || route == 'website-productSummary-productList1'
  128. || route == 'website-newsSummary-category1'
  129. || route == 'operate-blog-update')
  130. ) {
  131. that.productType = res.result.productType
  132. that.visible = true;
  133. } else {
  134. // that.getPermissionList(value)
  135. that.$emit('comMethods', value, e)
  136. }
  137. })
  138. },
  139. //站点搜索
  140. filterOption(input, option) {
  141. return `${option.info.name}`.toLowerCase().includes(`${input || ''}`.toLowerCase())
  142. },
  143. // getPermissionList(value){
  144. // let that = this
  145. // that.$store.dispatch('GetPermissionList', value).then(res => {
  146. // const menuData = res.result.menu;
  147. // if (menuData === null || menuData === "" || menuData === undefined) {
  148. // return;
  149. // }
  150. // let constRoutes = [];
  151. // constRoutes = generateIndexRouter(menuData);
  152. // that.$store.dispatch('UpdateAppRouter', { constRoutes }).then(() => {
  153. // router.addRoutes(store.getters.addRouters)
  154. // })
  155. // })
  156. // }
  157. }
  158. }
  159. </script>
  160. <style lang="less">
  161. .wp-tips {
  162. .ant-modal-header {
  163. padding: 10px;
  164. }
  165. .ant-modal-body {
  166. padding: 24px;
  167. p {
  168. margin-bottom: 10px;
  169. }
  170. }
  171. }
  172. </style>