123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <template>
- <span>
- <a-select show-search
- option-filter-prop="children"
- :filterOption="filterOption"
- v-model="siteCode" @change="changeUser" :style="'width:'+selectWidth">
- <a-select-option v-for="data in siteinfo" :key="data.code" :value="data.code" :info="data">
- {{ data.name }}
- </a-select-option>
- </a-select>
- <a-modal
- title="温馨提示"
- :visible="visible"
- :closable="false"
- :keyboard="false"
- :maskClosable="false"
- :footer="null"
- centered
- dialogClass="wp-tips"
- >
- <div style="text-align: center;line-height: 2">
- <p>您当前选择的是 WordPress 嵌套网站,需要在系统操作之前,请返回首页重新选择站点操作。本网站的产品类型是 {{
- productType
- }}。</p>
- <router-link :to="{ path: '/websiteManage/dashboard/analysis' }">
- <a-button type="primary">返回首页</a-button>
- </router-link>
- </div>
- </a-modal>
- </span>
- </template>
- <script>
- import {getAction, postAction} from '/@/api/manage/manage'
- import {useMessage} from '/@/hooks/web/useMessage';
- const {createMessage, createConfirm} = useMessage();
- export default {
- data() {
- return {
- siteinfo: [],
- siteCode: '',
- selectSiteInfo: {},
- visible: false,
- productType: ''
- }
- },
- props: {
- comProps: {},
- siteListUrl: {
- default: '/adweb/adwebSite/getSiteListByUid'
- },
- selectWidth: {
- default: '300px'
- }
- },
- mounted() {
- this.getSiteInfo()
- },
- methods: {
- //进入获取站点code
- getSiteInfo() {
- let route = this.$route.name
- let that = this
- getAction(that.siteListUrl).then(function (res) {
- if (res.code == 200) {
- that.siteinfo = res.data
- let isInSite = false
- for (let i in res.data) {
- if (localStorage.getItem('siteCode') !== null && res.data[i].code === localStorage.getItem('siteCode')) {
- isInSite = true
- that.selectSiteInfo = res.data[i]
- }
- }
- if (localStorage.getItem('siteCode') !== null && isInSite) {
- that.siteCode = localStorage.getItem("siteCode")
- } else {
- that.siteCode = res.data[0].code
- that.selectSiteInfo = res.data[0]
- localStorage.setItem("siteCode", res.data[0].code)
- }
- that.$nextTick(() => {
- that.$emit('setSiteInfo', res.data, that.selectSiteInfo)
- })
- // if(route == 'websiteManage-dashboard-analysis'){
- // that.getPermissionList(that.siteCode)
- // }
- // that.getAllInfo()
- } else {
- createMessage.error('站点获取失败,请刷新重试');
- }
- })
- },
- //改变站点
- changeUser(value, e) {
- let that = this
- let route = this.$route.name
- that.siteCode = value
- localStorage.setItem("siteCode", value)
- postAction('/adweb/adwebSiteManage/queryWordPressConfig', {siteCode: value}).then(function (res) {
- if (res.code == 200 && res.result.wordpressSwitch && res.result.wordpressSwitch == 1
- && (route == 'pageManage-allPage'
- || route == 'pageManage-addPage'
- || route == 'website-enterpriseInfo-baseInfo'
- || route == 'website-enterpriseInfo-bannerAdv'
- || route == 'website-enterpriseInfo-customRevier'
- || route == 'website-enterpriseInfo-enterpriseintroduction'
- || route == 'company-advantage'
- || route == 'website-enterpriseInfo-projectApplication'
- || route == 'website-enterpriseInfo-honor'
- || route == 'website-productSummary-productList5684'
- || route == 'website-productSummary-category'
- || route == 'website-productSummary-productsTag'
- || route == 'product-draft'
- || route == 'website-productSummary-productList'
- || route == 'website-productSummary-downloadDocument'
- || route == 'website-productSummary-faq'
- || route == 'website-productSummary-productAdd'
- || route == 'website-newsSummary-category'
- || route == 'website-newsSummary-contentTag'
- || route == 'website-newsSummary-AdwebMaterialNewsList'
- || route == 'websit-newsSummary-addContent'
- || route == 'website-enterpriseInfo-enterprisehistory'
- || route == 'website-enterpriseInfo-FactoryEnvironment'
- || route == 'website-enterpriseInfo-serviceGuarantee'
- || route == 'website-enterpriseInfo-QuestionList'
- || route == 'website-enterpriseInfo-socialmedialinks'
- || route == 'website-productSummary-category1'
- || route == 'website-productSummary-productList1'
- || route == 'website-newsSummary-category1'
- || route == 'operate-blog-update')
- ) {
- that.productType = res.result.productType
- that.visible = true;
- } else {
- // that.getPermissionList(value)
- that.$emit('comMethods', value, e)
- }
- })
- },
- //站点搜索
- filterOption(input, option) {
- return `${option.info.name}`.toLowerCase().includes(`${input || ''}`.toLowerCase())
- },
- // getPermissionList(value){
- // let that = this
- // that.$store.dispatch('GetPermissionList', value).then(res => {
- // const menuData = res.result.menu;
- // if (menuData === null || menuData === "" || menuData === undefined) {
- // return;
- // }
- // let constRoutes = [];
- // constRoutes = generateIndexRouter(menuData);
- // that.$store.dispatch('UpdateAppRouter', { constRoutes }).then(() => {
- // router.addRoutes(store.getters.addRouters)
- // })
- // })
- // }
- }
- }
- </script>
- <style lang="less">
- .wp-tips {
- .ant-modal-header {
- padding: 10px;
- }
- .ant-modal-body {
- padding: 24px;
- p {
- margin-bottom: 10px;
- }
- }
- }
- </style>
|