1.title
在pages.json文件中修改:"navigationBarTitleText":"uni-app"
2.icon的修改
2.1 在static中新建一个index.html文件作为模板文件,并且将你的icon图片也放在static文件夹下
2.2 在index.html文件中加入如下代码(记得icon文件就是你放在static文件夹下的图片,我这里举例为logo1.jpg)
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="<%= BASE_URL %>static/logo1.png">
<link rel="stylesheet" href="<%= BASE_URL %>static/index.css" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
</head>
<body>
<noscript>
<strong>Please enable JavaScript to continue.</strong>
</noscript>
<div id="app"></div>
</body>
<script type="text/javascript">
</script>
</html>