mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2026-04-01 03:13:15 +08:00
Add scripts
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
color="primary"
|
||||
dark
|
||||
fixed
|
||||
:mini-variant="false" :clipped="true"
|
||||
>
|
||||
<v-app-bar-nav-icon @click.stop="toggleMenu"></v-app-bar-nav-icon>
|
||||
|
||||
|
||||
@@ -314,8 +314,8 @@ export default {
|
||||
|
||||
dataChanged(content) {
|
||||
let index = 0;
|
||||
for (; index < this.process[index].length; index++) {
|
||||
if (this.process.id === content.idx) {
|
||||
for (; index < this.process.length; index++) {
|
||||
if (this.process[index].id === content.idx) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -329,8 +329,8 @@ export default {
|
||||
|
||||
deleteProcess(id) {
|
||||
let index = 0;
|
||||
for (; index < this.process[index].length; index++) {
|
||||
if (this.process.id === id) {
|
||||
for (; index < this.process.length; index++) {
|
||||
if (this.process[index].id === id) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user