2024-01-08更新

master
RENCHAO 2 years ago
parent a4f96eaf5c
commit 7a4bdca8f7

@ -3,10 +3,11 @@ package com.jiuyv.sptcc.agile.batch.controller;
import com.jcraft.jsch.SftpException;
import com.jiuyv.sptcc.agile.batch.config.TableProperties;
import com.jiuyv.sptcc.agile.batch.domain.AjaxResult;
import com.jiuyv.sptcc.agile.batch.domain.ReqClearTableDTO;
import com.jiuyv.sptcc.agile.batch.domain.ReqSyncTableDTO;
import com.jiuyv.sptcc.agile.batch.service.BatchService;
import com.jiuyv.sptcc.agile.batch.service.ClearService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@ -24,6 +25,7 @@ import java.util.List;
@RestController
@RequestMapping("dwsBatch")
public class BatchController {
private static final Logger LOGGER = LoggerFactory.getLogger(BatchController.class);
private final TableProperties tableProperties;
private final ClearService clearService;
@ -37,27 +39,13 @@ public class BatchController {
*/
@PostMapping("/syncByDate")
public AjaxResult<Void> syncByDate(@RequestBody ReqSyncTableDTO request) {
LOGGER.info("====开始同步表[{}],日期[{}]", request.getHiveTable(), request.getDate());
List<ReqSyncTableDTO> tableList = new ArrayList<>();
tableList.add(request);
getService().syncByDate(tableList);
return AjaxResult.success("同步完成");
}
/**
* pg
*/
@PostMapping("/clearTable")
public AjaxResult<Void> clearTable(@RequestBody List<ReqClearTableDTO> tableList) {
for (ReqClearTableDTO table : tableList) {
String pgTable = table.getPgTable();
if (!pgTable.startsWith("tbl_prd_")) {
return AjaxResult.error("非法操作,无权限清空该表:" + table);
}
}
getService().clearTable(tableList);
return AjaxResult.success();
}
/**
* Sftp
*

@ -100,8 +100,11 @@ public class BatchService {
}
// 等待完成
waitCompletion();
} catch (SQLException | InterruptedException e) {
} catch (SQLException e) {
LOGGER.error("同步时发生异常:{}", e.getMessage(), e);
throw new ServiceException("同步异常,详情查看日志");
} catch (InterruptedException e) {
LOGGER.error("同步时中断异常:{}", e.getMessage(), e);
Thread.currentThread().interrupt();
throw new ServiceException("同步异常,详情查看日志");
} finally {
@ -112,7 +115,7 @@ public class BatchService {
/**
* pg
*/
public void clearTable(List<ReqClearTableDTO> tables) {
private void clearTable(List<ReqClearTableDTO> tables) {
try {
for (ReqClearTableDTO table : tables) {
String pgTable = table.getPgTable();
@ -248,7 +251,9 @@ public class BatchService {
while (keepOn) {
List<Map<String, Object>> list = hiveDAO.selectList(tableInfo.getHiveSql(), part, offset, BATCH_QUANTITY);
if (CollectionUtils.isEmpty(list)) {
putDataQueue(new DataInfoContainer(tableInfo, list, count, part));
if (count != 0) {
putDataQueue(new DataInfoContainer(tableInfo, list, count, part));
}
keepOn = false;
} else {
putDataQueue(new DataInfoContainer(tableInfo, list, null, part));

@ -95,7 +95,12 @@ public class SftpConfigProperties implements java.io.Serializable{
* @throws Exception
*/
public String getPassword() throws Exception {
return Sm4Util.decryptEcb(Constants.SM4_SECERT_KEY, password);
try {
return Sm4Util.decryptEcb(Constants.SM4_SECERT_KEY, password);
}catch (Exception e) {
// 兼容写法,不加密也可以
}
return password;
}
/**

@ -144,6 +144,7 @@ public class SyncDataTestController {
* @return
* @throws Exception
*/
/*
@PostMapping("getTableColumns")
public R<Object> getTableColumns(String dbName,String sql,String tables,String fieldSeparator,String filename) throws Exception{
LOGGER.info("getTables>>dbName={}sql={}fieldSeparator={}filename={}tables={}",dbName,sql,fieldSeparator,filename,tables);
@ -226,7 +227,7 @@ public class SyncDataTestController {
}
return R.ok();
}
*/
private DDsProperties getDataSourceConf(String dbName) {
DDsProperties dsProperties = new DDsProperties();

@ -77,6 +77,8 @@ public class SyncDataReadTaskManager {
sqlParams.put("currDate", currDate);//目前都是按天处理,如果有他条件再加
sqlParams.put("currDateSimple", currDate.replace("-", ""));//纯数字形式
sqlParams.put("datetime", datetime);//主要是用于文件名称
//放一下,也许有用
sqlParams.put("remoteDays",mappingInfo.getRemoteDays()!=null?mappingInfo.getRemoteDays().toString():"0");
ReaderWriterHelper readerWriterHelper=new ReaderWriterHelper();
readerWriterHelper.setSingleWriteNumber(defaultSingleWriteNumber);

@ -3,7 +3,7 @@
<parent>
<artifactId>agile-portal</artifactId>
<groupId>com.jiuyv.sptcc.agile</groupId>
<version>0.2.4-SNAPSHOT</version>
<version>0.2.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

@ -3,7 +3,7 @@
<parent>
<groupId>com.jiuyv.sptcc.agile</groupId>
<artifactId>agile-portal</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>0.2.5-SNAPSHOT</version>
</parent>
<artifactId>agile-portal-gateway</artifactId>

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

@ -0,0 +1 @@
<!doctype html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="favicon.ico"><title>久事大数据开放平台</title><script defer="defer" src="static/js/chunk-vendors.7aad466f.js"></script><script defer="defer" src="static/js/app.11080c4c.js"></script><link href="static/css/chunk-vendors.d47dac03.css" rel="stylesheet"><link href="static/css/app.f5ad523a.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but 久事大数据开放平台 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>

@ -0,0 +1 @@
.success-case .case-pic[data-v-17af49fd]{background:url(../../static/img/case-banner.a271bb03.jpg) no-repeat top}.success-case .case-list[data-v-17af49fd]{width:100%}.success-case .case-list .wrapper[data-v-17af49fd]{width:1200px;margin:0 auto}

@ -0,0 +1 @@
.personal-info .el-form-item__label{text-align:left!important;font-size:16px!important}.personal-info .el-form-item__content{font-size:16px!important}.personal-info .el-form-item{margin-bottom:0}.personal-info[data-v-5e8b44ac]{padding-top:20px;font-size:16px}.personal-info .el-icon-success[data-v-5e8b44ac]{margin-right:6px;color:#6cbd7f}.personal-info .change-pwd-link[data-v-5e8b44ac]{margin-left:15px;color:#3165db}

@ -0,0 +1 @@
.lab-apply .top-filter[data-v-de1afecc]{margin-top:24px}.lab-apply .tale-list[data-v-de1afecc] .el-table th.el-table__cell{color:#333;background:#fafafa;padding:5px 0;font-size:16px}.lab-apply .tale-list[data-v-de1afecc] .el-table .cell.el-tooltip{font-size:16px}.lab-apply .tale-list .review-status[data-v-de1afecc]{display:flex;align-items:center}.lab-apply .tale-list .review-status .icon-circle[data-v-de1afecc]{width:6px;height:6px;border-radius:3px;margin-right:8px;background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.grey[data-v-de1afecc]{background:#d9d9d9}.lab-apply .tale-list .review-status .icon-circle.orange[data-v-de1afecc]{background:#ffd859}.lab-apply .tale-list .review-status .icon-circle.green[data-v-de1afecc]{background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.red[data-v-de1afecc]{background:#ff4d4f}.lab-apply[data-v-de1afecc] .el-pagination{text-align:right}

@ -0,0 +1 @@
.top-filter[data-v-45009cb2]{margin-top:24px}.tale-list[data-v-45009cb2] .el-table th.el-table__cell{color:#333;background:#fafafa;padding:5px 0;font-size:16px}.tale-list[data-v-45009cb2] .el-table .cell.el-tooltip{font-size:16px}.tale-list .review-status[data-v-45009cb2]{display:flex;align-items:center}.tale-list .review-status .icon-circle[data-v-45009cb2]{width:6px;height:6px;border-radius:3px;margin-right:8px;background:#52c41a}.tale-list .review-status .icon-circle.grey[data-v-45009cb2]{background:#d9d9d9}.tale-list .review-status .icon-circle.orange[data-v-45009cb2]{background:#ffd859}.tale-list .review-status .icon-circle.green[data-v-45009cb2]{background:#52c41a}.tale-list .review-status .icon-circle.red[data-v-45009cb2]{background:#ff4d4f}[data-v-45009cb2] .el-pagination{text-align:right}.content[data-v-45009cb2]{width:100%;box-sizing:border-box;min-height:400px;margin:0 auto;background:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.06)}.content .news-title[data-v-45009cb2]{text-align:center;height:60px;line-height:60px;font-size:28px;color:#000}.content .news-upadate-time[data-v-45009cb2]{font-size:14px;line-height:14px;padding:20px 0;text-align:center;color:#666;border-bottom:1px solid #d8d8d8}.content .news-detail[data-v-45009cb2]{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}

@ -0,0 +1 @@
.news-detail{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail p{text-indent:2em;margin:0;line-height:35px;font-size:16px;text-align:justify}.news-detail p img{margin:0 auto;display:inline-block;max-width:90%}.news-detail p.ql-align-center{text-align:center}.news-detail-container[data-v-4e64d802]{background:#f9f9f9;padding:40px 0}.news-detail-container .wrapper[data-v-4e64d802]{width:1200px;margin:0 auto;overflow:hidden}.news-detail-container .wrapper .el-breadcrumb[data-v-4e64d802]{margin:0 0 20px 0}.news-detail-container .content[data-v-4e64d802]{width:1200px;padding:0;box-sizing:border-box;min-height:400px;margin:0 auto;background:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.06)}.news-detail-container .content .routerList[data-v-4e64d802]{background:#ecf5ff;height:100vh;border-radius:10px 10px 0 0}.news-detail-container .content .routerList h2[data-v-4e64d802]{text-align:center;font-size:24px;background:#e6171e;color:#fff;line-height:45px;border-radius:10px 10px 0 0}.news-detail-container .content .routerList ul[data-v-4e64d802]{line-height:45px;padding:20px 0}.news-detail-container .content .routerList ul li[data-v-4e64d802]{font-size:18px;font-weight:600;padding:0 20px}.news-detail-container .content .routerList ul li.on[data-v-4e64d802]{background:#fff;border-left:5px solid #e6171e}.news-detail-container .content .routerList ul li.on a[data-v-4e64d802]{color:#e6171e}.news-detail-container .content .news-title[data-v-4e64d802]{text-align:center;height:auto;line-height:35px;font-size:28px;color:#000}.news-detail-container .content .news-upadate-time[data-v-4e64d802]{font-size:14px;line-height:14px;padding:20px 0;text-align:center;color:#666;border-bottom:1px solid #d8d8d8}.news-detail-container .content .news-detail[data-v-4e64d802]{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}

@ -0,0 +1 @@
.data-laboratory .laboratory-pic[data-v-9b9fe4d0]{background:url(../../static/img/data-laboratory.0e3dafd1.jpg) no-repeat top;background-size:100%}.data-laboratory .lab-content[data-v-9b9fe4d0]{width:1100px;padding:25px 50px;background:#fff;margin:25px auto}.data-laboratory .manual-download[data-v-9b9fe4d0]{display:flex;justify-content:flex-end;margin-bottom:30px}.data-laboratory .manual-download span[data-v-9b9fe4d0]{border-radius:3px;color:#3f40ed;border:1px solid #3f40ed;padding:10px 16px;cursor:pointer}.data-laboratory .lab-intro[data-v-9b9fe4d0]{display:flex;align-items:flex-start;justify-content:space-between}.data-laboratory .lab-intro.lab-set[data-v-9b9fe4d0]{margin:70px 0 50px 0;justify-content:flex-end}.data-laboratory .lab-intro .text[data-v-9b9fe4d0]{width:730px}.data-laboratory .lab-intro .text .question[data-v-9b9fe4d0]{font-size:24px;margin-bottom:30px}.data-laboratory .lab-intro .text .answer[data-v-9b9fe4d0]{font-size:16px;line-height:36px;color:#666}.data-laboratory .titleh3[data-v-9b9fe4d0]{text-align:center;padding:35px 0 25px}.data-laboratory .czlc[data-v-9b9fe4d0]{overflow:hidden;border:1px solid #dadef1}.data-laboratory .czlc .titleLeft[data-v-9b9fe4d0]{background:#e41820;float:left;width:98px;height:157px;text-align:center;line-height:185px}.data-laboratory .czlc .titleLeft span[data-v-9b9fe4d0]{display:inline-block;width:36px;height:63px;font-size:18px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;line-height:25px}.data-laboratory .czlc .titler[data-v-9b9fe4d0]{float:right;margin:0;width:1000px}.data-laboratory .czlc .titler .process-list[data-v-9b9fe4d0]{display:flex;align-items:flex-start;justify-content:space-between;padding-top:15px;height:140px}.data-laboratory .czlc .titler .process-list .item[data-v-9b9fe4d0]{width:22%;text-align:center;padding:1.5%}.data-laboratory .czlc .titler .process-list .item .process-title[data-v-9b9fe4d0]{padding:26px 0 10px 0;font-size:16px;color:#17181b}.data-laboratory .czlc .titler .process-list .item .process-text[data-v-9b9fe4d0]{text-align:left;font-size:14px;line-height:21px;color:#808082}.data-laboratory .czlc .titler .process-list .item .process-title[data-v-9b9fe4d0]{text-align:center}.data-laboratory .czlc .titler .process-list .item+.item[data-v-9b9fe4d0]{position:relative}.data-laboratory .czlc .titler .process-list .item+.item[data-v-9b9fe4d0]:before{content:"";position:absolute;left:-25px;top:40px;width:65px;height:35px;background-size:100% 100%;background-repeat:no-repeat;background-position:0;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEEAAAAjCAYAAADLy2cUAAAAAXNSR0IArs4c6QAAA3hJREFUaEPtme9rFEcYx7/f2du9M6vMmyB5ZemfUBCp5rKbgGARpIWiiGi9RF/0hXkn+FLxpeCrFkUxtxcFwZZCKZTSvrBJRLR90UBpXwVsX0kaxB8kapK9m0d27hJNTLy7VE+z58IyszPPzsz3M8/zzHJHvL/ANDCIRwo9yABuvnRjLXpSAWFutP8xAA9Ue7PB0PfNgkgLBKkJn1XEJ24QjTYDIm0Qkvh+BKg+LxwabxRE6iAkwgn8ZyA9ubA00QiIVEKoCf/Xc9jNfPFuPRBphgCCf7kqG7Dn/INXgUg1hJrwW57v7uTWi09WA9EOEBLtP3m++ym3XoxXArHuIcjPh/z5XGamgbi/6gbRQRILx+niK+8sBJkYzGIq1ijP6thRmoaaUtFGUUOoSaNFkjq2C/BxPQhJvwBf58JocLntG4EgvxZy2JDRiKljFWsapSnQhqYqQKgFRgutCE0kz6KBpA6N6nO2EWHN2ijipBtEp198jzJ1uQBTqZJUzm1u/qJkqd0cKMDIUsKKt9ldtP1zIwMRKHbRAmpgoZ6IgNfs4lplb8OBcszrKZ1bmJMyWUqSRabWUGZXwbUQxvpfbF+wLzOIbP/caP9LsdUqIa9hHuMABzJhdM1+XMlkaYkYdhVsiMjYyiIZRLZ/nUNIJMyrDPe43cVf2hlCkikfg7K9vSFYl5d9bQ2BwAUvjL5sYwj8zgu27CNPGcrk8DQgG6sZlzPsOryplhinAdTaF/PxDIPI9q/nxEjiujuzcTd3fzVXPR3uDW9DBR9ZmQ7G2Xn49yqEI9sgptq+eKCqcQZDtn9+bGCQAt9AfBI+iA4IfJGkTlsS4gOwN4GOpBTAHrFv6yLwh+uwl/lissnVrW/1YuTvvR7ud/pwpAOVih87xqcRv2LEpyQ3fCiVgLVQzXOYHaCF6FNoS9DafyAve+xqsia8TDnP7itTS/a21RBe93zy29EP52crd+qOS9w1Us5vCK/8s9y25Z5Qd7FrMGggPz0EnTAbXPpzpeHbAII8VYJdbu/q/0mkHUJZYD7PhcM/vMrBUgxBhMIjXm8U1Yuw1EJQghNub3SmHoC3ckQ2sqhmbZYnRoJnvbB4vNFx0ugJl70gKqz0W+JqUNIFgfzRq9z5jH0j5Ua9IDXhEI8NfGMEWc+d3s8d3z5tBkBqIDQrOpVfjP8XwjP0DW3oc9bf9QAAAABJRU5ErkJggg==)}

@ -0,0 +1 @@
.news-list-container[data-v-1e29434c]{background:#f9f9f9;padding:40px 0}.news-list-container .wrapper[data-v-1e29434c]{width:1200px;margin:0 auto;overflow:hidden}.news-list-container .wrapper .el-breadcrumb[data-v-1e29434c]{margin:0 0 20px 0}.news-list-container .content[data-v-1e29434c]{width:1110px;box-sizing:border-box;min-height:400px;margin:0 auto;background:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.06)}.news-list-container .content .titile[data-v-1e29434c]{width:1080px;padding-left:30px;height:60px;line-height:60px;font-size:20px;font-weight:500;color:#fff;background:url(../../static/img/news-title-bg.498796fd.png) no-repeat top}.news-list-container .content .list[data-v-1e29434c]{width:1110px;margin:0 auto}.news-list-container .content .list ul[data-v-1e29434c]{padding:40px 82px}.news-list-container .content .list ul li[data-v-1e29434c]{border-bottom:1px solid #e9edf3}.news-list-container .content .list ul li a[data-v-1e29434c]{display:flex;align-items:center;justify-content:space-between;height:56px;line-height:56px}.news-list-container .content .list ul li a span[data-v-1e29434c]{width:680px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#333}.news-list-container .content .list ul li a b[data-v-1e29434c]{font-weight:400;color:#666}.news-list-container .content .list[data-v-1e29434c] .el-pagination{text-align:right}

@ -0,0 +1 @@
.find-password[data-v-2725d968]{width:100%;min-height:500px;background:#fff}.find-password[data-v-2725d968] .el-step__title{text-align:center}.find-password .title[data-v-2725d968]{padding:40px 20px;text-align:center;font-size:26px;line-height:40px;font-weight:400}.find-password .el-form[data-v-2725d968]{width:382px;margin:60px auto 20px auto}.find-password .procees-contaner[data-v-2725d968]{width:700px;padding:60px 200px;margin:0 auto 50px auto;background:#fff}.divClass[data-v-2725d968]{width:100%;height:10px;margin:5px 0}.divClass span[data-v-2725d968]{float:left;background:#ccc;height:10px;width:31%;margin:0 1%}.divClass .weak[data-v-2725d968]{background-color:#f56c6c}.divClass .medium[data-v-2725d968]{background-color:#e6a23c}.divClass .strong[data-v-2725d968]{background-color:#67c23a}

@ -0,0 +1 @@
.news-detail{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail p{text-indent:2em;margin:0;line-height:35px;font-size:16px;text-align:justify}.news-detail p img{margin:0 auto}.news-detail p a{color:#1890ff}.news-detail p.ql-align-center{text-align:center}.news-detail-container[data-v-12fb4c34]{background:#f9f9f9;padding:40px 0}.news-detail-container .wrapper[data-v-12fb4c34]{width:1200px;margin:0 auto;overflow:hidden}.news-detail-container .wrapper .el-breadcrumb[data-v-12fb4c34]{margin:0 0 20px 0}.news-detail-container .content[data-v-12fb4c34]{width:1110px;padding:40px 68px;box-sizing:border-box;min-height:400px;margin:0 auto;background:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.06)}.news-detail-container .content .news-title[data-v-12fb4c34]{text-align:center;height:auto;line-height:35px;font-size:28px;color:#000}.news-detail-container .content .news-upadate-time[data-v-12fb4c34]{font-size:14px;line-height:14px;padding:20px 0;text-align:center;color:#666;border-bottom:1px solid #d8d8d8}.news-detail-container .content .news-detail[data-v-12fb4c34]{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail-container .content .list[data-v-12fb4c34]{width:1110px;margin:0 auto}.news-detail-container .content .list ul[data-v-12fb4c34]{padding:40px 82px}.news-detail-container .content .list ul li[data-v-12fb4c34]{border-bottom:1px solid #e9edf3}.news-detail-container .content .list ul li a[data-v-12fb4c34]{display:flex;align-items:center;justify-content:space-between;height:56px;line-height:56px}.news-detail-container .content .list ul li a span[data-v-12fb4c34]{width:680px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#333}.news-detail-container .content .list ul li a b[data-v-12fb4c34]{font-weight:400;color:#666}.news-detail-container .content .list .el-pagination[data-v-12fb4c34]{text-align:right}

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
.user-container .user-top-bg[data-v-6ea74eac]{width:100%;height:237px;overflow:hidden;background:url(../../static/img/user-bg.64b52a93.jpg) no-repeat top;background-size:100%}.user-container .user-top-bg .title[data-v-6ea74eac]{width:1200px;margin:68px auto 0 auto;font-size:24px;color:#fff;font-weight:700}.user-container .user-top-bg .title small[data-v-6ea74eac]{font-size:20px;font-weight:400}.user-container .conent[data-v-6ea74eac]{width:1200px;display:flex;align-items:flex-start;background:#fff;box-shadow:0 0 20px 0 rgba(0,0,0,.05);margin:-70px auto 70px auto}.user-container .conent .user-left-nav[data-v-6ea74eac]{width:175px;min-height:410px;padding:20px 0 40px 0;box-sizing:border-box}.user-container .conent .user-left-nav ul li[data-v-6ea74eac]{padding-right:12px;position:relative}.user-container .conent .user-left-nav ul li .item[data-v-6ea74eac],.user-container .conent .user-left-nav ul li a[data-v-6ea74eac]{cursor:pointer;font-size:18px;color:#333;line-height:28px;margin:15px 0;padding-left:20px;display:flex;align-items:center;justify-content:space-between}.user-container .conent .user-left-nav ul li .item i[data-v-6ea74eac],.user-container .conent .user-left-nav ul li a i[data-v-6ea74eac]{font-size:16px;color:#666;transition:.3s ease-in-out}.user-container .conent .user-left-nav ul li .item i.up[data-v-6ea74eac],.user-container .conent .user-left-nav ul li a i.up[data-v-6ea74eac]{transform:rotate(180deg);transform-origin:50% 50%}.user-container .conent .user-left-nav ul li .item.router-link-active[data-v-6ea74eac],.user-container .conent .user-left-nav ul li a.router-link-active[data-v-6ea74eac]{color:#3f7eff;font-weight:600}.user-container .conent .user-left-nav ul li .item.router-link-active[data-v-6ea74eac]:after,.user-container .conent .user-left-nav ul li a.router-link-active[data-v-6ea74eac]:after{content:"";position:absolute;width:3px;height:100%;right:-3px;top:0;background:#3f7eff}.user-container .conent .user-left-nav ul li .sub-nav .sub-item[data-v-6ea74eac]{position:relative;margin:10px 0}.user-container .conent .user-left-nav ul li .sub-nav .sub-item .router-link-active[data-v-6ea74eac]:after{right:-14px}.user-container .conent .user-left-nav ul li .sub-nav a[data-v-6ea74eac]{margin:0;line-height:28px;font-size:16px;text-indent:2em}.user-container .conent .user-right-content[data-v-6ea74eac]{padding:10px;width:1025px;box-sizing:border-box;min-height:420px;border-left:3px solid #e9e9e9}.user-container .conent .user-right-content .user-content-title[data-v-6ea74eac]{font-weight:600;font-size:16px;line-height:35px}

@ -0,0 +1 @@
.inner-container .el-carousel__arrow{width:56px!important;height:56px!important;background-color:rgba(31,45,61,.88)!important;font-size:30px!important}.inner-container .el-carousel__button{height:15px!important;width:35px!important}.el-carousel__indicators--outside button{background-color:#116fd2!important}.el-carousel__item[data-v-45c83875]:nth-child(2n){background-color:#99a9bf}.el-carousel__item[data-v-45c83875]:nth-child(odd){background-color:#d3dce6}.medium[data-v-45c83875]{position:relative;height:100%}.medium .wrapper[data-v-45c83875]{width:100%;height:40px;background:#000000ab;position:absolute;z-index:99;display:block;text-align:center;color:#fff;line-height:40px;bottom:0;font-size:20px;font-weight:700}

@ -0,0 +1 @@
.lab-apply .top-filter[data-v-44f49071]{margin-top:24px}.lab-apply .tale-list[data-v-44f49071] .el-table th.el-table__cell{color:#333;background:#fafafa;padding:5px 0;font-size:16px}.lab-apply .tale-list[data-v-44f49071] .el-table .cell.el-tooltip{font-size:16px}.lab-apply .tale-list .review-status[data-v-44f49071]{display:flex;align-items:center}.lab-apply .tale-list .review-status .icon-circle[data-v-44f49071]{width:6px;height:6px;border-radius:3px;margin-right:8px;background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.grey[data-v-44f49071]{background:#d9d9d9}.lab-apply .tale-list .review-status .icon-circle.orange[data-v-44f49071]{background:#ffd859}.lab-apply .tale-list .review-status .icon-circle.green[data-v-44f49071]{background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.red[data-v-44f49071]{background:#ff4d4f}.lab-apply[data-v-44f49071] .el-pagination{text-align:right}

@ -0,0 +1 @@
.inner-container[data-v-3175078b]{margin:20px auto;background:#fff}.routerList[data-v-3175078b]{background:#ecf5ff;height:100vh;border-radius:10px 10px 0 0}.routerList h2[data-v-3175078b]{text-align:center;font-size:24px;background:#e6171e;color:#fff;line-height:45px;border-radius:10px 10px 0 0}.routerList ul[data-v-3175078b]{line-height:45px;padding:20px 0}.routerList ul li[data-v-3175078b]{font-size:18px;font-weight:600;padding:0 20px}.routerList ul li.on[data-v-3175078b]{background:#fff;border-left:5px solid #e6171e}.routerList ul li.on a[data-v-3175078b]{color:#e6171e}.data-guide .guide-pic[data-v-3175078b]{background:url(../../static/img/data-service.82b45c45.jpg) no-repeat top;background-size:100%}.data-guide .titleh3[data-v-3175078b]{text-align:center;padding:35px 0 25px}.data-guide .ulList[data-v-3175078b]{overflow:hidden}.data-guide .ulList li[data-v-3175078b]{width:23%;margin-left:10%;margin-bottom:30px;height:157px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAFCAYAAABbyvyAAAAAAXNSR0IArs4c6QAAAHVJREFUKFNjZKAyeCHPr/ibhbVKhuNNNuNVhl8w4xmpbA/DfwYG5sfKIssYGRi4ZTjeBMEso7pFIIfvZ2BgUVYWWYpsGeMqBgZmbW0GZmr7TPC9FMtfjp+LGRgZ2WUE3gQyPlIRucbwn0GZ2hYhmfeV5d8fQwCdfR1zO2Db5QAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:no-repeat;padding:10px 0}.data-guide .ulList li .xh[data-v-3175078b]{font-size:16px;font-weight:700;font-family:MicrosoftYaHei;color:#000;line-height:16px;display:block}.data-guide .ulList li h3[data-v-3175078b]{font-size:18px;font-family:MicrosoftYaHei;color:#2c2c2c;line-height:45px;border-bottom:1px solid #ccc}.data-guide .ulList li p[data-v-3175078b]{font-size:12px;font-family:MicrosoftYaHei;color:#666;line-height:22px;margin:10px 0}.data-guide .ulList li p a[data-v-3175078b]{color:#e22314}.data-guide .process-list[data-v-3175078b]{display:flex;align-items:flex-start;justify-content:space-between}.data-guide .process-list .item[data-v-3175078b]{width:22%;text-align:center;padding:1.5%}.data-guide .process-list .item .process-title[data-v-3175078b]{padding:26px 0 10px 0;font-size:16px;color:#17181b}.data-guide .process-list .item .process-text[data-v-3175078b]{text-align:center;font-size:14px;line-height:21px;color:#808082;width:80%;margin:0 auto}.data-guide .process-list .item .process-title[data-v-3175078b]{text-align:center}.data-guide .process-list .item+.item[data-v-3175078b]{position:relative}.data-guide .process-list .item+.item[data-v-3175078b]:before{content:"";position:absolute;left:-25px;top:50px;width:45px;height:25px;background-size:100% 100%;background-repeat:no-repeat;background-position:0;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEEAAAAjCAYAAADLy2cUAAAAAXNSR0IArs4c6QAAA3hJREFUaEPtme9rFEcYx7/f2du9M6vMmyB5ZemfUBCp5rKbgGARpIWiiGi9RF/0hXkn+FLxpeCrFkUxtxcFwZZCKZTSvrBJRLR90UBpXwVsX0kaxB8kapK9m0d27hJNTLy7VE+z58IyszPPzsz3M8/zzHJHvL/ANDCIRwo9yABuvnRjLXpSAWFutP8xAA9Ue7PB0PfNgkgLBKkJn1XEJ24QjTYDIm0Qkvh+BKg+LxwabxRE6iAkwgn8ZyA9ubA00QiIVEKoCf/Xc9jNfPFuPRBphgCCf7kqG7Dn/INXgUg1hJrwW57v7uTWi09WA9EOEBLtP3m++ym3XoxXArHuIcjPh/z5XGamgbi/6gbRQRILx+niK+8sBJkYzGIq1ijP6thRmoaaUtFGUUOoSaNFkjq2C/BxPQhJvwBf58JocLntG4EgvxZy2JDRiKljFWsapSnQhqYqQKgFRgutCE0kz6KBpA6N6nO2EWHN2ijipBtEp198jzJ1uQBTqZJUzm1u/qJkqd0cKMDIUsKKt9ldtP1zIwMRKHbRAmpgoZ6IgNfs4lplb8OBcszrKZ1bmJMyWUqSRabWUGZXwbUQxvpfbF+wLzOIbP/caP9LsdUqIa9hHuMABzJhdM1+XMlkaYkYdhVsiMjYyiIZRLZ/nUNIJMyrDPe43cVf2hlCkikfg7K9vSFYl5d9bQ2BwAUvjL5sYwj8zgu27CNPGcrk8DQgG6sZlzPsOryplhinAdTaF/PxDIPI9q/nxEjiujuzcTd3fzVXPR3uDW9DBR9ZmQ7G2Xn49yqEI9sgptq+eKCqcQZDtn9+bGCQAt9AfBI+iA4IfJGkTlsS4gOwN4GOpBTAHrFv6yLwh+uwl/lissnVrW/1YuTvvR7ud/pwpAOVih87xqcRv2LEpyQ3fCiVgLVQzXOYHaCF6FNoS9DafyAve+xqsia8TDnP7itTS/a21RBe93zy29EP52crd+qOS9w1Us5vCK/8s9y25Z5Qd7FrMGggPz0EnTAbXPpzpeHbAII8VYJdbu/q/0mkHUJZYD7PhcM/vMrBUgxBhMIjXm8U1Yuw1EJQghNub3SmHoC3ckQ2sqhmbZYnRoJnvbB4vNFx0ugJl70gKqz0W+JqUNIFgfzRq9z5jH0j5Ua9IDXhEI8NfGMEWc+d3s8d3z5tBkBqIDQrOpVfjP8XwjP0DW3oc9bf9QAAAABJRU5ErkJggg==)}

@ -0,0 +1 @@
.news-detail{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail p{text-indent:2em;margin:0;line-height:35px;font-size:16px;text-align:justify}.news-detail p img{margin:0 auto}.news-detail p a{color:#1890ff}.news-detail p.ql-align-center{text-align:center}.news-detail-container[data-v-4f5f493d]{background:#f9f9f9;padding:40px 0}.news-detail-container .wrapper[data-v-4f5f493d]{width:1200px;margin:0 auto;overflow:hidden}.news-detail-container .wrapper .el-breadcrumb[data-v-4f5f493d]{margin:0 0 20px 0}.news-detail-container .content[data-v-4f5f493d]{width:1110px;padding:40px 68px;box-sizing:border-box;min-height:400px;margin:0 auto;background:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.06)}.news-detail-container .content .news-title[data-v-4f5f493d]{text-align:center;height:auto;line-height:35px;font-size:28px;color:#000}.news-detail-container .content .news-upadate-time[data-v-4f5f493d]{font-size:14px;line-height:14px;padding:20px 0;text-align:center;color:#666;border-bottom:1px solid #d8d8d8}.news-detail-container .content .news-detail[data-v-4f5f493d]{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail-container .content .list[data-v-4f5f493d]{width:1110px;margin:0 auto}.news-detail-container .content .list ul[data-v-4f5f493d]{padding:40px 82px}.news-detail-container .content .list ul li[data-v-4f5f493d]{border-bottom:1px solid #e9edf3}.news-detail-container .content .list ul li a[data-v-4f5f493d]{display:flex;align-items:center;justify-content:space-between;height:56px;line-height:56px}.news-detail-container .content .list ul li a span[data-v-4f5f493d]{width:680px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#333}.news-detail-container .content .list ul li a b[data-v-4f5f493d]{font-weight:400;color:#666}.news-detail-container .content .list .el-pagination[data-v-4f5f493d]{text-align:right}

@ -0,0 +1 @@
.inner-container[data-v-351a2db2]{margin:20px auto;background:#fff}.routerList[data-v-351a2db2]{background:#ecf5ff;height:100vh;border-radius:10px 10px 0 0}.routerList h2[data-v-351a2db2]{text-align:center;font-size:24px;background:#e6171e;color:#fff;line-height:45px;border-radius:10px 10px 0 0}.routerList ul[data-v-351a2db2]{line-height:45px;padding:20px 0}.routerList ul li[data-v-351a2db2]{font-size:18px;font-weight:600;padding:0 20px}.routerList ul li.on[data-v-351a2db2]{background:#fff;border-left:5px solid #e6171e}.routerList ul li.on a[data-v-351a2db2]{color:#e6171e}.api-list-container[data-v-351a2db2]{background:#f9f9f9}.api-list-container .guide-pic[data-v-351a2db2]{background:url(../../static/img/data-service.82b45c45.jpg) no-repeat top;background-size:100%}.api-list-container .api-list ul[data-v-351a2db2]{width:100%;align-items:flex-start;flex-wrap:wrap;justify-content:space-between;padding-top:30px;overflow:hidden}.api-list-container .api-list ul li[data-v-351a2db2]{padding:15px;margin-bottom:50px;box-sizing:border-box;width:32%;height:296px;background:#fff;box-shadow:0 0 6px 0 rgba(217,225,238,.47);border-radius:2px;transition-property:box-shadow transform;transition-duration:.25s,1s;float:left;margin-left:1%;cursor:pointer;border:2px solid #409eff}.api-list-container .api-list ul li[data-v-351a2db2]:hover{transform:translateY(-10px);box-shadow:0 0 16px 0 rgba(217,225,238,.47);background:linear-gradient(180deg,#2980b9,#87ceeb);border:2px solid #adb5bd}.api-list-container .api-list ul li:hover .aip-intro[data-v-351a2db2],.api-list-container .api-list ul li:hover .api-info .others b[data-v-351a2db2],.api-list-container .api-list ul li:hover .api-info[data-v-351a2db2],.api-list-container .api-list ul li:hover .api-name[data-v-351a2db2]{color:#fff}.api-list-container .api-list ul li .api-name[data-v-351a2db2]{font-size:18px;color:#181818;font-weight:700;line-height:18px;height:18px;margin-bottom:15px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.api-list-container .api-list ul li .aip-intro[data-v-351a2db2]{height:120px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;color:#666;line-height:24px;margin-bottom:20px;font-size:14px}.api-list-container .api-list ul li .api-info[data-v-351a2db2]{padding:20px 0;color:#ababab;font-size:14px;border-top:1px solid #d8d8d8}.api-list-container .api-list ul li .api-info .others[data-v-351a2db2]{display:flex;justify-content:space-between}.api-list-container .api-list ul li .api-info .others b[data-v-351a2db2]{font-weight:400;font-size:12px;color:#5274ca;line-height:1;padding:4px 5px;border-radius:2px;border:1px solid #5274ca}.api-list-container .api-list ul li .api-info .data-from[data-v-351a2db2]{padding-bottom:15px}.api-list-container .api-list .pagination-container[data-v-351a2db2]{background:transparent}.api-list-container .api-list[data-v-351a2db2] .el-pagination{text-align:center}

@ -0,0 +1 @@
.find-password[data-v-6b71d0fc]{width:100%;min-height:500px;background:#fff}.find-password[data-v-6b71d0fc] .el-step__title{text-align:center}.find-password .title[data-v-6b71d0fc]{padding:40px 20px;text-align:center;font-size:26px;line-height:40px;font-weight:400}.find-password .el-form[data-v-6b71d0fc]{width:382px;margin:60px auto 20px auto}.find-password .procees-contaner[data-v-6b71d0fc]{width:700px;padding:60px 200px;margin:0 auto 50px auto;background:#fff}.color-blocks[data-v-6b71d0fc]{display:flex;margin-top:10px}.divClass[data-v-6b71d0fc]{width:100%;height:10px;margin:5px 0}.divClass span[data-v-6b71d0fc]{float:left;background:#ccc;height:10px;width:31%;margin:0 1%}.divClass .weak[data-v-6b71d0fc]{background-color:#f56c6c}.divClass .medium[data-v-6b71d0fc]{background-color:#e6a23c}.divClass .strong[data-v-6b71d0fc]{background-color:#67c23a}

@ -0,0 +1 @@
.news-detail{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail p{text-indent:2em;margin:0;line-height:35px;font-size:16px;text-align:justify}.news-detail p img{margin:0 auto}.news-detail p a{color:#1890ff}.news-detail p.ql-align-center{text-align:center}.news-detail-container[data-v-807f6846]{background:#f9f9f9;padding:40px 0}.news-detail-container .wrapper[data-v-807f6846]{width:1200px;margin:0 auto;overflow:hidden}.news-detail-container .wrapper .el-breadcrumb[data-v-807f6846]{margin:0 0 20px 0}.news-detail-container .content[data-v-807f6846]{width:1110px;padding:40px 68px;box-sizing:border-box;min-height:400px;margin:0 auto;background:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.06)}.news-detail-container .content .news-title[data-v-807f6846]{text-align:center;height:auto;line-height:35px;font-size:28px;color:#000}.news-detail-container .content .news-upadate-time[data-v-807f6846]{font-size:14px;line-height:14px;padding:20px 0;text-align:center;color:#666;border-bottom:1px solid #d8d8d8}.news-detail-container .content .news-detail[data-v-807f6846]{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail-container .content .list[data-v-807f6846]{width:1110px;margin:0 auto}.news-detail-container .content .list ul[data-v-807f6846]{padding:40px 82px}.news-detail-container .content .list ul li[data-v-807f6846]{border-bottom:1px solid #e9edf3}.news-detail-container .content .list ul li a[data-v-807f6846]{display:flex;align-items:center;justify-content:space-between;height:56px;line-height:56px}.news-detail-container .content .list ul li a span[data-v-807f6846]{width:680px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#333}.news-detail-container .content .list ul li a b[data-v-807f6846]{font-weight:400;color:#666}.news-detail-container .content .list .el-pagination[data-v-807f6846]{text-align:right}

@ -0,0 +1 @@
.news-detail{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail p{text-indent:2em;margin:0;line-height:35px;font-size:16px;text-align:justify}.news-detail p img{margin:0 auto;display:inline-block;max-width:90%}.news-detail p a{color:#1890ff}.news-detail p.ql-align-center{text-align:center}.news-detail-container[data-v-c15c5f54]{background:#f9f9f9;padding:40px 0}.news-detail-container .wrapper[data-v-c15c5f54]{width:1200px;margin:0 auto;overflow:hidden}.news-detail-container .wrapper .el-breadcrumb[data-v-c15c5f54]{margin:0 0 20px 0}.news-detail-container .content[data-v-c15c5f54]{width:1110px;padding:40px 68px;box-sizing:border-box;min-height:400px;margin:0 auto;background:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.06)}.news-detail-container .content .news-title[data-v-c15c5f54]{text-align:center;height:auto;line-height:35px;font-size:28px;color:#000}.news-detail-container .content .news-upadate-time[data-v-c15c5f54]{font-size:14px;line-height:14px;padding:20px 0;text-align:center;color:#666;border-bottom:1px solid #d8d8d8}.news-detail-container .content .news-detail[data-v-c15c5f54]{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail-container .content .list[data-v-c15c5f54]{width:1110px;margin:0 auto}.news-detail-container .content .list ul[data-v-c15c5f54]{padding:40px 82px}.news-detail-container .content .list ul li[data-v-c15c5f54]{border-bottom:1px solid #e9edf3}.news-detail-container .content .list ul li a[data-v-c15c5f54]{display:flex;align-items:center;justify-content:space-between;height:56px;line-height:56px}.news-detail-container .content .list ul li a span[data-v-c15c5f54]{width:680px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#333}.news-detail-container .content .list ul li a b[data-v-c15c5f54]{font-weight:400;color:#666}.news-detail-container .content .list .el-pagination[data-v-c15c5f54]{text-align:right}

@ -0,0 +1 @@
.news-detail{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail p{text-indent:2em;margin:0;line-height:35px;font-size:16px;text-align:justify}.news-detail p img{margin:0 auto}.news-detail p a{color:#1890ff}.news-detail p.ql-align-center{text-align:center}.news-detail-container[data-v-0b0d8b03]{background:#f9f9f9;padding:40px 0}.news-detail-container .wrapper[data-v-0b0d8b03]{width:1200px;margin:0 auto;overflow:hidden}.news-detail-container .wrapper .el-breadcrumb[data-v-0b0d8b03]{margin:0 0 20px 0}.news-detail-container .content[data-v-0b0d8b03]{width:1110px;padding:40px 68px;box-sizing:border-box;min-height:400px;margin:0 auto;background:#fff;box-shadow:0 2px 4px 0 rgba(0,0,0,.06)}.news-detail-container .content .news-title[data-v-0b0d8b03]{text-align:center;height:auto;line-height:35px;font-size:28px;color:#000}.news-detail-container .content .news-upadate-time[data-v-0b0d8b03]{font-size:14px;line-height:14px;padding:20px 0;text-align:center;color:#666;border-bottom:1px solid #d8d8d8}.news-detail-container .content .news-detail[data-v-0b0d8b03]{color:#333;padding:40px 20px;font-size:14px;line-height:21px;box-sizing:border-box}.news-detail-container .content .list[data-v-0b0d8b03]{width:1110px;margin:0 auto}.news-detail-container .content .list ul[data-v-0b0d8b03]{padding:40px 82px}.news-detail-container .content .list ul li[data-v-0b0d8b03]{border-bottom:1px solid #e9edf3}.news-detail-container .content .list ul li a[data-v-0b0d8b03]{display:flex;align-items:center;justify-content:space-between;height:56px;line-height:56px}.news-detail-container .content .list ul li a span[data-v-0b0d8b03]{width:680px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#333}.news-detail-container .content .list ul li a b[data-v-0b0d8b03]{font-weight:400;color:#666}.news-detail-container .content .list .el-pagination[data-v-0b0d8b03]{text-align:right}

@ -0,0 +1 @@
.lab-apply .top-filter[data-v-23a7b11e]{margin-top:24px}.lab-apply .tale-list[data-v-23a7b11e] .el-table th.el-table__cell{color:#333;background:#fafafa;padding:5px 0;font-size:16px}.lab-apply .tale-list[data-v-23a7b11e] .el-table .cell.el-tooltip{font-size:16px}.lab-apply .tale-list .review-status[data-v-23a7b11e]{display:flex;align-items:center}.lab-apply .tale-list .review-status .icon-circle[data-v-23a7b11e]{width:6px;height:6px;border-radius:3px;margin-right:8px;background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.grey[data-v-23a7b11e]{background:#d9d9d9}.lab-apply .tale-list .review-status .icon-circle.orange[data-v-23a7b11e]{background:#ffd859}.lab-apply .tale-list .review-status .icon-circle.green[data-v-23a7b11e]{background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.red[data-v-23a7b11e]{background:#ff4d4f}.lab-apply[data-v-23a7b11e] .el-pagination{text-align:right}

@ -0,0 +1 @@
.lab-detail .el-form-item__label{text-align:left!important;font-size:16px!important}.lab-detail .el-form-item__content{font-size:16px!important}.lab-detail .el-form-item{margin-bottom:0}.lab-detail .el-collapse,.lab-detail .el-collapse-item__header,.lab-detail .el-collapse-item__wrap{border:none!important}.lab-detail .el-collapse{padding:10px 15px}.lab-detail .el-collapse-item__header{font-size:16px;font-weight:600;color:#3f8bff;height:30px;line-height:30px;margin-bottom:10px;padding-left:10px;border-bottom:2px solid #3f8bff!important}.lab-detail[data-v-7449eb70]{padding-top:20px;font-size:16px}.lab-detail .el-icon-success[data-v-7449eb70]{margin-right:6px;color:#6cbd7f}.lab-detail .change-pwd-link[data-v-7449eb70]{margin-left:15px;color:#3165db}.h2title[data-v-7449eb70]{background:#c4dbff;height:36px;border-radius:4px;margin-bottom:10px}.h2title h2[data-v-7449eb70]{color:#3f8bff;line-height:36px;padding-left:10px;display:inline-block;font-size:16px;font-weight:700}

@ -0,0 +1 @@
.lab-apply .top-filter[data-v-1ee29cb8]{margin-top:24px}.lab-apply .tale-list[data-v-1ee29cb8] .el-table th.el-table__cell{color:#333;background:#fafafa;padding:5px 0;font-size:16px}.lab-apply .tale-list[data-v-1ee29cb8] .el-table .cell.el-tooltip{font-size:16px}.lab-apply .tale-list .review-status[data-v-1ee29cb8]{display:flex;align-items:center}.lab-apply .tale-list .review-status .icon-circle[data-v-1ee29cb8]{width:6px;height:6px;border-radius:3px;margin-right:8px;background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.grey[data-v-1ee29cb8]{background:#d9d9d9}.lab-apply .tale-list .review-status .icon-circle.orange[data-v-1ee29cb8]{background:#ffd859}.lab-apply .tale-list .review-status .icon-circle.green[data-v-1ee29cb8]{background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.red[data-v-1ee29cb8]{background:#ff4d4f}.lab-apply[data-v-1ee29cb8] .el-pagination{text-align:right}

@ -0,0 +1 @@
.lab-detail .sub-title[data-v-0ea415a5]{margin:10px 0;font-size:16px;font-weight:700}.lab-detail .item-info[data-v-0ea415a5]{width:100%;display:flex;flex-wrap:wrap}.lab-detail .item-info dl[data-v-0ea415a5]{width:33.3%;font-size:12px;display:flex;align-items:flex-start;padding-bottom:10px}.lab-detail .item-info dl dt[data-v-0ea415a5]{white-space:nowrap;margin-right:18px;display:inline-flex;color:#666}.lab-detail .item-info dl dd[data-v-0ea415a5]{padding-right:5px;display:inline-flex;color:#333;align-items:center;word-break:break-all}

@ -0,0 +1 @@
.el-table--scrollable-x .el-table__body-wrapper{height:355px}.lab-apply .top-filter[data-v-b3b3944e]{margin-top:24px}.lab-apply .tale-list[data-v-b3b3944e] .el-table th.el-table__cell{color:#333;background:#fafafa;padding:5px 0;font-size:16px}.lab-apply .tale-list[data-v-b3b3944e] .el-table .cell.el-tooltip{font-size:16px}.lab-apply .tale-list .review-status[data-v-b3b3944e]{display:flex;align-items:center}.lab-apply .tale-list .review-status .icon-circle[data-v-b3b3944e]{width:6px;height:6px;border-radius:3px;margin-right:8px;background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.grey[data-v-b3b3944e]{background:#d9d9d9}.lab-apply .tale-list .review-status .icon-circle.orange[data-v-b3b3944e]{background:#ffd859}.lab-apply .tale-list .review-status .icon-circle.green[data-v-b3b3944e]{background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.red[data-v-b3b3944e]{background:#ff4d4f}.lab-apply[data-v-b3b3944e] .el-pagination,[data-v-b3b3944e] .el-pagination{text-align:right}[data-v-b3b3944e] .el-dialog__body{padding:10px}::-webkit-scrollbar{width:7px;height:7px}::-webkit-scrollbar-thumb{border-radius:7px;background-color:rgba(0,0,0,.25)}::-webkit-scrollbar-track{background-color:#f6f6f6}::-webkit-scrollbar-thumb,::-webkit-scrollbar-track{border:0}

@ -0,0 +1 @@
.inner-container[data-v-0ba1ff1f]{margin:20px auto;background:#fff}p[data-v-0ba1ff1f]{text-align:justify}.routerList[data-v-0ba1ff1f]{background:#ecf5ff;height:100vh;border-radius:10px 10px 0 0}.routerList h2[data-v-0ba1ff1f]{text-align:center;font-size:24px;background:#e6171e;color:#fff;line-height:45px;border-radius:10px 10px 0 0}.routerList ul[data-v-0ba1ff1f]{line-height:45px;padding:20px 0}.routerList ul li[data-v-0ba1ff1f]{font-size:18px;font-weight:600;padding:0 20px}.routerList ul li.on[data-v-0ba1ff1f]{background:#fff;border-left:5px solid #e6171e}.routerList ul li.on a[data-v-0ba1ff1f]{color:#e6171e}.introduce[data-v-0ba1ff1f]{margin:20px auto;width:831px;height:288px;font-size:16px;color:#666;line-height:32px}.introduce p[data-v-0ba1ff1f]{margin:0}.ullist[data-v-0ba1ff1f]{overflow:hidden;margin:100px auto;width:831px}.ullist li[data-v-0ba1ff1f]{float:left;width:33%;text-align:center;line-height:30px}.ullist li span[data-v-0ba1ff1f]{display:block;width:100%;text-align:center}

@ -0,0 +1 @@
.lab-apply .top-filter[data-v-506a7146]{margin-top:24px}.lab-apply .tale-list[data-v-506a7146] .el-table th.el-table__cell{color:#333;background:#fafafa;padding:5px 0;font-size:16px}.lab-apply .tale-list[data-v-506a7146] .el-table .cell.el-tooltip{font-size:16px}.lab-apply .tale-list .review-status[data-v-506a7146]{display:flex;align-items:center}.lab-apply .tale-list .review-status .icon-circle[data-v-506a7146]{width:6px;height:6px;border-radius:3px;margin-right:8px;background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.grey[data-v-506a7146]{background:#d9d9d9}.lab-apply .tale-list .review-status .icon-circle.orange[data-v-506a7146]{background:#ffd859}.lab-apply .tale-list .review-status .icon-circle.green[data-v-506a7146]{background:#52c41a}.lab-apply .tale-list .review-status .icon-circle.red[data-v-506a7146]{background:#ff4d4f}.lab-apply[data-v-506a7146] .el-pagination{text-align:right}

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 636 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[107],{8107:(t,s,a)=>{a.r(s),a.d(s,{default:()=>r});var i=function(){var t=this;t._self._c;return t._m(0)},e=[function(){var t=this,s=t._self._c;return s("div",{staticClass:"success-case container"},[s("div",{staticClass:"top-banner case-pic"},[s("div",{staticClass:"slogan"},[s("h3",{staticClass:"title"},[t._v("成功案例 ")]),s("div",{staticClass:"summary"},[t._v("面向企业、科研机构提供数据资源、数据分析工具和环境")])])]),s("div",{staticClass:"case-list",staticStyle:{"min-height":"500px"}},[s("div",{staticClass:"wrapper"},[s("h1",{staticStyle:{"text-align":"center","padding-top":"50px"}},[t._v("coming soon")])])])])}];const n={name:"SuccessCase",mounted:function(){this.$parent.$parent.$refs.topnav.topbg="",this.backToTop()},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},c=n;var o=a(1001),l=(0,o.Z)(c,i,e,!1,null,"17af49fd",null);const r=l.exports}}]);

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[146],{53146:(t,e,s)=>{s.r(e),s.d(e,{default:()=>c});var a=function(){var t=this,e=t._self._c;return e("div",{staticClass:"personal-info"},[e("el-form",{ref:"form1",attrs:{model:t.form,"label-width":"140px",align:"left"}},[e("el-row",[e("el-col",{attrs:{span:24}},[e("el-form-item",{attrs:{align:"left",label:"用户名"}},[e("span",[t._v(t._s(t.form.userName))])])],1),e("el-col",{attrs:{span:24}},[e("el-form-item",{attrs:{label:"手机号"}},[e("span",[t._v(t._s(t.form.phonenumber))])])],1),e("el-col",{attrs:{span:24}},[e("el-form-item",{attrs:{label:"状态"}},["0"==t.form.status?e("span",{staticStyle:{color:"#6CBD7F"}},[t._v("正常")]):e("span",{staticStyle:{color:"red"}},[t._v("停用")])])],1),e("el-col",{attrs:{span:24}},[e("el-form-item",{attrs:{label:"企业名"}},[e("span",[t._v(t._s(t.form.enterpriseName))])])],1),e("el-col",{attrs:{span:24}},[e("el-form-item",{attrs:{label:"社会统一信用代码"}},[e("span",[t._v(t._s(t.form.socialCreditCode))])])],1),e("el-col",{attrs:{span:24}},[e("el-form-item",{attrs:{label:"行业类型"}},[e("span",[t._v(t._s(t.form.industryCategory))])])],1),e("el-col",{attrs:{span:24}},[e("el-form-item",{attrs:{label:"地址"}},[e("span",[t._v(t._s(t.form.enterpriseAddress))])])],1),e("el-col",{attrs:{span:24}},[e("el-form-item",{attrs:{label:"登录密码"}},[e("i",{staticClass:"icon el-icon-success"}),e("span",[t._v("已设置")]),e("router-link",{staticClass:"change-pwd-link",attrs:{to:"/resetpwd"}},[t._v("更改密码")])],1)],1)],1)],1)],1)},r=[],l=s(12223);const o={name:"UserInfo",data:function(){return{form:{}}},created:function(){this.getUserInfo()},methods:{getUserInfo:function(){var t=this;(0,l.C5)().then((function(e){t.form=e.data,"0"==t.form.firstFlag&&t.$router.push("/resetpwd")["catch"]((function(){}))}))}}},n=o;var f=s(1001),i=(0,f.Z)(n,a,r,!1,null,"5e8b44ac",null);const c=i.exports}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[292],{2292:(t,n,e)=>{e.r(n),e.d(n,{default:()=>d});var a=function(){var t=this,n=t._self._c;return n("div",{staticClass:"container"},[n("div",{staticClass:"news-detail-container container"},[n("div",{staticClass:"wrapper"},[n("div",{staticClass:"content"},[n("el-row",{attrs:{gutter:20}},[n("el-col",{attrs:{span:4,xs:24}},[n("div",{staticClass:"routerList"},[n("h2",[t._v("数据产品")]),n("ul",t._l(t.carouselItems,(function(e){return n("li",{key:e.index,class:t.contentId==e.contentId?"on":""},[n("router-link",{attrs:{to:{name:"ProductsDetail",params:{contentId:e.contentId}}}},[t._v(t._s(e.contentTitle))])],1)})),0)])]),n("el-col",{attrs:{span:20,xs:24}},[n("div",{staticStyle:{padding:"40px 30px"}},[n("div",{staticClass:"news-title"},[t._v(t._s(t.detail.contentTitle))]),n("div",{staticClass:"news-detail",domProps:{innerHTML:t._s(t.detail.contentText)}})])])],1)],1)])])])},s=[],i=e(47121);const o={name:"NewsDetail",data:function(){return{carouselItems:null,contentId:null,detail:{}}},computed:{},mounted:function(){this.$parent.$parent.$parent.$refs.topnav.topbg="",this.backToTop()},created:function(){var t=this.$route.params.contentId;this.contentId=t,this.getBanner(),this.getDetail(t)},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})},getBanner:function(){var t=this;this.carouselItems=null,(0,i.iA)().then((function(n){t.carouselItems=n.data}))},getDetail:function(t){var n=this;(0,i.Cm)(t).then((function(t){n.detail=t.data}))}}},l=o;var r=e(1001),c=(0,r.Z)(l,a,s,!1,null,"4e64d802",null);const d=c.exports}}]);

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[392],{34392:(t,e,a)=>{a.r(e),a.d(e,{default:()=>u});a(47042);var s=function(){var t=this,e=t._self._c;return e("div",{staticClass:"container"},[e("div",{staticClass:"news-list-container"},[e("div",{staticClass:"wrapper"},[e("el-breadcrumb",{attrs:{"separator-class":"el-icon-arrow-right"}},[e("el-breadcrumb-item",{attrs:{to:{path:"/"}}},[t._v("首页")]),e("el-breadcrumb-item",[t._v("新闻中心")])],1),e("div",{staticClass:"content"},[e("div",{staticClass:"titile"},[t._v("新闻中心")]),e("div",{staticClass:"list"},[t.listNews.length>0?e("ul",t._l(t.listNews,(function(a){return e("li",{key:a.contentId},[e("router-link",{staticClass:"news-link",attrs:{to:{name:"NewsDetail",params:{contentId:a.contentId}}}},[e("span",[t._v(t._s(a.contentTitle))]),e("b",[t._v(t._s(a.updateTime.slice(0,10)))])])],1)})),0):e("ul",[e("el-empty",{attrs:{image:t.empty,"image-size":400}})],1),e("pagination",{directives:[{name:"show",rawName:"v-show",value:t.total>0,expression:"total > 0"}],attrs:{total:t.total,page:t.queryParams.pageNum,limit:t.queryParams.pageSize},on:{"update:page":function(e){return t.$set(t.queryParams,"pageNum",e)},"update:limit":function(e){return t.$set(t.queryParams,"pageSize",e)},pagination:t.getList}})],1)])],1)])])},i=[],n=a(47121);const r={name:"NewsCenter",data:function(){return{loading:!1,listNews:[],queryParams:{pageNum:1,pageSize:10},total:0,empty:a(76977)}},computed:{},created:function(){this.getList()},mounted:function(){this.$parent.$parent.$parent.$refs.topnav.topbg="",this.backToTop()},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})},getList:function(){var t=this;(0,n.Yz)().then((function(e){t.listNews=e.rows,t.total=e.total}))}}},o=r;var l=a(1001),c=(0,l.Z)(o,s,i,!1,null,"1e29434c",null);const u=c.exports},76977:(t,e,a)=>{t.exports=a.p+"static/img/no-data.b53747cf.png"}}]);

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[425],{97425:(t,a,e)=>{e.r(a),e.d(a,{default:()=>d});var i=function(){var t=this,a=t._self._c;return a("div",{staticClass:"container"},[a("div",{staticClass:"news-detail-container container"},[a("div",{staticClass:"wrapper"},[a("el-breadcrumb",{attrs:{"separator-class":"el-icon-arrow-right"}},[a("el-breadcrumb-item",{attrs:{to:{path:"/"}}},[t._v("首页")]),a("el-breadcrumb-item",[t._v("法律声明")])],1),a("div",{staticClass:"content"},[a("div",{staticClass:"news-title"},[t._v(t._s(t.detail.contentTitle))]),a("div",{staticClass:"news-upadate-time"},[t._v(t._s(t.detail.updateTime))]),a("div",{staticClass:"news-detail",domProps:{innerHTML:t._s(t.detail.contentText)}})])],1)])])},s=[],n=e(47121);const o={name:"LegalNotice",data:function(){return{detail:{}}},computed:{},mounted:function(){this.$parent.$parent.$refs.topnav.topbg="",this.backToTop()},created:function(){},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})},getDetail:function(t){var a=this;(0,n.Cm)(t).then((function(t){a.detail=t.data}))}}},r=o;var c=e(1001),l=(0,c.Z)(r,i,s,!1,null,"12fb4c34",null);const d=l.exports}}]);

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[441],{46441:(t,e,i)=>{i.r(e),i.d(e,{default:()=>c});var s=function(){var t=this,e=t._self._c;return e("div",{staticClass:"user-container container"},[e("div",{staticClass:"user-top-bg"},[e("h3",{staticClass:"title"},[t._v("用户中心 - "),e("small",[t._v(t._s(t.metaTitle))])])]),e("div",{staticClass:"conent"},[e("div",{staticClass:"user-left-nav"},[e("ul",t._l(t.userRoutes,(function(i,s){return e("div",{key:s},[i.children?[e("li",[e("div",{staticClass:"item",on:{click:function(e){return t.handleShowChild(i)}}},[e("div",[t._v(t._s(i.meta.title))]),e("i",{class:i.isOpen?"el-icon-arrow-down up":"el-icon-arrow-down"})]),i.isOpen?e("div",{staticClass:"sub-nav"},t._l(i.children,(function(s){return e("div",{key:s.index},[s.hidden?t._e():e("div",{staticClass:"sub-item"},[e("router-link",{attrs:{to:"/user/"+i.path+"/"+s.path}},[t._v(t._s(s.meta.title))])],1)])})),0):t._e()])]:[e("li",[e("router-link",{attrs:{to:"/user/"+i.path}},[e("span",{on:{click:t.hideChild}},[t._v(t._s(i.meta.title)+" ")])])],1)]],2)})),0)]),e("div",{staticClass:"user-right-content"},[e("div",{staticClass:"user-content-title"},[t._v(t._s(t.metaTitle))]),e("div",{staticStyle:{padding:"0 20px 10px"}},[e("router-view")],1)])])])},n=[],a=(i(89554),i(41539),i(54747),i(68309),i(92268));const r={name:"UserIndex",data:function(){return{userRoutes:a._}},computed:{userRoute:function(){},showChild:function(){return this.$store.state.settings.isChildShow},metaTitle:function(){return this.$route.meta.title}},created:function(){var t=this;localStorage.setItem("topBg",!1),this.userRoutes.forEach((function(e){e.children&&e.children.forEach((function(i){i.name===t.$route.name&&(e.isOpen=!0)}))}))},methods:{handleShowChild:function(t){this.userRoutes.forEach((function(e){e!==t&&(e.isOpen=!1)})),t.isOpen=!t.isOpen},hideChild:function(){this.userRoutes.forEach((function(t){t.isOpen=!1}))}}},o=r;var l=i(1001),u=(0,l.Z)(o,s,n,!1,null,"6ea74eac",null);const c=u.exports}}]);

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[443],{443:(t,a,s)=>{s.r(a),s.d(a,{default:()=>u});var e=function(){var t=this,a=t._self._c;return a("div",{staticClass:"data-products container"},[t._m(0),a("div",{staticClass:"inner-container"},[a("el-carousel",{attrs:{interval:5e3,type:"card",height:"360px"}},t._l(t.carouselItems,(function(s){return a("el-carousel-item",{key:s.index},[a("div",{staticClass:"medium"},[a("router-link",{staticClass:"news-link",attrs:{to:{name:"ProductsDetail",params:{contentId:s.contentId}}}},[a("img",{staticStyle:{width:"100%",height:"100%"},attrs:{src:s.imgUrl,alt:""}}),a("div",{staticClass:"wrapper"},[a("span",{staticClass:"title"},[t._v(t._s(s.contentTitle))])])])],1)])})),1)],1)])},n=[function(){var t=this,a=t._self._c;return a("div",{staticClass:"top-banner"},[a("div",{staticClass:"slogan"},[a("h3",{staticClass:"title"},[t._v("数据产品 ")]),a("div",{staticClass:"summary"},[t._v("旨在打通多领域应用场景,促进数据合规流通,充分发挥数据价值")])])])}],i=s(47121);const r={name:"DataProducts",data:function(){return{carouselItems:null}},created:function(){this.backToTop(),this.getBanner()},mounted:function(){this.$parent.$parent.$parent.$refs.topnav.topbg=""},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})},getBanner:function(){var t=this;this.carouselItems=null,(0,i.iA)().then((function(a){t.carouselItems=a.data}))}}},l=r;var o=s(1001),c=(0,o.Z)(l,e,n,!1,null,"45c83875",null);const u=c.exports}}]);

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[500],{23500:(t,s,a)=>{a.r(s),a.d(s,{default:()=>v});var e=function(){var t=this,s=t._self._c;return s("div",{staticClass:"data-guide container"},[t._m(0),s("div",{staticClass:"inner-container"},[s("el-row",{attrs:{gutter:20}},[s("el-col",{attrs:{span:4,xs:24}},[s("div",{staticClass:"routerList"},[s("h2",[t._v("数据服务")]),s("ul",[s("li",[s("router-link",{attrs:{to:"/service/introduce"}},[t._v("服务介绍")])],1),s("li",{staticClass:"on"},[s("router-link",{attrs:{to:"/service/guide"}},[t._v("服务指南")])],1),s("li",[s("router-link",{attrs:{to:"/service/api"}},[t._v("API列表")])],1)])])]),s("el-col",{attrs:{span:20,xs:24}},[s("h2",{staticClass:"titleh3"},[t._v("接入指引")]),s("ul",{staticClass:"ulList"},[s("li",[s("span",{staticClass:"xh"},[t._v("01.")]),s("h3",[s("span",[t._v("申请")]),t._v("密钥")]),s("p",[t._v(" 目前仅支持线下的方式获取"),s("br"),t._v(" 获取方式联系电话156XXXXXXX ")])]),s("li",[s("span",{staticClass:"xh"},[t._v("02.")]),s("h3",[s("span",[t._v("拼接HTTP")]),t._v("请求URL")]),s("p",[t._v(" 组装请求"),s("br"),t._v(" 使用过密算法SM3,SM4 ")])]),s("li",[s("span",{staticClass:"xh"},[t._v("03.")]),s("h3",[s("span",[t._v("接受请求HTTP")]),t._v("解析数据")]),s("p",[t._v(" 请求返回数据JSON"),s("br"),t._v(" 如无特殊声明,接口的输入参数"),s("br"),t._v("和输出数据 编码全部统一为UTF-8 ")])]),s("li",[s("span",{staticClass:"xh"},[t._v("04.")]),s("h3",[s("span",[t._v("SDK")]),t._v("下载")]),s("p",[s("span",{staticStyle:{cursor:"pointer",color:"red","font-weight":"bold"}},[s("a",{attrs:{href:"#"},on:{click:t.downloadFile}},[t._v(" SDK下载")]),t._v(" "),s("span",{attrs:{icon:"el-icon-download"}})])])])])])],1)],1)])},n=[function(){var t=this,s=t._self._c;return s("div",{staticClass:"top-banner guide-pic"},[s("div",{staticClass:"slogan"},[s("h3",{staticClass:"title"},[t._v("服务指南 ")]),s("div",{staticClass:"summary"},[t._v("旨在优化数据对外服务方式,提高开发效率,为用户提供规范化数据服务")])])])}],i=(a(74916),a(15306),a(41539),a(78783),a(33948),a(60285),a(41637),a(47121));const o={name:"DataService",mounted:function(){this.backToTop(),this.$parent.$parent.$parent.$refs.topnav.topbg=""},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})},downloadFile:function(){var t="/public/content/sdkDownload";window.open(t,"_blank")},sdkDownload:function(){var t=this;(0,i.fu)().then((function(s){var a=t.$store.filename.split(";")[1].split("filename=")[1].replace(/"/g,""),e=s,n=document.createElement("a"),i=window.URL.createObjectURL(e);n.href=i,n.download=decodeURIComponent(a),document.body.appendChild(n),n.click(),document.body.removeChild(n),window.URL.revokeObjectURL(i)}))}}},l=o;var r=a(1001),c=(0,r.Z)(l,e,n,!1,null,"3175078b",null);const v=c.exports}}]);

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[519],{95519:(t,a,e)=>{e.r(a),e.d(a,{default:()=>l});var s=function(){var t=this,a=t._self._c;return a("div",{staticClass:"container"},[a("div",{staticClass:"news-detail-container container"},[a("div",{staticClass:"wrapper"},[a("el-breadcrumb",{attrs:{"separator-class":"el-icon-arrow-right"}},[a("el-breadcrumb-item",{attrs:{to:{path:"/"}}},[t._v("首页")]),a("el-breadcrumb-item",[t._v("公司简介")])],1),t._m(0)],1)])])},r=[function(){var t=this,a=t._self._c;return a("div",{staticClass:"content"},[a("div",{staticClass:"news-title"},[t._v("公司简介")]),a("div",{staticClass:"news-detail"},[a("p",[t._v(" 上海公共交通卡股份有限公司成立于1999年隶属于上海久事集团经过多年的发展业务已涵盖本市交通卡、沪通卡、旅游卡的发行、销售、清结算和服务等多个领域在“用户发展”“场景拓展”方面取得显著成效目前正在积极拓展“系统集成”“数字服务”“智能制造”等创新业务通过在交通支付、交文体旅权益联动、智慧场馆、大数据运营等领域持续探索逐步建立起具有自身特色、与同行业具有差异性的产业发展模式、盈利模式、经营模式。 ")]),a("p",[t._v(" 公司自成立以来,始终坚持创新理念,紧扣发展脉搏,顺应发展大势,立足主业、突破场景,依托支付、持续创新。确立了“深耕交通领域,深化数字创新,做优服务质量,做大服务规模”的企业使命;明确了“以数字化转型为引领,成为智慧久事建设的主力军、智慧城市建设的有生力量、品质生活服务的践行者”的企业愿景;树立了“用户为是,自己为否,恒久创新,卓越执行”的企业核心价值观;提出了“以数据集成推动场景拓展、以场景拓展推动服务深化、以服务深化推动产品升级、以产品升级反哺数据集成”的发展目标。进一步提升数字化转型速度,筑牢交通基础生态,对内,以科技赋能集团各产业板块,推动集团数字化转型;对外,以增强人民获得感为己任,打造城市智慧化服务合作的生态圈,满足市民对美好生活的向往,推动集团数字产业蓬勃发展。 ")])])])}];const n={name:"CompanyProfile",data:function(){return{detail:{}}},computed:{},mounted:function(){this.$parent.$parent.$refs.topnav.topbg="",this.backToTop()},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},i=n;var o=e(1001),c=(0,o.Z)(i,s,r,!1,null,"4f5f493d",null);const l=c.exports}}]);

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[53],{77053:(t,a,s)=>{s.r(a),s.d(a,{default:()=>u});var i=function(){var t=this,a=t._self._c;return a("div",{staticClass:"api-list-container container"},[t._m(0),a("div",{staticClass:"inner-container"},[a("el-row",{attrs:{gutter:20}},[a("el-col",{attrs:{span:4,xs:24}},[a("div",{staticClass:"routerList"},[a("h2",[t._v("数据服务")]),a("ul",[a("li",[a("router-link",{attrs:{to:"/service/introduce"}},[t._v("服务介绍")])],1),a("li",[a("router-link",{attrs:{to:"/service/guide"}},[t._v("服务指南")])],1),a("li",{staticClass:"on"},[a("router-link",{attrs:{to:"/service/api"}},[t._v("API列表")])],1)])])]),a("el-col",{attrs:{span:20,xs:24}},[a("div",{staticClass:"api-list",staticStyle:{overflow:"auto"}},[a("ul",{staticClass:"list"},t._l(t.apiList,(function(s){return a("li",{key:s.id},[a("div",{staticClass:"api-name"},[t._v(t._s(s.apiName))]),a("div",{staticClass:"aip-intro"},[t._v(" "+t._s(s.apiName)+" ")]),a("div",{staticClass:"api-info"},[a("div",{staticClass:"data-from"},[t._v("数据提供方:上海公共交通卡有限公司")]),a("div",{staticClass:"others"},[a("span",[t._v("更新时间:"+t._s(s.createTime))]),a("b",[t._v("有条件开放")])])])])})),0),a("pagination",{directives:[{name:"show",rawName:"v-show",value:t.total>0,expression:"total > 0"}],attrs:{total:t.total,page:t.queryParams.pageNum,limit:t.queryParams.pageSize},on:{"update:page":function(a){return t.$set(t.queryParams,"pageNum",a)},"update:limit":function(a){return t.$set(t.queryParams,"pageSize",a)},pagination:t.getList}})],1)])],1)],1)])},e=[function(){var t=this,a=t._self._c;return a("div",{staticClass:"top-banner guide-pic"},[a("div",{staticClass:"slogan"},[a("h3",{staticClass:"title"},[t._v("API列表 ")]),a("div",{staticClass:"summary"},[t._v("旨在优化数据对外服务方式,提高开发效率,为用户提供规范化数据服务")])])])}],r=s(47121);const n={name:"ApiList",data:function(){return{total:0,apiList:[],queryParams:{pageNum:1,pageSize:9}}},computed:{},mounted:function(){this.backToTop(),this.$parent.$parent.$parent.$refs.topnav.topbg=""},created:function(){this.getList()},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})},getList:function(){var t=this;(0,r.ZF)(this.queryParams).then((function(a){t.apiList=a.rows,t.total=a.total}))}}},o=n;var l=s(1001),c=(0,l.Z)(o,i,e,!1,null,"351a2db2",null);const u=c.exports}}]);

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[552],{51552:(t,a,e)=>{e.r(a),e.d(a,{default:()=>d});var i=function(){var t=this,a=t._self._c;return a("div",{staticClass:"container"},[a("div",{staticClass:"news-detail-container container"},[a("div",{staticClass:"wrapper"},[a("el-breadcrumb",{attrs:{"separator-class":"el-icon-arrow-right"}},[a("el-breadcrumb-item",{attrs:{to:{path:"/"}}},[t._v("首页")]),a("el-breadcrumb-item",[t._v("账户问题")])],1),t._m(0)],1)])])},n=[function(){var t=this,a=t._self._c;return a("div",{staticClass:"content"},[a("div",{staticClass:"news-title"},[t._v("账户问题")]),a("div",{staticClass:"news-detail"},[a("h2",{staticStyle:{"line-height":"40px",padding:"0",margin:"0"}},[t._v("如何获取账户:")]),a("div",{staticStyle:{"font-size":"18px","line-height":"30px","padding-left":"2em"}},[t._v(" 当前阶段不支持在线账户注册,如果用户需要登录账号; "),a("br"),t._v("请联系客服电话021-60825678 "),a("br"),t._v("并提供登录手机号、姓名、用户名、企业名称,社会统一信用代码等信息; "),a("br"),t._v("创建的登录账户会通过短信的方式发送给用户; ")])])])}],s=e(47121);const r={name:"AccountIssues",data:function(){return{detail:{}}},computed:{},mounted:function(){this.$parent.$parent.$refs.topnav.topbg="",this.backToTop()},created:function(){},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})},getDetail:function(t){var a=this;(0,s.Cm)(t).then((function(t){a.detail=t.data}))}}},o=r;var c=e(1001),l=(0,c.Z)(o,i,n,!1,null,"807f6846",null);const d=l.exports}}]);

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[59],{52059:(t,e,a)=>{a.r(e),a.d(e,{default:()=>d});var s=function(){var t=this,e=t._self._c;return e("div",{staticClass:"container"},[e("div",{staticClass:"news-detail-container container"},[e("div",{staticClass:"wrapper"},[e("el-breadcrumb",{attrs:{"separator-class":"el-icon-arrow-right"}},[e("el-breadcrumb-item",{attrs:{to:{path:"/"}}},[t._v("首页")]),e("el-breadcrumb-item",{attrs:{to:{path:"/news/list"}}},[t._v("新闻中心")]),e("el-breadcrumb-item",[t._v("详情")])],1),e("div",{staticClass:"content"},[e("div",{staticClass:"news-title"},[t._v(t._s(t.detail.contentTitle))]),e("div",{staticClass:"news-upadate-time"},[t._v(t._s(t.detail.updateTime))]),e("div",{staticClass:"news-detail",domProps:{innerHTML:t._s(t.detail.contentText)}})])],1)])])},i=[],n=a(47121);const r={name:"NewsDetail",data:function(){return{detail:{}}},computed:{},mounted:function(){this.$parent.$parent.$parent.$refs.topnav.topbg="",this.backToTop()},created:function(){var t=this.$route.params.contentId;this.getDetail(t)},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})},getDetail:function(t){var e=this;(0,n.Cm)(t).then((function(t){e.detail=t.data}))}}},o=r;var c=a(1001),l=(0,c.Z)(o,s,i,!1,null,"c15c5f54",null);const d=l.exports}}]);

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[607],{75607:(t,a,e)=>{e.r(a),e.d(a,{default:()=>d});var i=function(){var t=this,a=t._self._c;return a("div",{staticClass:"container"},[a("div",{staticClass:"news-detail-container container"},[a("div",{staticClass:"wrapper"},[a("el-breadcrumb",{attrs:{"separator-class":"el-icon-arrow-right"}},[a("el-breadcrumb-item",{attrs:{to:{path:"/"}}},[t._v("首页")]),a("el-breadcrumb-item",[t._v("隐私声明")])],1),a("div",{staticClass:"content"},[a("div",{staticClass:"news-title"},[t._v(t._s(t.detail.contentTitle))]),a("div",{staticClass:"news-upadate-time"},[t._v(t._s(t.detail.updateTime))]),a("div",{staticClass:"news-detail",domProps:{innerHTML:t._s(t.detail.contentText)}})])],1)])])},n=[],s=e(47121);const o={name:"privacyStatement",data:function(){return{detail:{}}},computed:{},mounted:function(){this.$parent.$parent.$refs.topnav.topbg="",this.backToTop()},created:function(){},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})},getDetail:function(t){var a=this;(0,s.Cm)(t).then((function(t){a.detail=t.data}))}}},r=o;var c=e(1001),l=(0,c.Z)(r,i,n,!1,null,"0b0d8b03",null);const d=l.exports}}]);

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[64],{51064:(t,e,r)=>{r.r(e),r.d(e,{default:()=>p});var a=function(){var t=this,e=t._self._c;return e("div",{staticClass:"lab-apply",staticStyle:{"margin-top":"20px"}},[e("div",{staticClass:"tale-list"},[e("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticStyle:{"min-height":"355px","max-height":"500px"},attrs:{stripe:"",data:t.userApiList,"max-height":"500px"}},[e("div",{staticStyle:{"text-align":"left"},attrs:{slot:"empty"},slot:"empty"},[e("el-empty",{attrs:{description:"暂无数据"}})],1),e("el-table-column",{attrs:{align:"center",label:"机构号",prop:"orgNo","show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{align:"center",label:"机构名称",prop:"orgName","show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{align:"center",label:"接口名称",prop:"apiName","show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{align:"center",label:"接口描述",prop:"remark","show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{align:"center",label:"生效时间",prop:"startTime","show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{align:"center",label:"到期时间",prop:"endTime","show-overflow-tooltip":!0}})],1)],1),e("pagination",{directives:[{name:"show",rawName:"v-show",value:t.total>0,expression:"total > 0"}],attrs:{total:t.total,page:t.queryParams.pageNum,limit:t.queryParams.pageSize},on:{"update:page":function(e){return t.$set(t.queryParams,"pageNum",e)},"update:limit":function(e){return t.$set(t.queryParams,"pageSize",e)},pagination:t.getList}})],1)},o=[],n=r(32900);const l={name:"MyApiList",data:function(){return{loading:!0,total:0,userApiList:[],queryParams:{pageNum:1,pageSize:10}}},created:function(){this.getList()},methods:{getList:function(){var t=this;(0,n.oK)(this.queryParams).then((function(e){t.userApiList=e.rows,t.total=e.total,t.loading=!1}))}}},i=l;var s=r(1001),u=(0,s.Z)(i,a,o,!1,null,"23a7b11e",null);const p=u.exports},32900:(t,e,r)=>{r.d(e,{Cp:()=>C,F7:()=>x,Hc:()=>b,Ht:()=>s,JE:()=>y,W1:()=>c,WG:()=>l,_I:()=>v,aX:()=>o,bL:()=>P,c0:()=>A,cT:()=>Z,d5:()=>n,e_:()=>h,en:()=>u,fR:()=>i,in:()=>L,jr:()=>w,oK:()=>g,qS:()=>m,rK:()=>f,uN:()=>d,ur:()=>p});var a=r(73821);function o(t){return(0,a.Z)({url:"/myApply/laboratoryList",method:"get",params:t})}function n(t){return(0,a.Z)({url:"/myApply/laboratoryDetail?reviewId="+t,method:"get"})}function l(t){return(0,a.Z)({url:"/myApply/exportList",method:"get",params:t})}function i(t){return(0,a.Z)({url:"/myApply/download",method:"get",params:t})}function s(t){return(0,a.Z)({url:"/myLab/list",method:"get",params:t})}function u(t){return(0,a.Z)({url:"/myLab/info?applyId="+t,method:"get"})}function p(t){return(0,a.Z)({url:"/myLab/restart",method:"post",data:t})}function m(t){return(0,a.Z)({url:"/myLab/dataInjection",method:"post",data:t})}function d(t){return(0,a.Z)({url:"/myLab/fileList?applyId="+t,method:"get"})}function c(t){return(0,a.Z)({url:"/myLab/applyDown",method:"post",data:t})}function g(t){return(0,a.Z)({url:"/api/userApiList",method:"get",params:t})}function h(t){return(0,a.Z)({url:"/api/userApiStatisticsList",method:"get",params:t})}function f(t){return(0,a.Z)({url:"/myMessage/page",method:"get",params:t})}function y(t){return(0,a.Z)({url:"/myMessage/detail?msgId="+t,method:"post"})}function w(t){return(0,a.Z)({url:"myMessage/markRead",method:"post",data:t})}function b(t){return(0,a.Z)({url:"/myResources/list",method:"get",params:t})}function Z(t){return(0,a.Z)({url:"/myResources/uploadFile",method:"post",data:t,headers:{"Content-Type":"multipart/form-data"}})}function v(t){return(0,a.Z)({url:"/myResources/delete?fileId="+t,method:"delete"})}function L(t){return(0,a.Z)({url:"/rePwd/getPhoneByUser?username="+t,method:"get"})}function P(){return(0,a.Z)({url:"/rePwd/sendPhoneCode",method:"get"})}function x(t){return(0,a.Z)({url:"/rePwd/verifyPhoneCode?phoneCode="+t,method:"get"})}function A(t){return(0,a.Z)({url:"/rePwd/reset",method:"post",data:t})}function C(t){return(0,a.Z)({url:"/changePassword",method:"post",data:t})}}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[850],{94850:(t,s,a)=>{a.r(s),a.d(s,{default:()=>c});var i=function(){var t=this,s=t._self._c;return s("div",{staticClass:"data-guide container"},[t._m(0),s("div",{staticClass:"inner-container"},[s("el-row",{attrs:{gutter:20}},[s("el-col",{attrs:{span:4,xs:24}},[s("div",{staticClass:"routerList"},[s("h2",[t._v("数据服务")]),s("ul",[s("li",{staticClass:"on"},[s("router-link",{attrs:{to:"/service/introduce"}},[t._v("服务介绍")])],1),s("li",[s("router-link",{attrs:{to:"/service/guide"}},[t._v("服务指南")])],1),s("li",[s("router-link",{attrs:{to:"/service/api"}},[t._v("API列表")])],1)])])]),s("el-col",{attrs:{span:20,xs:24}},[s("div",{staticClass:"introduce"},[s("p",[t._v(" 久事API安全网关实现业务系统的统一流量代理打造API全生命周期治理安全管控体系构建API安全防护屏障实现高效的业务系统协同沟通共筑安全的数字化生态安全底座并具备云原生、分布式、高性能、高可用、热插拔、强安全的特性。 ")]),s("br"),s("p",[s("span",{staticStyle:{"font-weight":"600"}},[t._v("久事客流宝:")]),t._v("该产品可通过API、文件配送等形式为用户提供地面公交线路客流数据为企业、研究机构、政府部门的实时监测、运营调度、线网优化、商业选址、辅助决策等需求提供数据支撑 ")]),s("p",[s("span",{staticStyle:{"font-weight":"600"}},[t._v("久事乘车宝:")]),t._v("该产品可通过API形式为用户提供久事集团旗下500+条地面公交线路实时到站预报数据,涵盖线路、站级、上下行、到站站距、到站距离、到站时间等多维度信息 ")]),s("p",[s("span",{staticStyle:{"font-weight":"600"}},[t._v("用户画像:")]),t._v("覆盖5000万的公共交通卡实名用户 ")]),s("p",[t._v("支持性别、年龄、消费城市、高频线路/站点等40+个性化用户标签")])]),s("ul",{staticClass:"ullist"},[s("li",[s("img",{attrs:{src:a(53189),alt:""}}),s("span",[t._v("久事乘车宝")])]),s("li",[s("img",{attrs:{src:a(36870),alt:""}}),s("span",[t._v("久事客流宝")])]),s("li",[s("img",{attrs:{src:a(24102),alt:""}}),s("span",[t._v("用户画像")])])])])],1)],1)])},e=[function(){var t=this,s=t._self._c;return s("div",{staticClass:"top-banner guide-pic"},[s("div",{staticClass:"slogan"},[s("h3",{staticClass:"title"},[t._v("服务介绍 ")]),s("div",{staticClass:"summary"},[t._v("旨在优化数据对外服务方式,提高开发效率,为用户提供规范化数据服务")])])])}];const r={name:"introduce",mounted:function(){this.backToTop(),this.$parent.$parent.$parent.$refs.topnav.topbg=""},methods:{backToTop:function(){window.scrollTo({top:0,behavior:"smooth"})}}},n=r;var l=a(1001),o=(0,l.Z)(n,i,e,!1,null,"0ba1ff1f",null);const c=o.exports},53189:(t,s,a)=>{t.exports=a.p+"static/img/1.4de2a2ef.png"},36870:(t,s,a)=>{t.exports=a.p+"static/img/2.86edfd0f.png"},24102:(t,s,a)=>{t.exports=a.p+"static/img/3.3e7561f0.png"}}]);

@ -0,0 +1 @@
"use strict";(self["webpackChunkagile_portal_front"]=self["webpackChunkagile_portal_front"]||[]).push([[982],{62982:(t,e,a)=>{a.r(e),a.d(e,{default:()=>p});var r=function(){var t=this,e=t._self._c;return e("div",{staticClass:"lab-apply",staticStyle:{"margin-top":"20px"}},[e("div",{staticClass:"tale-list"},[e("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticStyle:{"min-height":"355px","max-height":"500px"},attrs:{stripe:"",data:t.userApiStatisticsList,"max-height":"500px"}},[e("div",{staticStyle:{"text-align":"left"},attrs:{slot:"empty"},slot:"empty"},[e("el-empty",{attrs:{description:"暂无数据"}})],1),e("el-table-column",{attrs:{align:"center",label:"机构号",prop:"orgNo","show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{align:"center",label:"接口调用",prop:"apiName","show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{align:"center",label:"成功次数",prop:"successTotal","show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{align:"center",label:"失败次数",prop:"failTotal","show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{align:"center",label:"更新时间",prop:"updateTime","show-overflow-tooltip":!0}})],1)],1),e("pagination",{directives:[{name:"show",rawName:"v-show",value:t.total>0,expression:"total > 0"}],attrs:{total:t.total,page:t.queryParams.pageNum,limit:t.queryParams.pageSize},on:{"update:page":function(e){return t.$set(t.queryParams,"pageNum",e)},"update:limit":function(e){return t.$set(t.queryParams,"pageSize",e)},pagination:t.getList}})],1)},o=[],n=a(32900);const l={name:"MyApicall",data:function(){return{loading:!0,total:0,userApiStatisticsList:[],queryParams:{pageNum:1,pageSize:10},reviewOptions:[{value:"00",label:"未提交"},{value:"01",label:"待审核"},{value:"02",label:"通过"},{value:"03",label:"驳回"}]}},created:function(){this.getList()},methods:{getList:function(){var t=this;(0,n.e_)(this.queryParams).then((function(e){t.userApiStatisticsList=e.rows,t.total=e.total,t.loading=!1}))}}},i=l;var s=a(1001),u=(0,s.Z)(i,r,o,!1,null,"506a7146",null);const p=u.exports},32900:(t,e,a)=>{a.d(e,{Cp:()=>A,F7:()=>x,Hc:()=>v,Ht:()=>s,JE:()=>y,W1:()=>c,WG:()=>l,_I:()=>Z,aX:()=>o,bL:()=>P,c0:()=>S,cT:()=>w,d5:()=>n,e_:()=>h,en:()=>u,fR:()=>i,in:()=>L,jr:()=>b,oK:()=>g,qS:()=>m,rK:()=>f,uN:()=>d,ur:()=>p});var r=a(73821);function o(t){return(0,r.Z)({url:"/myApply/laboratoryList",method:"get",params:t})}function n(t){return(0,r.Z)({url:"/myApply/laboratoryDetail?reviewId="+t,method:"get"})}function l(t){return(0,r.Z)({url:"/myApply/exportList",method:"get",params:t})}function i(t){return(0,r.Z)({url:"/myApply/download",method:"get",params:t})}function s(t){return(0,r.Z)({url:"/myLab/list",method:"get",params:t})}function u(t){return(0,r.Z)({url:"/myLab/info?applyId="+t,method:"get"})}function p(t){return(0,r.Z)({url:"/myLab/restart",method:"post",data:t})}function m(t){return(0,r.Z)({url:"/myLab/dataInjection",method:"post",data:t})}function d(t){return(0,r.Z)({url:"/myLab/fileList?applyId="+t,method:"get"})}function c(t){return(0,r.Z)({url:"/myLab/applyDown",method:"post",data:t})}function g(t){return(0,r.Z)({url:"/api/userApiList",method:"get",params:t})}function h(t){return(0,r.Z)({url:"/api/userApiStatisticsList",method:"get",params:t})}function f(t){return(0,r.Z)({url:"/myMessage/page",method:"get",params:t})}function y(t){return(0,r.Z)({url:"/myMessage/detail?msgId="+t,method:"post"})}function b(t){return(0,r.Z)({url:"myMessage/markRead",method:"post",data:t})}function v(t){return(0,r.Z)({url:"/myResources/list",method:"get",params:t})}function w(t){return(0,r.Z)({url:"/myResources/uploadFile",method:"post",data:t,headers:{"Content-Type":"multipart/form-data"}})}function Z(t){return(0,r.Z)({url:"/myResources/delete?fileId="+t,method:"delete"})}function L(t){return(0,r.Z)({url:"/rePwd/getPhoneByUser?username="+t,method:"get"})}function P(){return(0,r.Z)({url:"/rePwd/sendPhoneCode",method:"get"})}function x(t){return(0,r.Z)({url:"/rePwd/verifyPhoneCode?phoneCode="+t,method:"get"})}function S(t){return(0,r.Z)({url:"/rePwd/reset",method:"post",data:t})}function A(t){return(0,r.Z)({url:"/changePassword",method:"post",data:t})}}}]);

File diff suppressed because one or more lines are too long

@ -3,7 +3,7 @@
<parent>
<artifactId>agile-portal</artifactId>
<groupId>com.jiuyv.sptcc.agile</groupId>
<version>0.2.4-SNAPSHOT</version>
<version>0.2.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

@ -3,7 +3,7 @@
<parent>
<groupId>com.jiuyv.sptcc.agile</groupId>
<artifactId>agile-portal</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>0.2.5-SNAPSHOT</version>
</parent>
<artifactId>agile-portal-service</artifactId>

@ -4,7 +4,7 @@
<parent>
<groupId>com.jiuyv.sptcc.agile</groupId>
<artifactId>agile-portal</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>0.2.5-SNAPSHOT</version>
</parent>
<artifactId>agile-portal-ui</artifactId>

@ -10,7 +10,7 @@
<groupId>com.jiuyv.sptcc.agile</groupId>
<artifactId>agile-portal</artifactId>
<version>0.2.4-SNAPSHOT</version>
<version>0.2.5-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>

@ -0,0 +1,945 @@
-- ----------------------------
-- Sequence structure for seq_data_asset_column
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_asset_column";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_asset_column"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_asset_table
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_asset_table";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_asset_table"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_asset_table_column
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_asset_table_column";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_asset_table_column"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_config
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_config";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_config"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_institute
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_institute";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_institute"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_institute_api_log
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_institute_api_log";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_institute_api_log"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_institute_auth
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_institute_auth";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_institute_auth"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_market_api
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_market_api";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_market_api"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_market_api_log
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_market_api_log";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_market_api_log"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_market_api_mask
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_market_api_mask";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_market_api_mask"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_metadata_authorize
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_metadata_authorize";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_metadata_authorize"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_metadata_change_record
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_metadata_change_record";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_metadata_change_record"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_metadata_column
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_metadata_column";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_metadata_column"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_metadata_source
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_metadata_source";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_metadata_source"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_metadata_source_conn
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_metadata_source_conn";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_metadata_source_conn"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_metadata_table
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_metadata_table";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_metadata_table"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_quality_report
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_quality_report";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_quality_report"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_sql_console_export
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_sql_console_export";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_sql_console_export"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_data_sql_log
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_data_sql_log";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_data_sql_log"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_docker_apply_info
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_docker_apply_info";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_docker_apply_info"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_docker_apply_lib
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_docker_apply_lib";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_docker_apply_lib"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_docker_apply_review
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_docker_apply_review";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_docker_apply_review"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_docker_apply_review_dtl
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_docker_apply_review_dtl";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_docker_apply_review_dtl"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_docker_config_hardware
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_docker_config_hardware";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_docker_config_hardware"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_docker_download_apply
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_docker_download_apply";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_docker_download_apply"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_docker_images
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_docker_images";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_docker_images"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_docker_vpn
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_docker_vpn";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_docker_vpn"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_docker_with_user_account
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_docker_with_user_account";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_docker_with_user_account"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_gen_table
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_gen_table";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_gen_table"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_gen_table_column
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_gen_table_column";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_gen_table_column"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_lab_config_hardware
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_lab_config_hardware";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_lab_config_hardware"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_org_api_auth
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_org_api_auth";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_org_api_auth"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_org_config
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_org_config";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_org_config"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_org_gateway_log
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_org_gateway_log";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_org_gateway_log"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_org_statistics
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_org_statistics";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_org_statistics"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_portal_content
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_portal_content";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_portal_content"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_portal_logininfor
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_portal_logininfor";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_portal_logininfor"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_portal_oper_log
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_portal_oper_log";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_portal_oper_log"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_portal_user
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_portal_user";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_portal_user"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_portal_user_msg
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_portal_user_msg";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_portal_user_msg"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_line_metric_day
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_line_metric_day";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_line_metric_day"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_line_metric_hour
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_line_metric_hour";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_line_metric_hour"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_line_metric_month
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_line_metric_month";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_line_metric_month"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_line_station_metric_day
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_line_station_metric_day";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_line_station_metric_day"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_line_station_metric_hour
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_line_station_metric_hour";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_line_station_metric_hour"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_line_station_metric_month
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_line_station_metric_month";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_line_station_metric_month"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_line_station_trans_day
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_line_station_trans_day";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_line_station_trans_day"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_line_station_trans_hour
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_line_station_trans_hour";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_line_station_trans_hour"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_line_station_trans_month
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_line_station_trans_month";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_line_station_trans_month"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_route_metric_day
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_route_metric_day";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_route_metric_day"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_station_freq_metric_day
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_station_freq_metric_day";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_station_freq_metric_day"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_station_freq_metric_month
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_station_freq_metric_month";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_station_freq_metric_month"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_station_freq_trans_day
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_station_freq_trans_day";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_station_freq_trans_day"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_prd_station_freq_trans_month
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_prd_station_freq_trans_month";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_prd_station_freq_trans_month"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_public_files
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_public_files";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_public_files"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_public_files_progress
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_public_files_progress";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_public_files_progress"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_public_msg_template
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_public_msg_template";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_public_msg_template"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_public_phone_msg_log
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_public_phone_msg_log";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_public_phone_msg_log"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_qa_centime_delay
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_qa_centime_delay";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_qa_centime_delay"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_qa_pos_match_rate
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_qa_pos_match_rate";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_qa_pos_match_rate"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_qa_route_daily_count
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_qa_route_daily_count";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_qa_route_daily_count"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_qa_route_miss
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_qa_route_miss";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_qa_route_miss"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_qa_route_turnover_time
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_qa_route_turnover_time";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_qa_route_turnover_time"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_qa_station_miss
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_qa_station_miss";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_qa_station_miss"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_qa_vehicle_daily_count
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_qa_vehicle_daily_count";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_qa_vehicle_daily_count"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sftp_user
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sftp_user";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sftp_user"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sftp_user_file
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sftp_user_file";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sftp_user_file"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sql_console_file
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sql_console_file";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sql_console_file"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sql_data_apply
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sql_data_apply";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sql_data_apply"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_config
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_config";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_config"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 4
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_dept
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_dept";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_dept"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 3
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_dict_data
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_dict_data";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_dict_data"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_dict_type
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_dict_type";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_dict_type"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_job
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_job";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_job"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_job_log
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_job_log";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_job_log"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_logininfor
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_logininfor";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_logininfor"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_menu
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_menu";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_menu"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 3000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_notice
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_notice";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_notice"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_oper_log
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_oper_log";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_oper_log"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_post
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_post";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_post"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_role
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_role";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_role"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 3
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_user
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_user";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_user"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 2
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_warning_contact
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_warning_contact";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_warning_contact"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_sys_warning_log
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_sys_warning_log";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_sys_warning_log"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10000
CACHE 1;
-- ----------------------------
-- Sequence structure for seq_test_t_t
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."seq_test_t_t";
CREATE SEQUENCE IF NOT EXISTS "public"."seq_test_t_t"
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
-- ----------------------------
-- Sequence structure for tbl_prd_sync_record_id_seq
-- ----------------------------
-- DROP SEQUENCE IF EXISTS "public"."tbl_prd_sync_record_id_seq";
CREATE SEQUENCE IF NOT EXISTS "public"."tbl_prd_sync_record_id_seq"
INCREMENT 1
MINVALUE 1
MAXVALUE 2147483647
START 10000
CACHE 1;

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save