Skip to content

Commit 5a75d06

Browse files
authored
Feature add simulator (#33)
* feat: ✨ 错误日志增加堆栈记录 * feat: ✨ 适配雷电模拟器9 * feat: ✨ 去除版本信息(因服务迁移)
1 parent 1120921 commit 5a75d06

File tree

1 file changed

+24
-14
lines changed

1 file changed

+24
-14
lines changed

view/src/components/AboutUsDialog.vue

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,22 @@
2525
{{ synopsis.introduce }}
2626
</td>
2727
</tr>
28+
<tr>
29+
<th>项目地址</th>
30+
<td @click="openIssues">{{ synopsis.github }}</td>
31+
</tr>
32+
<tr>
33+
<th>下载地址</th>
34+
<td @click="openIssues">{{ synopsis.download }}</td>
35+
</tr>
2836
<tr>
2937
<th>反馈问题</th>
3038
<td @click="openIssues">{{ synopsis.link }}</td>
3139
</tr>
3240
</table>
3341
</q-card-section>
3442

35-
<q-card-section>
43+
<!-- <q-card-section>
3644
<div class="text-subtitle1 text-grey-8">版本信息</div>
3745
<span class="text-body2">下面是AppScan的更新版本:</span>
3846
</q-card-section>
@@ -52,7 +60,7 @@
5260
</li>
5361
</ul>
5462
</q-scroll-area>
55-
</q-card-section>
63+
</q-card-section> -->
5664
</q-card>
5765
</q-dialog>
5866
</template>
@@ -78,26 +86,28 @@ export default defineComponent({
7886
introduce:
7987
"一款自动化隐私检测工具,基于动态分析,可以精准定位APP的违规风险点",
8088
link: "https://github.com/tongcheng-security-team/AppScan/issues",
89+
download: "https://github.com/TongchengOpenSource/AppScan/releases",
90+
github: "https://github.com/TongchengOpenSource/AppScan",
8191
});
8292
// 获取版本数据
8393
synopsis.version = getVersion();
8494
85-
//获取历史数据;
86-
getHistory()
87-
.then((res) => {
88-
if (res.code == 200) {
89-
history.data = res.result;
90-
}
91-
})
92-
.catch((rej) => {
93-
console.log("请求版本信息失败:" + rej);
94-
});
95-
getHistory();
95+
// //获取历史数据;
96+
// getHistory()
97+
// .then((res) => {
98+
// if (res.code == 200) {
99+
// history.data = res.result;
100+
// }
101+
// })
102+
// .catch((rej) => {
103+
// console.log("请求版本信息失败:" + rej);
104+
// });
105+
// getHistory();
96106
return {
97107
alert,
98108
synopsis,
99109
history,
100-
getHistory,
110+
// getHistory,
101111
openIssues,
102112
};
103113
},

0 commit comments

Comments
 (0)