Browse Source

style: 删除console.log

wrr
song 4 years ago
parent
commit
a9ead1abf0
  1. 1
      CHANGELOG.md
  2. 6
      rest/project.http
  3. 1
      src/App.vue
  4. 2
      src/components/Title/Title.vue
  5. 12
      src/components/Title/components/ShareProject.vue
  6. 1
      src/pages/project/project.vue

1
CHANGELOG.md

@ -135,6 +135,7 @@
- | 定期任务骨架屏修改 | [8ff72dd](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/8ff72dd)
- | 平车演示临时去掉项目快捷方式的toast提示 | [e0b2c23](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/e0b2c23)
- | 手动展开日常任务 | [0a4a622](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/0a4a622)
- | 接受切换项目消息,分享项目 | [2f84ae1](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/2f84ae1)
- | 接受切换项目消息,分享项目 | [5ea2fe4](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/5ea2fe4)
- | 提示信息显示bug及日常任务收缩问题 | [f2f06c5](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/f2f06c5)
- | 插件bug解决 | [41257eb](https://dd.tall.wiki/gitea/wally/tall-mui-3-project/commits/41257eb)

6
rest/project.http

@ -1,7 +1,7 @@
### login
# @name login
POST https://test.tall.wiki/gateway/tall/v1.0/users/signin
POST https://www.tall.wiki/gateway/tall/v1.0/users/signin
content-type: application/json;charset=utf-8
{
@ -18,7 +18,7 @@ content-type: application/json;charset=utf-8
### 导入插件
# POST http://127.0.0.1:7220/plugin/import
POST http://test.tall.wiki/gateway/pluginshop/plugin/import
POST http://www.tall.wiki/gateway/pluginshop/plugin/import
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
Authorization: Bearer {{login.response.body.$.data.token}}
@ -34,6 +34,6 @@ Content-Type: xlsx
### 更新redis内的插件信息
POST http://test.tall.wiki/gateway/pluginshop/plugin/updatePluginOfRedis
POST http://www.tall.wiki/gateway/pluginshop/plugin/updatePluginOfRedis
content-type: application/json;charset=utf-8
Authorization: Bearer {{login.response.body.$.data.token}}

1
src/App.vue

@ -90,5 +90,4 @@ export default {
@import './common/styles/iconfont.scss';
@import 'uview-ui/index.scss';
@import './common/styles/app.scss';
// @import './common/styles/uni.css';
</style>

2
src/components/Title/Title.vue

@ -117,8 +117,8 @@ export default {
},
//
openIndex() {
this.$u.route('/pages/index/index', { u: this.userId });
console.log(this.$route);
this.$u.route('/', { u: this.userId });
},
//
operation() {

12
src/components/Title/components/ShareProject.vue

@ -18,7 +18,6 @@
<!-- 复制链接 -->
<view class="link flex items-center mt-4">
<view class="link-url">{{ links }}</view>
<!-- <u-button style="border-radius: 0" type="primary" @click="copyPasteboard">复制链接</u-button> -->
<u-button
style="border-radius: 0; height: 100%"
type="primary"
@ -142,7 +141,6 @@ export default {
//
copySuccess() {
this.$t.ui.showToast('复制成功');
console.log('this.links: ', this.links);
},
//
copyError() {
@ -164,16 +162,6 @@ export default {
}
},
//
copyPasteboard() {
uni.setClipboardData({
data: this.links,
success: function (res) {
console.log('链接复制成功', res.data);
},
});
},
//
select() {
this.quantity = 0;

1
src/pages/project/project.vue

@ -282,7 +282,6 @@ export default {
* @param {object | null} options
*/
init(options) {
console.log('options: ', options);
if (!this.token) {
// tokenuserIdtoken
// token userId

Loading…
Cancel
Save