|
@ -8,6 +8,23 @@ |
|
|
<el-button type="primary" @click="calNumber">计算</el-button> |
|
|
<el-button type="primary" @click="calNumber">计算</el-button> |
|
|
<el-button type="primary" @click="clearNumber">清空</el-button> |
|
|
<el-button type="primary" @click="clearNumber">清空</el-button> |
|
|
</el-col> |
|
|
</el-col> |
|
|
|
|
|
<!-- <el-col :span="24" style="margin-top: 8px;"> |
|
|
|
|
|
<el-row> |
|
|
|
|
|
<el-col :span="4">输入随机数: </el-col> |
|
|
|
|
|
<el-col :span="20"> |
|
|
|
|
|
<el-input v-model="genDataStr" disabled /> |
|
|
|
|
|
</el-col> |
|
|
|
|
|
</el-row> |
|
|
|
|
|
</el-col> |
|
|
|
|
|
<el-col :span="24" style="margin-top: 8px;"> |
|
|
|
|
|
<el-row> |
|
|
|
|
|
<el-col :span="4">输入随机数记录:</el-col> |
|
|
|
|
|
<el-col :span="20"> |
|
|
|
|
|
<el-input v-model="genDataHistoryStr" disabled :autosize="{ minRows: 2, maxRows: 8 }" type="textarea" |
|
|
|
|
|
id="textareaInput" /> |
|
|
|
|
|
</el-col> |
|
|
|
|
|
</el-row> |
|
|
|
|
|
</el-col> --> |
|
|
</el-row> |
|
|
</el-row> |
|
|
<el-row style="height: calc(100vh - 50px);overflow-y: auto;display: block;"> |
|
|
<el-row style="height: calc(100vh - 50px);overflow-y: auto;display: block;"> |
|
|
<el-col v-for="(item, index) in calList" :key="index" style="margin: 8px 0;"> |
|
|
<el-col v-for="(item, index) in calList" :key="index" style="margin: 8px 0;"> |
|
@ -35,6 +52,8 @@ export default { |
|
|
dataInputLIst: [], |
|
|
dataInputLIst: [], |
|
|
allList: [], |
|
|
allList: [], |
|
|
calList: [], |
|
|
calList: [], |
|
|
|
|
|
genDataStr: "", |
|
|
|
|
|
genDataHistoryStr: "", |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
@ -88,14 +107,17 @@ export default { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
let newListTemp = _.cloneDeep(newList) |
|
|
let newListTemp = JSON.parse(JSON.stringify(newList)) |
|
|
|
|
|
let newListTempLocal = [] |
|
|
for (let i = 0; i < newListTemp.length; i++) { |
|
|
for (let i = 0; i < newListTemp.length; i++) { |
|
|
let element = newListTemp[i]; |
|
|
// let element = newListTemp[i]; |
|
|
for (let j = 0; j < this.allList.length; j++) { |
|
|
let element = {} |
|
|
let item = this.allList[j]; |
|
|
for (let s = this.allList.length - 1; s >= 0; s--) { |
|
|
|
|
|
let item = JSON.parse(JSON.stringify(this.allList[s])) |
|
|
|
|
|
element["numlable"] = newListTemp[i].numlable |
|
|
element["id"] = item.id |
|
|
element["id"] = item.id |
|
|
element["name"] = item.name |
|
|
element["name"] = item.name |
|
|
element["data"] = item.data |
|
|
element["data"] = [...item.data] |
|
|
element["dataStr"] = item.data.join("_") |
|
|
element["dataStr"] = item.data.join("_") |
|
|
element["note"] = item.note |
|
|
element["note"] = item.note |
|
|
element["create_at"] = item.create_at |
|
|
element["create_at"] = item.create_at |
|
@ -105,9 +127,10 @@ export default { |
|
|
} else { |
|
|
} else { |
|
|
element["has"] = false |
|
|
element["has"] = false |
|
|
} |
|
|
} |
|
|
|
|
|
newListTempLocal.push({ ...element }) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
let allGroup = _.groupBy(_.filter(newListTemp, { has: false }), "dataStr") |
|
|
let allGroup = _.groupBy(_.filter(newListTempLocal, { has: false }), "dataStr") |
|
|
let allListTemp = [] |
|
|
let allListTemp = [] |
|
|
for (let key in allGroup) { |
|
|
for (let key in allGroup) { |
|
|
let value = allGroup[key] |
|
|
let value = allGroup[key] |
|
@ -127,7 +150,6 @@ export default { |
|
|
allListTemp.push(textObj) |
|
|
allListTemp.push(textObj) |
|
|
} |
|
|
} |
|
|
let allListGroup = _.groupBy(allListTemp, "str") |
|
|
let allListGroup = _.groupBy(allListTemp, "str") |
|
|
console.log(111, allListGroup); |
|
|
|
|
|
this.calList = [] |
|
|
this.calList = [] |
|
|
for (let key in allListGroup) { |
|
|
for (let key in allListGroup) { |
|
|
let value = allListGroup[key]; |
|
|
let value = allListGroup[key]; |
|
@ -144,17 +166,59 @@ export default { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
this.calList.push({ |
|
|
mergedData = _.filter(mergedData, o => o.num > 5) |
|
|
data: mergedData, |
|
|
if (mergedData.length) { |
|
|
str: key |
|
|
this.calList.push({ |
|
|
}) |
|
|
data: mergedData, |
|
|
|
|
|
str: key |
|
|
|
|
|
}) |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
for (let i = 0; i < this.calList.length; i++) { |
|
|
|
|
|
let element = this.calList[i]; |
|
|
|
|
|
let eleItem = _.find(this.allList, { str: element.data }) |
|
|
|
|
|
if (eleItem) { |
|
|
|
|
|
element["id"] = eleItem.id |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
this.calList = _.sortBy(this.calList, "id").reverse() |
|
|
|
|
|
this.genData() |
|
|
|
|
|
this.genDataHistory() |
|
|
}, |
|
|
}, |
|
|
clearNumber() { |
|
|
clearNumber() { |
|
|
this.dataInput = "" |
|
|
this.dataInput = "" |
|
|
this.dataInputLIst = [] |
|
|
this.dataInputLIst = [] |
|
|
this.calList = [] |
|
|
this.calList = [] |
|
|
|
|
|
this.genData() |
|
|
|
|
|
this.genDataHistory() |
|
|
|
|
|
}, |
|
|
|
|
|
genData() { |
|
|
|
|
|
let newList = "" |
|
|
|
|
|
for (let i = 0; i < this.dataInput.length; i++) { |
|
|
|
|
|
for (let j = i + 1; j < this.dataInput.length; j++) { |
|
|
|
|
|
newList += `${this.dataInput[i]}${this.dataInput[j]} ` |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
this.genDataStr = newList |
|
|
}, |
|
|
}, |
|
|
|
|
|
genDataHistory() { |
|
|
|
|
|
let that = this |
|
|
|
|
|
let item = "" |
|
|
|
|
|
for (let s = 0; s < this.dataInputLIst.length; s++) { |
|
|
|
|
|
let dataInputItem = this.dataInputLIst[s]; |
|
|
|
|
|
let currentList = dataInputItem.split("") |
|
|
|
|
|
item += `${s + 1}: ` |
|
|
|
|
|
for (let i = 0; i < currentList.length; i++) { |
|
|
|
|
|
for (let j = i + 1; j < currentList.length; j++) { |
|
|
|
|
|
item += `${currentList[i]}${currentList[j]} ` |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
item += `\n` |
|
|
|
|
|
} |
|
|
|
|
|
this.genDataHistoryStr = item |
|
|
|
|
|
let textareaItem = document.getElementById("textareaInput"); |
|
|
|
|
|
textareaItem.scrollTop = textareaItem.scrollHeight |
|
|
|
|
|
} |
|
|
}, |
|
|
}, |
|
|
async mounted() { |
|
|
async mounted() { |
|
|
|
|
|
|
|
|