This commit is contained in:
Liwanyi 2023-12-08 14:49:35 +08:00
parent 64c906f064
commit 4121fd9ed0
4 changed files with 16 additions and 7 deletions

View File

@ -5,6 +5,14 @@
# CHANGE
## 1.1.4
2023年12月08日
### 修改
- 快速犯罪中添加了15-3
## 1.1.3
2023年11月29日

View File

@ -1,6 +1,6 @@
{
"name": "wuhu-torn-helper",
"version": "1.1.3",
"version": "1.1.4",
"description": "芜湖助手",
"scripts": {
"release": "cross-env NODE_ENV=production rollup -c && node build.mjs",

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,7 @@
<template>
<el-button @click="doCrime(15,'warehouse')">烧仓库</el-button>
<el-button @click="doCrime(18,'hackbank')">做18</el-button>
<el-button @click="doCrime(11,'warehouse')">烧仓库</el-button>
<el-button @click="doCrime(15,'napcop')">做15-3</el-button>
<el-button @click="doCrime(18,'hackbank')">做18-1</el-button>
<div v-if="results" v-html="results"></div>
<el-skeleton v-if="loading" :rows="3" animated/>
</template>
@ -13,7 +14,7 @@ import { LoggerKey } from "../ts/class/Logger";
const logger = inject(LoggerKey);
const results = ref("");
const loading = ref(false);
const doCrime = async (nerve, crime: "hackbank" | "warehouse") => {
const doCrime = async (nerve, crime: "hackbank" | "warehouse" | 'napcop') => {
loading.value = true;
results.value = '';
try {