更新
This commit is contained in:
parent
64c906f064
commit
4121fd9ed0
@ -5,6 +5,14 @@
|
|||||||
|
|
||||||
# CHANGE
|
# CHANGE
|
||||||
|
|
||||||
|
## 1.1.4
|
||||||
|
|
||||||
|
2023年12月08日
|
||||||
|
|
||||||
|
### 修改
|
||||||
|
|
||||||
|
- 快速犯罪中添加了15-3
|
||||||
|
|
||||||
## 1.1.3
|
## 1.1.3
|
||||||
|
|
||||||
2023年11月29日
|
2023年11月29日
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "wuhu-torn-helper",
|
"name": "wuhu-torn-helper",
|
||||||
"version": "1.1.3",
|
"version": "1.1.4",
|
||||||
"description": "芜湖助手",
|
"description": "芜湖助手",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"release": "cross-env NODE_ENV=production rollup -c && node build.mjs",
|
"release": "cross-env NODE_ENV=production rollup -c && node build.mjs",
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-button @click="doCrime(15,'warehouse')">烧仓库</el-button>
|
<el-button @click="doCrime(11,'warehouse')">烧仓库</el-button>
|
||||||
<el-button @click="doCrime(18,'hackbank')">做18</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>
|
<div v-if="results" v-html="results"></div>
|
||||||
<el-skeleton v-if="loading" :rows="3" animated/>
|
<el-skeleton v-if="loading" :rows="3" animated/>
|
||||||
</template>
|
</template>
|
||||||
@ -13,7 +14,7 @@ import { LoggerKey } from "../ts/class/Logger";
|
|||||||
const logger = inject(LoggerKey);
|
const logger = inject(LoggerKey);
|
||||||
const results = ref("");
|
const results = ref("");
|
||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
const doCrime = async (nerve, crime: "hackbank" | "warehouse") => {
|
const doCrime = async (nerve, crime: "hackbank" | "warehouse" | 'napcop') => {
|
||||||
loading.value = true;
|
loading.value = true;
|
||||||
results.value = '';
|
results.value = '';
|
||||||
try {
|
try {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user