Explorar el Código

移除预览站点功能

chenlei1231 hace 4 meses
padre
commit
b8cd83349c

+ 0 - 231
src/views/adweb/theme/AdwebThemeListCopy.vue

@@ -1,231 +0,0 @@
-<template>
-  <div class="p-2">
-    <!--查询区域-->
-    <div class="jeecg-basic-table-form-container">
-      <a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
-        <a-row :gutter="24" />
-      </a-form>
-    </div>
-    <!--引用表格-->
-    <!--    <AdwebThemeCList></AdwebThemeCList>-->
-    <BasicTable @register="registerTable" :rowSelection="rowSelection">
-      <!--插槽:table标题-->
-      <template #tableTitle>
-        <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
-        <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
-        <j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
-        <a-dropdown v-if="selectedRowKeys.length > 0">
-          <template #overlay>
-            <a-menu>
-              <a-menu-item key="1" @click="batchHandleDelete">
-                <Icon icon="ant-design:delete-outlined" />
-                删除
-              </a-menu-item>
-            </a-menu>
-          </template>
-          <a-button
-            >批量操作
-            <Icon icon="mdi:chevron-down" />
-          </a-button>
-        </a-dropdown>
-        <!-- 高级查询 -->
-        <super-query :config="superQueryConfig" @search="handleSuperQuery" />
-      </template>
-      <!--操作栏-->
-      <template #action="{ record }">
-        <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
-      </template>
-      <template #bodyCell="{ column, record, index, text }"> </template>
-    </BasicTable>
-    <!-- 表单区域 -->
-    <AdwebThemeModal ref="registerModal" @success="handleSuccess" />
-  </div>
-</template>
-
-<script lang="ts" name="adweb-adwebTheme" setup>
-  import { reactive, ref } from 'vue';
-  import { BasicTable, TableAction } from '/@/components/Table';
-  import { useListPage } from '/@/hooks/system/useListPage';
-  import { columns, superQuerySchema } from './AdwebTheme.data';
-  import { batchDelete, deleteOne, getExportUrl, getImportUrl, list } from './AdwebTheme.api';
-  import AdwebThemeModal from './components/AdwebThemeModal.vue';
-  import { useUserStore } from '/@/store/modules/user';
-
-  const formRef = ref();
-  const queryParam = reactive<any>({});
-  const toggleSearchStatus = ref<boolean>(false);
-  const registerModal = ref();
-  const userStore = useUserStore();
-  //注册table数据
-  const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
-    tableProps: {
-      title: 'adweb主题库',
-      api: list,
-      columns,
-      canResize: false,
-      useSearchForm: false,
-      actionColumn: {
-        width: 120,
-        fixed: 'right',
-      },
-      beforeFetch: (params) => {
-        return Object.assign(params, queryParam);
-      },
-    },
-    exportConfig: {
-      name: 'adweb主题库',
-      url: getExportUrl,
-      params: queryParam,
-    },
-    importConfig: {
-      url: getImportUrl,
-      success: handleSuccess,
-    },
-  });
-  const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] =
-    tableContext;
-  const labelCol = reactive({
-    xs: 24,
-    sm: 4,
-    xl: 6,
-    xxl: 4,
-  });
-  const wrapperCol = reactive({
-    xs: 24,
-    sm: 20,
-  });
-
-  // 高级查询配置
-  const superQueryConfig = reactive(superQuerySchema);
-
-  /**
-   * 高级查询事件
-   */
-  function handleSuperQuery(params) {
-    Object.keys(params).map((k) => {
-      queryParam[k] = params[k];
-    });
-    searchQuery();
-  }
-
-  /**
-   * 新增事件
-   */
-  function handleAdd() {
-    registerModal.value.disableSubmit = false;
-    registerModal.value.add();
-  }
-
-  /**
-   * 编辑事件
-   */
-  function handleEdit(record: Recordable) {
-    registerModal.value.disableSubmit = false;
-    registerModal.value.edit(record);
-  }
-
-  /**
-   * 详情
-   */
-  function handleDetail(record: Recordable) {
-    registerModal.value.disableSubmit = true;
-    registerModal.value.edit(record);
-  }
-
-  /**
-   * 删除事件
-   */
-  async function handleDelete(record) {
-    await deleteOne({ id: record.id }, handleSuccess);
-  }
-
-  /**
-   * 批量删除事件
-   */
-  async function batchHandleDelete() {
-    await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
-  }
-
-  /**
-   * 成功回调
-   */
-  function handleSuccess() {
-    (selectedRowKeys.value = []) && reload();
-  }
-
-  /**
-   * 操作栏
-   */
-  function getTableAction(record) {
-    return [
-      {
-        label: '编辑',
-        onClick: handleEdit.bind(null, record),
-      },
-    ];
-  }
-
-  /**
-   * 下拉操作栏
-   */
-  function getDropDownAction(record) {
-    return [
-      {
-        label: '详情',
-        onClick: handleDetail.bind(null, record),
-      },
-      {
-        label: '删除',
-        popConfirm: {
-          title: '是否确认删除',
-          confirm: handleDelete.bind(null, record),
-          placement: 'topLeft',
-        },
-      },
-    ];
-  }
-
-  /**
-   * 查询
-   */
-  function searchQuery() {
-    reload();
-  }
-
-  /**
-   * 重置
-   */
-  function searchReset() {
-    formRef.value.resetFields();
-    selectedRowKeys.value = [];
-    //刷新数据
-    reload();
-  }
-</script>
-
-<style lang="less" scoped>
-  .jeecg-basic-table-form-container {
-    padding: 0;
-    .table-page-search-submitButtons {
-      display: block;
-      margin-bottom: 24px;
-      white-space: nowrap;
-    }
-    .query-group-cust {
-      min-width: 100px !important;
-    }
-    .query-group-split-cust {
-      width: 30px;
-      display: inline-block;
-      text-align: center;
-    }
-    .ant-form-item:not(.ant-form-item-with-help) {
-      margin-bottom: 16px;
-      height: 32px;
-    }
-    :deep(.ant-picker),
-    :deep(.ant-input-number) {
-      width: 100%;
-    }
-  }
-</style>

+ 1 - 1
src/views/adweb/theme/components/AdwebCreateSite.vue

@@ -185,7 +185,7 @@
 
   //wp站点创建成功预览
   function toMyWPSite() {
-    return window.open('http://' + newCreateSiteInfo.value, '_blank');
+    return;
   }
 
   //wp站点创建

+ 0 - 685
src/views/adweb/theme/components/AdwebThemeCList.vue

@@ -1,685 +0,0 @@
-<template>
-  <a-row>
-    <a-col class="theme-wrap">
-      <a-col class="tag-wrap">
-        <a-button type="link" v-for="(item,index) in templateTag" :key="item.tagValue"
-                  @click="showTemplate(item.tagValue,index)" :class="{act:index==ins}">
-          {{ item.tagName }}({{ item.templateCount }})
-        </a-button>
-      </a-col>
-      <a-list
-        :grid="{ gutter: 16, column: 4 }"
-        :data-source="dataSource"
-        :loading="loading"
-        class="j-table-force-nowrap template_list" :style="{height:'100%'}">
-        <a-list-item slot="renderItem" slot-scope="item, index">
-          <a-card :title="item.name +'-'+item.templateTags_dictText" class="text-center">
-            <div class="item" @mouseover="hoverThis()">
-              <div class="Pic">
-                <a class="img">
-                  <img v-if="checkUrl(item.images)" v-lazy="domainUrl+'/sys/common/static/'+item.images"
-                       :key="item.code" :alt="item.name" />
-                  <img v-else v-lazy=item.images />
-                </a>
-                <template v-if="item.putaway == 1 && item.externalTemplate != 1 && item.developmentStatus != 1">
-                  <div class="Content">
-                    <a-button class="fl" block @click="visit(item)">模板预览</a-button>
-                    <a-button v-has="'show:createSite'" type="primary" block class="fr" @click="createSite(item)">创建站点</a-button>
-                  </div>
-                </template>
-                <template v-else-if="item.putaway == 1 && item.developmentStatus  == 1 && item.siteType == 3 && (item.externalTemplateUrl == null || item.externalTemplateUrl == '')">
-                  <div class="Content">
-                    <a-button type="primary" block @click="visitImage(item)">模板预览</a-button>
-                  </div>
-                </template>
-                <template v-else-if="item.putaway == 1 && item.developmentStatus  == 1 && item.siteType == 3 && item.externalTemplateUrl != null && item.externalTemplateUrl != ''">
-                  <div class="Content">
-                    <a-button type="primary" block @click="visitOut(item)">模板预览</a-button>
-                  </div>
-                </template>
-                <template v-else-if="item.putaway == 1 && item.externalTemplate == 1 && item.externalTemplateUrl != null">
-                  <div class="Content">
-                    <a-button type="primary" block @click="visitOut(item)">模板预览</a-button>
-                  </div>
-                </template>
-                <template v-else-if="item.putaway == 1 && item.externalTemplate == 1 && (item.externalTemplateUrl == null || item.externalTemplateUrl == '')">
-                  <div class="Content">
-                    <a-button type="dashed" block>bb敬请期待</a-button>
-                  </div>
-                </template>
-                <template v-else-if="item.putaway == 1 && item.developmentStatus  == 1 && item.siteType == 3">
-                  <div class="Content">
-                    <a-button type="dashed" block>{{item.externalTemplateUrl}}敬请期待 {{item.siteType}}</a-button>
-                  </div>
-                </template>
-              </div>
-              <div class="clear"></div>
-            </div>
-          </a-card>
-        </a-list-item>
-      </a-list>
-      <a-modal
-        v-model="modalVisible"
-        :title="modalTitle"
-        centered
-        :confirm-loading="confirmLoading"
-        @ok="handleOk"
-        @cancel="handleCancel"
-        :closable="false"
-        :keyboard="false"
-        :maskClosable="false"
-        width="50%"
-        :ok-button-props="okBtnStatus"
-        :cancel-button-props="cancelBtnStatus"
-        :okText="okText"
-        :cancelText="cancelText"
-      >
-        <template v-if="showCreateSite">
-          <a-spin :spinning="spinning" :tip="tipTitle">
-            <a-form-model
-              ref="createSiteForms"
-              :model="createSiteForm"
-              :rules="createSiteFormRules"
-              :label-col="labelCol"
-              :wrapper-col="wrapperCol"
-            >
-              <a-form-model-item>
-                我们将为您新建站点,稍后请移至“站群管理”对网站内容进行编辑<br />
-                在建站完成后,需要您将域名解析到指定的CNAME将网站发布上线<br />
-                您可在“站群管理”中查看建站进度和CNAME
-              </a-form-model-item>
-              <a-form-model-item ref="name" label="用户名称" prop="uid">
-                <a-select v-model="createSiteForm.uid"
-                          show-search
-                          :filter-option="filterOption"
-                          placeholder="请选择用户名称">
-                  <a-select-option v-for="user in userList"
-                                   :key="user.id"
-                                   :value="user.id">
-                    {{ user.realname }}
-                  </a-select-option>
-                </a-select>
-              </a-form-model-item>
-              <a-form-model-item ref="name" label="站点名称" prop="name">
-                <a-input v-model="createSiteForm.name" placeholder="请输入站点名称" />
-              </a-form-model-item>
-              <a-form-model-item ref="languageCode" label="站点语言" prop="languageCode">
-                <j-search-select-tag placeholder="请选择站点语言" v-model="createSiteForm.languageCode"
-                                     dict="adweb_language" />
-              </a-form-model-item>
-              <a-form-model-item ref="planId" label="营销方案" prop="planId">
-                <a-row :gutter="8">
-                  <a-col :span="21">
-                    <j-search-select-tag
-                      placeholder="请选择营销方案"
-                      v-model="createSiteForm.planId"
-                      dict="seo_market_plan,plan_name,id,status=1"
-                    />
-                  </a-col>
-                  <a-col :span="3">
-                    <router-link :to="{ path: '/deliver/serp/seoMarketPlan/list',query:{from:'themeList'}}">
-                      <a-button type="primary" block>新增</a-button>
-                    </router-link>
-                  </a-col>
-                </a-row>
-              </a-form-model-item>
-
-              <a-form-model-item label="赠送天数"  prop="giveDay" v-show="createSiteForm.planId!==undefined">
-                <a-input-number :min="0" :max="1000" style="width: 100%;" placeholder="赠送天数" v-model="createSiteForm.giveDay" />
-              </a-form-model-item>
-              <a-form-model-item label="补偿天数"  prop="compensateDay" v-show="createSiteForm.planId!==undefined">
-                <a-input-number :min="0" :max="1000" style="width: 100%;" placeholder="补偿天数" v-model="createSiteForm.compensateDay" />
-              </a-form-model-item>
-            </a-form-model>
-          </a-spin>
-        </template>
-
-        <template v-if="showResult">
-          <a-result
-            status="success"
-            title="站点创建完成!"
-          >
-          </a-result>
-        </template>
-      </a-modal>
-      <a-modal
-        :visible="visible"
-        width="80%"
-        @cancel="visitImageCancel"
-        :footer="null"
-        class="self_buy_modal"
-      >
-        <div slot="title">
-            <div>
-              <p class="ant-modal-title">
-                模板预览
-                <template v-if="(userRole.indexOf('admin')>-1 || userRole.indexOf('adweb_admin')>-1  || userRole.indexOf('adweb_seo_manager')>-1 || userRole.indexOf('adweb_site_manager')>-1) && modelText != null && modelText != ''">
-                  <a :href="modelText" target="_blank" style="font-size: 14px;text-decoration: underline"><span>购买链接</span></a>
-                </template>
-              </p>
-
-            </div>
-        </div>
-
-        <img alt="example" style="width: 100%" :src="theImage" />
-      </a-modal>
-    </a-col>
-  </a-row>
-</template>
-
-<script>
-
-import '/@/assets/less/TableExpand.less'
-import '/@/assets/less/common.less'
-
-import Qs from 'qs'
-import { getAction, postAction} from '/@/api/manage/manage'
-import $ from 'jquery'
-import { useUserStore } from '/@/store/modules/user'
-
-export default {
-  name: 'AdwebThemeCList',
-  components: {},
-  data() {
-    return {
-      description: 'adweb_theme管理页面',
-      // 表头
-      columns: [
-        {
-          title: '站点名称',
-          align: 'left',
-          dataIndex: 'name'
-        },
-        {
-          title: '图片路径',
-          align: 'left',
-          dataIndex: 'images',
-          scopedSlots: { customRender: 'imgSlot' }
-        }
-      ],
-      url: {
-        list: '/adweb/adwebTheme/list',
-        delete: '/adweb/adwebTheme/delete',
-        deleteBatch: '/adweb/adwebTheme/deleteBatch',
-        createSiteUrl: 'siteManage/createSite',
-        addSiteLanguageUrl: 'siteManage/addSiteLanguage',
-        getTemplateTagsUrl: '/adweb/adwebTheme/getTemplateTags',
-        wpSiteCreateUrl: 'wpWebSite/addWebsite',
-        getAdwebVipUrl: 'adweb/adwebSiteManage/getAdwebVip'
-      },
-      dictOptions: {},
-      superFieldList: [],
-      domainUrl: window._CONFIG['domianURL'],
-      modalVisible: false,
-      modalTitle: '',
-      userRole: '',
-      confirmLoading: false,
-      showCreateSite: false,
-      createSiteForm: {
-        uid: undefined,
-        source: '',
-        name: '',
-        languageCode: 'en',
-        parentCode: '',
-        planId: undefined,
-        giveDay: 0,
-        compensateDay: 0,
-      },
-      createSiteFormRules: {
-        uid: [
-          { required: true, message: '请选择用户名称', trigger: 'blur' }
-        ],
-        name: [
-          { required: true, message: '请输入站点名称', trigger: 'blur' }
-        ],
-        languageCode: [{ required: true, message: '站点语言不能为空', trigger: 'change' }],
-        planId: [
-          { required: true, message: '请选择营销方案', trigger: 'blur' }
-        ],
-      },
-      showResult: false,
-      spinning: false,
-      tipTitle: '',
-      labelCol: { span: 3 },
-      wrapperCol: { span: 21 },
-      modalStatus: false,
-      okBtnStatus: {},
-      okText: '',
-      cancelText: '',
-      modelText: '',
-      theImage: '',
-      showResultForm: {},
-      cancelBtnStatus: {},
-      templateTag: [],
-      ins: 0,
-      dataSource: [],
-      loading: false,
-      isHeight: $(window).height() - 59 - 52 - 12 - 62 - 12 - 93,
-      siteCreating: false,
-      isWpSiteCreate: false,
-      wpTemplateData: {
-        name: '',
-        tempId: '',
-        domain: '',
-        uid:'',
-      },
-      userList: [],
-      visible:false
-    }
-  },
-  created() {
-    this.userRole = useUserStore().roleList
-    this.getTemplateTags()
-    this.getTemplateList(-1)
-  },
-  methods: {
-    getTemplateTags() {
-      let that = this
-      let getTemplateTagsUrl = `${that.url.getTemplateTagsUrl}`
-      getAction(getTemplateTagsUrl).then(function(res) {
-        if (res.code == 200) {
-          that.templateTag = res.result
-        } else {
-          that.$message.error('模板分类获取失败!')
-        }
-      })
-    },
-    checkUrl: function(val) {
-      if (val != null) {
-        if (val.substr(0, 7).toLowerCase() == 'http://' || val.substr(0, 8).toLowerCase() == 'https://') {
-          return false
-        } else {
-          return true
-        }
-      } else {
-        return false
-      }
-    },
-    hoverThis() {
-      $('.item').hover(
-        function() {
-          if ($(this).height() >= $(this).find('.Pic img').height()) {
-            return
-          } else {
-            $(this).find('.Pic img').stop().animate({ top: $(this).height() - $(this).find('.Pic img').height() }, 5000)
-          }
-        },
-        function() {
-          $(this).find('.Pic img').stop().animate({ top: 0 }, 'fast')
-        }
-      )
-    },
-    //预览
-    visit(data) {
-      let that = this
-      if (data.siteType === 1) {
-        if(data.domainDev != null && data.domainDev != ''){
-          return window.open(that.domainUrl + data.domainDev, '_blank')
-        }else{
-          that.visitImage(data)
-        }
-      }
-      if (data.siteType === 3) {
-        if(data.externalTemplateUrl != null && data.externalTemplateUrl != ''){
-          return window.open(data.externalTemplateUrl, '_blank')
-        }else{
-          that.visitImage(data)
-        }
-      }
-    },
-
-    visitImage(data) {
-      this.visible = true
-      this.modelText = data.buyLinks;
-      this.theImage = this.domainUrl+'/sys/common/static/' + data.images;
-    },
-
-    visitImageCancel() {
-      this.visible = false
-      this.modelText = '';
-      this.theImage = ''
-    },
-
-    visitOut(data) {
-      if(data.externalTemplateUrl != null && data.externalTemplateUrl != ''){
-        return window.open(data.externalTemplateUrl, '_blank')
-      }else{
-        this.visitImage(data)
-      }
-    },
-
-    cleanAllFormData() {
-      let that = this
-      that.confirmLoading = false
-      that.templateInfo = {}
-      that.spinning = false
-      that.tipTitle = ''
-      that.modalVisible = false
-      that.modalTitle = ''
-      that.modalCopyTemplateStatus = false
-      that.copyTemplateForm = {
-        name: ''
-      }
-      that.showCreateSite = false
-      that.createSiteForm = {
-        uid: undefined,
-        languageCode: 'en',
-        source: '',
-        name: '',
-        parentCode: '',
-        planId: undefined,
-        giveDay: 0,
-        compensateDay: 0,
-      }
-      that.showResult = false
-      that.okBtnStatus = {}
-      that.cancelBtnStatus = {}
-      that.ins = 0
-      that.loading = false
-    },
-
-    //创建站点
-    createSite(item) {
-      let that = this
-      that.getUserList()
-      if (item.siteType === 3) {
-        that.isWpSiteCreate = true
-        that.wpTemplateData.tempId = item.id
-      } else {
-        that.createSiteForm.source = item.source
-        that.createSiteForm.parentCode = item.code
-        that.createSiteForm.id = item.id
-        that.createSiteForm.languageCode = 'en'
-      }
-      that.modalVisible = true
-      that.modalTitle = '创建站点'
-      that.showCreateSite = true
-      that.okText = '确定'
-      that.cancelText = '取消'
-    },
-
-    createSiteData() {
-      let that = this
-      that.confirmLoading = false
-      that.spinning = true
-      that.tipTitle = '正在创建站点'
-      let createSiteUrl = `${that.url.createSiteUrl}`
-      that.okBtnStatus = { props: { disabled: true } }
-      that.cancelBtnStatus = { props: { disabled: true } }
-      postAction(createSiteUrl, Qs.stringify(that.createSiteForm), 1000 * 60 * 5).then(function(res) {
-          that.spinning = false
-          that.tipTitle = ''
-          if (res.code == 200) {
-            that.showCreateSite = false
-            that.showResult = true
-            that.modalTitle = '系统提示'
-            that.okText = '预览站点'
-            that.cancelText = '关闭'
-            that.showCreateSite = false
-            that.okBtnStatus = {}
-            that.cancelBtnStatus = {}
-            that.newCreateSiteInfo = res.data
-          } else {
-            that.cancelBtnStatus = {}
-            that.$message.error('网站创建失败,请重试!')
-          }
-        }
-      ).catch(function() {
-        that.modalVisible = true
-        that.$message.error('网络超时,请重试!')
-      })
-    },
-
-    handleOk() {
-      let that = this
-      if (that.showCreateSite && !that.isWpSiteCreate) {
-        that.$refs.createSiteForms.validate(valid => {
-          if (valid) {
-            that.createSiteData()
-          } else {
-            return false
-          }
-        })
-      }
-      if (that.showCreateSite && that.isWpSiteCreate) {
-        that.$refs.createSiteForms.validate(valid => {
-          if (valid) {
-            that.wpSiteCreate(that.createSiteForm.name)
-          } else {
-            return false
-          }
-        })
-      }
-      if (that.showResult && !that.isWpSiteCreate) {
-        that.toMySite()
-      }
-      if (that.showResult && that.isWpSiteCreate) {
-        that.toMyWPSite()
-      }
-    },
-
-    handleCancel() {
-      let that = this
-      that.cleanAllFormData()
-    },
-
-    toMySite() {
-      let that = this
-      return window.open(that.domainUrl + that.newCreateSiteInfo, '_blank')
-    },
-
-    //wp站点创建成功预览
-    toMyWPSite() {
-      let that = this
-      return window.open('http://' + that.newCreateSiteInfo, '_blank')
-    },
-    showTemplate(tagId, i) {
-      let that = this
-      that.loading = true
-      if (i == undefined) {
-        that.ins = 0
-      } else {
-        that.ins = i
-      }
-      that.getTemplateList(tagId)
-    },
-
-    getTemplateList(tagId) {
-      let that = this
-      that.loading = true
-      let listUrl = `${that.url.list}` + '?templateTags=' + tagId
-      getAction(listUrl).then(function(res) {
-        if (res.code == 200) {
-          that.loading = false
-          that.dataSource = res.result.records
-        } else {
-          that.loading = false
-          that.$message.error('模板获取失败!')
-        }
-      })
-    },
-
-    //wp站点创建
-    wpSiteCreate(siteName) {
-      let that = this
-      if(that.siteCreating){
-        that.$message.warning('站点创建中,请勿重复点击!')
-        return;
-      }
-      that.siteCreating = true
-      that.confirmLoading = false
-      that.spinning = true
-      that.tipTitle = '正在创建站点'
-      that.okBtnStatus = { props: { disabled: true } }
-      that.cancelBtnStatus = { props: { disabled: true } }
-      that.wpTemplateData.name = siteName
-      that.wpTemplateData.uid = that.createSiteForm.uid
-      that.wpTemplateData.planId = that.createSiteForm.planId
-      that.wpTemplateData.giveDay = that.createSiteForm.giveDay
-      that.wpTemplateData.compensateDay = that.createSiteForm.compensateDay
-      postAction(that.url.wpSiteCreateUrl, Qs.stringify(that.wpTemplateData),1000 * 60 * 5).then(function(res) {
-          if (res.code === 200 && res.result === 'ignore') {
-            that.$message.error('您距离上个站点创建不足两分钟,请两分钟后再次尝试!')
-            return;
-          }
-          if (res.code === 200) {
-            that.showCreateSite = false
-            that.showResult = true
-            that.modalTitle = '系统提示'
-            that.okText = '预览站点'
-            that.cancelText = '关闭'
-            that.showCreateSite = false
-            that.okBtnStatus = {}
-            that.cancelBtnStatus = {}
-            that.newCreateSiteInfo = res.result
-            that.wpSitePreviewUrl = ''
-          } else {
-            that.cancelBtnStatus = {}
-            that.$message.error('网站创建失败,请重试!')
-          }
-        }
-      ).catch(function() {
-        that.modalVisible = true
-        that.$message.error('网络超时,请重试!')
-      }).finally(()=>{
-        that.siteCreating = false
-        that.spinning = false
-        that.tipTitle = ''
-      })
-
-    },
-
-    getUserList() {
-      let that = this
-      getAction(this.url.getAdwebVipUrl).then(function(res) {
-        if (res.code == 200) {
-          that.userList = res.result
-        }
-      })
-    },
-
-    filterOption(input, option) {
-      return (
-        option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
-      )
-    }
-  }
-}
-</script>
-<style scoped lang="less">
-
-.mt-20 {
-  margin-top: 20px
-}
-
-.fl {
-  float: left;
-}
-
-.fr {
-  float: right;
-}
-
-.template-image {
-  width: 100%;
-  height: 300px;
-}
-
-.text-center {
-  text-align: center;
-}
-
-.template_list /deep/ .ant-card-body {
-  padding: 0;
-}
-
-.template_list .item {
-  width: 100%;
-  display: block;
-  height: 467px;
-  position: relative;
-  transition: all 0.4s ease-out;
-}
-
-.template_list .item .Pic {
-  width: 100%;
-  height: 100%;
-  position: relative;
-  overflow: hidden;
-}
-
-.template_list .item .Pic img {
-  width: 100%;
-  max-height: unset;
-  position: absolute;
-  top: 0;
-  left: 0;
-}
-
-.template_list .item .Pic .Content {
-  display: flex;
-  justify-content: center;
-  align-items: flex-end;
-  opacity: 0;
-  position: absolute;
-  width: 100%;
-  height: 100%;
-  background: rgba(0, 0, 0, 0.4);
-  top: 0;
-  left: 0;
-  font-size: 0;
-  transition: all 0.4s ease-out;
-  padding-bottom: 20px;
-}
-
-.template_list .item .Pic .Content button {
-  margin: 0 10px;
-}
-
-.template_list .item:hover {
-  box-shadow: 3px 3px 12px 2px #aaaaaad4;
-}
-
-.template_list .item:hover .Pic .Content {
-  opacity: 1;
-}
-
-.tag-wrap .ant-btn.ant-btn-link.act{
-  color:  @primary-color!important;
-  background-color: #fff!important;
-  font-weight: 600;
-  border-bottom: 1px solid #fff;
-}
-
-.tag-wrap {
-  margin-bottom: 12px;
-}
-
-.tag-wrap .ant-btn-link {
-  color: #fff!important;
-  width: 10%;
-  margin: 5px 0.5%;
-}
-
-.template_list {
-  overflow-y: scroll;
-  overflow-x: hidden;
-}
-
-.ant-btn-link {
-  margin-right: 10px;
-}
-
-img[lazy="error"], img[lazy="loading"] {
-  top: calc(50% - 140px) !important;
-  position: relative !important;
-  margin: 0 auto;
-  width: 240px !important;
-}
-
-.self_buy_modal{
-  /deep/ .ant-modal-body{
-    padding: 0;
-  }
-}
-</style>