记得上下班打卡 | git大法好,push需谨慎

Commit 3e95cdb4 authored by jiangxiulong's avatar jiangxiulong

Merge branch 'dev' into test

parents 25b5e3f3 4a136370
......@@ -94,9 +94,9 @@ spring:
database: ${liquidnet.mongodb.database}
redis:
database: 15
port: 6379
host: 39.106.122.201
password: 3Xa%8p
port: ${liquidnet.redis.port}
host: ${liquidnet.redis.host}
password: ${liquidnet.redis.password}
lettuce:
pool:
max-active: 8
......
......@@ -31,6 +31,10 @@ liquidnet:
pwd: S&y$6d*JwJ
sslEnabled: false
database: dev_ln_scene
redis:
host: 39.106.122.201
port: 6379
password: 3Xa%8p
url-refund:
apply: "http://testpay.zhengzai.tv/refund/single"
notify: "https://devkylin.zhengzai.tv/kylin/refund/callback"
......
......@@ -31,6 +31,11 @@ liquidnet:
pwd: $hAh4SGcDQ
sslEnabled: false
database: test_ln_scene
redis:
host: r-2ze7002ckw5u75fgukpd.redis.rds.aliyuncs.com
# host: r-2zefzyjbij5vbez65y.redis.rds.aliyuncs.com
port: 6380
password: PO@B!Iud32
url-refund:
apply: "http://testpay.zhengzai.tv/refund/single"
notify: "https://testkylin.zhengzai.tv/kylin/refund/callback"
......
......@@ -337,7 +337,7 @@
var data = [];
var html = '<option value="">--请选择--</option>';
if (6 == targetType) {
data = result.rows;
data = result.value;
for (var i = 0, l = data.length; i < l; i++) {
html += '<option value="' + data[i].performancesId + '">' + data[i].title + '</option>';
}
......@@ -346,6 +346,16 @@
for (var i = 0, l = data.length; i < l; i++) {
html += '<option value="' + data[i].roadShowId + '">' + data[i].title + '</option>';
}
} else if(24 == targetType) {
data = result.data;
for (var i = 0, l = data.length; i < l; i++) {
html += '<option value="' + data[i].id + '">' + data[i].collect_name + '</option>';
}
} else if(26 == targetType) {
data = result.data;
for (var i = 0, l = data.length; i < l; i++) {
html += '<option value="' + data[i].id + '">' + data[i].name + '</option>';
}
} else {
data = result.data
for (var i = 0, l = data.length; i < l; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment