Commit da005211 authored by 陈龙's avatar 陈龙

fix: merge

parents fb2e80f0 0eef04ee
...@@ -16,21 +16,21 @@ before_script: ...@@ -16,21 +16,21 @@ before_script:
init: init:
stage: init stage: init
script: script:
- cd /d %DEPLOY_PATH%/src/wisdom-components - 'cd ${DEPLOY_PATH}/src/wisdom-components'
- dir - dir
- git pull - git pull
- npm install - npm install --registry=https://g.civnet.cn:4873/
bootstrap: bootstrap:
stage: bootstrap stage: bootstrap
script: script:
- cd /d %DEPLOY_PATH%/src/wisdom-components - 'cd ${DEPLOY_PATH}/src/wisdom-components'
- dir - dir
build: build:
stage: build stage: build
script: script:
- cd /d %DEPLOY_PATH%/src/wisdom-components - 'cd ${DEPLOY_PATH}/src/wisdom-components'
- echo 开始打包... - echo 开始打包...
- npm run site - npm run site
- echo 打包完成 - echo 打包完成
...@@ -38,7 +38,7 @@ build: ...@@ -38,7 +38,7 @@ build:
release: release:
stage: release stage: release
script: script:
- cd /d %DEPLOY_PATH%/src/wisdom-components - 'cd ${DEPLOY_PATH}/src/wisdom-components'
- echo 开始拷贝发布包... - echo 开始拷贝发布包...
- robocopy dist %DEPLOY_PATH%/dist /e || cmd /c "exit /b 0" - 'robocopy "${DEPLOY_PATH}/src/wisdom-components/dist" "${DEPLOY_PATH}/dist" /S ; IF ((${LASTEXITCODE} -le 8)) {cmd /c "exit /b 0"}'
- echo 发布完成. - echo 发布完成.
...@@ -147,7 +147,6 @@ ...@@ -147,7 +147,6 @@
"@wisdom-components/basictable": "^1.5.14", "@wisdom-components/basictable": "^1.5.14",
"@wisdom-components/empty": "^1.3.9", "@wisdom-components/empty": "^1.3.9",
"@wisdom-components/exportexcel": "^1.1.2", "@wisdom-components/exportexcel": "^1.1.2",
"@wisdom-components/rich": "file:packages/base-components/rich",
"@wisdom-components/timerangepicker": "^1.3.4", "@wisdom-components/timerangepicker": "^1.3.4",
"@wisdom-utils/utils": "0.0.46", "@wisdom-utils/utils": "0.0.46",
"classnames": "^2.2.6", "classnames": "^2.2.6",
...@@ -158,7 +157,7 @@ ...@@ -158,7 +157,7 @@
"js-export-excel": "^1.1.4", "js-export-excel": "^1.1.4",
"jszip": "^3.5.0", "jszip": "^3.5.0",
"mqtt-client": "^1.0.12", "mqtt-client": "^1.0.12",
"parseForm": "0.0.8", "parseForm": "1.0.0",
"sha1": "^1.1.1" "sha1": "^1.1.1"
}, },
"size-limit": [ "size-limit": [
......
...@@ -9,7 +9,7 @@ group: ...@@ -9,7 +9,7 @@ group:
# PandaExportExcel Excel 表格导出 # PandaExportExcel Excel 表格导出
<code src="./demos/Base.tsx"> <code src="./demos/base.tsx">
## API ## API
......
...@@ -26,6 +26,6 @@ ...@@ -26,6 +26,6 @@
"dependencies": { "dependencies": {
"@babel/runtime": "^7.17.9", "@babel/runtime": "^7.17.9",
"form-render": "^0.9.12", "form-render": "^0.9.12",
"parseForm": "^0.0.8" "parseForm": "^1.0.0"
} }
} }
import React, { useEffect, useState } from 'react'; import React, { useEffect, useState } from 'react';
import Empty from '@wisdom-components/Empty'; import Empty from '@wisdom-components/empty';
import RealTimeInfo from '../index'; import RealTimeInfo from '../index';
import request from 'umi-request'; import request from 'umi-request';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment