selectSite.vue 6.0 KB

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