提交 3ae6bb16 编写于 作者: S shi.zeyuan

1.xxx

上级 a7b65438
package main
import (
"bufio"
"encoding/json"
"fmt"
"io"
"os"
"strings"
"tesou.io/platform/foot-parent/foot-api/common/base"
launch2 "tesou.io/platform/foot-parent/foot-core/launch"
service2 "tesou.io/platform/foot-parent/foot-core/module/core/service"
"tesou.io/platform/foot-parent/foot-core/module/leisu/constants"
"tesou.io/platform/foot-parent/foot-core/module/leisu/service"
"tesou.io/platform/foot-parent/foot-core/module/leisu/utils"
service3 "tesou.io/platform/foot-parent/foot-core/module/match/service"
"tesou.io/platform/foot-parent/foot-core/module/wechat/controller"
"tesou.io/platform/foot-parent/foot-spider/launch"
"time"
)
func main() {
HEAD:
inputReader := bufio.NewReader(os.Stdin)
fmt.Printf("Please enter:")
input, err := inputReader.ReadString('\n')
if err != nil {
fmt.Println("There were errors reading, exiting program.")
return
}
input = strings.ToLower(input)
switch input {
case "exit\n", "exit\r\n", "quit\n", "quit\r\n":
break;
case "\n", "\r\n":
goto HEAD
case "init\n", "init\r\n":
launch2.GenTable()
launch2.TruncateTable()
goto HEAD
case "spider\n", "spider\r\n":
launch.Spider()
goto HEAD
case "analy\n", "analy\r\n":
launch2.Analy(false)
goto HEAD
case "baseFace\n", "baseFace\r\n":
launch.Spider_match(4)
launch.Spider_asiaLastNew(true)
launch.Spider_baseFace(true)
goto HEAD
case "limit\n", "limit\r\n":
pubLimitService := new(service.PushLimitService)
publimit := pubLimitService.GetPublimit()
bytes, _ := json.Marshal(publimit)
fmt.Println("发布限制信息为:" + string(bytes))
goto HEAD
case "price\n", "price\r\n":
priceService := new(service.PriceService)
price := priceService.GetPrice()
bytes, _ := json.Marshal(price)
fmt.Println("收费信息为:" + string(bytes))
goto HEAD
case "matchpool\n", "matchpool\r\n":
//测试从雷速获取可发布的比赛池
readCloser := utils.Get(constants.MATCH_LIST_URL)
reader := bufio.NewReader(readCloser)
for {
line, err := reader.ReadBytes('\n')
if err == io.EOF {
break;
} else if err != nil {
fmt.Println(err)
break;
} else {
fmt.Println(string(line))
}
}
//尝试获取比赛列表
poolService := new(service.MatchPoolService)
list := poolService.GetMatchList()
for _, e := range list {
bytes, _ := json.Marshal(e)
fmt.Println(string(bytes))
}
goto HEAD
case "pub\n", "pub\r\n":
pubService := new(service.PushService)
pubService.PubBJDC()
goto HEAD
case "autospider\n", "autospider\r\n":
go func() {
for {
base.Log.Info("--------数据更新开始运行--------")
//1.安装数据库
//2.配置好数据库连接,打包程序发布
//3.程序执行流程,周期定制定为一天三次
//3.1 FS000Application 爬取数据
launch.Spider()
//3.2 FC002AnalyApplication 分析得出推荐列表
launch2.Analy(false)
configService := new(service2.ConfService)
base.Log.Info("--------数据更新周期结束--------")
time.Sleep(time.Duration(configService.GetSpiderCycleTime()) * time.Minute)
}
}()
goto HEAD
case "autoleisu\n", "autoleisu\r\n":
go func() {
for {
base.Log.Info("--------发布开始运行--------")
//3.3 FW001PubApplication 执行发布到雷速
pubService := new(service.PushService)
pubService.PubBJDC()
base.Log.Info("--------发布周期结束--------")
time.Sleep(time.Duration(pubService.CycleTime()) * time.Minute)
}
}()
goto HEAD
case "autowechat\n", "autowechat\r\n":
go func() {
for {
base.Log.Info("--------发布公众号开始运行--------")
//3.3 FW001PubApplication 执行发布到雷速
materialController := new(controller.MaterialController)
materialController.ModifyNewsOnly()
base.Log.Info("--------发布公众号周期结束--------")
time.Sleep(10 * time.Minute)
}
}()
goto HEAD
case "auto\n", "auto\r\n":
go func() {
for {
base.Log.Info("--------全量数据更新开始运行--------")
//1.安装数据库
//2.配置好数据库连接,打包程序发布
//3.程序执行流程,周期定制定为一天三次
//3.1 FS000Application 爬取数据
//清空数据库数据,为爬虫作准备
launch.Clean()
launch.Spider()
//3.2 FC002AnalyApplication 分析得出推荐列表
launch2.Analy(false)
configService := new(service2.ConfService)
base.Log.Info("--------全量数据更新周期结束--------")
time.Sleep(time.Duration(configService.GetSpiderCycleTime()) * time.Minute)
}
}()
go func() {
for {
base.Log.Info("--------发布开始运行--------")
//3.3 FW001PubApplication 执行发布到雷速
pubService := new(service.PushService)
pubService.PubBJDC()
base.Log.Info("--------发布周期结束--------")
time.Sleep(time.Duration(pubService.CycleTime()) * time.Minute)
}
}()
go func() {
for {
matchLastService := new(service3.MatchLastService)
matchLasts := matchLastService.FindNear()
if len(matchLasts) > 0 {
base.Log.Info("--------临场比赛,共",len(matchLasts),"场,更新开始运行--------")
launch.Spider_Near()
launch2.Analy_Near()
base.Log.Info("--------临场比赛,共",len(matchLasts),"场,更新周期结束--------")
}
time.Sleep(5 * time.Minute)
}
}()
goto HEAD
default:
goto HEAD
}
}
package main
import (
"fmt"
"strconv"
"tesou.io/platform/foot-parent/foot-core/module/spider/constants"
"time"
)
func abort(funcname string, err string) {
panic(funcname + " failed: " + err)
}
func print_version(v uint32) {
major := byte(v)
minor := uint8(v >> 8)
build := uint16(v >> 16)
print("windows version ", major, ".", minor, " (Build ", build, ")\n")
}
func Decimal(value float64) float64 {
value, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", value), 64)
return value
}
var aaa int
func set() {
constants.SpiderDateStr = time.Now().Format("2006-01-02 15:04:05")
constants.FullSpiderDateStr = constants.SpiderDateStr
}
var (
color_map = map[string]string{
"A1": "red",
"A3": "orange",
"C1": "yellow",
"C2": "yellowgreen",
"C4": "green",
"E1": "cyan",
"E2": "blue",
"Q1": "purple",
"Q2": "black",
}
)
func color(str string) string {
s := color_map[str]
return s
}
func main() {
println(color("A1"))
println(color("55"))
//materialController := new(controller.MaterialController)
//materialController.ModifyNewsOnly()
//base.Log.Error("22222222222222222222")
//for ; ; {
// fmt.Println(rand.Intn(7))
// time.Sleep(1 * time.Second)
//}
}
//func main(){
// h2, _ := time.ParseDuration("129m")
// //比赛结束的时间点
// matchEndDate := time.Now().Add(h2)
// fmt.Println(matchEndDate.Format("2006-01-02 15:04:05"))
//}
//func main() {
// h, err := syscall.LoadLibrary("kernel32.dll")
// if err != nil {
// abort("LoadLibrary", err.Error())
// }
// defer syscall.FreeLibrary(h)
// proc, err := syscall.GetProcAddress(h, "GetVersion")
// if err != nil {
// abort("GetProcAddress", err.Error())
// }
// r, _, _ := syscall.Syscall(uintptr(proc), 0, 0, 0, 0)
// print_version(uint32(r))
//
//
//
//}
/*
func main() {
var mainRedCount, mainBlackCount int64
mainRedCount =27
mainBlackCount = 22
value := float64(mainRedCount) / (float64(mainRedCount) + float64(mainBlackCount)) *100
value, _ = strconv.ParseFloat(fmt.Sprintf("%.2f", value), 64)
fmt.Println(strconv.FormatFloat(value,'f', -1, 64)+"%")
//测试
suggestService := new(service3.SuggestService)
i := vo.SuggStubVO{}
//i.AlFlag = "Euro20191212Service"
i.BeginDateStr = "2019-12-19 00:00:00"
query := suggestService.Query(&i)
for i, e := range query {
bytes, _ := json.Marshal(e)
fmt.Println(fmt.Sprintf("%d,%v", i, string(bytes)))
}
//测试markdown
tpl, err := template.New("week.html").Funcs(getFuncMap()).ParseFiles("assets/wechat/html/week.html")
if err != nil {
base.Log.Error(err)
}
weekVO := vo.TWeekVO{}
weekVO.MatchCount = 98
weekVO.RedCount = 68
weekVO.WalkCount = 40
weekVO.BlackCount = 20
weekVO.LinkRedCount = 10
weekVO.LinkBlackCount = 5
dataList := make([]vo.SuggStubVO, 1)
suggestVO := vo.SuggStubVO{}
suggestVO.LeagueName = "联赛1"
suggestVO.MatchDate = time.Now()
suggestVO.MainTeam = "主队1"
dataList[0] = suggestVO
weekVO.DataList = dataList
var buf bytes.Buffer
if err := tpl.Execute(&buf, &weekVO); err != nil {
base.Log.Fatal(err)
}
fmt.Println(buf.String())
//测试获取比赛
launch.Spider_match(4)
//测试获取配置
val := utils2.GetVal("cookies", "Hm_lpvt_2fb6939e65e63cfbc1953f152ec2402e")
fmt.Println(val)
section := utils2.GetSection("cookies")
keys := section.Keys()
for _, e := range keys {
fmt.Println(e.Name() + "=" + e.Value())
fmt.Println(section.Key(e.Name()).Value())
}
//测试随机数
fmt.Println(strconv.FormatFloat(rand.Float64(), 'f', -1, 64))
//测试随机数
for i := 0; i < 100000; i++ {
intn := rand.Intn(10)
if intn == 10 {
fmt.Println("------------------------------")
fmt.Println("------------------------------")
fmt.Println("------------------------------")
fmt.Println("------------------------------")
}
fmt.Println(intn)
}
//测试content长度
fmt.Println(len("本次推荐为程序全自动处理,全程无人为参与干预.进而避免了人为分析的主观性及不稳定因素.程序根据各大波菜多维度数据,结合作者多年足球分析经验,十年程序员生涯,精雕细琢历经26个月得出的产物.程序执行流程包括且不仅限于(数据自动获取-->分析学习-->自动推送发布).经近三个月的实验准确率一直能维持在一个较高的水平.依据该项目为依托已经吸引了不少朋友,现目前通过雷速号再次验证程序的准确率,望大家长期关注校验.!"))
//测试时间
hours, _ := strconv.Atoi(time.Now().Format("15"))
fmt.Println(time.Duration(int64(24 - hours)))
//测试分析结果获取及更新
analyService := new(service2.AnalyService)
list := analyService.List("Euro20191206Service", 0, -1)
result := &list[0].AnalyResult
analyService.Modify(result)
//测试从雷速获取可发布的比赛池
readCloser := helper.Get(constants.MATCH_LIST_URL)
reader := bufio.NewReader(readCloser)
for {
line, err := reader.ReadBytes('\n')
if err == io.EOF {
break;
} else if err != nil {
fmt.Println(err)
break;
} else {
fmt.Println(string(line))
}
}
//
poolService := new(service.MatchPoolService)
lists := poolService.GetMatchList()
for _, e := range lists {
bytes, _ := json.Marshal(e)
fmt.Println(string(bytes))
}
}*/
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1><strong>概况</strong></h1>
<ul style="font-size: 12px;font-weight: bold">
<li>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</li>
<li>总场次:{{.MatchCount}}</li>
<li><span style="color: greenyellow; ">走:{{.WalkCount}}</span></li>
<li><span style="color: red; ">最长连红:{{.LinkRedCount}}</span></li>
<li><span style="color: gray; ">最长连黑:{{.LinkBlackCount}}</span></li>
<li>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</li>
<li>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 50%"><strong>赛事列表</strong></div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C2"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
{{/*
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_png/BePaFicK2B5R6lNrnAdOpR63megZibx7Gnqj9UlhbGMnKbDYmfkFvIhRsz5LEK27Fukf0sE8NzOlNI2nALx25icQQ/0?wx_fmt=png">
</div>*/}}
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1><strong>概况</strong></h1>
<ul style="font-size: 12px;font-weight: bold">
<li>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</li>
<li>总场次:{{.MatchCount}}</li>
<li><span style="color: greenyellow; ">走:{{.WalkCount}}</span></li>
<li><span style="color: red; ">最长连红:{{.LinkRedCount}}</span></li>
<li><span style="color: gray; ">最长连黑:{{.LinkBlackCount}}</span></li>
<li>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</li>
<li>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 50%"><strong>赛事列表</strong></div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C1"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
{{/*
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_png/BePaFicK2B5R6lNrnAdOpR63megZibx7Gnqj9UlhbGMnKbDYmfkFvIhRsz5LEK27Fukf0sE8NzOlNI2nALx25icQQ/0?wx_fmt=png">
</div>*/}}
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1><strong>概况</strong></h1>
<ul style="font-size: 12px;font-weight: bold">
<li>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</li>
<li>总场次:{{.MatchCount}}</li>
<li><span style="color: greenyellow; ">走:{{.WalkCount}}</span></li>
<li><span style="color: red; ">最长连红:{{.LinkRedCount}}</span></li>
<li><span style="color: gray; ">最长连黑:{{.LinkBlackCount}}</span></li>
<li>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</li>
<li>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 50%"><strong>赛事列表</strong></div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C2"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
{{/*
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_png/BePaFicK2B5R6lNrnAdOpR63megZibx7Gnqj9UlhbGMnKbDYmfkFvIhRsz5LEK27Fukf0sE8NzOlNI2nALx25icQQ/0?wx_fmt=png">
</div>*/}}
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1><strong>概况</strong></h1>
<ul style="font-size: 12px;font-weight: bold">
<li>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</li>
<li>总场次:{{.MatchCount}}</li>
<li><span style="color: greenyellow; ">走:{{.WalkCount}}</span></li>
<li><span style="color: red; ">最长连红:{{.LinkRedCount}}</span></li>
<li><span style="color: gray; ">最长连黑:{{.LinkBlackCount}}</span></li>
<li>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</li>
<li>单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 50%"><strong>赛事列表</strong></div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C2"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
{{/*
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_png/BePaFicK2B5R6lNrnAdOpR63megZibx7Gnqj9UlhbGMnKbDYmfkFvIhRsz5LEK27Fukf0sE8NzOlNI2nALx25icQQ/0?wx_fmt=png">
</div>*/}}
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.推荐的场次为当前时间"往前推12个小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.推荐的场次会随指数的变化而变化(即时盘),如再次进入不见上次推荐的比赛,请查看"待选场次".</strong></li>
<li><strong>5.以下推荐的场次,当前己被模型认可.如后续被认可失败,则会下放到"待选场次"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
<li><strong>7.推荐选项跟着的字母,如A1 A2 E1 E2,为算法模型标识,仅是为了方便观察不同模型的表现.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 40%"><strong>赛事列表</strong></div>
<div style="float: right;width: 40%;font-weight: bold;font-size: 12px">
模型:
</div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
</tr>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
</tr>
{{end}}
{{end}}
{{else}}
<tr>
<td colspan="5" style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</td>
</tr>
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.推荐的场次为当前时间"往前推12个小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.推荐的场次会随指数的变化而变化(即时盘),如再次进入不见上次推荐的比赛,请查看"待选场次".</strong></li>
<li><strong>5.以下推荐的场次,当前己被模型认可.如后续被认可失败,则会下放到"待选场次"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
<li><strong>7.推荐选项跟着的字母,如A1 A2 E1 E2,为算法模型标识,仅是为了方便观察不同模型的表现.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}</strong>
</li>
<li><strong>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</strong>
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 40%"><strong>赛事列表</strong></div>
<div style="float: right;width: 40%;font-weight: bold;font-size: 12px">
模型:
<span style="color: orange">A1</span>
<span style="color: orangered">A2</span>
<span style="color: yellow">C1</span>
<span style="color: blue">E1</span>
<span style="color: darkblue">E2</span>
<span style="color: olivedrab">Q1</span>
</div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
</tr>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
</tr>
{{end}}
{{end}}
{{else}}
<tr>
<td colspan="6" style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</td>
</tr>
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.推荐的场次为当前时间"往前推24个小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.推荐的场次会随指数的变化而变化(即时盘),如再次进入不见上次推荐的比赛,请查看"待选场次".</strong></li>
<li><strong>5.以下推荐的场次,当前己被模型认可.如后续被认可失败,则会下放到"待选场次"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
<li><strong>7.推荐选项跟着的字母,如A1 A2 E1 E2,为算法模型标识,仅是为了方便观察不同模型的表现.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)8."杯赛"不要参考,出现<span style="color: red; ">"斥"</span>可反买.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</strong>
</li>
<li><strong>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</strong>
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 40%"><strong>赛事列表</strong></div>
<div style="float: right;width: 40%;font-weight: bold;font-size: 12px">
模型:
</div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td>指数</td>
</tr>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red">
<strong>{{.HitCount}}</strong>
</td>
</tr>
{{end}}
{{end}}
{{else}}
<tr>
<td colspan="7" style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</td>
</tr>
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.推荐的场次为当前时间"往前推48个小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.推荐的场次会随指数的变化而变化(即时盘),如再次进入不见上次推荐的比赛,请查看"待选场次".</strong></li>
<li><strong>5.以下推荐的场次,当前己被模型认可.如后续被认可失败,则会下放到"待选场次"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
<li><strong>7.推荐选项跟着的字母,如A1 A2 E1 E2,为算法模型标识,仅是为了方便观察不同模型的表现.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)8."杯赛"不要参考,出现<span style="color: red; ">"斥"</span>可反买.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</strong>
</li>
<li><strong>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</strong>
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 40%"><strong>赛事列表</strong></div>
<div style="float: right;width: 40%;font-weight: bold;font-size: 12px">
模型:
</div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{.MyLetBall}}
</td>
</tr>
{{end}}
{{end}}
{{else}}
<tr>
<td colspan="7" style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</td>
</tr>
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.推荐的场次为当前时间"往前推48个小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.推荐的场次会随指数的变化而变化(即时盘),如再次进入不见上次推荐的比赛,请查看"待选场次".</strong></li>
<li><strong>5.以下推荐的场次,当前己被模型认可.如后续被认可失败,则会下放到"待选场次"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
<li><strong>7.推荐选项跟着的字母,如A1 A2 E1 E2,为算法模型标识,仅是为了方便观察不同模型的表现.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)8."杯赛"不要参考,出现<span style="color: red; ">"斥"</span>可反买.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</strong>
</li>
<li><strong>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</strong>
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 40%"><strong>赛事列表</strong></div>
<div style="float: right;width: 40%;font-weight: bold;font-size: 12px">
模型:
</div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{.MyLetBall}}
</td>
</tr>
{{end}}
{{end}}
{{else}}
<tr>
<td colspan="7" style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</td>
</tr>
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.推荐的场次为当前时间"往前推12个小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.推荐的场次会随指数的变化而变化(即时盘),如再次进入不见上次推荐的比赛,请查看"待选场次".</strong></li>
<li><strong>5.以下推荐的场次,当前己被模型认可.如后续被认可失败,则会下放到"待选场次"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
<li><strong>7.推荐选项跟着的字母,如A1 A2 E1 E2,为算法模型标识,仅是为了方便观察不同模型的表现.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<ul style="font-size: 12px;font-weight: lighter">
<li>比赛时间:{{.MatchDateStr}}</li>
<li>联  赛:{{.LeagueName}}</li>
<li>对阵双方:{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}</li>
<li>算法模型:<span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></li>
<li>球探指数:{{.HitCount}}<span style="color: red;font-weight: bold;">(指数越大,越稳定)</span></li>
<li>推荐选项:{{preResultStr .PreResult .AlFlag}}</li>
<li>说  明:
{{if eq .AlFlag "E2"}}
<span style="color: red;font-weight: bold;">程序只分析预测胜负,平局仅作为次防选项.</span>
{{end}}
</li>
</ul>
<hr/>
{{end}}
{{end}}
{{else}}
<span style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</span>
{{end}}
<br/>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.推荐的场次为当前时间"往前推12个小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.推荐的场次会随指数的变化而变化(即时盘),如再次进入不见上次推荐的比赛,请查看"待选场次".</strong></li>
<li><strong>5.以下推荐的场次,当前己被模型认可.如后续被认可失败,则会下放到"待选场次"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
<li><strong>7.推荐选项跟着的字母,如A1 A2 E1 E2,为算法模型标识,仅是为了方便观察不同模型的表现.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<ul style="font-size: 12px;font-weight: lighter">
<li>比赛时间:{{.MatchDateStr}}</li>
<li>联  赛:{{.LeagueName}}</li>
<li>对阵双方:{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}</li>
<li>算法模型:<span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></li>
<li>球探指数:{{.HitCount}}<span style="color: red;font-weight: bold;">(指数越大,越稳定)</span></li>
<li>推荐选项:{{preResultStr .PreResult .AlFlag}}</li>
<li>说  明:
{{if eq .AlFlag "E2"}}
<span style="color: red;font-weight: bold;">程序只分析预测胜负,平局仅作为次防选项.</span>
{{end}}
</li>
<li>分  析:
{{ template "wechat_today_detail_new.html" . }}
</li>
</ul>
<hr/>
{{end}}
{{end}}
{{else}}
<span style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</span>
{{end}}
<br/>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.推荐的场次为当前时间"往前推24个小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.推荐的场次会随指数的变化而变化(即时盘),如再次进入不见上次推荐的比赛,请查看"待选场次".</strong></li>
<li><strong>5.以下推荐的场次,当前己被模型认可.如后续被认可失败,则会下放到"待选场次"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
<li><strong>7.推荐选项跟着的字母,如A1 A2 E1 E2,为算法模型标识,仅是为了方便观察不同模型的表现.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)8."杯赛"不要参考,出现<span style="color: red; ">"斥"</span>可反买.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</strong>
</li>
<li><strong>单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</strong>
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 40%"><strong>赛事列表</strong></div>
<div style="float: right;width: 40%;font-weight: bold;font-size: 12px">
模型:
</div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C1"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
{{else}}
<tr>
<td colspan="7" style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</td>
</tr>
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.推荐的场次为当前时间"往前推24个小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.推荐的场次会随指数的变化而变化(即时盘),如再次进入不见上次推荐的比赛,请查看"待选场次".</strong></li>
<li><strong>5.以下推荐的场次,当前己被模型认可.如后续被认可失败,则会下放到"待选场次"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
<li><strong>7.推荐选项跟着的字母,如A1 A2 E1 E2,为算法模型标识,仅是为了方便观察不同模型的表现.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)8."杯赛"不要参考,出现<span style="color: red; ">"斥"</span>可反买.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</strong>
</li>
<li><strong>单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</strong>
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 40%"><strong>赛事列表</strong></div>
<div style="float: right;width: 40%;font-weight: bold;font-size: 12px">
模型:
</div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C1"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
{{else}}
<tr>
<td colspan="7" style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</td>
</tr>
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.推荐的场次为当前时间"往前推24个小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.推荐的场次会随指数的变化而变化(即时盘),如再次进入不见上次推荐的比赛,请查看"待选场次".</strong></li>
<li><strong>5.以下推荐的场次,当前己被模型认可.如后续被认可失败,则会下放到"待选场次"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
<li><strong>7.推荐选项跟着的字母,如A1 A2 E1 E2,为算法模型标识,仅是为了方便观察不同模型的表现.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)8."杯赛"不要参考,出现<span style="color: red; ">"斥"</span>可反买.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</strong>
</li>
<li><strong>单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</strong>
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 40%"><strong>赛事列表</strong></div>
<div style="float: right;width: 40%;font-weight: bold;font-size: 12px">
模型:
</div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C2"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
{{else}}
<tr>
<td colspan="7" style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</td>
</tr>
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1 style="color: red;font-weight: bold;font-size: 12px"><strong>注意</strong></h1>
<ul style="color: red;font-weight: bold;font-size: 12px">
<li><strong>1.比赛为程序自动处理,自动更新同步,目前更新周期为60分钟一次,临场比赛(30分钟内开赛)为5分钟一次.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)2.获取最新推荐请点击"今日推荐"菜单按钮.</strong></li>
<li><strong>3.待选的场次为当前时间"往前推24小时"至"往后推24小时"的场次.</strong></li>
<li><strong>4.待选的场次会随指数的变化而变化(即时盘),包含"今日推荐"中的比赛.</strong></li>
<li><strong>5.以下待选的场次,未被模型认可.如被后续被认可成功,则会上升到"今日推荐"中.</strong></li>
<li style="text-shadow: 0 0 7px blue"><strong>(重要)6.公众号主推模型在"稳胆场次"中,请重点关注.</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全量爬取时间:{{.FullSpiderDateStr}}</strong></li>
<li><strong>临场爬取时间:{{.SpiderDateStr}}</strong></li>
<li><strong>微信同步时间:{{.DataDateStr}}</strong></li>
<li><strong>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</strong></li>
</ul>
<hr/>
<ul style="font-size: 12px;font-weight: lighter">
<li><strong>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</strong>
</li>
<li><strong>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</strong>
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 40%"><strong>赛事列表</strong></div>
<div style="float: right;width: 40%;font-weight: bold;font-size: 12px">
模型:
</div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">指数/Desc</td>
</tr>
{{if .DataList}}
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}
<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red">
{{if eq .AlFlag "C4"}}
<strong>{{.Desc}}</strong>
{{else}}
<strong>{{.HitCount}}</strong>
{{end}}
</td>
</tr>
{{end}}
{{end}}
{{else}}
<tr>
<td colspan="7" style="color: red;font-weight: bold;font-size: 12px">暂时没有符合模型的比赛推荐,感谢关注~~~</td>
</tr>
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1><strong>概况</strong></h1>
<ul style="font-size: 12px;font-weight: bold">
<li>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</li>
<li>总场次:{{.MatchCount}}</li>
<li><span style="color: greenyellow; ">走:{{.WalkCount}}</span></li>
<li><span style="color: red; ">最长连红:{{.LinkRedCount}}</span></li>
<li><span style="color: gray; ">最长连黑:{{.LinkBlackCount}}</span></li>
<li>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</li>
<li>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 50%"><strong>赛事列表</strong></div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C2"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
\ No newline at end of file
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1><strong>概况</strong></h1>
<ul style="font-size: 12px;font-weight: bold">
<li>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</li>
<li>总场次:{{.MatchCount}}</li>
<li><span style="color: greenyellow; ">走:{{.WalkCount}}</span></li>
<li><span style="color: red; ">最长连红:{{.LinkRedCount}}</span></li>
<li><span style="color: gray; ">最长连黑:{{.LinkBlackCount}}</span></li>
<li>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</li>
<li>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 50%"><strong>赛事列表</strong></div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C1"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
\ No newline at end of file
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1><strong>概况</strong></h1>
<ul style="font-size: 12px;font-weight: bold">
<li>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</li>
<li>总场次:{{.MatchCount}}</li>
<li><span style="color: greenyellow; ">走:{{.WalkCount}}</span></li>
<li><span style="color: red; ">最长连红:{{.LinkRedCount}}</span></li>
<li><span style="color: gray; ">最长连黑:{{.LinkBlackCount}}</span></li>
<li>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</li>
<li>{{.MainAlflag}}单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 50%"><strong>赛事列表</strong></div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C2"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
\ No newline at end of file
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_gif/BePaFicK2B5R6lNrnAdOpR63megZibx7GnwXTAl2yZTEibKIbCFrs0QpsmOWG0CrxWEicHldX2ibqva6Ise5G5vILCQ/0?wx_fmt=gif"/>
</div>
<h1><strong>概况</strong></h1>
<ul style="font-size: 12px;font-weight: bold">
<li>日期:{{.BeginDateStr}} 至 {{.EndDateStr}}</li>
<li>总场次:{{.MatchCount}}</li>
<li><span style="color: greenyellow; ">走:{{.WalkCount}}</span></li>
<li><span style="color: red; ">最长连红:{{.LinkRedCount}}</span></li>
<li><span style="color: gray; ">最长连黑:{{.LinkBlackCount}}</span></li>
<li>全模型统计,
<span style="color: red; ">红:{{.RedCount}},</span>
<span style="color: gray; ">黑:{{.BlackCount}},</span>
胜率:{{.RedCount}}/({{.RedCount}}+{{.BlackCount}})={{.Val}}
</li>
<li>单方向统计,
<span style="color: red; ">红:{{.MainRedCount}},</span>
<span style="color: gray; ">黑:{{.MainBlackCount}},</span>
胜率:{{.MainRedCount}}/({{.MainRedCount}}+{{.MainBlackCount}})={{.MainVal}}
</li>
</ul>
<hr/>
<h1 style="margin-top: 5px">
<div style="float: left;width: 50%"><strong>赛事列表</strong></div>
</h1>
<table style="font-size: 12px;font-weight: bold">
<tr>
<td>模型</td>
<td style="min-width: 47px">时间</td>
<td style="min-width: 45px">联赛</td>
<td>主队(让球)客队</td>
<td>比分</td>
<td>推荐</td>
<td style="min-width: 58px">BF让球</td>
</tr>
{{with .DataList}}
{{range .}}
<tr style="font-weight: bold;font-size: 10px">
<td><span style="color: {{color .AlFlag}}">{{.AlFlag}}</span></td>
<td>{{.MatchDateStr}}</td>
<td>{{.LeagueName}}</td>
<td>
{{if .TOVoid}}<del><span style="color: red;">{{end}}
{{.MainTeam}}({{.LetBall}}){{.GuestTeam}}
{{if .TOVoid}}{{if .TOVoidDesc}}({{.TOVoidDesc}}){{end}}</span></del>{{end}}
</td>
<td>
{{.MainTeamGoal}}:{{.GuestTeamGoal}}
</td>
<td style="background-color: {{resultColor .Result}}">
{{preResultStr .PreResult .AlFlag}}
</td>
<td style="color: red;font-weight: bold;font-size: 10px">
{{if eq .AlFlag "C2"}}{{.MyLetBall}}{{end}}
</td>
</tr>
{{end}}
{{end}}
</table>
<span style="color: red;font-weight: bold;font-size: 12px">声明:彩市有风险,购彩需谨慎.AI球探只提供预测参考,不构成购彩建议,据AI球探购彩者风险自担.</span>
{{/*
<div>
<img src="http://mmbiz.qpic.cn/sz_mmbiz_png/BePaFicK2B5R6lNrnAdOpR63megZibx7Gnqj9UlhbGMnKbDYmfkFvIhRsz5LEK27Fukf0sE8NzOlNI2nALx25icQQ/0?wx_fmt=png">
</div>*/}}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册