Forráskód Böngészése

Merge branch 'cpq-dev' of wangfan/adweb3-web into master

chenpeiqing 3 hónapja
szülő
commit
02f0cb3be9

+ 72 - 0
src/views/adweb/product/AdwebProduct.api.ts

@@ -0,0 +1,72 @@
+import { defHttp } from '/@/utils/http/axios';
+import { useMessage } from "/@/hooks/web/useMessage";
+
+const { createConfirm } = useMessage();
+
+enum Api {
+  list = '/adweb/adwebProduct/list',
+  save='/adweb/adwebProduct/add',
+  edit='/adweb/adwebProduct/edit',
+  deleteOne = '/adweb/adwebProduct/delete',
+  deleteBatch = '/adweb/adwebProduct/deleteBatch',
+  importExcel = '/adweb/adwebProduct/importExcel',
+  exportXls = '/adweb/adwebProduct/exportXls',
+}
+
+/**
+ * 导出api
+ * @param params
+ */
+export const getExportUrl = Api.exportXls;
+
+/**
+ * 导入api
+ */
+export const getImportUrl = Api.importExcel;
+
+/**
+ * 列表接口
+ * @param params
+ */
+export const list = (params) => defHttp.get({ url: Api.list, params });
+
+/**
+ * 删除单个
+ * @param params
+ * @param handleSuccess
+ */
+export const deleteOne = (params,handleSuccess) => {
+  return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
+    handleSuccess();
+  });
+}
+
+/**
+ * 批量删除
+ * @param params
+ * @param handleSuccess
+ */
+export const batchDelete = (params, handleSuccess) => {
+  createConfirm({
+    iconType: 'warning',
+    title: '确认删除',
+    content: '是否删除选中数据',
+    okText: '确认',
+    cancelText: '取消',
+    onOk: () => {
+      return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
+        handleSuccess();
+      });
+    }
+  });
+}
+
+/**
+ * 保存或者更新
+ * @param params
+ * @param isUpdate
+ */
+export const saveOrUpdate = (params, isUpdate) => {
+  let url = isUpdate ? Api.edit : Api.save;
+  return defHttp.post({ url: url, params }, { isTransformResponse: false });
+}

+ 85 - 0
src/views/adweb/product/AdwebProduct.data.ts

@@ -0,0 +1,85 @@
+import { BasicColumn } from '/@/components/Table';
+import { FormSchema } from '/@/components/Table';
+import { rules } from '/@/utils/helper/validator';
+import { render } from '/@/utils/common/renderUtils';
+import { getWeekMonthQuarterYear } from '/@/utils';
+//列表数据
+export const columns: BasicColumn[] = [
+  {
+    title: '创建日期',
+    align: 'center',
+    dataIndex: 'createTime',
+  },
+  {
+    title: '更新日期',
+    align: 'center',
+    dataIndex: 'updateTime',
+  },
+  {
+    title: '站点推送时间',
+    align: 'center',
+    dataIndex: 'requestTime',
+  },
+  {
+    title: '站点名称',
+    align: 'center',
+    dataIndex: 'siteCode_dictText',
+  },
+  {
+    title: '产品ID',
+    align: 'center',
+    dataIndex: 'productId',
+  },
+  {
+    title: '产品类型',
+    align: 'center',
+    dataIndex: 'productType',
+  },
+  {
+    title: '产品状态',
+    align: 'center',
+    dataIndex: 'actionType',
+  },
+  {
+    title: '产品名称',
+    align: 'center',
+    dataIndex: 'productName',
+  },
+  {
+    title: '产品中文名称',
+    align: 'center',
+    dataIndex: 'productNameZh',
+  },
+  {
+    title: '产品封面图',
+    align: 'center',
+    dataIndex: 'productImage',
+  },
+  {
+    title: '产品分类',
+    align: 'center',
+    dataIndex: 'categoryName',
+  },
+  {
+    title: '产品作者',
+    align: 'center',
+    dataIndex: 'authorName',
+  },
+];
+
+// 高级查询数据
+export const superQuerySchema = {
+  createBy: { title: '创建人', order: 0, view: 'text', type: 'string' },
+  createTime: { title: '创建日期', order: 1, view: 'datetime', type: 'string' },
+  updateBy: { title: '更新人', order: 2, view: 'text', type: 'string' },
+  updateTime: { title: '更新日期', order: 3, view: 'datetime', type: 'string' },
+  siteCode: { title: '站点code', order: 4, view: 'text', type: 'string' },
+  requestTime: { title: 'mq生产时间', order: 5, view: 'text', type: 'string' },
+  productId: { title: '产品ID', order: 6, view: 'number', type: 'number' },
+  productType: { title: '产品类型', order: 7, view: 'text', type: 'string' },
+  actionType: { title: '产品操状态', order: 8, view: 'text', type: 'string' },
+  productName: { title: '产品名称', order: 9, view: 'text', type: 'string' },
+  productsNameZh: { title: '产品中文名称', order: 10, view: 'text', type: 'string' },
+  categoryName: { title: '产品分类', order: 13, view: 'text', type: 'string' },
+  authorName: { title: '产品作者', order: 14, view: 'text', type: 'string' },
+};

+ 237 - 0
src/views/adweb/product/AdwebProductList.vue

@@ -0,0 +1,237 @@
+<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-col :lg="6">
+            <select-site ref="selectSiteRef" @set-site-info="getSiteList" select-width="100%" />
+          </a-col>
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
+              <a-col :lg="6">
+                <a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
+                <a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset" style="margin-left: 8px">重置</a-button>
+              </a-col>
+            </span>
+          </a-col>
+        </a-row>
+      </a-form>
+    </div>
+    <!--引用表格-->
+    <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>-->
+        <!-- 高级查询 -->
+        <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>
+    <!-- 表单区域 -->
+    <AdwebProductModal ref="registerModal" @success="handleSuccess" />
+  </div>
+</template>
+
+<script lang="ts" name="adweb-adwebProduct" setup>
+  import { ref, reactive } from 'vue';
+  import { BasicTable, useTable, TableAction } from '/@/components/Table';
+  import { useListPage } from '/@/hooks/system/useListPage';
+  import { columns, superQuerySchema } from './AdwebProduct.data';
+  import { list, deleteOne, batchDelete, getImportUrl, getExportUrl } from './AdwebProduct.api';
+  import { downloadFile } from '/@/utils/common/renderUtils';
+  import AdwebProductModal from './components/AdwebProductModal.vue';
+  import { useUserStore } from '/@/store/modules/user';
+  import SelectSite from '@/components/Adweb/selectSite.vue';
+
+  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: 'wp站点产品',
+      api: list,
+      columns,
+      canResize: false,
+      useSearchForm: false,
+      immediate: false, // 不直接触发,通过reload事件触发接口
+      actionColumn: {
+        width: 120,
+        fixed: 'right',
+      },
+      beforeFetch: (params) => {
+        return Object.assign(params, queryParam);
+      },
+    },
+    exportConfig: {
+      name: 'wp站点产品',
+      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: handleDetail.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();
+  }
+
+  function getSiteList(selectedSiteInfo: any) {
+    queryParam.siteCode = selectedSiteInfo.code;
+
+    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>

+ 203 - 0
src/views/adweb/product/components/AdwebProductForm.vue

@@ -0,0 +1,203 @@
+<template>
+  <a-spin :spinning="confirmLoading">
+    <JFormContainer :disabled="disabled">
+      <template #detail>
+        <a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol">
+          <a-row>
+						<a-col :span="24">
+							<a-form-item label="站点code" v-bind="validateInfos.siteCode">
+								<a-input v-model:value="formData.siteCode" placeholder="请输入站点code"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+						<a-col :span="24">
+							<a-form-item label="mq生产时间" v-bind="validateInfos.requestTime">
+								<a-input v-model:value="formData.requestTime" placeholder="请输入mq生产时间"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+						<a-col :span="24">
+							<a-form-item label="wp产品ID" v-bind="validateInfos.productId">
+								<a-input-number v-model:value="formData.productId" placeholder="请输入wp产品ID" style="width: 100%" />
+							</a-form-item>
+						</a-col>
+						<a-col :span="24">
+							<a-form-item label="wp产品类型,adwebpro or woocommerce" v-bind="validateInfos.productType">
+								<a-input v-model:value="formData.productType" placeholder="请输入wp产品类型,adwebpro or woocommerce"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+						<a-col :span="24">
+							<a-form-item label="wp产品操作类型, add, edit, delete" v-bind="validateInfos.actionType">
+								<a-input v-model:value="formData.actionType" placeholder="请输入wp产品操作类型, add, edit, delete"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+						<a-col :span="24">
+							<a-form-item label="wp产品名称" v-bind="validateInfos.productName">
+								<a-input v-model:value="formData.productName" placeholder="请输入wp产品名称"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+						<a-col :span="24">
+							<a-form-item label="wp产品中文名称" v-bind="validateInfos.productsNameZh">
+								<a-input v-model:value="formData.productsNameZh" placeholder="请输入wp产品中文名称"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+						<a-col :span="24">
+							<a-form-item label="wp产品封面图" v-bind="validateInfos.productImage">
+								<a-input v-model:value="formData.productImage" placeholder="请输入wp产品封面图"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+						<a-col :span="24">
+							<a-form-item label="wp产品图库" v-bind="validateInfos.productGalleryImage">
+								<a-input v-model:value="formData.productGalleryImage" placeholder="请输入wp产品图库"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+						<a-col :span="24">
+							<a-form-item label="wp产品分类" v-bind="validateInfos.categoryName">
+								<a-input v-model:value="formData.categoryName" placeholder="请输入wp产品分类"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+						<a-col :span="24">
+							<a-form-item label="wp产品作者" v-bind="validateInfos.authorName">
+								<a-input v-model:value="formData.authorName" placeholder="请输入wp产品作者"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+          </a-row>
+        </a-form>
+      </template>
+    </JFormContainer>
+  </a-spin>
+</template>
+
+<script lang="ts" setup>
+  import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted } from 'vue';
+  import { defHttp } from '/@/utils/http/axios';
+  import { useMessage } from '/@/hooks/web/useMessage';
+  import { getValueType } from '/@/utils';
+  import { saveOrUpdate } from '../AdwebProduct.api';
+  import { Form } from 'ant-design-vue';
+  import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
+  
+  const props = defineProps({
+    formDisabled: { type: Boolean, default: false },
+    formData: { type: Object, default: () => ({})},
+    formBpm: { type: Boolean, default: true }
+  });
+  const formRef = ref();
+  const useForm = Form.useForm;
+  const emit = defineEmits(['register', 'ok']);
+  const formData = reactive<Record<string, any>>({
+    id: '',
+    siteCode: '',   
+    requestTime: '',   
+    productId: undefined,
+    productType: '',   
+    actionType: '',   
+    productName: '',   
+    productsNameZh: '',   
+    productImage: '',   
+    productGalleryImage: '',   
+    categoryName: '',   
+    authorName: '',   
+  });
+  const { createMessage } = useMessage();
+  const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
+  const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
+  const confirmLoading = ref<boolean>(false);
+  //表单验证
+  const validatorRules = reactive({
+    siteCode: [{ required: true, message: '请输入站点code!'},],
+    requestTime: [{ required: true, message: '请输入mq生产时间!'},],
+    productId: [{ required: true, message: '请输入wp产品ID!'},],
+    productType: [{ required: true, message: '请输入wp产品类型,adwebpro or woocommerce!'},],
+    actionType: [{ required: true, message: '请输入wp产品操作类型, add, edit, delete!'},],
+    productName: [{ required: true, message: '请输入wp产品名称!'},],
+    categoryName: [{ required: true, message: '请输入wp产品分类!'},],
+  });
+  const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
+
+  // 表单禁用
+  const disabled = computed(()=>{
+    if(props.formBpm === true){
+      if(props.formData.disabled === false){
+        return false;
+      }else{
+        return true;
+      }
+    }
+    return props.formDisabled;
+  });
+
+  
+  /**
+   * 新增
+   */
+  function add() {
+    edit({});
+  }
+
+  /**
+   * 编辑
+   */
+  function edit(record) {
+    nextTick(() => {
+      resetFields();
+      const tmpData = {};
+      Object.keys(formData).forEach((key) => {
+        if(record.hasOwnProperty(key)){
+          tmpData[key] = record[key]
+        }
+      })
+      //赋值
+      Object.assign(formData, tmpData);
+    });
+  }
+
+  /**
+   * 提交数据
+   */
+  async function submitForm() {
+    // 触发表单验证
+    await validate();
+    confirmLoading.value = true;
+    const isUpdate = ref<boolean>(false);
+    //时间格式化
+    let model = formData;
+    if (model.id) {
+      isUpdate.value = true;
+    }
+    //循环数据
+    for (let data in model) {
+      //如果该数据是数组并且是字符串类型
+      if (model[data] instanceof Array) {
+        let valueType = getValueType(formRef.value.getProps, data);
+        //如果是字符串类型的需要变成以逗号分割的字符串
+        if (valueType === 'string') {
+          model[data] = model[data].join(',');
+        }
+      }
+    }
+    await saveOrUpdate(model, isUpdate.value)
+      .then((res) => {
+        if (res.success) {
+          createMessage.success(res.message);
+          emit('ok');
+        } else {
+          createMessage.warning(res.message);
+        }
+      })
+      .finally(() => {
+        confirmLoading.value = false;
+      });
+  }
+
+
+  defineExpose({
+    add,
+    edit,
+    submitForm,
+  });
+</script>
+
+<style lang="less" scoped>
+  .antd-modal-form {
+    padding: 14px;
+  }
+</style>

+ 77 - 0
src/views/adweb/product/components/AdwebProductModal.vue

@@ -0,0 +1,77 @@
+<template>
+  <j-modal :title="title" :width="width" :visible="visible" @ok="handleOk" :okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" @cancel="handleCancel" cancelText="关闭">
+    <AdwebProductForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></AdwebProductForm>
+  </j-modal>
+</template>
+
+<script lang="ts" setup>
+  import { ref, nextTick, defineExpose } from 'vue';
+  import AdwebProductForm from './AdwebProductForm.vue'
+  import JModal from '/@/components/Modal/src/JModal/JModal.vue';
+  
+  const title = ref<string>('');
+  const width = ref<number>(800);
+  const visible = ref<boolean>(false);
+  const disableSubmit = ref<boolean>(false);
+  const registerForm = ref();
+  const emit = defineEmits(['register', 'success']);
+
+  /**
+   * 新增
+   */
+  function add() {
+    title.value = '新增';
+    visible.value = true;
+    nextTick(() => {
+      registerForm.value.add();
+    });
+  }
+  
+  /**
+   * 编辑
+   * @param record
+   */
+  function edit(record) {
+    title.value = disableSubmit.value ? '详情' : '编辑';
+    visible.value = true;
+    nextTick(() => {
+      registerForm.value.edit(record);
+    });
+  }
+  
+  /**
+   * 确定按钮点击事件
+   */
+  function handleOk() {
+    registerForm.value.submitForm();
+  }
+
+  /**
+   * form保存回调事件
+   */
+  function submitCallback() {
+    handleCancel();
+    emit('success');
+  }
+
+  /**
+   * 取消按钮回调事件
+   */
+  function handleCancel() {
+    visible.value = false;
+  }
+
+  defineExpose({
+    add,
+    edit,
+    disableSubmit,
+  });
+</script>
+
+<style lang="less">
+  /**隐藏样式-modal确定按钮 */
+  .jee-hidden {
+    display: none !important;
+  }
+</style>
+<style lang="less" scoped></style>

+ 17 - 20
src/views/adweb/website/enterpriseInfo/baseInfo/baseInfoForm.vue

@@ -1,29 +1,26 @@
 <template>
   <div>
-    <iframe-com :loading="loading" ref="iframeCom" :src="src"/>
+    <iframe-com :loading="loading" ref="iframeCom" :src="src" />
   </div>
 </template>
 
 <script>
+  import iframeCom from '/@/views/adweb/wpInTo/iframeCom.vue';
+  import { useIframe } from '/src/hooks/component/useIframe';
+  import { inject } from '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{
-      loading:true,
-      url:'admin.php?page=material_management',
-      loginUrl:'admin.php?page=material_management',
-      iframePage:'baseInfo'
-    }
-  }
-}
+  export default {
+    components: { iframeCom },
+    mixins: [useIframe],
+    data() {
+      return {
+        loading: true,
+        url: 'admin.php?page=material_management',
+        loginUrl: 'admin.php?page=material_management',
+        iframePage: 'baseInfo',
+      };
+    },
+  };
 </script>
 
-<style scoped>
-
-</style>
+<style scoped></style>

+ 31 - 33
src/views/adweb/wpInTo/iframeCom.vue

@@ -1,5 +1,5 @@
 <template>
-  <div class="vesselBox" >
+  <div class="vesselBox">
     <Spin :spinning="loading" size="large">
       <iframe ref="iframeRef" width="100%" height="100%" frameborder="0" :src="src" class="self_iframe"></iframe>
     </Spin>
@@ -7,43 +7,41 @@
 </template>
 
 <script>
+  import { Spin } from 'ant-design-vue';
+  import { ref, provide } from 'vue';
 
-import {Spin} from "ant-design-vue";
-import { ref, provide } from 'vue';
+  export default {
+    components: { Spin },
+    props: ['loading', 'src'],
+    setup() {
+      const iframeRef = ref(null);
 
-export default {
-  setup() {
-    const iframeRef = ref(null);
+      // 提供iframe引用给父组件
+      provide('iframeRef', iframeRef);
 
-    // 提供iframe引用给父组件
-    provide('iframeRef', iframeRef);
-
-    return {
-      iframeRef,
-    };
-  },
-  components: {Spin},
-  props:['loading','src']
-}
+      return {
+        iframeRef,
+      };
+    },
+  };
 </script>
 
 <style scoped lang="less">
-.vesselBox{
-  .self_iframe{
-    width: 100%;
-    min-height: 92vh;
-    background: #fff;
-    border: none;
-  }
-  .ant-empty{
-    height: 94vh;
-    background: #fff;
-    display: flex;
-    justify-content: center;
-    align-items: center;
-    flex-direction: column;
-    font-size: 20px;
+  .vesselBox {
+    .self_iframe {
+      width: 100%;
+      min-height: 92vh;
+      background: #fff;
+      border: none;
+    }
+    .ant-empty {
+      height: 94vh;
+      background: #fff;
+      display: flex;
+      justify-content: center;
+      align-items: center;
+      flex-direction: column;
+      font-size: 20px;
+    }
   }
-}
-
 </style>