Browse Source

10.12

master
lichong 6 months ago
parent
commit
e8cfa1d2f9
  1. 302
      front/src/renderer/src/views/shujufenxi.vue

302
front/src/renderer/src/views/shujufenxi.vue

@ -237,9 +237,20 @@ export default {
return {
_: _,
dayjs: dayjs,
leftText: "",
placeholderLeftText:
`一单一组:684,784,876共12
leftText: `一单一组:684,784,876共12
784961637共6元
214315共4元
组六1269共10元
组六12069共10元
组六120769共10元
组三874共10元
6共10元
双飞98共10元
定位324共10元
全包对子共10元
`,
placeholderLeftText:
`一单一组:684,784,876共12
784961637共6元
214315共4元
组六1269共10元
@ -396,21 +407,288 @@ export default {
},
//
leftTongji() {
// let lastNum = (this.leftText.match(/\d+/g) || []).pop()
let haomaList = []
//
let leftTextArr = this.leftText.split("\n")
// 退
leftTextArr = leftTextArr.filter(item => { return !(item.match(/\d{2}:\d{2}:\d{2}/g) || item.includes("退")) })
//
leftTextArr = leftTextArr.map(item => {
let lastNum = item.match(/\d+[\u4e00-\u9fa5]{0,2}$/)
if (lastNum) {
return Number(parseFloat(lastNum[0]))
// yidanyizu: /[|:]*([\d,.\s]+)(?=|*)/,
// yizuliu: /1[|:]*([\d,.\s]+)(?=|*)/,
// yizusan: /1[|:]*([\d,.\s]+)(?=|*)/,
// yidu: /1[|:]*([\d,.\s]+)(?=|*)/,
// yishuangfei: /1[|:]*([\d,.\s]+)(?=|*)/,
// yidingwei: /1[|:]*([\d,.\s]+)(?=|*)/,
// yibudingwei: /1[|:]*([\d,.\s]+)(?=|*)/,
// yifushi: /1[|:]*([\d,.\s]+)(?=|*)/,
// yiquanbaoduizi: /1[|:]*([\d,.\s]+)(?=|*)/,
// yidan: /1[|:]*([\d,.\s]+)(?=|*)/,
// yizu: /1[|:]*([\d,.\s]+)(?=|*)/,
// jine: /[|]+(\d+)*/
for (let i = 0; i < leftTextArr.length; i++) {
let item = leftTextArr[i];
let type = "体彩"
if (item.includes("福彩")) {
type = "福彩"
}
})
leftTextArr = _.compact(leftTextArr)
this.rightText = _.sum(leftTextArr)
this.tongjizhongjiang()
return this.rightText
let jine = item.match(this.jine)
if (jine) {
jine = Number(jine[1])
} else {
continue
}
let haoma = []
//
if (item.match(this.yidanyizu)) {
let match = item.match(this.yidanyizu)
let numbers = match[1].replace(/\s+/g, '').replace(/[,\.]+/g, ',');
haoma = _.compact(_.split(numbers, ","))
let danxuanList = []
let zuxuanList = []
for (let j = 0; j < haoma.length; j++) {
let numberItem = haoma[j];
danxuanList.push({
type: "danxuan",
value: [`${numberItem}`],
jine: (jine / 2) / (haoma.length)
})
zuxuanList.push({
type: "zuxuan",
value: [`${numberItem}`],
jine: (jine / 2) / (haoma.length)
})
}
haomaList.push({
type: type,
name: "1单",
numbers: danxuanList,
})
haomaList.push({
type: type,
name: "1组",
numbers: zuxuanList,
})
}
// 1
else if (item.match(this.yizuliu)) {
let match = item.match(this.yizuliu)
let numbers = match[1].replace(/\s+/g, '').replace(/[,\.]+/g, ',');
haoma = _.compact(_.split(numbers, ","))
let groupBy = _.groupBy(haoma, o => { return `${o}`.length });
for (let key in groupBy) {
haomaList.push({
type: type,
name: `1组六${key}`,
numbers: [{
type: `zuliu${key}`,
value: groupBy[key],
jine: (jine / haoma.length) * (groupBy[key].length)
}],
})
}
}
// 1
else if (item.match(this.yizusan)) {
let match = item.match(this.yizusan)
let numbers = match[1].replace(/\s+/g, '').replace(/[,\.]+/g, ',');
haoma = _.compact(_.split(numbers, ","))
let groupBy = _.groupBy(haoma, o => { return `${o}`.length });
for (let key in groupBy) {
haomaList.push({
type: type,
name: `1组三${key}`,
numbers: [{
type: `zusan${key}`,
value: groupBy[key],
jine: (jine / haoma.length) * (groupBy[key].length)
}],
})
}
}
// 1
else if (item.match(this.yidu)) {
let match = item.match(this.yidu)
let numbers = match[1].replace(/\s+/g, '').replace(/[,\.]+/g, ',');
haoma = _.compact(_.split(numbers, ","))
let duslist = []
for (let j = 0; j < haoma.length; j++) {
let numberItem = haoma[j];
duslist.push({
type: "dudan",
value: [`${numberItem}`],
jine: jine / (haoma.length)
})
}
haomaList.push({
type: type,
name: "1毒",
numbers: duslist,
})
}
// 1
else if (item.match(this.yishuangfei)) {
let match = item.match(this.yishuangfei)
let numbers = match[1].replace(/\s+/g, '').replace(/[,\.]+/g, ',');
haoma = _.compact(_.split(numbers, ","))
let shaungfeislist = []
for (let j = 0; j < haoma.length; j++) {
let numberItem = haoma[j];
shaungfeislist.push({
type: "shuangfei",
value: [`${numberItem}`],
jine: jine / (haoma.length)
})
}
haomaList.push({
type: type,
name: "1双飞",
numbers: shaungfeislist,
})
}
// 1
else if (item.match(this.yidingwei)) {
let match = item.match(this.yidingwei)
let numbers = match[1].replace(/\s+/g, '').replace(/[,\.]+/g, ',');
haoma = _.compact(_.split(numbers, ","))
let dingweislist = []
for (let j = 0; j < haoma.length; j++) {
let numberItem = haoma[j];
dingweislist.push({
type: "dingwei",
value: [`${numberItem}`],
jine: jine / (haoma.length)
})
}
haomaList.push({
type: type,
name: "1定位",
numbers: dingweislist,
})
}
// 1
else if (item.match(this.yibudingwei)) {
let match = item.match(this.yibudingwei)
let numbers = match[1].replace(/\s+/g, '').replace(/[,\.]+/g, ',');
haoma = _.compact(_.split(numbers, ","))
let budingweislist = []
for (let j = 0; j < haoma.length; j++) {
let numberItem = haoma[j];
budingweislist.push({
type: "budingwei",
value: [`${numberItem}`],
jine: jine / (haoma.length)
})
}
haomaList.push({
type: type,
name: "1不定位",
numbers: budingweislist,
})
}
// 1
else if (item.match(this.yifushi)) {
let match = item.match(this.yifushi)
let numbers = match[1].replace(/\s+/g, '').replace(/[,\.]+/g, ',');
haoma = _.compact(_.split(numbers, ","))
let budingweislist = []
for (let j = 0; j < haoma.length; j++) {
let numberItem = haoma[j];
budingweislist.push({
type: "fushi",
value: [`${numberItem}`],
jine: jine / (haoma.length)
})
}
haomaList.push({
type: type,
name: "1复式",
numbers: budingweislist,
})
}
// 1
else if (item.match(this.yiquanbaoduizi)) {
let quanbaoduizislist = [{
type: "quanbaoduizi",
value: [],
jine: jine
}]
haomaList.push({
type: type,
name: "1全包对子",
numbers: quanbaoduizislist,
})
}
// 1
else if (item.match(this.yidan)) {
let match = item.match(this.yidan)
let numbers = match[1].replace(/\s+/g, '').replace(/[,\.]+/g, ',');
haoma = _.compact(_.split(numbers, ","))
let danxuanList = []
for (let j = 0; j < haoma.length; j++) {
let numberItem = haoma[j];
danxuanList.push({
type: "danxuan",
value: [`${numberItem}`],
jine: jine / (haoma.length)
})
}
haomaList.push({
type: type,
name: "1单",
numbers: danxuanList,
})
}
// 1
else if (item.match(this.yizu)) {
let match = item.match(this.yizu)
let numbers = match[1].replace(/\s+/g, '').replace(/[,\.]+/g, ',');
haoma = _.compact(_.split(numbers, ","))
let zuxuanList = []
for (let j = 0; j < haoma.length; j++) {
let numberItem = haoma[j];
zuxuanList.push({
type: "zuxuan",
value: [`${numberItem}`],
jine: jine / (haoma.length)
})
}
haomaList.push({
type: type,
name: "1组",
numbers: zuxuanList,
})
}
//
else {
continue
}
}
let groupByName = _.groupBy(haomaList, 'name')
let rightObj = {}
for (let key in groupByName) {
let value = groupByName[key]
rightObj[key] = {
value: 0,
dataList: []
}
for (let i = 0; i < value.length; i++) {
let element = value[i];
for (let j = 0; j < element.numbers.length; j++) {
let numberItem = element.numbers[j];
rightObj[key].value += Number(numberItem.jine)
rightObj[key].dataList = rightObj[key].dataList.concat(numberItem.value)
}
}
}
let text = ""
for (let key in rightObj) {
text += `${key.slice(1, 9)}${rightObj[key].dataList.join(";")}${rightObj[key].value}\n`
}
this.rightText = text
// this.tongjizhongjiang()
// return this.rightText
// let lastNum = (this.leftText.match(/\d+/g) || []).pop()
// this.rightText = (Number(this.rightText || 0) + Number(lastNum || 0)) || 0
},

Loading…
Cancel
Save