Browse Source

Merge branch 'site-manage' of wangfan/adweb3-web into master

chenpeiqing 5 tháng trước cách đây
mục cha
commit
6bf5773c14

+ 1 - 2
package.json

@@ -62,7 +62,7 @@
     "resize-observer-polyfill": "^1.5.1",
     "showdown": "^2.1.0",
     "sortablejs": "^1.15.2",
-    "tinymce": "6.8.0",
+    "tinymce": "6.6.2",
     "vditor": "^3.9.9",
     "vue": "^3.4.19",
     "vue-cropper": "^0.6.4",
@@ -73,7 +73,6 @@
     "vue-router": "^4.3.0",
     "vue-types": "^5.1.1",
     "vuedraggable": "^4.1.0",
-    "vuex": "^3.6.2",
     "vxe-table": "4.6.17",
     "vxe-table-plugin-antd": "4.0.7",
     "xe-utils": "3.5.26",

+ 5 - 17
pnpm-lock.yaml

@@ -132,8 +132,8 @@ importers:
         specifier: ^1.15.2
         version: 1.15.2
       tinymce:
-        specifier: 6.8.0
-        version: 6.8.0
+        specifier: 6.6.2
+        version: 6.6.2
       vditor:
         specifier: ^3.9.9
         version: 3.10.4
@@ -164,9 +164,6 @@ importers:
       vuedraggable:
         specifier: ^4.1.0
         version: 4.1.0(vue@3.4.21(typescript@4.9.5))
-      vuex:
-        specifier: ^3.1.0
-        version: 3.6.2(vue@3.4.21(typescript@4.9.5))
       vxe-table:
         specifier: 4.6.17
         version: 4.6.17(vue@3.4.21(typescript@4.9.5))
@@ -5652,8 +5649,8 @@ packages:
   tinymce@5.10.9:
     resolution: {integrity: sha512-5bkrors87X9LhYX2xq8GgPHrIgJYHl87YNs+kBcjQ5I3CiUgzo/vFcGvT3MZQ9QHsEeYMhYO6a5CLGGffR8hMg==, tarball: https://registry.npmmirror.com/tinymce/-/tinymce-5.10.9.tgz}
 
-  tinymce@6.8.0:
-    resolution: {integrity: sha512-WSQlyfW8aPkOVMmmHmSVeA5Dq4JuUZjTB+PmePJ27oQ+ruv3Zn4KSTsvSnDUrHlqygjDvRidrCB/m5nTWCC2nA==, tarball: https://registry.npmmirror.com/tinymce/-/tinymce-6.8.0.tgz}
+  tinymce@6.6.2:
+    resolution: {integrity: sha512-ShoaznNP3qI8dPtEnYt3ByhAJfMhzIY1K04CoFu1IPDeAxmAZCUJLgfiplo8etP4wN8zrBIxHEqpwYYb2IllOQ==, tarball: https://registry.npmmirror.com/tinymce/-/tinymce-6.6.2.tgz}
 
   tmp@0.0.33:
     resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
@@ -6085,11 +6082,6 @@ packages:
     peerDependencies:
       vue: ^3.0.1
 
-  vuex@3.6.2:
-    resolution: {integrity: sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw==, tarball: https://registry.npmmirror.com/vuex/-/vuex-3.6.2.tgz}
-    peerDependencies:
-      vue: ^2.0.0
-
   vxe-table-plugin-antd@4.0.7:
     resolution: {integrity: sha512-DFdvHBdpdkvFiRMhvsc6cNPiIL+3cLd2gGF2pu/lRE1ZSqK82OkZKY3onQO2dnE4zByN/szdCDIKV5Lk8iH8rg==}
     peerDependencies:
@@ -12160,7 +12152,7 @@ snapshots:
 
   tinymce@5.10.9: {}
 
-  tinymce@6.8.0: {}
+  tinymce@6.6.2: {}
 
   tmp@0.0.33:
     dependencies:
@@ -12607,10 +12599,6 @@ snapshots:
       sortablejs: 1.14.0
       vue: 3.4.21(typescript@4.9.5)
 
-  vuex@3.6.2(vue@3.4.21(typescript@4.9.5)):
-    dependencies:
-      vue: 3.4.21(typescript@4.9.5)
-
   vxe-table-plugin-antd@4.0.7(vxe-table@4.6.17(vue@3.4.21(typescript@4.9.5))):
     dependencies:
       vxe-table: 4.6.17(vue@3.4.21(typescript@4.9.5))

+ 5 - 14
src/api/manage/manage.ts

@@ -1,5 +1,5 @@
 import { VueElement } from 'vue';
-import {defHttp} from '/@/utils/http/axios';
+import { defHttp } from '/@/utils/http/axios';
 
 const api = {
   user: '/mock/api/user',
@@ -11,12 +11,12 @@ const api = {
 
 //post
 export function postAction(url, parameter, timeout) {
-  return defHttp.request({
+  return defHttp.post({
     url: url,
     method: 'post',
     data: parameter,
     timeout: timeout ? timeout : 1000 * 120,
-  })
+  }, { isTransformResponse: false, successMessageMode: 'none' })
 }
 
 //post
@@ -86,21 +86,12 @@ export function putAction(url, parameter) {
 
 //get
 export function getAction(url, parameter) {
-  return defHttp.request({
+  return defHttp.get({
     url: url,
     method: 'get',
     params: parameter,
     timeout: 1000 * 180,
-  })
-}
-
-export function getAction2(url, parameter) {
-  return axios2({
-    url: url,
-    method: 'get',
-    params: parameter,
-    timeout: 1000 * 180,
-  })
+  }, { isTransformResponse: false, successMessageMode: 'none' })
 }
 
 //deleteAction

+ 11 - 16
src/hooks/component/useIframe.js

@@ -1,4 +1,5 @@
 import { postAction } from '/@/api/manage/manage'
+import { inject } from 'vue';
 
 // TODO 先兼容vue2代码迁移,后期替换为vue3的写法, 当前from src/mixins/iframeMixin.js
 export const useIframe = {
@@ -38,20 +39,12 @@ export const useIframe = {
     iframeLoad() {
       this.$nextTick(() => {
         this.loading = true
-        const iframe = this.$refs.a.$refs.b
-        // 兼容处理
-        if (iframe.attachEvent) {
-          // IE
-          iframe.attachEvent('onload', () => {
-            this.loading = false
-          })
-        } else {
-          //表示页面加载错误
-          this.pageError = true
-          // 非IE
-          iframe.onload = () => {
-            this.loading = false
-          }
+        const iframe = this.$refs.iframeCom.iframeRef
+        //表示页面加载错误
+        this.pageError = true
+
+        iframe.onload = () => {
+          this.loading = false
         }
       })
 
@@ -66,7 +59,9 @@ export const useIframe = {
         siteCode: localStorage.getItem('siteCode'),
       }
       await postAction('/adweb/adwebSiteManage/queryWordPressConfig', params).then(function (res) {
-        if (res.code == 200) {
+
+        if (res.code === 200) {
+
           that.wordpressSwitch = res.result.wordpressSwitch ? res.result.wordpressSwitch : 2
           if (res.result.wordpressSetting != null) {
             that.wordpressSetting = res.result.wordpressSetting
@@ -74,7 +69,7 @@ export const useIframe = {
           if (res.result.openSetting != null) {
             that.openSetting = res.result.openSetting
           }
-          console.log(res.result)
+
           if (res.result.productType == 'woocommerce') {
             url = that.wooUrl ? that.wooUrl : that.url
           }else{

+ 4 - 6
src/views/adweb/website/enterpriseInfo/baseInfo/baseInfoForm.vue

@@ -1,28 +1,26 @@
 <template>
   <div>
-    <iframe-com ref="a" :src="src"/>
-<!--    <base-info-form-back-->
-<!--      v-if="(wordpressSwitch == 2) || (wordpressSwitch == 1 && wordpressSetting != 'all' && !openSetting.includes('baseInfo'))"/>-->
+    <iframe-com :loading="loading" ref="iframeCom" :src="src"/>
   </div>
 </template>
 
 <script>
-// import BaseInfoFormBack from './baseInfoFormBack.vue'
 
 import iframeCom from '/@/views/adweb/wpInTo/iframeCom.vue'
 import { useIframe } from '/src/hooks/component/useIframe'
+import { inject } from 'vue';
 
 export default {
   components:{ iframeCom },
   mixins: [ useIframe ],
   data(){
     return{
-      noloading:true,
+      loading:true,
       url:'admin.php?page=material_management',
       loginUrl:'admin.php?page=material_management',
       iframePage:'baseInfo'
     }
-  },
+  }
 }
 </script>
 

+ 0 - 555
src/views/adweb/website/enterpriseInfo/baseInfo/baseInfoFormBack.vue

@@ -1,555 +0,0 @@
-<template>
-  <div>
-    <a-card :bordered="true" style="width: 100%">
-      <template #title>
-        <div style="font-size: 14px">
-          <span style="color: red;margin-right: 8px">说明:</span>
-          <span style="color: #666">企业介绍可体现公司的实力及产品的竞争力,增加海外客户的信任度,提升购买信心。</span>
-        </div>
-      </template>
-      <a-spin :spinning="formSpinning" size="large">
-        <a-form :form="form" v-if="this.siteList.length !== 0">
-          <a-row>
-            <a-col :span="16" v-if="this.siteList.length >= 2">
-              <a-form-item label="站点名称" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
-                <select-site @comMethods="changeSite" selectWidth="100%"/>
-<!--                <a-select @change="changeSite"-->
-<!--                          :defaultValue="siteCode"-->
-<!--                          show-search-->
-<!--                          :filter-option="filterOption"-->
-<!--                          placeholder="请选择站点">-->
-<!--                  <a-select-option v-for="site in siteList"-->
-<!--                                   :key="site.id"-->
-<!--                                   :value="site.code"-->
-<!--                  >-->
-<!--                    {{ site.name }}-->
-<!--                  </a-select-option>-->
-<!--                </a-select>-->
-              </a-form-item>
-            </a-col>
-            <template v-if="siteCode !== undefined">
-              <a-col :span="16">
-                <a-form-item label="公司中文名称" :labelCol="labelCol" :wrapperCol="wrapperCol" hasFeedback>
-                  <a-input id="companyCnName" v-decorator="['companyCnName',validatorRules.companyCnName]"
-                           placeholder="请输入公司中文名称"></a-input>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="公司英文名称" :labelCol="labelCol" :wrapperCol="wrapperCol" hasFeedback>
-                  <a-input id="companyEnName" v-decorator="['companyEnName',validatorRules.companyEnName]"
-                           placeholder="请输入公司英文名称"></a-input>
-                </a-form-item>
-              </a-col>
-<!--              <a-col :span="16">-->
-<!--                <a-form-item label="网站首页标题" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback-->
-<!--                             extra="包含1个产品关键词,40-80个字符之内">-->
-<!--                  <a-input v-decorator="['homepageTitle',validatorRules.homepageTitle]" placeholder="请输入网站首页标题"-->
-<!--                           :maxLength=80></a-input>-->
-<!--                </a-form-item>-->
-<!--              </a-col>-->
-              <a-col :span="16">
-                <a-form-item label="企业LOGO" :labelCol="labelCol" :wrapperCol="wrapperCol">
-                  <div slot="extra">
-                    <div><a href="https://squoosh.app/" target="_blank">>>图片剪裁、压缩工具<<</a></div>
-                    <div>1、限制图片格式:JPG,JPEG,PNG;</div>
-                    <div>2、限制图片大小:不超过2MB</div>
-                    <div>3、图片命名:'品牌名-logo'</div>
-                  </div>
-                  <a-upload
-                    style="width: 20%;"
-                    name="file"
-                    list-type="picture-card"
-                    :headers="headers"
-                    :action="uploadAction"
-                    :file-list="fileList"
-                    :data="{biz:'public/material/' + this.siteCode + '/' +this.materialCode}"
-                    :showUploadList="isMultiple"
-                    :isMultiple="isMultiple"
-                    :multiple="isMultiple"
-                    @change="handleChange"
-                    @preview="handlePreview"
-                    :before-upload="beforeUpload"
-                    v-decorator="['enterpriseLogo',validatorRules.enterpriseLogo]"
-                  >
-                    <img v-if="!isMultiple && picUrl" :src="getImgView(this.imageUrl)" style="width:100%;height:100%" />
-                    <div v-else>
-                      <a-icon :type="loading ? 'loading' : 'plus'" />
-                      <div class="ant-upload-text">
-                        上传
-                      </div>
-                    </div>
-                    <a-modal :visible="previewVisible" :footer="null" @cancel="handleCancel">
-                      <img alt="example" style="width: 100%" :src="previewImage" />
-                    </a-modal>
-                  </a-upload>
-                  <a-button v-if="imageUrl" icon="download" style="position: absolute;margin-top: 68px" type="primary"
-                            ghost @click="downloadFile(imageUrl)">下载
-                  </a-button>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="联系人(英文)" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
-                  <a-input v-decorator="['enterpriseContactName',validatorRules.enterpriseContactName]"
-                           placeholder="请输入联系人(英文)"></a-input>
-                </a-form-item>
-              </a-col>
-
-              <a-col :span="16">
-                <a-form-item label="公司固定电话" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback
-                             extra="如+86-514-88594521">
-                  <a-input v-decorator="['enterpriseLandline',validatorRules.enterpriseLandline]"
-                           placeholder="请输入公司固定电话"></a-input>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="公司联系电话" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
-                  <a-input v-decorator="['enterpriseContactPhone',{initialValue:''}]"
-                           placeholder="请输入公司联系电话"></a-input>
-                </a-form-item>
-              </a-col>
-
-              <a-col :span="16">
-                <a-form-item label="公司电子邮箱" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
-                  <a-input v-decorator="['enterpriseEmail',validatorRules.enterpriseEmail]"
-                           placeholder="请输入公司电子邮箱"></a-input>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="公司办公地址(英文)" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
-                  <a-input v-decorator="['enterpriseOfficeAddress',validatorRules.enterpriseOfficeAddress]"
-                           placeholder="请输入公司办公地址"></a-input>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="公司品牌" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback
-                             extra="填写真实注册商标,不可提供虚假内容,或冒用其他公司信息,以免网站侵权。">
-                  <a-input v-decorator="['enterpriseBrand',validatorRules.enterpriseBrand]"
-                           placeholder="请输入公司品牌"></a-input>
-                </a-form-item>
-              </a-col>
-
-              <a-col :span="16">
-                <a-form-item label="公司工厂地址(英文)" :labelCol="labelCol" :wrapperCol="wrapperCol">
-                  <a-input v-decorator="['enterpriseFactoryAddress',{initialValue:''}]"
-                           placeholder="请输入公司工厂地址"></a-input>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="公司工厂面积" :labelCol="labelCol" :wrapperCol="wrapperCol">
-                  <a-input addon-after="m²" v-decorator="['enterpriseFactoryArea',validatorRules.enterpriseFactoryArea]"
-                           placeholder="请输入公司工厂面积"></a-input>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="公司人数" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
-                  <j-search-select-tag v-decorator="['employeeCount',validatorRules.employeeCount]" dict="adwebEmployeeCount"
-                                       placeholder="请选择公司人数" />
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="研发人数或研发占比" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
-                  <a-input v-decorator="['developerCount',validatorRules.developerCount]"
-                           placeholder="请输入研发人数或研发占比"></a-input>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="专利数量" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback extra="拥有的专利数量可以反映出企业创新能力,并因此更容易获得新的商业机会。">
-                  <a-input v-decorator="['patentCount',validatorRules.patentCount]"
-                           placeholder="请输入专利数量"></a-input>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="服务客户数" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
-                  <a-input v-decorator="['customerCount',validatorRules.customerCount]"
-                           placeholder="服务客户数"></a-input>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="资质与荣誉(英文)" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback extra="企业拥有资质和荣誉可以提升企业的信誉,使它更容易获得新的业务机会。">
-                  <a-textarea v-decorator="['honorInfo',validatorRules.honorInfo]"
-                              placeholder="请输入资质与荣誉(英文)" :autoSize="{ minRows: 10, maxRows: 20 }"
-                              :maxLength="1000"></a-textarea>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16">
-                <a-form-item label="公司概述(英文)" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
-                  <a-textarea v-decorator="['enterpriseOverview',validatorRules.enterpriseOverview]"
-                              placeholder="请输入公司概述(英文)" :autoSize="{ minRows: 10, maxRows: 20 }"
-                              :maxLength="1000"></a-textarea>
-                  <template slot="extra">
-                    <div>1、用一段话概述公司性质、主营行业,以及主要产品等,且携带主营关键词,提升客户点击,文字会显示在网站首页描述中</div>
-                    <div>2、最少200字,最多不超1000字</div>
-                  </template>
-                </a-form-item>
-              </a-col>
-              <a-col :span="16" style="text-align: center">
-                <a-button @click="submitForm" type="primary">保 存</a-button>
-              </a-col>
-            </template>
-
-          </a-row>
-        </a-form>
-        <a-empty v-else>
-          <span slot="description">暂无站点</span>
-        </a-empty>
-      </a-spin>
-    </a-card>
-  </div>
-</template>
-
-<script>
-import { getAction, getFileAccessHttpUrl, httpAction } from '/@/api/manage/manage'
-import pick from 'lodash.pick'
-import Vue from 'vue'
-import { ACCESS_TOKEN } from '@/store/mutation-types'
-import selectSite from '@/components/adweb/selectSite'
-
-function getBase64(file) {
-  return new Promise((resolve, reject) => {
-    const reader = new FileReader()
-    reader.readAsDataURL(file)
-    reader.onload = () => resolve(reader.result)
-    reader.onerror = error => reject(error)
-  })
-}
-
-export default {
-  name: 'baseInfoForm',
-  components: {
-    selectSite
-  },
-  data() {
-    return {
-      form: this.$form.createForm(this),
-      formSpinning: true,
-      labelCol: {
-        xs: { span: 24 },
-        sm: { span: 5 }
-      },
-      wrapperCol: {
-        xs: { span: 24 },
-        sm: { span: 16 }
-      },
-      validatorRules: {
-        siteCode: {
-          rules: [
-            { required: true, message: '请选择站点!' }
-          ]
-        },
-        companyCnName: {
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入公司中文名称!' }
-            // { pattern: '^[a-zA-Z]+$', message: '英文名称格式不正确' }
-          ]
-        },
-        companyEnName: {
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入公司英文名称!' }
-            // { pattern: '^[a-zA-Z]+$', message: '英文名称格式不正确' }
-          ]
-        },
-        // homepageTitle: {
-        //   initialValue: '',
-        //   rules: [
-        //     { required: true, message: '请输入网站首页标题!' },
-        //     { min: 40, max: 80, message: '网站首页标题字数范围40~80', trigger: 'blur' }
-        //   ]
-        // },
-        enterpriseLogo: {
-          rules: [
-            { required: true, message: '请上传企业LOGO!' }
-          ]
-        },
-        enterpriseContactName: {
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入公司联系人姓名!' }
-          ]
-        },
-        enterpriseLandline: {
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入公司固定电话!' }
-            // { pattern: '^([0-9]{3,4}-)?[0-9]{7,8}$', message: '固定电话格式不正确' }
-          ]
-        },
-        enterpriseFactoryArea:{
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入公司工厂面积!' },
-            { pattern: '^([1-9]\\d*|0)(\\.\\d{1,2})?$', message: '公司工厂面积格式不正确' }
-          ]
-        },
-        developerCount:{
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入研发人员数量或研发占比!' },
-            { pattern: '^[0-9%/\\.]*$', message: '研发人员数量或研发占比格式不正确' }
-          ]
-        },
-        patentCount:{
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入专利数量!' },
-            { pattern: '^[0-9]*$', message: '专利数量格式不正确' }
-          ]
-        },
-        customerCount:{
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入服务客户数!' },
-            { pattern: '^[0-9]*$', message: '服务客户数格式不正确' }
-          ]
-        },
-        enterpriseContactPhone: {
-          initialValue: '',
-          rules: [
-            { required: false, message: '请输入公司联系电话!' },
-            { pattern: '^1(3|4|5|7|8)\\d{9}$', message: '联系电话格式不正确' }
-          ]
-        },
-        enterpriseEmail: {
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入公司电子邮箱!' },
-            { type: 'email', message: '邮箱格式不正确' }
-          ]
-        },
-        enterpriseOfficeAddress: {
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入公司办公地址!' }
-          ]
-        },
-        enterpriseOverview: {
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入公司概述!' },
-            { min: 200, max: 1000, message: '公司概述字数范围200~1000', trigger: 'blur' }
-          ]
-        },
-        employeeCount: {
-          initialValue: '',
-          rules: [
-            { required: true, message: '请选择公司人数!' }
-          ]
-        },
-        honorInfo: {
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入资质与荣誉!' },
-            { max: 1000, message: '资质与荣誉字数在1000以内', trigger: 'blur' }
-          ]
-        },
-        enterpriseBrand: {
-          initialValue: '',
-          rules: [
-            { required: true, message: '请输入公司品牌!' }
-          ]
-        }
-      },
-      model: {},
-      url: {
-        initUrl: '/adwebMaterial/list',
-        add: '/adwebMaterial/commonAdd',
-        edit: '/adwebMaterial/commonEdit',
-        getMySiteUrl: '/adwebMaterial/getSiteByLoginUser'
-      },
-      siteList: [],
-      siteCode: '',
-      materialCode: 'baseInfo',
-      headers: {
-        'X-Access-Token': Vue.ls.get(ACCESS_TOKEN)
-      },
-      fileList: [],
-      uploadAction: window._CONFIG['domianURL'] + '/sys/upload/uploadMinio',
-      previewVisible: false,
-      previewImage: '',
-      loading: false,
-      imageUrl: '',
-      isMultiple: false,
-      picUrl: false
-    }
-  },
-  created() {
-    this.init()
-  },
-  methods: {
-    init() {
-      let that = this
-      getAction(this.url.getMySiteUrl).then(function(res) {
-        if (res.code === 200 && res.result.length !== 0) {
-          that.siteList = res.result
-          let isInSite = false
-          for (let i in res.result) {
-            if (localStorage.getItem('siteCode') !== null && res.result[i].code === localStorage.getItem('siteCode')) {
-              isInSite = true
-            }
-          }
-          if (localStorage.getItem('siteCode') !== null && isInSite) {
-            that.siteCode = localStorage.getItem('siteCode')
-            that.initForm(localStorage.getItem('siteCode'))
-          } else {
-            that.siteCode = that.siteList[0].code
-            localStorage.setItem('siteCode', that.siteList[0].code)
-            that.initForm(that.siteList[0].code)
-          }
-        } else {
-          that.formSpinning = false
-          that.$message.error('您当前暂无站点!')
-        }
-      })
-    },
-    initForm(siteCode) {
-      let that = this
-      getAction(this.url.initUrl + '?siteCode=' + siteCode + '&materialCode=' + that.materialCode).then(function(res) {
-        if (res.code === 200) {
-          that.formSpinning = false
-          that.model = Object.assign({}, res.result)
-          if (res.result.enterpriseLogo != null) {
-            that.picUrl = true
-            that.imageUrl = res.result.enterpriseLogo
-          } else {
-            that.imageUrl = undefined
-            that.picUrl = false
-          }
-          that.$nextTick(() => {
-            that.form.setFieldsValue(pick(that.model,'honorInfo','customerCount','patentCount','developerCount','enterpriseFactoryArea','companyCnName', 'companyEnName', 'homepageTitle', 'enterpriseContactName', 'enterpriseLogo', 'enterpriseLandline',
-              'enterpriseContactPhone', 'enterpriseEmail', 'enterpriseOfficeAddress', 'enterpriseFactoryAddress', 'enterpriseOverview', 'enterpriseBrand', 'employeeCount'))
-          })
-        } else {
-          that.$message.error('网络错误!')
-        }
-      })
-    },
-
-    filterOption(input, option) {
-      return (
-        option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
-      )
-    },
-
-    changeSite(value) {
-      this.form.resetFields()
-      this.siteCode = value
-      // localStorage.setItem('siteCode', value)
-      this.initForm(value)
-    },
-
-    async handlePreview(file) {
-      if (!file.url && !file.preview) {
-        file.preview = await getBase64(file.originFileObj)
-      }
-      this.previewVisible = true
-      this.previewImage = file.url || file.preview
-    },
-
-    beforeUpload(file) {
-      const index = file.name.indexOf('-logo')
-      let isConfirm = true
-      if (index <= 0) {
-        isConfirm = false
-        this.$message.error('上传失败,图片命名错误!')
-      }
-      const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png' || file.type === 'image/jpg' || file.type === 'image/webp'
-      if (!isJpgOrPng) {
-        this.$message.error('上传失败,图片格式错误!')
-      }
-      const isLt100K = file.size / 1024 < 2048
-      if (!isLt100K) {
-        this.$message.error('上传失败,图片大小限制2MB!')
-      }
-      return isLt100K && isJpgOrPng && isConfirm
-    },
-
-    handleChange(info) {
-      if (info.file.status === 'uploading') {
-        this.fileList = info.fileList.slice(-1)
-      } else if (info.file.status === 'done') {
-        if (info.file.response.code !== 500) {
-          this.$message.success(`${info.file.name} 文件上传成功!`)
-          this.imageUrl = info.file.response.message
-          this.picUrl = true
-          this.fileList = info.fileList.slice(-1)
-        } else {
-          this.$message.error('上传失败,请刷新页面重试!')
-        }
-      } else if (info.file.status === 'removed') {
-        this.$message.success(`${info.file.name} 文件删除成功!`)
-        this.fileList = info.fileList.slice(-1)
-      }
-    },
-
-    /* 图片预览 */
-    getImgView(text) {
-      if (text && text.indexOf(',') > 0) {
-        text = text.substring(0, text.indexOf(','))
-      }
-      return getFileAccessHttpUrl(text)
-    },
-
-    downloadFile(text) {
-      if (!text) {
-        this.$message.warning('未知的文件')
-        return
-      }
-      if (text.indexOf(',') > 0) {
-        text = text.substring(0, text.indexOf(','))
-      }
-      let url = getFileAccessHttpUrl(text)
-      window.open(url)
-    },
-
-    handleCancel() {
-      this.previewVisible = false
-    },
-
-    submitForm() {
-      const that = this
-      // 触发表单验证
-      this.form.validateFields((err, values) => {
-        if (!err) {
-          let httpurl = ''
-          let method = ''
-          if (!this.model.materialId) {
-            httpurl += this.url.add
-            method = 'post'
-          } else {
-            httpurl += this.url.edit
-            method = 'put'
-          }
-          let formData = Object.assign(this.model, values)
-          if (formData.employeeCount === undefined) {
-            formData.employeeCount = ''
-          }
-          if (this.imageUrl === undefined) {
-            formData.enterpriseLogo = null
-          } else {
-            formData.enterpriseLogo = this.imageUrl
-          }
-          formData.siteCode = that.siteCode
-          formData.materialCode = that.materialCode
-          httpAction(httpurl, formData, method).then((res) => {
-            if (res.success) {
-              that.$message.success(res.result)
-              that.initForm(that.siteCode)
-            } else {
-              that.$message.warning(res.message)
-            }
-          })
-        }
-      })
-    }
-  }
-}
-</script>
-
-<style>
-.ant-form-extra {
-  font-size: 12px;
-  color: rgba(0, 0, 0, 0.65);
-  line-height: 2em;
-}
-</style>

+ 12 - 1
src/views/adweb/wpInTo/iframeCom.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="vesselBox" >
     <Spin :spinning="loading" size="large">
-      <iframe ref="b" width="100%" height="100%" frameborder="0" :src="src" class="self_iframe"></iframe>
+      <iframe ref="iframeRef" width="100%" height="100%" frameborder="0" :src="src" class="self_iframe"></iframe>
     </Spin>
   </div>
 </template>
@@ -9,8 +9,19 @@
 <script>
 
 import {Spin} from "ant-design-vue";
+import { ref, provide } from 'vue';
 
 export default {
+  setup() {
+    const iframeRef = ref(null);
+
+    // 提供iframe引用给父组件
+    provide('iframeRef', iframeRef);
+
+    return {
+      iframeRef,
+    };
+  },
   components: {Spin},
   props:['loading','src']
 }

+ 20 - 18
src/views/dashboard/Analysis/homePage/adwebHomeV2-7.vue

@@ -502,7 +502,8 @@ import { useUserStore } from '/@/store/modules/user';
 // import selectSite from '/@/components/adweb/selectSite.vue'
 
 import '/@/views/dashboard/Analysis/less/home3.0.less';
-
+import {useMessage} from "@/hooks/web/useMessage";
+const { createMessage, createWarningModal } = useMessage();
 const  columns = [
   {
     title: '指标',
@@ -601,7 +602,7 @@ export default {
   },
   created() {
     // 跳出消息通知弹窗
-    this.getSysUpdateMsg();
+    // this.getSysUpdateMsg();
   },
   mounted() {
     this.userRole =  useUserStore().roleList;
@@ -618,18 +619,18 @@ export default {
   },
   methods:{
     // 从后台获取系统更新消息
-    getSysUpdateMsg() {
-      let that = this
-      getAction('/message/adwebMessage/home/message').then(function (res) {
-        console.log('首页弹出信息', res);
-        if (res.code === 200 && res.result) {
-          that.message = res.result;
-          that.showHomeMsg = true;
-          let msgId = res.result.id;
-          postAction('/message/adwebMessage/readmessage?msgId=' + msgId);
-        }
-      })
-    },
+    // getSysUpdateMsg() {
+    //   let that = this
+    //   getAction('/message/adwebMessage/home/message').then(function (res) {
+    //     console.log('首页弹出信息', res);
+    //     if (res.code === 200 && res.result) {
+    //       that.message = res.result;
+    //       that.showHomeMsg = true;
+    //       let msgId = res.result.id;
+    //       postAction('/message/adwebMessage/readmessage?msgId=' + msgId);
+    //     }
+    //   })
+    // },
     splitText(text) {
       if (!text) {
         return '';
@@ -652,8 +653,9 @@ export default {
     //进入获取站点code
     getSiteInfo() {
       let that = this
-      getAction('/sys/api/getSiteListByUid').then(function (res) {
-        if (res.code == 0) {
+      getAction('/adweb/adwebSite/getSiteListByUid').then((res) =>  {
+
+        if (res.code === 200) {
           that.siteinfo = res.data
           let isInSite = false
           for (let i in res.data){
@@ -671,7 +673,7 @@ export default {
           }
           that.getAllInfo()
         } else {
-          that.$message.error('站点获取失败,请刷新重试')
+          createMessage.error('站点获取失败,请刷新重试');
         }
       })
     },
@@ -697,7 +699,7 @@ export default {
         siteCode:that.siteCode
       }
       that.baseInfoLoading = true
-      getAction('/serp/averApiSearchKeywords/siteBasicInfo',d).then(function (res) {
+      getAction('/serp/averApiSearchKeywords/siteBasicInfo', d).then(function (res) {
         that.baseInfoLoading = false
         if (res.code == 200) {
           that.baseInfo = res.result