mirror of
https://github.com/jeecgboot/ant-design-vue-jeecg.git
synced 2025-10-14 15:11:50 +00:00
JeecgBoot 3.3.0 版本,vue2前台拆分成独立项目
This commit is contained in:
23
.dockerignore
Normal file
23
.dockerignore
Normal file
@@ -0,0 +1,23 @@
|
||||
docs
|
||||
public
|
||||
src
|
||||
.dockerignore
|
||||
.editorconfig
|
||||
.eslintignore
|
||||
.gitattributes
|
||||
.gitignore
|
||||
.prettierrc
|
||||
babel.config.js
|
||||
Dockerfile
|
||||
idea.config.js
|
||||
LICENSE
|
||||
package.json
|
||||
package-lock.json
|
||||
README.md
|
||||
vue.config.js
|
||||
yarn
|
||||
yarn.lock
|
||||
yarn-error.log
|
||||
.idea
|
||||
.svn
|
||||
node_modules
|
39
.editorconfig
Normal file
39
.editorconfig
Normal file
@@ -0,0 +1,39 @@
|
||||
[*]
|
||||
charset=utf-8
|
||||
end_of_line=crlf
|
||||
insert_final_newline=false
|
||||
indent_style=space
|
||||
indent_size=2
|
||||
|
||||
[{*.ng,*.sht,*.html,*.shtm,*.shtml,*.htm}]
|
||||
indent_style=space
|
||||
indent_size=2
|
||||
|
||||
[{*.jhm,*.xslt,*.xul,*.rng,*.xsl,*.xsd,*.ant,*.tld,*.fxml,*.jrxml,*.xml,*.jnlp,*.wsdl}]
|
||||
indent_style=space
|
||||
indent_size=2
|
||||
|
||||
[{.babelrc,.stylelintrc,jest.config,.eslintrc,.prettierrc,*.json,*.jsb3,*.jsb2,*.bowerrc}]
|
||||
indent_style=space
|
||||
indent_size=2
|
||||
|
||||
[*.svg]
|
||||
indent_style=space
|
||||
indent_size=2
|
||||
|
||||
[*.js.map]
|
||||
indent_style=space
|
||||
indent_size=2
|
||||
|
||||
[*.less]
|
||||
indent_style=space
|
||||
indent_size=2
|
||||
|
||||
[*.vue]
|
||||
indent_style=space
|
||||
indent_size=2
|
||||
|
||||
[{.analysis_options,*.yml,*.yaml}]
|
||||
indent_style=space
|
||||
indent_size=2
|
||||
|
6
.env
Normal file
6
.env
Normal file
@@ -0,0 +1,6 @@
|
||||
NODE_ENV=production
|
||||
VUE_APP_PLATFORM_NAME=JeecgBoot 企业级低代码平台
|
||||
# 开启单点登录
|
||||
VUE_APP_SSO=false
|
||||
# 开启微应用模式
|
||||
VUE_APP_QIANKUN=false
|
7
.env.development
Normal file
7
.env.development
Normal file
@@ -0,0 +1,7 @@
|
||||
NODE_ENV=development
|
||||
VUE_APP_API_BASE_URL=http://localhost:8080/jeecg-boot
|
||||
VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas
|
||||
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview
|
||||
|
||||
# 微应用列表必须VUE_APP_SUB_开头,jeecg-app-1为子应用的项目名称,也是子应用的路由父路径
|
||||
VUE_APP_SUB_jeecg-app-1 = '//localhost:8092'
|
4
.env.production
Normal file
4
.env.production
Normal file
@@ -0,0 +1,4 @@
|
||||
NODE_ENV=production
|
||||
VUE_APP_API_BASE_URL=http://localhost:8080/jeecg-boot
|
||||
VUE_APP_CAS_BASE_URL=http://localhost:8888/cas
|
||||
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview
|
4
.env.test
Normal file
4
.env.test
Normal file
@@ -0,0 +1,4 @@
|
||||
NODE_ENV=production
|
||||
VUE_APP_API_BASE_URL=http://boot.jeecg.com:8080/jeecg-boot
|
||||
VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas
|
||||
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview
|
1
.eslintignore
Normal file
1
.eslintignore
Normal file
@@ -0,0 +1 @@
|
||||
/src
|
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@@ -0,0 +1 @@
|
||||
public/* linguist-vendored
|
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
## ide
|
||||
**/.idea
|
||||
*.iml
|
||||
|
||||
## backend
|
||||
**/target
|
||||
**/logs
|
||||
|
||||
## front
|
||||
**/*.lock
|
5
.prettierrc
Normal file
5
.prettierrc
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"printWidth": 120,
|
||||
"semi": false,
|
||||
"singleQuote": true
|
||||
}
|
29
Dockerfile
Normal file
29
Dockerfile
Normal file
@@ -0,0 +1,29 @@
|
||||
FROM nginx
|
||||
MAINTAINER jeecgos@163.com
|
||||
VOLUME /tmp
|
||||
ENV LANG en_US.UTF-8
|
||||
RUN echo "server { \
|
||||
listen 80; \
|
||||
location ^~ /jeecg-boot { \
|
||||
proxy_pass http://jeecg-boot-system:8080/jeecg-boot/; \
|
||||
proxy_set_header Host jeecg-boot-system; \
|
||||
proxy_set_header X-Real-IP \$remote_addr; \
|
||||
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; \
|
||||
} \
|
||||
#解决Router(mode: 'history')模式下,刷新路由地址不能找到页面的问题 \
|
||||
location / { \
|
||||
root /var/www/html/; \
|
||||
index index.html index.htm; \
|
||||
if (!-e \$request_filename) { \
|
||||
rewrite ^(.*)\$ /index.html?s=\$1 last; \
|
||||
break; \
|
||||
} \
|
||||
} \
|
||||
access_log /var/log/nginx/access.log ; \
|
||||
} " > /etc/nginx/conf.d/default.conf \
|
||||
&& mkdir -p /var/www \
|
||||
&& mkdir -p /var/www/html
|
||||
|
||||
ADD dist/ /var/www/html/
|
||||
EXPOSE 80
|
||||
EXPOSE 443
|
213
LICENSE
Normal file
213
LICENSE
Normal file
@@ -0,0 +1,213 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright (c) 2019 <a href="http://www.jeecg.com">Jeecg Boot</a> All rights reserved.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
In any case, you must not make any such use of this software as to develop software which may be considered competitive with this software.
|
||||
|
||||
开源协议补充
|
||||
JeecgBoot 是由 北京国炬信息技术有限公司 发行的软件。 总部位于北京,地址:中国·北京·朝阳区科荟前街1号院奥林佳泰大厦。邮箱:jeecgos@163.com
|
||||
本软件受适用的国家软件著作权法(包括国际条约)和双重保护许可。
|
||||
|
||||
1.允许基于本平台软件开展业务系统开发。
|
||||
2.不得基于该平台软件的基础,修改包装成一个与JeecgBoot平台软件功能类似的产品进行发布、销售,或与JeecgBoot参与同类软件产品市场的竞争。
|
||||
违反此条款属于侵权行为,须赔偿侵权经济损失,同时立即停止著作权侵权行为。
|
||||
解释权归:http://www.jeecg.com
|
||||
|
135
README.md
135
README.md
@@ -1,2 +1,133 @@
|
||||
# jeecgboot-vue2
|
||||
jeecgboot-vue2
|
||||
Ant Design Jeecg Vue
|
||||
====
|
||||
|
||||
当前最新版本: 3.3.0(发布日期:20220725)
|
||||
|
||||
Overview
|
||||
----
|
||||
|
||||
基于 [Ant Design of Vue](https://vuecomponent.github.io/ant-design-vue/docs/vue/introduce-cn/) 实现的 Ant Design Pro Vue 版
|
||||
Jeecg-boot 的前端UI框架,采用前后端分离方案,提供强大代码生成器的低代码平台。
|
||||
前端页面代码和后端功能代码一键生成,不需要写任何代码,保持jeecg一贯的强大!!
|
||||
|
||||
|
||||
|
||||
#### 前端技术
|
||||
|
||||
- 基础框架:[ant-design-vue](https://github.com/vueComponent/ant-design-vue) - Ant Design Of Vue 实现
|
||||
- JavaScript框架:Vue
|
||||
- Webpack
|
||||
- node
|
||||
- yarn
|
||||
- eslint
|
||||
- @vue/cli 3.2.1
|
||||
- [vue-cropper](https://github.com/xyxiao001/vue-cropper) - 头像裁剪组件
|
||||
- [@antv/g2](https://antv.alipay.com/zh-cn/index.html) - Alipay AntV 数据可视化图表
|
||||
- [Viser-vue](https://viserjs.github.io/docs.html#/viser/guide/installation) - antv/g2 封装实现
|
||||
|
||||
|
||||
|
||||
项目下载和运行
|
||||
----
|
||||
|
||||
- 拉取项目代码
|
||||
```bash
|
||||
git clone https://github.com/zhangdaiscott/jeecg-boot.git
|
||||
cd jeecg-boot/ant-design-vue-jeecg
|
||||
```
|
||||
|
||||
- 安装依赖
|
||||
```
|
||||
yarn install
|
||||
```
|
||||
|
||||
- 开发模式运行
|
||||
```
|
||||
yarn run serve
|
||||
```
|
||||
|
||||
- 编译项目
|
||||
```
|
||||
yarn run build
|
||||
```
|
||||
|
||||
- Lints and fixes files
|
||||
```
|
||||
yarn run lint
|
||||
```
|
||||
|
||||
Docker镜像启动前端(单体模式)
|
||||
----
|
||||
|
||||
```
|
||||
# 1.配置host
|
||||
|
||||
127.0.0.1 jeecg-boot-system
|
||||
|
||||
# 2.修改前端项目的后台域名
|
||||
.env.development
|
||||
域名改成: http://jeecg-boot-system:8080/jeecg-boot
|
||||
|
||||
# 3.进入项目根目录,执行打包命令
|
||||
yarn run build
|
||||
|
||||
# 4.构建镜像
|
||||
docker build -t jeecgboot-ui2 .
|
||||
|
||||
# 5.启动镜像
|
||||
docker run --name jeecgboot-ui-vue2 -p 80:80 -d jeecgboot-ui2
|
||||
|
||||
# 6.访问前台项目
|
||||
http://localhost
|
||||
```
|
||||
|
||||
|
||||
|
||||
其他说明
|
||||
----
|
||||
|
||||
- 项目使用的 [vue-cli3](https://cli.vuejs.org/guide/), 请更新您的 cli
|
||||
|
||||
- 关闭 Eslint (不推荐) 移除 `package.json` 中 `eslintConfig` 整个节点代码
|
||||
|
||||
- 修改 Ant Design 配色,在文件 `vue.config.js` 中,其他 less 变量覆盖参考 [ant design](https://ant.design/docs/react/customize-theme-cn) 官方说明
|
||||
```ecmascript 6
|
||||
css: {
|
||||
loaderOptions: {
|
||||
less: {
|
||||
modifyVars: {
|
||||
/* less 变量覆盖,用于自定义 ant design 主题 */
|
||||
|
||||
'primary-color': '#F5222D',
|
||||
'link-color': '#F5222D',
|
||||
'border-radius-base': '4px',
|
||||
},
|
||||
javascriptEnabled: true,
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
|
||||
附属文档
|
||||
----
|
||||
- [Ant Design Vue](https://vuecomponent.github.io/ant-design-vue/docs/vue/introduce-cn)
|
||||
|
||||
- [报表 viser-vue](https://viserjs.github.io/demo.html#/viser/bar/basic-bar)
|
||||
|
||||
- [Vue](https://cn.vuejs.org/v2/guide)
|
||||
|
||||
- [路由/菜单说明](https://github.com/zhangdaiscott/jeecg-boot/tree/master/ant-design-vue-jeecg/src/router/README.md)
|
||||
|
||||
- [ANTD 默认配置项](https://github.com/zhangdaiscott/jeecg-boot/tree/master/ant-design-vue-jeecg/src/defaultSettings.js)
|
||||
|
||||
- 其他待补充...
|
||||
|
||||
|
||||
备注
|
||||
----
|
||||
|
||||
> @vue/cli 升级后,eslint 规则更新了。由于影响到全部 .vue 文件,需要逐个验证。既暂时关闭部分原本不验证的规则,后期维护时,在逐步修正这些 rules
|
||||
|
||||
|
||||
|
6
babel.config.js
Normal file
6
babel.config.js
Normal file
@@ -0,0 +1,6 @@
|
||||
module.exports = {
|
||||
presets: [
|
||||
['@vue/app',
|
||||
{ useBuiltIns: 'entry' }]
|
||||
]
|
||||
}
|
BIN
dist/avatar2.jpg
vendored
Normal file
BIN
dist/avatar2.jpg
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 78 KiB |
6953
dist/cdn/babel-polyfill/polyfill_7_2_5.js
vendored
Normal file
6953
dist/cdn/babel-polyfill/polyfill_7_2_5.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
dist/cdn/babel-polyfill/polyfill_7_2_5.js.gz
vendored
Normal file
BIN
dist/cdn/babel-polyfill/polyfill_7_2_5.js.gz
vendored
Normal file
Binary file not shown.
1
dist/cdn/font-icon/font_2316098_umqusozousr.js
vendored
Normal file
1
dist/cdn/font-icon/font_2316098_umqusozousr.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
dist/cdn/font-icon/font_2316098_umqusozousr.js.gz
vendored
Normal file
BIN
dist/cdn/font-icon/font_2316098_umqusozousr.js.gz
vendored
Normal file
Binary file not shown.
7720
dist/color.less
vendored
Normal file
7720
dist/color.less
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
dist/color.less.gz
vendored
Normal file
BIN
dist/color.less.gz
vendored
Normal file
Binary file not shown.
1
dist/css/app.e50fa748.css
vendored
Normal file
1
dist/css/app.e50fa748.css
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
dist/css/app.e50fa748.css.gz
vendored
Normal file
BIN
dist/css/app.e50fa748.css.gz
vendored
Normal file
Binary file not shown.
1
dist/css/chunk-02932554.58b7299d.css
vendored
Normal file
1
dist/css/chunk-02932554.58b7299d.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-table-tbody .ant-table-row td[data-v-d142d550]{padding-top:10px;padding-bottom:10px}[data-v-d142d550] .ant-modal{height:700px}
|
1
dist/css/chunk-0347630a.3d9ef261.css
vendored
Normal file
1
dist/css/chunk-0347630a.3d9ef261.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.table-operator[data-v-315a0f92]{margin-bottom:10px}.ant-tree li span.ant-tree-iconEle[data-v-315a0f92],.clName .ant-tree li span.ant-tree-switcher[data-v-315a0f92]{width:10px!important}.clName .ant-tree li .ant-tree-node-content-wrapper.ant-tree-node-selected[data-v-315a0f92]{background-color:#1890ff!important}
|
1
dist/css/chunk-0386584a.2ac8550e.css
vendored
Normal file
1
dist/css/chunk-0386584a.2ac8550e.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-059ed1b0.c276a84f.css
vendored
Normal file
1
dist/css/chunk-059ed1b0.c276a84f.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.result[data-v-6732bfa0]{text-align:center;width:72%;margin:0 auto;padding:24px 0 8px}.result .icon[data-v-6732bfa0]{font-size:72px;line-height:72px;margin-bottom:24px}.result .success[data-v-6732bfa0]{color:#52c41a}.result .error[data-v-6732bfa0]{color:red}.result .title[data-v-6732bfa0]{font-size:24px;color:rgba(0,0,0,.85);font-weight:500;line-height:32px;margin-bottom:16px}.result .description[data-v-6732bfa0]{font-size:14px;line-height:22px;color:rgba(0,0,0,.45);margin-bottom:24px}.result .content[data-v-6732bfa0]{background:#fafafa;padding:24px 40px;border-radius:2px;text-align:left}.result .action[data-v-6732bfa0]{margin-top:32px}.mobile .result[data-v-6732bfa0]{width:100%;margin:0 auto;padding:unset}
|
1
dist/css/chunk-070631d0.33df19bc.css
vendored
Normal file
1
dist/css/chunk-070631d0.33df19bc.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.app-list .meta-cardInfo[data-v-29457760]{zoom:1;margin-top:16px}.app-list .meta-cardInfo>div[data-v-29457760]{position:relative;text-align:left;float:left;width:50%}.app-list .meta-cardInfo>div p[data-v-29457760]{line-height:32px;font-size:24px;margin:0}.app-list .meta-cardInfo>div p[data-v-29457760]:first-child{color:rgba(0,0,0,.45);font-size:12px;line-height:20px;margin-bottom:4px}.page-header-wrapper-grid-content-main[data-v-31b4caee]{width:100%;height:100%;min-height:100%;transition:.3s}.page-header-wrapper-grid-content-main .account-center-avatarHolder[data-v-31b4caee]{text-align:center;margin-bottom:24px}.page-header-wrapper-grid-content-main .account-center-avatarHolder>.avatar[data-v-31b4caee]{margin:0 auto;width:104px;height:104px;margin-bottom:20px;border-radius:50%;overflow:hidden}.page-header-wrapper-grid-content-main .account-center-avatarHolder>.avatar img[data-v-31b4caee]{height:100%;width:100%}.page-header-wrapper-grid-content-main .account-center-avatarHolder .username[data-v-31b4caee]{color:rgba(0,0,0,.85);font-size:20px;line-height:28px;font-weight:500;margin-bottom:4px}.page-header-wrapper-grid-content-main .account-center-detail p[data-v-31b4caee]{margin-bottom:8px;padding-left:26px;position:relative}.page-header-wrapper-grid-content-main .account-center-detail i[data-v-31b4caee]{position:absolute;height:14px;width:14px;left:0;top:4px;background:url(https://gw.alipayobjects.com/zos/rmsportal/pBjWzVAHnOOtAUvZmZfy.svg)}.page-header-wrapper-grid-content-main .account-center-detail .title[data-v-31b4caee]{background-position:0 0}.page-header-wrapper-grid-content-main .account-center-detail .group[data-v-31b4caee]{background-position:0 -22px}.page-header-wrapper-grid-content-main .account-center-detail .address[data-v-31b4caee]{background-position:0 -44px}.page-header-wrapper-grid-content-main .account-center-tags .ant-tag[data-v-31b4caee]{margin-bottom:8px}.page-header-wrapper-grid-content-main .account-center-team .members a[data-v-31b4caee]{display:block;margin:12px 0;line-height:24px;height:24px}.page-header-wrapper-grid-content-main .account-center-team .members a .member[data-v-31b4caee]{font-size:14px;color:rgba(0,0,0,.65);line-height:24px;max-width:100px;vertical-align:top;margin-left:12px;transition:all .3s;display:inline-block}.page-header-wrapper-grid-content-main .account-center-team .members a:hover span[data-v-31b4caee]{color:#1890ff}.page-header-wrapper-grid-content-main .tagsTitle[data-v-31b4caee],.page-header-wrapper-grid-content-main .teamTitle[data-v-31b4caee]{font-weight:500;color:rgba(0,0,0,.85);margin-bottom:12px}
|
1
dist/css/chunk-073f0a34.a7fe0086.css
vendored
Normal file
1
dist/css/chunk-073f0a34.a7fe0086.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.card-container{background:#fff;overflow:hidden;padding:12px;position:relative;width:100%}.card-container .ant-tabs{border:1px solid #e6ebf5;padding:0}.card-container .ant-tabs .ant-tabs-bar{margin:0;outline:none;border-bottom:none}.card-container .ant-tabs .ant-tabs-bar .ant-tabs-nav-container{margin:0}.card-container .ant-tabs .ant-tabs-bar .ant-tabs-nav-container .ant-tabs-tab{padding:0 24px!important;background-color:#f5f7fa!important;margin-right:0!important;border-radius:0;line-height:38px;border:1px solid transparent!important;border-bottom:1px solid #e6ebf5!important}.card-container .ant-tabs .ant-tabs-bar .ant-tabs-nav-container .ant-tabs-tab-active.ant-tabs-tab{color:#409eff;background-color:#fff!important;border-right:1px solid #e6ebf5!important;border-left:1px solid #e6ebf5!important;border-bottom:1px solid #fff!important;font-weight:400;transition:none!important}.card-container .ant-tabs .ant-tabs-tabpane{padding:15px}.card-container .ant-tabs .ant-tabs-tabpane .ant-row{margin:10px 0}.card-container .ant-tabs .ant-tabs-tabpane .ant-input-number,.card-container .ant-tabs .ant-tabs-tabpane .ant-select{width:100px}.container-widthEn[data-v-6d6d32bd]{width:755px}.container-widthCn[data-v-6d6d32bd]{width:608px}.language[data-v-6d6d32bd]{text-align:center;position:absolute;right:13px;top:13px;border:1px solid transparent;height:40px;line-height:38px;font-size:16px;color:#409eff;z-index:1;background:#f5f7fa;outline:none;width:47px;border-bottom:1px solid #e6ebf5;border-radius:0}.card-container .bottom[data-v-6d6d32bd]{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding:10px 0 0 0}.card-container .bottom .cronButton[data-v-6d6d32bd]{margin:0 10px;line-height:40px}.tabBody .a-row[data-v-6d6d32bd]{margin:10px 0}.tabBody .a-row .long .a-select[data-v-6d6d32bd]{width:354px}.tabBody .a-row .a-input-number[data-v-6d6d32bd]{width:110px}
|
1
dist/css/chunk-0b3ce245.8702c046.css
vendored
Normal file
1
dist/css/chunk-0b3ce245.8702c046.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator[data-v-dbf34d06]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-dbf34d06]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-dbf34d06]{margin:0 5px}.ant-btn-danger[data-v-dbf34d06]{background-color:#fff}.ant-modal-cust-warp[data-v-dbf34d06]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-dbf34d06]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-dbf34d06]{height:90%!important;overflow-y:hidden}
|
1
dist/css/chunk-0b6a5927.8a4255e6.css
vendored
Normal file
1
dist/css/chunk-0b6a5927.8a4255e6.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.avatar-uploader>.ant-upload[data-v-c668f820]{width:104px;height:104px}.ant-upload-select-picture-card i[data-v-c668f820]{font-size:49px;color:#999}.ant-upload-select-picture-card .ant-upload-text[data-v-c668f820]{margin-top:8px;color:#666}.ant-table-tbody .ant-table-row td[data-v-c668f820]{padding-top:10px;padding-bottom:10px}.drawer-bootom-button[data-v-c668f820]{position:absolute;bottom:0;width:100%;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;left:0;background:#fff;border-radius:0 0 2px 2px}[data-v-c668f820] .ant-drawer-body{padding-bottom:53px}.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-0e4c5d41.b881cc47.css
vendored
Normal file
1
dist/css/chunk-0e4c5d41.b881cc47.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.sub-tabs.un-expand[data-v-7207a92d] .ant-tabs-content{height:0!important}.sub-tabs.un-expand[data-v-7207a92d] .ant-tabs-bar{border-color:transparent!important}.sub-tabs.un-expand[data-v-7207a92d] .ant-tabs-ink-bar{background-color:transparent!important}.sub-tabs.un-expand[data-v-7207a92d] .ant-tabs-tab{display:none!important}
|
1
dist/css/chunk-14f03b1e.18749dd7.css
vendored
Normal file
1
dist/css/chunk-14f03b1e.18749dd7.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.stepFormText[data-v-3e660af7]{margin-bottom:24px}.ant-form-item-control[data-v-3e660af7],.ant-form-item-label[data-v-3e660af7]{line-height:22px}.getCaptcha[data-v-3e660af7]{display:block;width:100%;height:40px}.stepFormText[data-v-51928ca6]{margin-bottom:24px}.ant-form-item-control[data-v-51928ca6],.ant-form-item-label[data-v-51928ca6]{line-height:22px}.result[data-v-6732bfa0]{text-align:center;width:72%;margin:0 auto;padding:24px 0 8px}.result .icon[data-v-6732bfa0]{font-size:72px;line-height:72px;margin-bottom:24px}.result .success[data-v-6732bfa0]{color:#52c41a}.result .error[data-v-6732bfa0]{color:red}.result .title[data-v-6732bfa0]{font-size:24px;color:rgba(0,0,0,.85);font-weight:500;line-height:32px;margin-bottom:16px}.result .description[data-v-6732bfa0]{font-size:14px;line-height:22px;color:rgba(0,0,0,.45);margin-bottom:24px}.result .content[data-v-6732bfa0]{background:#fafafa;padding:24px 40px;border-radius:2px;text-align:left}.result .action[data-v-6732bfa0]{margin-top:32px}.mobile .result[data-v-6732bfa0]{width:100%;margin:0 auto;padding:unset}.toLogin[data-v-6371e5a8]{text-align:center}.steps[data-v-3919662a]{max-width:750px;margin:16px auto}[data-v-3919662a] .password-retrieval-form{max-width:500px;margin:40px auto 0}[data-v-3919662a] .password-retrieval-form .ant-form-explain{text-align:left}
|
1
dist/css/chunk-15d6deda.c0262ce1.css
vendored
Normal file
1
dist/css/chunk-15d6deda.c0262ce1.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.search[data-v-cbda86a8]{margin-bottom:54px}.fold[data-v-cbda86a8]{width:calc(100% - 216px);display:inline-block}.operator[data-v-cbda86a8]{margin-bottom:18px}@media screen and (max-width:900px){.fold[data-v-cbda86a8]{width:100%}}
|
1
dist/css/chunk-17c928e5.c5d949ca.css
vendored
Normal file
1
dist/css/chunk-17c928e5.c5d949ca.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
ul[data-v-ea6fbdbc]{max-height:700px;overflow-y:auto;padding-left:.5rem}ul i[data-v-ea6fbdbc]{font-size:1.5rem;border:1px solid #f1f1f1;padding:.2rem;margin:.3rem;cursor:pointer}ul i.active[data-v-ea6fbdbc],ul i[data-v-ea6fbdbc]:hover{border-radius:2px;border-color:#4a4a48;background-color:#4a4a48;color:#fff;transition:all .3s}ul li[data-v-ea6fbdbc]{list-style:none;float:left;width:5%;text-align:center;cursor:pointer;color:#555;transition:color .3s ease-in-out,background-color .3s ease-in-out;position:relative;margin:3px 0;border-radius:4px;background-color:#fff;overflow:hidden;padding:10px 0 0}.data-rule-invalid{background:#f4f4f4;color:#bababa}.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-1b0f33b0.33700c37.css
vendored
Normal file
1
dist/css/chunk-1b0f33b0.33700c37.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.drawer-bootom-button[data-v-3c4da6d8]{position:absolute;bottom:0;width:100%;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;left:0;background:#fff;border-radius:0 0 2px 2px}
|
1
dist/css/chunk-1d52eb26.7e890609.css
vendored
Normal file
1
dist/css/chunk-1d52eb26.7e890609.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.upload-list-inline>.ant-upload-list-item[data-v-696c940d]{float:left;width:200px;margin-right:8px}.upload-list-inline>.ant-upload-animate-enter[data-v-696c940d]{animation-name:uploadAnimateInlineIn}.upload-list-inline>.ant-upload-animate-leave[data-v-696c940d]{animation-name:uploadAnimateInlineOut}.ant-btn[data-v-0fe69b4b]{padding:0 10px;margin-left:3px}.ant-form-item-control[data-v-0fe69b4b]{line-height:0}.ant-form .ant-form-item[data-v-0fe69b4b]{margin-bottom:10px}.ant-tabs-content .ant-form-item[data-v-0fe69b4b]{margin-bottom:0}.ant-card[data-v-0550d32d]{margin-left:-30px;margin-right:-30px}.ant-card-body .table-operator[data-v-52102629]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-52102629]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-52102629]{margin:0 5px}.ant-btn-danger[data-v-52102629]{background-color:#fff}.ant-modal-cust-warp[data-v-52102629]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-52102629]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-52102629]{height:90%!important;overflow-y:hidden}.ant-card[data-v-1f6da618]{margin-left:-30px;margin-right:-30px}
|
1
dist/css/chunk-1ee1e818.9fa19fdb.css
vendored
Normal file
1
dist/css/chunk-1ee1e818.9fa19fdb.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.head-info[data-v-61b1bcfd]{position:relative;text-align:left;padding:0 32px 0 0;min-width:125px}.head-info.center[data-v-61b1bcfd]{text-align:center;padding:0 32px}.head-info span[data-v-61b1bcfd]{color:rgba(0,0,0,.45);display:inline-block;font-size:14px;line-height:22px;margin-bottom:4px}.head-info p[data-v-61b1bcfd]{color:rgba(0,0,0,.85);font-size:24px;line-height:32px;margin:0}.head-info em[data-v-61b1bcfd]{background-color:#e8e8e8;position:absolute;height:56px;width:1px;top:0;right:0}.ant-avatar-lg[data-v-a5010ef8]{width:48px;height:48px;line-height:48px}.list-content-item[data-v-a5010ef8]{color:rgba(0,0,0,.45);display:inline-block;vertical-align:middle;font-size:14px;margin-left:40px}.list-content-item span[data-v-a5010ef8]{line-height:20px}.list-content-item p[data-v-a5010ef8]{margin-top:4px;margin-bottom:0;line-height:22px}
|
1
dist/css/chunk-1ee6e644.2ac8550e.css
vendored
Normal file
1
dist/css/chunk-1ee6e644.2ac8550e.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-1efc5b97.c99c8f0d.css
vendored
Normal file
1
dist/css/chunk-1efc5b97.c99c8f0d.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.antv-chart-mini[data-v-18834924]{position:relative;width:100%}.antv-chart-mini .chart-wrapper[data-v-18834924]{position:absolute;bottom:-28px;width:100%}
|
1
dist/css/chunk-1f97fb41.281812e2.css
vendored
Normal file
1
dist/css/chunk-1f97fb41.281812e2.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.exception[data-v-24c60121]{min-height:500px;height:80%;-ms-flex-align:center;align-items:center;text-align:center;margin-top:150px}.exception .img[data-v-24c60121]{display:inline-block;padding-right:52px;zoom:1}.exception .img img[data-v-24c60121]{height:360px;max-width:430px}.exception .content[data-v-24c60121]{display:inline-block;-ms-flex:auto;flex:auto}.exception .content h1[data-v-24c60121]{color:#434e59;font-size:72px;font-weight:600;line-height:72px;margin-bottom:24px}.exception .content .desc[data-v-24c60121]{color:rgba(0,0,0,.45);font-size:20px;line-height:28px;margin-bottom:16px}.mobile .exception[data-v-24c60121]{margin-top:30px}.mobile .exception .img[data-v-24c60121]{padding-right:unset}.mobile .exception .img img[data-v-24c60121]{height:40%;max-width:80%}
|
1
dist/css/chunk-22c49330.223e6d75.css
vendored
Normal file
1
dist/css/chunk-22c49330.223e6d75.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator[data-v-6366cc77]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-6366cc77]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-6366cc77]{margin:0 5px}.ant-btn-danger[data-v-6366cc77]{background-color:#fff}.ant-modal-cust-warp[data-v-6366cc77]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-6366cc77]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-6366cc77]{height:90%!important;overflow-y:hidden}.anty-img-wrap[data-v-6366cc77]{height:25px;position:relative}.anty-img-wrap>img[data-v-6366cc77]{max-height:100%}
|
1
dist/css/chunk-252ad8b9.2ac8550e.css
vendored
Normal file
1
dist/css/chunk-252ad8b9.2ac8550e.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-25916928.684c5ecc.css
vendored
Normal file
1
dist/css/chunk-25916928.684c5ecc.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.j-table-force-nowrap td,.j-table-force-nowrap th{white-space:nowrap}.j-table-force-nowrap .ant-table-selection-column{padding:12px 22px!important}.j-table-force-nowrap.ant-table-wrapper .ant-table-content{overflow-x:auto}.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-259eace8.23e6a9f5.css
vendored
Normal file
1
dist/css/chunk-259eace8.23e6a9f5.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.data-rule-invalid{background:#f4f4f4;color:#bababa}
|
1
dist/css/chunk-285ba9c0.ee9a81c9.css
vendored
Normal file
1
dist/css/chunk-285ba9c0.ee9a81c9.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-modal-body[data-v-44500566]{padding:8px!important}
|
1
dist/css/chunk-2ab8afe8.8e7d68b8.css
vendored
Normal file
1
dist/css/chunk-2ab8afe8.8e7d68b8.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[data-v-3dbd2696]{margin:0;padding:0}.content[data-v-3dbd2696]{margin:auto;max-width:1200px;margin-bottom:100px}.test-button[data-v-3dbd2696]{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.btn[data-v-3dbd2696]{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #c0ccda;color:#1f2d3d;text-align:center;box-sizing:border-box;outline:none;margin:20px 10px 0 0;padding:9px 15px;font-size:14px;border-radius:4px;color:#fff;background-color:#50bfff;border-color:#50bfff;transition:all .2s ease;text-decoration:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.des[data-v-3dbd2696]{line-height:30px}code.language-html[data-v-3dbd2696]{padding:10px 20px;margin:10px 0;display:block;background-color:#333;color:#fff;overflow-x:auto;font-family:Consolas,Monaco,Droid,Sans,Mono,Source,Code,Pro,Menlo,Lucida,Type,Writer,Ubuntu;border-radius:5px;white-space:pre}.show-info[data-v-3dbd2696]{margin-bottom:50px}.show-info h2[data-v-3dbd2696]{line-height:50px}.title[data-v-3dbd2696]{display:block;text-decoration:none;text-align:center;line-height:1.5;margin:20px 0;background-image:-webkit-linear-gradient(left,#3498db,#f47920 10%,#d71345 20%,#f7acbc 30%,#ffd400 40%,#3498db 50%,#f47920 60%,#d71345 70%,#f7acbc 80%,#ffd400 90%,#3498db);color:transparent;-webkit-background-clip:text;background-size:200% 100%;animation:slide-data-v-3dbd2696 5s linear infinite;font-size:40px}.test[data-v-3dbd2696]{height:500px}.model[data-v-3dbd2696]{position:fixed;z-index:10;width:100vw;height:100vh;overflow:auto;top:0;left:0;background:rgba(0,0,0,.8)}.model-show[data-v-3dbd2696]{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;width:100vw;height:100vh;text-align:center}.model img[data-v-3dbd2696]{margin:auto;max-width:80%;width:auto;background-position:0 0,10px 10px;background-size:20px 20px;background-image:linear-gradient(45deg,#eee 25%,transparent 0,transparent 75%,#eee 0,#eee),linear-gradient(45deg,#eee 25%,#fff 0,#fff 75%,#eee 0,#eee)}.c-item[data-v-3dbd2696],.model img[data-v-3dbd2696]{display:block;-webkit-user-select:none;-ms-user-select:none;user-select:none}.c-item[data-v-3dbd2696]{padding:10px 0}.pre[data-v-3dbd2696]{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.pre-item[data-v-3dbd2696]{padding-right:20px}@keyframes slide-data-v-3dbd2696{0%{background-position:0 0}to{background-position:-100% 0}}@media screen and (max-width:1000px){.content[data-v-3dbd2696]{max-width:90%;margin:auto}.test[data-v-3dbd2696]{height:400px}}
|
1
dist/css/chunk-2b52a609.152b8608.css
vendored
Normal file
1
dist/css/chunk-2b52a609.152b8608.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.antv-chart-mini[data-v-18834924]{position:relative;width:100%}.antv-chart-mini .chart-wrapper[data-v-18834924]{position:absolute;bottom:-28px;width:100%}.antv-chart-mini[data-v-dda27cb2]{position:relative;width:100%}.antv-chart-mini .chart-wrapper[data-v-dda27cb2]{position:absolute;bottom:-28px;width:100%}.antv-chart-mini[data-v-6145ce76]{position:relative;width:100%}.antv-chart-mini .chart-wrapper[data-v-6145ce76]{position:absolute;bottom:-28px;width:100%}.chart-mini-progress[data-v-51cc711b]{padding:5px 0;position:relative;width:100%}.chart-mini-progress .target[data-v-51cc711b]{position:absolute;top:0;bottom:0}.chart-mini-progress .target span[data-v-51cc711b]{border-radius:100px;position:absolute;top:0;left:0;height:4px;width:2px}.chart-mini-progress .target span[data-v-51cc711b]:last-child{top:auto;bottom:0}.chart-mini-progress .progress-wrapper[data-v-51cc711b]{background-color:#f5f5f5;position:relative}.chart-mini-progress .progress-wrapper .progress[data-v-51cc711b]{transition:all .4s cubic-bezier(.08,.82,.17,1) 0s;border-radius:1px 0 0 1px;background-color:#1890ff;width:0;height:100%}.rank[data-v-8ec947b4]{padding:0 32px 32px 72px}.rank .list[data-v-8ec947b4]{margin:25px 0 0;padding:0;list-style:none}.rank .list li[data-v-8ec947b4]{margin-top:16px}.rank .list li span[data-v-8ec947b4]{color:rgba(0,0,0,.65);font-size:14px;line-height:22px}.rank .list li span[data-v-8ec947b4]:first-child{background-color:#f5f5f5;border-radius:20px;display:inline-block;font-size:12px;font-weight:600;margin-right:24px;height:20px;line-height:20px;width:20px;text-align:center}.rank .list li span.active[data-v-8ec947b4]{background-color:#314659;color:#fff}.rank .list li span[data-v-8ec947b4]:last-child{float:right}.mobile .rank[data-v-8ec947b4]{padding:0 32px 32px 32px}.chart-trend[data-v-5e0608b9]{display:inline-block;font-size:14px;line-height:22px}.chart-trend .trend-icon[data-v-5e0608b9]{font-size:12px}.chart-trend .trend-icon.down[data-v-5e0608b9],.chart-trend .trend-icon.up[data-v-5e0608b9]{margin-left:4px;position:relative;top:1px}.chart-trend .trend-icon.down i[data-v-5e0608b9],.chart-trend .trend-icon.up i[data-v-5e0608b9]{font-size:12px;transform:scale(.83)}.chart-trend .trend-icon.up[data-v-5e0608b9]{color:#f5222d}.chart-trend .trend-icon.down[data-v-5e0608b9]{color:#52c41a;top:-1px}
|
1
dist/css/chunk-2de62cfc.fbb6031c.css
vendored
Normal file
1
dist/css/chunk-2de62cfc.fbb6031c.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.search{margin-bottom:54px}.fold{width:calc(100% - 216px);display:inline-block}.operator{margin-bottom:18px}@media screen and (max-width:900px){.fold{width:100%}}.operator button{margin-right:5px}i{cursor:pointer}.trcolor{background-color:rgba(255,192,203,.31);color:red}.anty-img-wrap[data-v-7a4f8dd3]{height:25px;position:relative}.anty-img-wrap>img[data-v-7a4f8dd3]{max-height:100%}.marginCss[data-v-7a4f8dd3]{margin-top:20px}.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-304ee0a0.4e096ca3.css
vendored
Normal file
1
dist/css/chunk-304ee0a0.4e096ca3.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[data-v-01873645]{color:#000!important;-webkit-tap-highlight-color:#000000!important}.abcdefg .ant-card-body[data-v-01873645]{margin-left:0;margin-right:0;margin-bottom:1%;border:0 solid #000;min-width:800px;color:#000!important}.explain[data-v-01873645]{text-align:left;margin-left:50px;color:#000!important}.explain .ant-input[data-v-01873645],.sign .ant-input[data-v-01873645]{font-weight:bolder;text-align:center;border-left-width:0!important;border-top-width:0!important;border-right-width:0!important}.explain div[data-v-01873645]{margin-bottom:10px}.ant-upload-select-picture-card i[data-v-01873645]{font-size:32px;color:#999}.ant-upload-select-picture-card .ant-upload-text[data-v-01873645]{margin-top:8px;color:#666}
|
1
dist/css/chunk-3076b886.c571ecf7.css
vendored
Normal file
1
dist/css/chunk-3076b886.c571ecf7.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.chart-card-header .meta[data-v-0715823f],.chart-card-header[data-v-0715823f]{position:relative;overflow:hidden;width:100%}.chart-card-header .meta[data-v-0715823f]{color:rgba(0,0,0,.45);font-size:14px;line-height:22px}.chart-card-action[data-v-0715823f]{cursor:pointer;position:absolute;top:0;right:0}.chart-card-footer[data-v-0715823f]{border-top:1px solid #e8e8e8;padding-top:9px;margin-top:8px}.chart-card-footer>[data-v-0715823f]{position:relative}.chart-card-footer .field[data-v-0715823f]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0}.chart-card-content[data-v-0715823f]{margin-bottom:12px;position:relative;height:46px;width:100%}.chart-card-content .content-fix[data-v-0715823f]{position:absolute;left:0;bottom:0;width:100%}.total[data-v-0715823f]{overflow:hidden;text-overflow:ellipsis;word-break:break-all;white-space:nowrap;color:#000;margin-top:4px;margin-bottom:0;font-size:30px;line-height:38px;height:38px}.antv-chart-mini[data-v-6145ce76]{position:relative;width:100%}.antv-chart-mini .chart-wrapper[data-v-6145ce76]{position:absolute;bottom:-28px;width:100%}.antv-chart-mini[data-v-dda27cb2]{position:relative;width:100%}.antv-chart-mini .chart-wrapper[data-v-dda27cb2]{position:absolute;bottom:-28px;width:100%}.chart-mini-progress[data-v-51cc711b]{padding:5px 0;position:relative;width:100%}.chart-mini-progress .target[data-v-51cc711b]{position:absolute;top:0;bottom:0}.chart-mini-progress .target span[data-v-51cc711b]{border-radius:100px;position:absolute;top:0;left:0;height:4px;width:2px}.chart-mini-progress .target span[data-v-51cc711b]:last-child{top:auto;bottom:0}.chart-mini-progress .progress-wrapper[data-v-51cc711b]{background-color:#f5f5f5;position:relative}.chart-mini-progress .progress-wrapper .progress[data-v-51cc711b]{transition:all .4s cubic-bezier(.08,.82,.17,1) 0s;border-radius:1px 0 0 1px;background-color:#1890ff;width:0;height:100%}.rank[data-v-8ec947b4]{padding:0 32px 32px 72px}.rank .list[data-v-8ec947b4]{margin:25px 0 0;padding:0;list-style:none}.rank .list li[data-v-8ec947b4]{margin-top:16px}.rank .list li span[data-v-8ec947b4]{color:rgba(0,0,0,.65);font-size:14px;line-height:22px}.rank .list li span[data-v-8ec947b4]:first-child{background-color:#f5f5f5;border-radius:20px;display:inline-block;font-size:12px;font-weight:600;margin-right:24px;height:20px;line-height:20px;width:20px;text-align:center}.rank .list li span.active[data-v-8ec947b4]{background-color:#314659;color:#fff}.rank .list li span[data-v-8ec947b4]:last-child{float:right}.mobile .rank[data-v-8ec947b4]{padding:0 32px 32px 32px}.head-info[data-v-61b1bcfd]{position:relative;text-align:left;padding:0 32px 0 0;min-width:125px}.head-info.center[data-v-61b1bcfd]{text-align:center;padding:0 32px}.head-info span[data-v-61b1bcfd]{color:rgba(0,0,0,.45);display:inline-block;font-size:14px;line-height:22px;margin-bottom:4px}.head-info p[data-v-61b1bcfd]{color:rgba(0,0,0,.85);font-size:24px;line-height:32px;margin:0}.head-info em[data-v-61b1bcfd]{background-color:#e8e8e8;position:absolute;height:56px;width:1px;top:0;right:0}.circle-cust[data-v-602a0832]{position:relative;top:28px;left:-100%}.extra-wrapper[data-v-602a0832]{line-height:55px;padding-right:24px}.extra-wrapper .extra-item[data-v-602a0832]{display:inline-block;margin-right:24px}.extra-wrapper .extra-item a[data-v-602a0832]{margin-left:24px}.head-info[data-v-602a0832]{position:relative;text-align:left;padding:0 32px 0 0;min-width:125px}.head-info.center[data-v-602a0832]{text-align:center;padding:0 32px}.head-info span[data-v-602a0832]{color:rgba(0,0,0,.45);display:inline-block;font-size:.95rem;line-height:42px;margin-bottom:4px}.head-info p[data-v-602a0832]{line-height:42px;margin:0}.head-info p a[data-v-602a0832]{font-weight:600;font-size:1rem}
|
1
dist/css/chunk-30d7f6d5.967e5552.css
vendored
Normal file
1
dist/css/chunk-30d7f6d5.967e5552.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.title[data-v-4131dc93]{color:rgba(0,0,0,.85);font-size:16px;font-weight:500;margin-bottom:16px}
|
1
dist/css/chunk-31b6c1ec.c276a84f.css
vendored
Normal file
1
dist/css/chunk-31b6c1ec.c276a84f.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.result[data-v-6732bfa0]{text-align:center;width:72%;margin:0 auto;padding:24px 0 8px}.result .icon[data-v-6732bfa0]{font-size:72px;line-height:72px;margin-bottom:24px}.result .success[data-v-6732bfa0]{color:#52c41a}.result .error[data-v-6732bfa0]{color:red}.result .title[data-v-6732bfa0]{font-size:24px;color:rgba(0,0,0,.85);font-weight:500;line-height:32px;margin-bottom:16px}.result .description[data-v-6732bfa0]{font-size:14px;line-height:22px;color:rgba(0,0,0,.45);margin-bottom:24px}.result .content[data-v-6732bfa0]{background:#fafafa;padding:24px 40px;border-radius:2px;text-align:left}.result .action[data-v-6732bfa0]{margin-top:32px}.mobile .result[data-v-6732bfa0]{width:100%;margin:0 auto;padding:unset}
|
1
dist/css/chunk-3544685b.aa19c37f.css
vendored
Normal file
1
dist/css/chunk-3544685b.aa19c37f.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.stepFormText[data-v-0abb13c2]{margin-bottom:24px}.stepFormText .ant-form-item-control[data-v-0abb13c2],.stepFormText .ant-form-item-label[data-v-0abb13c2]{line-height:22px}
|
1
dist/css/chunk-35757404.c276a84f.css
vendored
Normal file
1
dist/css/chunk-35757404.c276a84f.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.result[data-v-6732bfa0]{text-align:center;width:72%;margin:0 auto;padding:24px 0 8px}.result .icon[data-v-6732bfa0]{font-size:72px;line-height:72px;margin-bottom:24px}.result .success[data-v-6732bfa0]{color:#52c41a}.result .error[data-v-6732bfa0]{color:red}.result .title[data-v-6732bfa0]{font-size:24px;color:rgba(0,0,0,.85);font-weight:500;line-height:32px;margin-bottom:16px}.result .description[data-v-6732bfa0]{font-size:14px;line-height:22px;color:rgba(0,0,0,.45);margin-bottom:24px}.result .content[data-v-6732bfa0]{background:#fafafa;padding:24px 40px;border-radius:2px;text-align:left}.result .action[data-v-6732bfa0]{margin-top:32px}.mobile .result[data-v-6732bfa0]{width:100%;margin:0 auto;padding:unset}
|
1
dist/css/chunk-37fa1bdb.4709255d.css
vendored
Normal file
1
dist/css/chunk-37fa1bdb.4709255d.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[data-v-5182e99d] .data-rule-invalid{background:#f4f4f4;color:#bababa}
|
1
dist/css/chunk-3807482d.764a5a4c.css
vendored
Normal file
1
dist/css/chunk-3807482d.764a5a4c.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator[data-v-096e5124]{margin-bottom:18px}.anty-row-operator button[data-v-096e5124]{margin:0 5px}.ant-btn-danger[data-v-096e5124]{background-color:#fff}z .ant-modal-cust-warp[data-v-096e5124]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-096e5124]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-096e5124]{height:90%!important;overflow-y:hidden}
|
1
dist/css/chunk-382e2891.33700c37.css
vendored
Normal file
1
dist/css/chunk-382e2891.33700c37.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.drawer-bootom-button[data-v-3c4da6d8]{position:absolute;bottom:0;width:100%;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;left:0;background:#fff;border-radius:0 0 2px 2px}
|
1
dist/css/chunk-39e7aba1.885584f1.css
vendored
Normal file
1
dist/css/chunk-39e7aba1.885584f1.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.result[data-v-6732bfa0]{text-align:center;width:72%;margin:0 auto;padding:24px 0 8px}.result .icon[data-v-6732bfa0]{font-size:72px;line-height:72px;margin-bottom:24px}.result .success[data-v-6732bfa0]{color:#52c41a}.result .error[data-v-6732bfa0]{color:red}.result .title[data-v-6732bfa0]{font-size:24px;color:rgba(0,0,0,.85);font-weight:500;line-height:32px;margin-bottom:16px}.result .description[data-v-6732bfa0]{font-size:14px;line-height:22px;color:rgba(0,0,0,.45);margin-bottom:24px}.result .content[data-v-6732bfa0]{background:#fafafa;padding:24px 40px;border-radius:2px;text-align:left}.result .action[data-v-6732bfa0]{margin-top:32px}.mobile .result[data-v-6732bfa0]{width:100%;margin:0 auto;padding:unset}.information[data-v-55d570a4]{line-height:22px}.information .ant-row[data-v-55d570a4]:not(:last-child){margin-bottom:24px}.money[data-v-55d570a4]{font-family:Helvetica Neue,sans-serif;font-weight:500;font-size:20px;line-height:14px}
|
1
dist/css/chunk-3b9bcd27.524cf54f.css
vendored
Normal file
1
dist/css/chunk-3b9bcd27.524cf54f.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.stepFormText[data-v-0abb13c2]{margin-bottom:24px}.stepFormText .ant-form-item-control[data-v-0abb13c2],.stepFormText .ant-form-item-label[data-v-0abb13c2]{line-height:22px}.result[data-v-6732bfa0]{text-align:center;width:72%;margin:0 auto;padding:24px 0 8px}.result .icon[data-v-6732bfa0]{font-size:72px;line-height:72px;margin-bottom:24px}.result .success[data-v-6732bfa0]{color:#52c41a}.result .error[data-v-6732bfa0]{color:red}.result .title[data-v-6732bfa0]{font-size:24px;color:rgba(0,0,0,.85);font-weight:500;line-height:32px;margin-bottom:16px}.result .description[data-v-6732bfa0]{font-size:14px;line-height:22px;color:rgba(0,0,0,.45);margin-bottom:24px}.result .content[data-v-6732bfa0]{background:#fafafa;padding:24px 40px;border-radius:2px;text-align:left}.result .action[data-v-6732bfa0]{margin-top:32px}.mobile .result[data-v-6732bfa0]{width:100%;margin:0 auto;padding:unset}.information[data-v-55d570a4]{line-height:22px}.information .ant-row[data-v-55d570a4]:not(:last-child){margin-bottom:24px}.money[data-v-55d570a4]{font-family:Helvetica Neue,sans-serif;font-weight:500;font-size:20px;line-height:14px}.steps[data-v-360958d8]{max-width:750px;margin:16px auto}
|
1
dist/css/chunk-3c0c76c7.8fcd4867.css
vendored
Normal file
1
dist/css/chunk-3c0c76c7.8fcd4867.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.user-login-other[data-v-32e4a746]{text-align:left;margin-top:24px;line-height:22px}.user-login-other .item-icon[data-v-32e4a746]{font-size:24px;color:rgba(0,0,0,.2);margin-left:16px;vertical-align:middle;cursor:pointer;transition:color .3s}.user-login-other .item-icon[data-v-32e4a746] :hover{color:#1890ff}.user-login-other .register[data-v-32e4a746]{float:right}
|
1
dist/css/chunk-3c289620.858705cd.css
vendored
Normal file
1
dist/css/chunk-3c289620.858705cd.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[data-v-370b3b7e] .chart-data-list .ant-table-footer .ant-table-body{overflow:hidden!important}[data-v-370b3b7e] .ant-table-footer{padding:0}
|
1
dist/css/chunk-3caec3ec.2ac8550e.css
vendored
Normal file
1
dist/css/chunk-3caec3ec.2ac8550e.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-3cdb65bb.deba145f.css
vendored
Normal file
1
dist/css/chunk-3cdb65bb.deba145f.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-modal-body[data-v-44500566]{padding:8px!important}.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-3d48f85a.8f50fdfd.css
vendored
Normal file
1
dist/css/chunk-3d48f85a.8f50fdfd.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-btn[data-v-0fe69b4b]{padding:0 10px;margin-left:3px}.ant-form-item-control[data-v-0fe69b4b]{line-height:0}.ant-form .ant-form-item[data-v-0fe69b4b]{margin-bottom:10px}.ant-tabs-content .ant-form-item[data-v-0fe69b4b]{margin-bottom:0}.ant-card-body .table-operator[data-v-24d3d77e]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-24d3d77e]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-24d3d77e]{margin:0 5px}.ant-btn-danger[data-v-24d3d77e]{background-color:#fff}.ant-modal-cust-warp[data-v-24d3d77e]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-24d3d77e]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-24d3d77e]{height:90%!important;overflow-y:hidden}
|
1
dist/css/chunk-3eb1c119.93e5be02.css
vendored
Normal file
1
dist/css/chunk-3eb1c119.93e5be02.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.result[data-v-6732bfa0]{text-align:center;width:72%;margin:0 auto;padding:24px 0 8px}.result .icon[data-v-6732bfa0]{font-size:72px;line-height:72px;margin-bottom:24px}.result .success[data-v-6732bfa0]{color:#52c41a}.result .error[data-v-6732bfa0]{color:red}.result .title[data-v-6732bfa0]{font-size:24px;color:rgba(0,0,0,.85);font-weight:500;line-height:32px;margin-bottom:16px}.result .description[data-v-6732bfa0]{font-size:14px;line-height:22px;color:rgba(0,0,0,.45);margin-bottom:24px}.result .content[data-v-6732bfa0]{background:#fafafa;padding:24px 40px;border-radius:2px;text-align:left}.result .action[data-v-6732bfa0]{margin-top:32px}.mobile .result[data-v-6732bfa0]{width:100%;margin:0 auto;padding:unset}.toLogin[data-v-6371e5a8]{text-align:center}
|
1
dist/css/chunk-419e1888.f55f7484.css
vendored
Normal file
1
dist/css/chunk-419e1888.f55f7484.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator[data-v-6366cc77]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-6366cc77]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-6366cc77]{margin:0 5px}.ant-btn-danger[data-v-6366cc77]{background-color:#fff}.ant-modal-cust-warp[data-v-6366cc77]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-6366cc77]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-6366cc77]{height:90%!important;overflow-y:hidden}.anty-img-wrap[data-v-6366cc77]{height:25px;position:relative}.anty-img-wrap>img[data-v-6366cc77]{max-height:100%}.ant-card-body .table-operator[data-v-3b7b438a]{margin-bottom:8px}.table-operator .ant-btn[data-v-3b7b438a]{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn[data-v-3b7b438a]{margin:0}.table-operator .ant-btn-group .ant-btn[data-v-3b7b438a]:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td[data-v-3b7b438a]{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp[data-v-3b7b438a]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-3b7b438a]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-3b7b438a]{height:90%!important;overflow-y:hidden}.anty-img-wrap[data-v-3b7b438a]{height:25px;position:relative}.anty-img-wrap>img[data-v-3b7b438a]{max-height:100%}.query-group-cust[data-v-3b7b438a]{width:calc(50% - 10px)}.query-group-split-cust[data-v-3b7b438a]:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body[data-v-3b7b438a]{padding:5px 12px}.j-inner-table-wrapper[data-v-3b7b438a] .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden[data-v-3b7b438a]{display:none}.detail-modal .detail-iframe[data-v-3b7b438a]{border:0;width:100%;height:88vh;min-height:600px}.detail-modal.fullscreen .detail-iframe[data-v-3b7b438a]{height:100%}.detail-modal[data-v-3b7b438a] .ant-modal{top:30px}.detail-modal[data-v-3b7b438a] .ant-modal .ant-modal-body{font-size:0;padding:0}.detail-modal.fullscreen[data-v-3b7b438a] .ant-modal{top:0}
|
1
dist/css/chunk-42bce7aa.7dd9ff92.css
vendored
Normal file
1
dist/css/chunk-42bce7aa.7dd9ff92.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.user-register.error{color:red}.user-register.warning{color:#ff7e05}.user-register.success{color:#52c41a}.user-layout-register .ant-input-group-addon:first-child{background-color:#fff}.user-layout-register>h3[data-v-69c333d7]{font-size:16px;margin-bottom:20px}.user-layout-register .getCaptcha[data-v-69c333d7]{display:block;width:100%;height:40px}.user-layout-register .register-button[data-v-69c333d7]{width:50%}.user-layout-register .login[data-v-69c333d7]{float:right;line-height:40px}
|
1
dist/css/chunk-44fded66.097d0c2d.css
vendored
Normal file
1
dist/css/chunk-44fded66.097d0c2d.css
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
dist/css/chunk-44fded66.097d0c2d.css.gz
vendored
Normal file
BIN
dist/css/chunk-44fded66.097d0c2d.css.gz
vendored
Normal file
Binary file not shown.
1
dist/css/chunk-46ecc826.ba8e914b.css
vendored
Normal file
1
dist/css/chunk-46ecc826.ba8e914b.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.drawer-bootom-button[data-v-89c48086]{position:absolute;bottom:0;width:100%;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;left:0;background:#fff;border-radius:0 0 2px 2px}
|
1
dist/css/chunk-4802f247.8c5c6ee1.css
vendored
Normal file
1
dist/css/chunk-4802f247.8c5c6ee1.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.drawer-bootom-button[data-v-60e39634]{position:absolute;bottom:0;width:100%;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;left:0;background:#fff;border-radius:0 0 2px 2px}.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-499bef23.a83740ee.css
vendored
Normal file
1
dist/css/chunk-499bef23.a83740ee.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card[data-v-0550d32d]{margin-left:-30px;margin-right:-30px}
|
1
dist/css/chunk-4d58118a.172431df.css
vendored
Normal file
1
dist/css/chunk-4d58118a.172431df.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator[data-v-14d289bc]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-14d289bc]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-14d289bc]{margin:0 5px}.ant-btn-danger[data-v-14d289bc]{background-color:#fff}.ant-modal-cust-warp[data-v-14d289bc]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-14d289bc]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-14d289bc]{height:90%!important;overflow-y:hidden}.statistic[data-v-14d289bc]{padding:0!important;margin-top:50px}.statistic h4[data-v-14d289bc]{margin-bottom:20px;text-align:center!important;font-size:24px!important}.statistic #canvas_1[data-v-14d289bc]{width:100%!important}
|
1
dist/css/chunk-4e97f69d.2ac8550e.css
vendored
Normal file
1
dist/css/chunk-4e97f69d.2ac8550e.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-4f336828.2a85fdc7.css
vendored
Normal file
1
dist/css/chunk-4f336828.2a85fdc7.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.toolbar[data-v-d1fc93aa]{position:fixed;width:100%;bottom:0;right:0;height:56px;line-height:56px;box-shadow:0 -1px 2px rgba(0,0,0,.03);background:#fff;border-top:1px solid #e8e8e8;padding:0 24px;z-index:9}.card[data-v-5cec0aab]{margin-bottom:24px}
|
1
dist/css/chunk-52aa957e.57b12477.css
vendored
Normal file
1
dist/css/chunk-52aa957e.57b12477.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-btn[data-v-454fdaa8]{margin-left:3px}.ant-card-body .table-operator[data-v-454fdaa8]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-454fdaa8]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-454fdaa8]{margin:0 5px}.ant-btn-danger[data-v-454fdaa8]{background-color:#fff}.ant-modal-cust-warp[data-v-454fdaa8]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-454fdaa8]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-454fdaa8]{height:90%!important;overflow-y:hidden}
|
1
dist/css/chunk-54ce84cf.77279f59.css
vendored
Normal file
1
dist/css/chunk-54ce84cf.77279f59.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.avatar-uploader>.ant-upload[data-v-c668f820]{width:104px;height:104px}.ant-upload-select-picture-card i[data-v-c668f820]{font-size:49px;color:#999}.ant-upload-select-picture-card .ant-upload-text[data-v-c668f820]{margin-top:8px;color:#666}.ant-table-tbody .ant-table-row td[data-v-c668f820]{padding-top:10px;padding-bottom:10px}.drawer-bootom-button[data-v-c668f820]{position:absolute;bottom:0;width:100%;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;left:0;background:#fff;border-radius:0 0 2px 2px}[data-v-c668f820] .ant-drawer-body{padding-bottom:53px}
|
1
dist/css/chunk-57202d88.478991f9.css
vendored
Normal file
1
dist/css/chunk-57202d88.478991f9.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-btn[data-v-0fe69b4b]{padding:0 10px;margin-left:3px}.ant-form-item-control[data-v-0fe69b4b]{line-height:0}.ant-form .ant-form-item[data-v-0fe69b4b]{margin-bottom:10px}.ant-tabs-content .ant-form-item[data-v-0fe69b4b]{margin-bottom:0}
|
1
dist/css/chunk-57e4ad46.989a2aa8.css
vendored
Normal file
1
dist/css/chunk-57e4ad46.989a2aa8.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.stepFormText[data-v-51928ca6]{margin-bottom:24px}.ant-form-item-control[data-v-51928ca6],.ant-form-item-label[data-v-51928ca6]{line-height:22px}
|
1
dist/css/chunk-59c24574.811eae5a.css
vendored
Normal file
1
dist/css/chunk-59c24574.811eae5a.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-descriptions-view[data-v-624caf20]{border:1px solid #f0f0f0}[data-v-624caf20] .ant-descriptions-item-label{width:180px}[data-v-624caf20] .ant-descriptions-item-content span{color:rgba(0,0,0,.85)}[data-v-624caf20] .ant-descriptions-bordered .ant-descriptions-row{border-bottom:1px solid #f0f0f0!important}[data-v-624caf20] .ant-descriptions-bordered .ant-descriptions-item-label{border-right:1px solid #f0f0f0}
|
1
dist/css/chunk-5a09e0ec.2ac8550e.css
vendored
Normal file
1
dist/css/chunk-5a09e0ec.2ac8550e.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-5b9a12d5.052f2995.css
vendored
Normal file
1
dist/css/chunk-5b9a12d5.052f2995.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.chart-card-header .meta[data-v-0715823f],.chart-card-header[data-v-0715823f]{position:relative;overflow:hidden;width:100%}.chart-card-header .meta[data-v-0715823f]{color:rgba(0,0,0,.45);font-size:14px;line-height:22px}.chart-card-action[data-v-0715823f]{cursor:pointer;position:absolute;top:0;right:0}.chart-card-footer[data-v-0715823f]{border-top:1px solid #e8e8e8;padding-top:9px;margin-top:8px}.chart-card-footer>[data-v-0715823f]{position:relative}.chart-card-footer .field[data-v-0715823f]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0}.chart-card-content[data-v-0715823f]{margin-bottom:12px;position:relative;height:46px;width:100%}.chart-card-content .content-fix[data-v-0715823f]{position:absolute;left:0;bottom:0;width:100%}.total[data-v-0715823f]{overflow:hidden;text-overflow:ellipsis;word-break:break-all;white-space:nowrap;color:#000;margin-top:4px;margin-bottom:0;font-size:30px;line-height:38px;height:38px}.antv-chart-mini[data-v-dda27cb2]{position:relative;width:100%}.antv-chart-mini .chart-wrapper[data-v-dda27cb2]{position:absolute;bottom:-28px;width:100%}.antv-chart-mini[data-v-6145ce76]{position:relative;width:100%}.antv-chart-mini .chart-wrapper[data-v-6145ce76]{position:absolute;bottom:-28px;width:100%}.extra-wrapper[data-v-db5a7dd2]{line-height:55px;padding-right:24px}.extra-wrapper .extra-item[data-v-db5a7dd2]{display:inline-block;margin-right:24px}.extra-wrapper .extra-item a[data-v-db5a7dd2]{margin-left:24px}.item-group[data-v-db5a7dd2]{padding:20px 0 8px 24px;font-size:0}.item-group a[data-v-db5a7dd2]{color:rgba(0,0,0,.65);display:inline-block;font-size:14px;margin-bottom:13px;width:25%}.item-group .more-btn[data-v-db5a7dd2]{margin-bottom:13px;text-align:center}.list-content-item[data-v-db5a7dd2]{color:rgba(0,0,0,.45);display:inline-block;vertical-align:middle;font-size:14px;margin-left:40px}@media only screen and (min-width:1600px){.list-content-item[data-v-db5a7dd2]{margin-left:60px}}@media only screen and (max-width:1300px){.list-content-item[data-v-db5a7dd2]{margin-left:20px}.width-hidden4[data-v-db5a7dd2]{display:none}}.list-content-item span[data-v-db5a7dd2]{line-height:20px}.list-content-item p[data-v-db5a7dd2]{margin-top:4px;margin-bottom:0;line-height:22px}.anty-list-cust .ant-list-item-meta[data-v-db5a7dd2]{-ms-flex:0.3!important;flex:0.3!important}.anty-list-cust .ant-list-item-content[data-v-db5a7dd2]{-ms-flex:1!important;flex:1!important;-ms-flex-pack:start!important;justify-content:flex-start!important;margin-left:20px}
|
1
dist/css/chunk-5ba41c0a.1f22179b.css
vendored
Normal file
1
dist/css/chunk-5ba41c0a.1f22179b.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.template-5-tree.ant-tree li span.ant-tree-switcher.ant-tree-switcher-noop{display:none}
|
1
dist/css/chunk-5c5a66a5.223e6d75.css
vendored
Normal file
1
dist/css/chunk-5c5a66a5.223e6d75.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator[data-v-6366cc77]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-6366cc77]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-6366cc77]{margin:0 5px}.ant-btn-danger[data-v-6366cc77]{background-color:#fff}.ant-modal-cust-warp[data-v-6366cc77]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-6366cc77]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-6366cc77]{height:90%!important;overflow-y:hidden}.anty-img-wrap[data-v-6366cc77]{height:25px;position:relative}.anty-img-wrap>img[data-v-6366cc77]{max-height:100%}
|
1
dist/css/chunk-60eeb670.002c4958.css
vendored
Normal file
1
dist/css/chunk-60eeb670.002c4958.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.template-5-tree.ant-tree li span.ant-tree-switcher.ant-tree-switcher-noop{display:none}.sub-tabs.un-expand[data-v-7207a92d] .ant-tabs-content{height:0!important}.sub-tabs.un-expand[data-v-7207a92d] .ant-tabs-bar{border-color:transparent!important}.sub-tabs.un-expand[data-v-7207a92d] .ant-tabs-ink-bar{background-color:transparent!important}.sub-tabs.un-expand[data-v-7207a92d] .ant-tabs-tab{display:none!important}
|
1
dist/css/chunk-62ec2dc4.de446e17.css
vendored
Normal file
1
dist/css/chunk-62ec2dc4.de446e17.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator[data-v-59a9da12]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-59a9da12]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-59a9da12]{margin:0 5px}.ant-btn-danger[data-v-59a9da12]{background-color:#fff}.ant-modal-cust-warp[data-v-59a9da12]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-59a9da12]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-59a9da12]{height:90%!important;overflow-y:hidden}
|
1
dist/css/chunk-6344b590.7432af04.css
vendored
Normal file
1
dist/css/chunk-6344b590.7432af04.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.app-list .meta-cardInfo[data-v-29457760]{zoom:1;margin-top:16px}.app-list .meta-cardInfo>div[data-v-29457760]{position:relative;text-align:left;float:left;width:50%}.app-list .meta-cardInfo>div p[data-v-29457760]{line-height:32px;font-size:24px;margin:0}.app-list .meta-cardInfo>div p[data-v-29457760]:first-child{color:rgba(0,0,0,.45);font-size:12px;line-height:20px;margin-bottom:4px}
|
1
dist/css/chunk-637a85be.29b426fc.css
vendored
Normal file
1
dist/css/chunk-637a85be.29b426fc.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.search{margin-bottom:54px}.fold{width:calc(100% - 216px);display:inline-block}.operator{margin-bottom:18px}@media screen and (max-width:900px){.fold{width:100%}}.operator button{margin-right:5px}i{cursor:pointer}.trcolor{background-color:rgba(255,192,203,.31);color:red}.anty-img-wrap[data-v-7a4f8dd3]{height:25px;position:relative}.anty-img-wrap>img[data-v-7a4f8dd3]{max-height:100%}.marginCss[data-v-7a4f8dd3]{margin-top:20px}
|
1
dist/css/chunk-650e883b.b42b0045.css
vendored
Normal file
1
dist/css/chunk-650e883b.b42b0045.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[data-v-5182e99d] .data-rule-invalid{background:#f4f4f4;color:#bababa}.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-665f2543.7108e972.css
vendored
Normal file
1
dist/css/chunk-665f2543.7108e972.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator[data-v-34e080b0]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-34e080b0]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-34e080b0]{margin:0 5px}.ant-btn-danger[data-v-34e080b0]{background-color:#fff}.ant-modal-cust-warp[data-v-34e080b0]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-34e080b0]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-34e080b0]{height:90%!important;overflow-y:hidden}
|
1
dist/css/chunk-67f772dc.9b41e022.css
vendored
Normal file
1
dist/css/chunk-67f772dc.9b41e022.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.j-table-force-nowrap td,.j-table-force-nowrap th{white-space:nowrap}.j-table-force-nowrap .ant-table-selection-column{padding:12px 22px!important}.j-table-force-nowrap.ant-table-wrapper .ant-table-content{overflow-x:auto}.drawer-bootom-button[data-v-89c48086]{position:absolute;bottom:0;width:100%;border-top:1px solid #e8e8e8;padding:10px 16px;text-align:right;left:0;background:#fff;border-radius:0 0 2px 2px}.ant-card-body .table-operator{margin-bottom:8px}.table-operator .ant-btn{margin:0 8px 8px 0}.table-operator .ant-btn-group .ant-btn{margin:0}.table-operator .ant-btn-group .ant-btn:last-child{margin:0 8px 8px 0}.ant-table-tbody .ant-table-row td{padding-top:15px;padding-bottom:15px}.ant-modal-cust-warp{height:100%}.ant-modal-cust-warp .ant-modal-body{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content{height:90%!important;overflow-y:hidden}.anty-img-wrap{height:25px;position:relative}.anty-img-wrap>img{max-height:100%}.query-group-cust{width:calc(50% - 10px)}.query-group-split-cust:before{content:"~";width:20px;display:inline-block;text-align:center}.ant-card-wider-padding.cust-erp-sub-tab>.ant-card-body{padding:5px 12px}.j-inner-table-wrapper /deep/ .ant-table-expanded-row .ant-table-wrapper .ant-table-tbody .ant-table-row{background-color:#fff}.jee-hidden{display:none}
|
1
dist/css/chunk-68b81eec.8940d21e.css
vendored
Normal file
1
dist/css/chunk-68b81eec.8940d21e.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
ul[data-v-ea6fbdbc]{max-height:700px;overflow-y:auto;padding-left:.5rem}ul i[data-v-ea6fbdbc]{font-size:1.5rem;border:1px solid #f1f1f1;padding:.2rem;margin:.3rem;cursor:pointer}ul i.active[data-v-ea6fbdbc],ul i[data-v-ea6fbdbc]:hover{border-radius:2px;border-color:#4a4a48;background-color:#4a4a48;color:#fff;transition:all .3s}ul li[data-v-ea6fbdbc]{list-style:none;float:left;width:5%;text-align:center;cursor:pointer;color:#555;transition:color .3s ease-in-out,background-color .3s ease-in-out;position:relative;margin:3px 0;border-radius:4px;background-color:#fff;overflow:hidden;padding:10px 0 0}
|
1
dist/css/chunk-68ff8a58.c276a84f.css
vendored
Normal file
1
dist/css/chunk-68ff8a58.c276a84f.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.result[data-v-6732bfa0]{text-align:center;width:72%;margin:0 auto;padding:24px 0 8px}.result .icon[data-v-6732bfa0]{font-size:72px;line-height:72px;margin-bottom:24px}.result .success[data-v-6732bfa0]{color:#52c41a}.result .error[data-v-6732bfa0]{color:red}.result .title[data-v-6732bfa0]{font-size:24px;color:rgba(0,0,0,.85);font-weight:500;line-height:32px;margin-bottom:16px}.result .description[data-v-6732bfa0]{font-size:14px;line-height:22px;color:rgba(0,0,0,.45);margin-bottom:24px}.result .content[data-v-6732bfa0]{background:#fafafa;padding:24px 40px;border-radius:2px;text-align:left}.result .action[data-v-6732bfa0]{margin-top:32px}.mobile .result[data-v-6732bfa0]{width:100%;margin:0 auto;padding:unset}
|
1
dist/css/chunk-692005f4.c82d585f.css
vendored
Normal file
1
dist/css/chunk-692005f4.c82d585f.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-card-body .table-operator[data-v-a9e6f040]{margin-bottom:18px}.ant-table-tbody .ant-table-row td[data-v-a9e6f040]{padding-top:15px;padding-bottom:15px}.anty-row-operator button[data-v-a9e6f040]{margin:0 5px}.ant-btn-danger[data-v-a9e6f040]{background-color:#fff}.ant-modal-cust-warp[data-v-a9e6f040]{height:100%}.ant-modal-cust-warp .ant-modal-body[data-v-a9e6f040]{height:calc(100% - 110px)!important;overflow-y:auto}.ant-modal-cust-warp .ant-modal-content[data-v-a9e6f040]{height:90%!important;overflow-y:hidden}
|
1
dist/css/chunk-6a014244.b19669bc.css
vendored
Normal file
1
dist/css/chunk-6a014244.b19669bc.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.card-avatar[data-v-3e1291b6]{width:48px;height:48px;border-radius:48px}.ant-card-actions[data-v-3e1291b6]{background:#f7f9fa}.ant-card-actions li[data-v-3e1291b6]{float:left;text-align:center;margin:12px 0;color:rgba(0,0,0,.45);width:50%}.ant-card-actions li[data-v-3e1291b6]:not(:last-child){border-right:1px solid #e8e8e8}.ant-card-actions li a[data-v-3e1291b6]{color:rgba(0,0,0,.45);line-height:22px;display:inline-block;width:100%}.ant-card-actions li a[data-v-3e1291b6]:hover{color:#1890ff}.new-btn[data-v-3e1291b6]{background-color:#fff;border-radius:2px;width:100%;height:186px}.meta-content[data-v-3e1291b6]{position:relative;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;height:64px;-webkit-line-clamp:3}
|
1
dist/css/chunk-6a9ee39d.29b426fc.css
vendored
Normal file
1
dist/css/chunk-6a9ee39d.29b426fc.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.search{margin-bottom:54px}.fold{width:calc(100% - 216px);display:inline-block}.operator{margin-bottom:18px}@media screen and (max-width:900px){.fold{width:100%}}.operator button{margin-right:5px}i{cursor:pointer}.trcolor{background-color:rgba(255,192,203,.31);color:red}.anty-img-wrap[data-v-7a4f8dd3]{height:25px;position:relative}.anty-img-wrap>img[data-v-7a4f8dd3]{max-height:100%}.marginCss[data-v-7a4f8dd3]{margin-top:20px}
|
1
dist/css/chunk-6e2ed084.8eeb2543.css
vendored
Normal file
1
dist/css/chunk-6e2ed084.8eeb2543.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.ant-btn[data-v-32bd0daf]{padding:0 10px;margin-left:3px}.ant-form-item-control[data-v-32bd0daf]{line-height:0}.ant-form .ant-form-item[data-v-32bd0daf]{margin-bottom:10px}.ant-tabs-content .ant-form-item[data-v-32bd0daf]{margin-bottom:0}
|
1
dist/css/chunk-709dd20e.30e67597.css
vendored
Normal file
1
dist/css/chunk-709dd20e.30e67597.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.search-head[data-v-a3866810]{background-color:#fff;margin:-25px -24px -24px}.search-head .search-input[data-v-a3866810]{text-align:center;margin-bottom:16px}.search-content[data-v-a3866810]{margin-top:48px}
|
1
dist/css/chunk-71121512.5c386c8b.css
vendored
Normal file
1
dist/css/chunk-71121512.5c386c8b.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.my-index-table{height:270px}.my-index-table table{font-size:14px!important}.index-container-ty .ant-card-head-title{padding-top:6px;padding-bottom:6px}.index-container-ty .ant-card-extra{padding:0}.index-container-ty .ant-card-extra a{color:#fff}.index-container-ty .ant-card-extra a:hover{color:#152ede}.index-container-ty .ant-card-head,.index-container-ty .ant-card-head-wrapper{line-height:24px;min-height:24px;background:#7196fb}.index-container-ty .ant-card-body{padding:10px 12px 0 12px}.index-container-ty .ant-table-footer{text-align:right;padding:6px 12px 6px 6px;background:#fff;border-top:2px solid #f7f1f1}.index-md-title{postion:relative;padding-left:24px;width:100%;color:#fff;font-size:21px;font-family:cursive}.index-md-title img{position:absolute;height:32px;top:2px;left:14px}.index-container-ty .ant-table-small>.ant-table-content>.ant-table-fixed-left>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.index-container-ty .ant-table-small>.ant-table-content>.ant-table-fixed-right>.ant-table-body-outer>.ant-table-body-inner>table>.ant-table-thead>tr>th,.index-container-ty .ant-table-small>.ant-table-content>.ant-table-scroll>.ant-table-body>table>.ant-table-thead>tr>th,.index-container-ty .ant-table-tbody>tr>td,.index-container-ty .ant-table-thead>tr>th{border-bottom:1px solid #90aeff}.index-container-ty .ant-table-small{border:1px solid #90aeff}.index-container-ty .ant-table-placeholder{padding:0}
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user