diff --git a/package.json b/package.json
index 5d6457f..aeb3ccb 100644
--- a/package.json
+++ b/package.json
@@ -49,9 +49,10 @@
"@vue/composition-api": "^1.7.2",
"axios": "0.24.0",
"clipboard": "2.0.8",
+ "codemirror": "^5.65.12",
"core-js": "3.25.3",
"echarts": "5.4.0",
- "element-ui": "2.9.1",
+ "element-ui": "^2.15.14",
"file-saver": "2.0.5",
"fuse.js": "6.4.3",
"highlight.js": "9.18.5",
diff --git a/public/123456789.jpg b/public/123456789.jpg
new file mode 100644
index 0000000..9d5bf70
Binary files /dev/null and b/public/123456789.jpg differ
diff --git a/src/api/engine/engine.js b/src/api/engine/engine.js
index fd60229..7b061ca 100644
--- a/src/api/engine/engine.js
+++ b/src/api/engine/engine.js
@@ -79,7 +79,7 @@ export function findById(id) {
//通过id删除数据
export function dels(id) {
return request({
- url: '/engine/engine/delete/' + id,
+ url: '/engine/version/delete/' + id,
method: 'post',
data: id
})
@@ -87,7 +87,7 @@ export function dels(id) {
-//天机规则数据
+//添加规则数据
export function add(data){
return request({
url: "/engine/version/insertVersion",
@@ -107,5 +107,27 @@ export function selectEngineById(id){
})
}
+//根据版本id查询版本信息
+export function sel(id){
+ return request({
+ url: "/engine/version/selectListById/" + id,
+ method: "post"
+ })
+}
+
+
+
+
+
+//根据版本id查询版本信息
+export function generate(data){
+ return request({
+ url: "/engine/engine/generate",
+ method: "post",
+ data:data
+ })
+}
+
+
diff --git a/src/api/etl/switch.js b/src/api/etl/switch.js
index ad91a25..29dc15c 100644
--- a/src/api/etl/switch.js
+++ b/src/api/etl/switch.js
@@ -91,6 +91,15 @@ export function findTableInfoList(){
})
}
+
+export function findTableInfoListAccredit(){
+ return request({
+ url: "/source/tableInfo/findTableInfoListAccredit",
+ method: "get",
+ })
+}
+
+
export function findStructureByTableId(id){
return request({
url: "/source/tableInfo/findStruceure/"+id,
@@ -99,3 +108,51 @@ export function findStructureByTableId(id){
}
+
+export function findTableValueList(basicId,tableName){
+ return request({
+ url: "/source/DataValue/findTableValueList?basicId="+basicId+"&tableName="+tableName,
+ method: "post",
+ })
+}
+
+
+export function findAccredit(id){
+ return request({
+ url: "/source/accredit/findAccredit?tableId="+id,
+ method: "get",
+ })
+}
+
+
+export function findDeptListStatus(tableId,basicId){
+ return request({
+ url: "/source/accredit/findDeptListStatus?tableId="+tableId+"&basicId="+basicId,
+ method: "get",
+ })
+}
+
+export function findUserListStatus(tableId,basicId){
+ return request({
+ url: "/source/accredit/findUserListStatus?tableId="+tableId+"&basicId="+basicId,
+ method: "get",
+ })
+}
+export function addMiddle(data){
+ return request({
+ url: "/source/accredit/addMiddle",
+ method: "post",
+ data :data
+ })
+}
+
+export function remove(data){
+ return request({
+ url: "/source/accredit/remove",
+ method: "post",
+ data :data
+ })
+}
+
+
+
diff --git a/src/api/port/port/index.js b/src/api/port/port/index.js
index 827af15..07190c7 100644
--- a/src/api/port/port/index.js
+++ b/src/api/port/port/index.js
@@ -7,6 +7,13 @@ export function findConnectorList(data) {
data:data
})
}
+export function findApiList(data) {
+ return request({
+ url: '/mart/connector/findApiList',
+ method: 'post',
+ data:data
+ })
+}
export function addConnector(data) {
return request({
url: '/mart/connector/addConnector',
@@ -70,6 +77,13 @@ export function getWeather() {
method: 'GET'
})
}
+//天气预报
+export function getWeatherForecast(cityName) {
+ return request({
+ url: '/port/list/getWeatherForecast?cityName='+cityName,
+ method: 'GET'
+ })
+}
//购买
export function doBuyInterface(data) {
@@ -79,3 +93,18 @@ export function doBuyInterface(data) {
data:data
})
}
+//资产列表
+export function findConnectorUserList(data) {
+ return request({
+ url: '/mart/connector/findConnectorUserList',
+ method: 'post',
+ data:data
+ })
+}
+//API页面类型分类
+export function findConnectSort() {
+ return request({
+ url: '/mart/connector/findConnectSort',
+ method: 'get'
+ })
+}
diff --git a/src/api/system/user.js b/src/api/system/user.js
index d32a9db..8ddbd3c 100644
--- a/src/api/system/user.js
+++ b/src/api/system/user.js
@@ -12,6 +12,24 @@ export function listUser(query) {
+//购买用户记录
+export function userloginfo(query) {
+ return request({
+ url: '/system/user/purchaseRecord',
+ method: 'get',
+ params: query
+ })
+}
+
+//查询12个月的总消费
+export function months() {
+ return request({
+ url: '/system/user/months',
+ method: 'get',
+ })
+}
+
+
//充值用户记录
export function userPayinfo(query) {
return request({
@@ -108,6 +126,15 @@ export function delUser(userId) {
})
}
+
+//修改手机号
+export function updatePhone(data) {
+ return request({
+ url: '/system/user/profile/updatePhonenumber/'+data,
+ method: 'POST'
+ })
+}
+
// 用户密码重置
export function resetUserPwd(userId, password) {
const data = {
diff --git a/src/components/JavaIDE.vue/java.vue b/src/components/JavaIDE.vue/java.vue
new file mode 100644
index 0000000..64fff9a
--- /dev/null
+++ b/src/components/JavaIDE.vue/java.vue
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/main.js b/src/main.js
index 0c72ebe..03c51e0 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,6 +1,23 @@
import Vue from 'vue'
import Cookies from 'js-cookie'
+//引入文件、、
+import VueCodeMirror from 'vue-codemirror'
+import 'codemirror/lib/codemirror.css'
+Vue.use(VueCodeMirror)
+//
+
+
+//codemirror
+import VueCodemirror from 'vue-codemirror'
+import 'codemirror/lib/codemirror.css'
+Vue.use(VueCodemirror)
+
+import 'codemirror/lib/codemirror.css'
+
+
+
+
import Element from 'element-ui'
import './assets/styles/element-variables.scss'
diff --git a/src/views/engine/engine/index.vue b/src/views/engine/engine/index.vue
index 2b91e06..af6e7d9 100644
--- a/src/views/engine/engine/index.vue
+++ b/src/views/engine/engine/index.vue
@@ -66,17 +66,21 @@
导出
+
+
新增
+
@@ -239,8 +243,6 @@
确 定
- 取 消
-
@@ -564,8 +566,6 @@ export default {
handleAdd() {
- // this.reset();
-
this.open = true;
this.title = "添加规则引擎";
@@ -576,8 +576,6 @@ export default {
handleUpdate(row) {
- // this.reset();
-
this.form = row;
this.open = true;
@@ -628,11 +626,12 @@ export default {
engineRuleMaintenance(row) {
+
this.$router.push({
path: 'list',
- query: {id: row.id}
+ query: {"id": row.id}
})
@@ -673,20 +672,35 @@ export default {
beforeCreate() {
}, //生命周期 - 创建之前",
+
beforeMount() {
+
}, //生命周期 - 挂载之前",
+
beforeUpdate() {
+
}, //生命周期 - 更新之前",
+
updated() {
+
}, //生命周期 - 更新之后",
+
beforeDestroy() {
+
}, //生命周期 - 销毁之前",
+
destroyed() {
+
}, //生命周期 - 销毁完成",
+
activated() {
+
} //如果页面有keep-alive缓存功能,这个函数会触发",
+
};
+
+
diff --git a/src/views/engine/engine/list.vue b/src/views/engine/engine/list.vue
index f27af45..5f6cbfa 100644
--- a/src/views/engine/engine/list.vue
+++ b/src/views/engine/engine/list.vue
@@ -2,119 +2,233 @@
-
新增
+
新增
+
+
+
+
+
+
+
-
+
+
+
-
+
+
+
-
-
+
+
+
+
-
-
-
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
+
+
正常
+
停用
+
+
+
+
+
正常
+
异常
+
+
+
+
+
数据字段
+
数据类型
+
数据格式
-
-
-
-
-
+
+
+
+
-
- 删除
+
+
+
+
+
+
+
+
+
+ 关闭引擎
+
- 关闭引擎
+
+ 开启引擎
- 开启引擎
+
+
+
+
+
规则详情
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/etl/assets/index.vue b/src/views/etl/assets/index.vue
index 7537570..653fde7 100644
--- a/src/views/etl/assets/index.vue
+++ b/src/views/etl/assets/index.vue
@@ -11,29 +11,37 @@
+
资产模型基本信息
-
-
- 表名称
- {{ tableBasic.tableName }}
-
-
- 表备注
- {{ tableBasic.tableRemark }}
-
-
- 数据量
- {{ tableBasic.dataNum }}
-
-
- 是否核心
-
-
+
+ 表名称: | {{ tableBasic.tableName }} |
+ 表备注: | {{ tableBasic.tableRemark }} |
+ 数据量: | {{ tableBasic.dataNum }} |
+ 是否核心: | |
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -146,6 +154,4 @@ export default {
} //如果页面有keep-alive缓存功能,这个函数会触发",
};
-
diff --git a/src/views/etl/limits/index.vue b/src/views/etl/limits/index.vue
new file mode 100644
index 0000000..32d760e
--- /dev/null
+++ b/src/views/etl/limits/index.vue
@@ -0,0 +1,306 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{tableBasic.dataResourceName}}
+ {{tableBasic.dataSourceSystemName}}
+ {{tableBasic.dataBaseName}}
+ {{tableBasic.tableNameB}}
+ {{tableBasic.tableRemark}}
+ {{tableBasic.dataNum}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.createTime) }}
+
+
+
+
+
+
+
+
+
+ -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.createTime) }}
+
+
+
+
+
+
+
+ -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/etl/switch/index.vue b/src/views/etl/switch/index.vue
index d3b1b90..2961063 100644
--- a/src/views/etl/switch/index.vue
+++ b/src/views/etl/switch/index.vue
@@ -1,114 +1,197 @@
-
-
-
-
-
+
+
+
+
-
-
+
+
-
-
+
+ 搜索
+ 重置
-
- 查询
-
-
导出
-
+
+
+ 新增
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 删除
+
- 新增
-
+ 测试
+
- 删除
-
+ 修改
+
+ 同步资产结构
+
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 数据连接参数
+
+
+
+
+
+
+
+
连接池配置
-
-
-
+
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
其他信息
-
-
-
+
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 修改
-
- 删除
-
- 同步资产结构
-
- 测试连接
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/views/management/secure/index.vue b/src/views/management/secure/index.vue
index 04f5741..f42088f 100644
--- a/src/views/management/secure/index.vue
+++ b/src/views/management/secure/index.vue
@@ -2,9 +2,66 @@
安全设置
-
-
-
+
+
+
+
+ 登录密码
+
+
+
+
+
+
+
+
+
+
+
+ 手机号码
+
+
+
+
+
+
+
当前手机号
+
旧手机号({{ user.phonenumber }})
+
+
+
+
+
+
+
+
+
输入验证码
+
+
+
+
+
+
+
+
+
+
+
输入新手机号
+
+
{{ phoneError }}
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -47,7 +104,7 @@
-
+
+
消費明細
+
+
+
+
+
+
+ 搜索
+
+
+
+ 导出
+
+
+
+
+
+
+ {{ scope.row.id }}
+
+
+
+
+ {{ scope.row.dataName }}
+
+
+
+
+ {{ scope.row.amount }}
+
+
+
+
+ {{ scope.row.createTime }}
+
+
+
+
+
+
+
+
+
+
-
+
diff --git a/src/views/money/pay/index.vue b/src/views/money/pay/index.vue
index e9bd4b7..ba0c9fd 100644
--- a/src/views/money/pay/index.vue
+++ b/src/views/money/pay/index.vue
@@ -44,7 +44,7 @@ export default {
addSysUser: {},
disabled: false,
// 同步跳转页面地址
- returnUrl:'http://172.13.1.1//money/money',
+ returnUrl:'http://172.13.1.1/money/money',
//充值参数
rechargeParams: {
"totalAmt": '', //金额
diff --git a/src/views/money/user/index.vue b/src/views/money/user/index.vue
index 874a1a7..95d70df 100644
--- a/src/views/money/user/index.vue
+++ b/src/views/money/user/index.vue
@@ -63,18 +63,22 @@
+
diff --git a/src/views/port/port/employee.vue b/src/views/port/port/employee.vue
index 0dad770..a7f3bdd 100644
--- a/src/views/port/port/employee.vue
+++ b/src/views/port/port/employee.vue
@@ -1,193 +1,244 @@
-
+申请新数据
-
-
-
-
-
{{connector.connectorName}}
- 购买
-
- 产品图片:
-
- 产品介绍:
- {{connector.connectorDescribe}}
- 价格:
- {{connector.connectorPrice}}/次
+
+
+
+
+ 全部类型:
+
+
+
+ {{ connectSort.connectorSort }}
+
+
+
+
- 测试API
- 测试API
- 测试API
- 测试API
- 测试API
- 测试API
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+ 查询
+
+
+
+
+
+
+
+ {{connector.connectorName}}
+ 购买
+
+ 产品图片:
+
+ 产品介绍:
+ {{connector.connectorDescribe}}
+ 价格:
+ {{connector.connectorPrice}}/次
+
+ 测试API
+ 测试API
+ 测试API
+ 测试API
+ 测试API
+ 测试API
+ 测试API
+
+
+
+
+
+
+
+
+
+
省份:{{this.formInline.province}}
城市:{{this.formInline.city}}
区号:{{this.formInline.areacode}}
邮编:{{this.formInline.zip}}
运营商:{{this.formInline.company}}
-
-
-
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
国家:{{this.formIp.country}}
省份:{{this.formIp.province}}
城市:{{this.formIp.city}}
运营商:{{this.formIp.isp}}
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
-
- years: {{this.formBirthday.years}}
- months: {{this.formBirthday.months}}
- days: {{this.formBirthday.days}}
- animal: {{this.formBirthday.animal}}
- imonthcn: {{this.formBirthday.imonthcn}}
- idaycn: {{this.formBirthday.idaycn}}
- cyear: {{this.formBirthday.cyear}}
- cmonth: {{this.formBirthday.cmonth}}
- cday: {{this.formBirthday.cday}}
- gzyear: {{this.formBirthday.gzyear}}
- gzmonth: {{this.formBirthday.gzmonth}}
- gzday: {{this.formBirthday.gzday}}
- isleap: {{this.formBirthday.isleap}}
- ncweek: {{this.formBirthday.ncweek}}
- isterm: {{this.formBirthday.isterm}}
- term: {{this.formBirthday.term}}
- astro: {{this.formBirthday.astro}}
- eightall: {{this.formBirthday.eightall}}
- fiveall: {{this.formBirthday.fiveall}}
-
-
-
-
+
+
+
+
+ years: {{this.formBirthday.years}}
+ months: {{this.formBirthday.months}}
+ days: {{this.formBirthday.days}}
+ animal: {{this.formBirthday.animal}}
+ imonthcn: {{this.formBirthday.imonthcn}}
+ idaycn: {{this.formBirthday.idaycn}}
+ cyear: {{this.formBirthday.cyear}}
+ cmonth: {{this.formBirthday.cmonth}}
+ cday: {{this.formBirthday.cday}}
+ gzyear: {{this.formBirthday.gzyear}}
+ gzmonth: {{this.formBirthday.gzmonth}}
+ gzday: {{this.formBirthday.gzday}}
+ isleap: {{this.formBirthday.isleap}}
+ ncweek: {{this.formBirthday.ncweek}}
+ isterm: {{this.formBirthday.isterm}}
+ term: {{this.formBirthday.term}}
+ astro: {{this.formBirthday.astro}}
+ eightall: {{this.formBirthday.eightall}}
+ fiveall: {{this.formBirthday.fiveall}}
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
- {{data.provinceName}}{{data.cityName}}--{{data.cityCode}}
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+ {{data.provinceName}}{{data.cityName}}--{{data.cityCode}}
+
+
+
+
+
+
+
+
+
+
+
+ 城市:{{this.formWeatherForecast.city}}
+ 天气:{{this.formWeatherForecast.info}}
+ 温度:{{this.formWeatherForecast.temperature}}
+ 湿度:{{this.formWeatherForecast.humidity}}
+ 风向:{{this.formWeatherForecast.direct}}
+ 风力:{{this.formWeatherForecast.power}}
+ 空气质量:{{this.formWeatherForecast.aqi}}
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
+ 余额:{{ userBalanceData.userBalance || '加载中...' }}
+ 共计:{{buyForm.connectorPrice*buyForm.connectorFrequency}}元
-
-
-
+
+
+
+
+
+
+
@@ -195,7 +246,7 @@