北鸣对接T+畅捷通,看板前端
loulijun2021
2023-12-26 2dfd9ea256919594e200c337da3ca771f3db04be
1.仓库看板 、 生产看板  100%
已添加1个文件
已修改4个文件
已删除1个文件
1099 ■■■■■ 文件已修改
src/api/kanbanManager.js 108 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/permission.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/index.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/kb/procure.vue 556 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/kb/produce.vue 367 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/kb/warehouse.vue 62 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/kanbanManager.js
@@ -1,38 +1,6 @@
import request from '@/utils/request'
// åŒ—鸣仓库看板左上,生产待入库
export function ProductionStockedInLeftTop() {
  return request({
    url: 'KanBanManagerent/ProductionStockedInLeftTop',
    method: 'get'
  })
}
// åŒ—鸣仓库看板左下,产品待发货
export function ProductConsignmentLeftBottom() {
  return request({
    url: 'KanBanManagerent/ProductConsignmentLeftBottom',
    method: 'get'
  })
}
// åŒ—鸣仓库看板右上,近一周生产待入库产品排行TOP5
export function ProductionStockedInRightTop() {
  return request({
    url: 'KanBanManagerent/ProductionStockedInRightTop',
    method: 'get'
  })
}
// åŒ—鸣仓库看板右下,近一周销售待发货产品排行TOP5
export function ProductionStockedInRightBottom() {
  return request({
    url: 'KanBanManagerent/ProductionStockedInRightBottom',
    method: 'get'
  })
}
// åŒ—鸣采购委外看板左上,采购待入库
// å­£é“­ä»“库看板左上,采购待入库
export function ProcureOutsourcLeftTop() {
  return request({
    url: 'KanBanManagerent/ProcureOutsourcLeftTop',
@@ -40,15 +8,15 @@
  })
}
// åŒ—鸣采购委外看板左上,委外待入库
export function ProcureOutsourcLeftBottom() {
// å­£é“­ä»“库看板左下,销售待发货
export function ProductConsignmentLeftBottom() {
  return request({
    url: 'KanBanManagerent/ProcureOutsourcLeftBottom',
    url: 'KanBanManagerent/ProductConsignmentLeftBottom',
    method: 'get'
  })
}
// åŒ—鸣采购委外看板右上,近一周采购待入库物料排行TOP5
// å­£é“­ä»“库看板右上,近一周采购待入库物料排行TOP5
export function ProcureOutsourcRightTop() {
  return request({
    url: 'KanBanManagerent/ProcureOutsourcRightTop',
@@ -56,7 +24,39 @@
  })
}
// åŒ—鸣采购委外看板右下,近一周委外待入库产品排行TOP5
// å­£é“­ä»“库看板左上,生产待入库
export function ProductionStockedInLeftTop() {
  return request({
    url: 'KanBanManagerent/ProductionStockedInLeftTop',
    method: 'get'
  })
}
// å­£é“­ç”Ÿäº§çœ‹æ¿å³ä¸Š,近一周生产待入库产品排行TOP10
export function ProductionStockedInRightTop() {
  return request({
    url: 'KanBanManagerent/ProductionStockedInRightTop',
    method: 'get'
  })
}
// å­£é“­ä»“库看板右下,近一周销售待发货产品排行TOP5
export function ProductionStockedInRightBottom() {
  return request({
    url: 'KanBanManagerent/ProductionStockedInRightBottom',
    method: 'get'
  })
}
// å­£é“­é‡‡è´­å§”外看板左上,委外待入库
export function ProcureOutsourcLeftBottom() {
  return request({
    url: 'KanBanManagerent/ProcureOutsourcLeftBottom',
    method: 'get'
  })
}
// å­£é“­é‡‡è´­å§”外看板右下,近一周委外待入库产品排行TOP5
export function ProcureOutsourcRightBottom() {
  return request({
    url: 'KanBanManagerent/ProcureOutsourcRightBottom',
@@ -64,3 +64,35 @@
  })
}
// å­£é“­è½¦é—´ç»¼åˆçœ‹æ¿,左上生产订单
export function WorkShopCompreLeftTop(data) {
  return request({
    url: 'KanBanManagerent/WorkShopCompreLeftTop',
    method: 'get',
    params: data
  })
}
// å­£é“­è½¦é—´ç»¼åˆçœ‹æ¿,右上销售订单
export function WorkShopCompreRightTop() {
  return request({
    url: 'KanBanManagerent/WorkShopCompreRightTop',
    method: 'get'
  })
}
// å­£é“­è½¦é—´ç»¼åˆçœ‹æ¿,左下采购订单
export function WorkShopCompreLeftBottom() {
  return request({
    url: 'KanBanManagerent/WorkShopCompreLeftBottom',
    method: 'get'
  })
}
// å­£é“­è½¦é—´ç»¼åˆçœ‹æ¿,右下库存
export function WorkShopCompreRightBottom() {
  return request({
    url: 'KanBanManagerent/WorkShopCompreRightBottom',
    method: 'get'
  })
}
src/permission.js
@@ -8,7 +8,7 @@
NProgress.configure({ showSpinner: false }) // NProgress Configuration
const whiteList = ['/login', '/warehouse', '/procure'] // no redirect whitelist
const whiteList = ['/login', '/warehouse', '/produce'] // no redirect whitelist
router.beforeEach(async(to, from, next) => {
  // start progress bar
src/router/index.js
@@ -37,8 +37,8 @@
    hidden: true
  },
  {
    path: '/procure',
    component: () => import('@/views/kb/procure'),
    path: '/produce',
    component: () => import('@/views/kb/produce'),
    hidden: true
  },
  {
src/views/kb/procure.vue
ÎļþÒÑɾ³ý
src/views/kb/produce.vue
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,367 @@
<template>
  <div>
    <div class="kb_dashboard">
      <div class="kb_backgroundCustom" />
      <div class="kb_header">
        <div class="kb_headTime" style="top: 35px;left:  20px">
          <span>永康市季铭工贸有限公司</span>
        </div>
        <div class="kb_headTime kb_header_text" style="top: 35px;left:  800px">
          <span>车间生产数字化看板</span>
        </div>
        <div class="kb_headTime" style="top: 35px;right:  25px">
          <span>{{ headTime }}</span>
        </div>
      </div>
      <div style="display: flex;justify-content: space-between;padding:0 20px 20px 20px;height: 950px">
        <div style="width: 1350px;z-index: 2;margin-top: 50px;" class="flex_c_b">
          <div style="height: 970px;">
            <div class="smallTitle">
              <svg-icon icon-class="cpdrk" class="svg_class" />
              ç”Ÿäº§å¾…入库
            </div>
            <div class="lineContent horn" style="height: 890px">
              <el-table
                ref="tableDataTopRef"
                :data="tableDataTop"
                style="width: 100%;"
                class="tableData"
                :header-cell-style="headerCellStyleCenter"
                :cell-style="cellStyleCenter"
                height="885"
              >
                <el-table-column
                  prop="voucherdate"
                  label="单据日期"
                  width="131"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.voucherdate" class="ellipsis">{{ row.voucherdate.substring(0, 10) }}</div>
                    <div v-else />
                  </template>
                </el-table-column>
                <el-table-column
                  prop="wo"
                  label="单据编号"
                  width="189"
                >
                  <template slot-scope="{row}">
                    <div class="ellipsis">{{ row.wo }}</div>
                  </template>
                </el-table-column>
                <el-table-column
                  prop="wkshp_name"
                  label="生产车间"
                  width="105"
                >
                  <template slot-scope="{row}">
                    <div class="ellipsis">{{ row.wkshp_name }}</div>
                  </template>
                </el-table-column>
                <el-table-column
                  prop="saleOrderCode"
                  label="销售订单号"
                  width="200"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.saleOrderCode" class="ellipsis">{{ row.saleOrderCode }}</div>
                    <div v-else>/</div>
                  </template>
                </el-table-column>
                <!--                <el-table-column-->
                <!--                  prop="materiel_code"-->
                <!--                  label="产品编号"-->
                <!--                  width="136"-->
                <!--                >-->
                <!--                  <template slot-scope="{row}">-->
                <!--                    <div class="ellipsis">{{ row.materiel_code }}</div>-->
                <!--                  </template>-->
                <!--                </el-table-column>-->
                <el-table-column
                  prop="materiel_name"
                  label="产品名称"
                  width="200"
                >
                  <template slot-scope="{row}">
                    <div class="ellipsis">{{ row.materiel_name }}</div>
                  </template>
                </el-table-column>
                <el-table-column
                  prop="specification"
                  label="规格型号"
                  width="196"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.specification" class="ellipsis">{{ row.specification }}</div>
                    <div v-else>/</div>
                  </template>
                </el-table-column>
                <el-table-column
                  prop="stck_name"
                  label="预入仓库"
                  width="120"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.stck_name" class="ellipsis">{{ row.stck_name }}</div>
                    <div v-else>/</div>
                  </template>
                </el-table-column>
                <el-table-column
                  prop="quantity"
                  label="数量"
                  width="83"
                />
                <el-table-column
                  prop="totalStockInQuantity"
                  label="已入库数量"
                  width="120"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.totalStockInQuantity">{{ row.totalStockInQuantity }}</div>
                    <div v-else>0</div>
                  </template>
                </el-table-column>
                <!--                  <el-table-column-->
                <!--                    prop="uomname"-->
                <!--                    label="单位"-->
                <!--                    width="50"-->
                <!--                  />-->
                <!--                  <el-table-column-->
                <!--                    prop="preStartDate"-->
                <!--                    label="预计开工"-->
                <!--                    width="100"-->
                <!--                  >-->
                <!--                    <template slot-scope="{row}">-->
                <!--                      <div v-if="row.preStartDate">{{ row.preStartDate.substring(0, 10) }}</div>-->
                <!--                      <div v-else />-->
                <!--                    </template>-->
                <!--                  </el-table-column>-->
                <!--                <el-table-column-->
                <!--                  prop="preFinishDate"-->
                <!--                  label="预计入库"-->
                <!--                  width="140"-->
                <!--                >-->
                <!--                  <template slot-scope="{row}">-->
                <!--                    <div v-if="row.preFinishDate">{{ row.preFinishDate.substring(0, 10) }}</div>-->
                <!--                    <div v-else />-->
                <!--                  </template>-->
                <!--                </el-table-column>-->
              </el-table>
            </div>
          </div>
        </div>
        <div style="width: 500px;z-index: 2;margin-top: 50px;" class="flex_c_b">
          <div style="height:970px;">
            <div class="smallTitle">
              <svg-icon icon-class="ph" class="svg_class" />
              è¿‘一周生产待入库产品排行Top10
            </div>
            <div class="lineContent horn" style="height: 890px">
              <div id="bar03" style="width: 100%;height:100%; " />
              <!--/*              <div id="bar03" style="width: 100%;height:100%;margin-left: -25px;margin-top: -10px" />*/-->
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>
<script>
import './kbCommon.css'
import { bar02, loadEcharts } from '@/utils/myEcharts'
import {
  ProductionStockedInLeftTop,
  ProductionStockedInRightTop
} from '@/api/kanbanManager'
export default {
  name: 'Index2',
  data() {
    return {
      onLine: navigator.onLine, // ç›‘听网络是否在线
      headTime: '',
      tableDataTop: [],
      tableDataBottom: [],
      MarqueeTipsContent: '', // å…¬å‘Š
      speed: 100, // å…¬å‘Šæ’­æ”¾çš„速度
      tableTopTask: null,
      tableBottomTask: null,
      echartsRightTop: null,
      echartsRightBottom: null,
      starsCount: 800, // æ˜Ÿæ˜Ÿæ•°é‡
      distance: 900 // é—´è·
    }
  },
  created() {
    setInterval(this.getNowTime, 1000)
    // ä¸¤å°æ—¶çœ‹æ¿åˆ·æ–°ä¸€æ¬¡
    setInterval(() => {
      window.location.reload()
    }, 1000 * 60 * 120)
  },
  mounted() {
    // ç›‘听网络是否在线
    window.addEventListener('online', this.updateOnlineStatus)
    window.addEventListener('offline', this.updateOnlineStatus)
    this.updateOnlineStatus({ type: this.onLine ? 'online' : 'offline', isFirst: true })
    this.getProductionStockedInLeftTop()
    // this.getProcureOutsourcLeftBottom()
    this.getEcharts()
  },
  beforeDestroy() {
    window.removeEventListener('online', this.updateOnlineStatus)
    window.removeEventListener('offline', this.updateOnlineStatus)
  },
  methods: {
    // æ›´æ–°ç½‘络状态
    updateOnlineStatus(e) {
      if (e.isFirst) {
        // console.log('x')
      } else {
        const loading = this.$loading({
          lock: true,
          text: '断网了,正在拼命联网中,请检查网络是否正常...',
          spinner: 'el-icon-loading',
          customClass: 'osloading',
          background: 'rgba(0, 0, 0, 0.7)'
        })
        const { type } = e
        this.onLine = type === 'online'
        if (this.onLine) {
          loading.close()
          this.$message.success('网络连接成功!')
        } else {
          this.$message.error('网络掉线,请关注网络状态!')
        }
      }
    },
    // èŽ·å–å·¦ä¸Štable数据
    getProductionStockedInLeftTop() {
      ProductionStockedInLeftTop().then(res => {
        this.tableDataTop = res.data
        // this.number1 = this.tableDataTop.length
        const divData = this.$refs.tableDataTopRef.bodyWrapper
        // æ‹¿åˆ°å…ƒç´ åŽï¼Œå¯¹å…ƒç´ è¿›è¡Œå®šæ—¶å¢žåŠ è·ç¦»é¡¶éƒ¨è·ç¦»ï¼Œå®žçŽ°æ»šåŠ¨æ•ˆæžœ(此配置为每100毫秒移动1像素)
        this.tableTopTask = setInterval(() => {
          // å…ƒç´ è‡ªå¢žè·ç¦»é¡¶éƒ¨1像素
          divData.scrollTop += 1
          // divData.scrollTop += divData.scrollHeight / this.tableData.length
          // åˆ¤æ–­å…ƒç´ æ˜¯å¦æ»šåŠ¨åˆ°åº•éƒ¨(可视高度+距离顶部=整个高度)
          if (divData.clientHeight + divData.scrollTop === divData.scrollHeight) {
            // é‡ç½®table距离顶部距离
            divData.scrollTop = 0
            ProductionStockedInLeftTop().then(res => {
              this.tableDataTop = res.data
              // this.number1 = this.tableDataTop.length
              if (this.tableDataTop.length > 10) {
                clearInterval(this.tableTopTask)
                this.getProductionStockedInLeftTop()
              }
            })
          }
        }, this.tableDataTop.length <= 10 ? 1000 * 3 : 100)
      })
    },
    // èŽ·å–echarts
    getEcharts() {
      ProductionStockedInRightTop().then(res => {
        loadEcharts('bar03', bar02(res.data.filter(i => i.qty > 0).map(i => i.qty), res.data.filter(i => i.qty > 0).map(i => i.materiel_name)))
      })
      this.echartsRightTop = setInterval(() => {
        ProductionStockedInRightTop().then(res => {
          loadEcharts('bar03', bar02(res.data.filter(i => i.qty > 0).map(i => i.qty), res.data.filter(i => i.qty > 0).map(i => i.materiel_name)))
        })
      }, 1000 * 15)
    },
    // èŽ·å–å½“å‰æ—¶é—´
    getNowTime() {
      const dt = new Date()
      const wk = dt.getDay()
      const y = dt.getFullYear()
      const m = (dt.getMonth() + 1 + '').padStart(2, '0')
      const d = (dt.getDate() + '').padStart(2, '0')
      const hh = (dt.getHours() + '').padStart(2, '0')
      const mm = (dt.getMinutes() + '').padStart(2, '0')
      const ss = (dt.getSeconds() + '').padStart(2, '0')
      const weeks = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六']
      const week = weeks[wk]
      this.headTime = `${y}-${m}-${d}  ${hh}:${mm}:${ss}   ${week}`
    },
    headerCellStyleCenter() {
      return {
        backgroundColor: 'transparent ',
        padding: '10px 0',
        textAlign: 'center',
        color: '#07acc2',
        border: 'none',
        fontSize: '18px'
      }
    },
    cellStyleCenter() {
      return {
        padding: '7.5px 0',
        textAlign: 'center',
        backgroundColor: 'transparent ',
        color: '#c7e7ff',
        border: 'none',
        fontSize: '18px'
      }
    }
  }
}
</script>
<style scoped lang="scss">
$main_color:#09d8f2;
$color01: #00FFFF;
.tableData{
  background: transparent;
}
::v-deep .el-table th,
::v-deep .el-table tr,
::v-deep .el-table td {
  background-color: transparent;
}
.el-table__empty-text{
  color: $main_color;
}
::v-deep .el-table__body-wrapper::-webkit-scrollbar {
  /* width: 0;宽度为0暗藏 */
  width: 0;
}
::v-deep .el-table::before {
  height: 0;
}
::v-deep .cell {
  padding: 0 !important;
  //font-size: 16px;
  font-size: 18px;
}
</style>
src/views/kb/warehouse.vue
@@ -5,7 +5,7 @@
      <div class="kb_backgroundCustom" />
      <div class="kb_header">
        <div class="kb_headTime" style="top: 35px;left:  20px">
          <span>永康市北鸣工贸有限公司</span>
          <span>永康市季铭工贸有限公司</span>
        </div>
        <div class="kb_headTime kb_header_text" style="top: 35px;left:  800px">
@@ -22,7 +22,7 @@
          <div style="height: 470px;">
            <div class="smallTitle">
              <svg-icon icon-class="cpdrk" class="svg_class" />
              ç”Ÿäº§å¾…入库
              é‡‡è´­å¾…入库
            </div>
            <div class="lineContent horn" style="height: 410px">
              <el-table
@@ -37,7 +37,7 @@
                <el-table-column
                  prop="voucherdate"
                  label="单据日期"
                  width="151"
                  width="161"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.voucherdate" class="ellipsis">{{ row.voucherdate.substring(0, 10) }}</div>
@@ -47,25 +47,25 @@
                <el-table-column
                  prop="wo"
                  label="单据编号"
                  width="189"
                  width="199"
                >
                  <template slot-scope="{row}">
                    <div class="ellipsis">{{ row.wo }}</div>
                  </template>
                </el-table-column>
                <el-table-column
                  prop="wkshp_name"
                  label="生产车间"
                  width="105"
                >
                  <template slot-scope="{row}">
                    <div class="ellipsis">{{ row.wkshp_name }}</div>
                  </template>
                </el-table-column>
                <!--                <el-table-column-->
                <!--                  prop="wkshp_name"-->
                <!--                  label="生产车间"-->
                <!--                  width="105"-->
                <!--                >-->
                <!--                  <template slot-scope="{row}">-->
                <!--                    <div class="ellipsis">{{ row.wkshp_name }}</div>-->
                <!--                  </template>-->
                <!--                </el-table-column>-->
                <el-table-column
                  prop="saleOrderCode"
                  label="销售订单号"
                  width="200"
                  width="210"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.saleOrderCode" class="ellipsis">{{ row.saleOrderCode }}</div>
@@ -76,7 +76,7 @@
                <el-table-column
                  prop="materiel_name"
                  label="产品名称"
                  width="260"
                  width="270"
                >
                  <template slot-scope="{row}">
                    <div class="ellipsis">{{ row.materiel_name }}</div>
@@ -85,7 +85,7 @@
                <el-table-column
                  prop="specification"
                  label="规格型号"
                  width="116"
                  width="126"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.specification" class="ellipsis">{{ row.specification }}</div>
@@ -95,7 +95,7 @@
                <el-table-column
                  prop="stck_name"
                  label="预入仓库"
                  width="110"
                  width="125"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.stck_name" class="ellipsis">{{ row.stck_name }}</div>
@@ -105,12 +105,12 @@
                <el-table-column
                  prop="quantity"
                  label="数量"
                  width="73"
                  width="93"
                />
                <el-table-column
                  prop="totalStockInQuantity"
                  label="已入库数量"
                  width="120"
                  width="140"
                >
                  <template slot-scope="{row}">
                    <div v-if="row.totalStockInQuantity">{{ row.totalStockInQuantity }}</div>
@@ -124,7 +124,7 @@
          <div style="height: 470px;margin-top: 30px;">
            <div class="smallTitle">
              <svg-icon icon-class="cpdfh" class="svg_class" />
              äº§å“å¾…发货
              é”€å”®å¾…发货
            </div>
            <div class="lineContent horn" style="height: 410px">
              <el-table
@@ -197,7 +197,7 @@
                <el-table-column
                  prop="deliveryDate"
                  label="预计交货日期"
                  label="预计交付日期"
                  width="200"
                >
                  <template slot-scope="{row}">
@@ -225,7 +225,7 @@
          <div style="height: 470px;">
            <div class="smallTitle">
              <svg-icon icon-class="ph" class="svg_class" />
              è¿‘一周生产待入库产品排行Top5
              è¿‘一周采购待入库产品排行Top5
            </div>
            <div class="lineContent horn" style="height: 410px">
              <div id="bar03" style="width: 100%;height:100%; " />
@@ -253,9 +253,9 @@
import './kbCommon.css'
import { bar02, kbTop, loadEcharts } from '@/utils/myEcharts'
import {
  ProductionStockedInLeftTop,
  ProcureOutsourcLeftTop,
  ProductConsignmentLeftBottom,
  ProductionStockedInRightTop,
  ProcureOutsourcRightTop,
  ProductionStockedInRightBottom
} from '@/api/kanbanManager'
@@ -298,7 +298,7 @@
    window.addEventListener('offline', this.updateOnlineStatus)
    this.updateOnlineStatus({ type: this.onLine ? 'online' : 'offline', isFirst: true })
    this.getProductionStockedInLeftTop()
    this.getProcureOutsourcLeftTop()
    this.getProductConsignmentLeftBottom()
    this.getEcharts()
  },
@@ -330,8 +330,8 @@
      }
    },
    // èŽ·å–å·¦ä¸Štable数据
    getProductionStockedInLeftTop() {
      ProductionStockedInLeftTop().then(res => {
    getProcureOutsourcLeftTop() {
      ProcureOutsourcLeftTop().then(res => {
        this.tableDataTop = res.data
        // this.number1 = this.tableDataTop.length
        const divData = this.$refs.tableDataTopRef.bodyWrapper
@@ -344,12 +344,12 @@
          if (divData.clientHeight + divData.scrollTop === divData.scrollHeight) {
            // é‡ç½®table距离顶部距离
            divData.scrollTop = 0
            ProductionStockedInLeftTop().then(res => {
            ProcureOutsourcLeftTop().then(res => {
              this.tableDataTop = res.data
              // this.number1 = this.tableDataTop.length
              if (this.tableDataTop.length > 10) {
                clearInterval(this.tableTopTask)
                this.getProductionStockedInLeftTop()
                this.getProcureOutsourcLeftTop()
              }
            })
          }
@@ -387,7 +387,7 @@
    // èŽ·å–echarts
    getEcharts() {
      ProductionStockedInRightTop().then(res => {
      ProcureOutsourcRightTop().then(res => {
        loadEcharts('bar03', bar02(res.data.filter(i => i.qty > 0).map(i => i.qty), res.data.filter(i => i.qty > 0).map(i => i.materiel_name)))
      })
@@ -396,7 +396,7 @@
      })
      this.echartsRightTop = setInterval(() => {
        ProductionStockedInRightTop().then(res => {
        ProcureOutsourcRightTop().then(res => {
          loadEcharts('bar03', bar02(res.data.filter(i => i.qty > 0).map(i => i.qty), res.data.filter(i => i.qty > 0).map(i => i.materiel_name)))
        })
      }, 1000 * 15)