Skip to content

Commit 2d4f67e

Browse files
committed
del some text
1 parent a5fb612 commit 2d4f67e

File tree

16 files changed

+11
-29
lines changed

16 files changed

+11
-29
lines changed

app/components/example/animate.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<Page loaded="pageLoaded" ref="page">
33
<ActionBarSecond :title="'动画效果'"></ActionBarSecond>
4-
4+
55
<GridLayout colums="*" rows="*" id="dd">
66
<Label class="animateicon" :text="msg" col="0" row="0" />
77
<Image class="animateicon" src="~/assets/images/NativeScript-Vue.png" />

app/components/example/camera.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<Page class="page">
33
<ActionBarSecond :title="'相机'"></ActionBarSecond>
4-
4+
55
<StackLayout class="hello-world camera-container">
66
<Button class="btn btn-primary" @tap="test" text="相机" />
77
<Image class="camera-img" :src="img" stretch="none" ref="img" />
@@ -34,7 +34,6 @@ export default {
3434
console.log('Result is an image asset instance');
3535
//var image = new imageModule.Image();
3636
//image.src = imageAsset;
37-
console.log('xxx', imageAsset);
3837
_this.imgsrc = imageAsset._android;
3938
//this.$refs.
4039
//this.$refs.img.src = imageAsset;

app/components/example/counter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<Page class="page">
33
<ActionBarSecond :title="'计数器'"></ActionBarSecond>
4-
4+
55
<StackLayout>
66
<FlexboxLayout flexDirection="row" justifyContent="center">
77
<Button @tap="decrement" text="-" class="btn btn-outline" />

app/components/example/dialog-bak/dialog.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
export default {
2626
data() {
2727
return {
28-
msg: 'Hello World! ',
2928
listOfItems: [{ text: '111' }, { text: '2222' }, { text: '3333' }],
3029
drawerState: false
3130
};
@@ -37,7 +36,6 @@ export default {
3736
this.drawerState = false;
3837
} else {
3938
this.drawerState = 'bottom';
40-
console.log('xxxx', this.drawerState);
4139
}
4240
//this.$refs.drawer.open('bottom')
4341
}

app/components/example/dialog-new.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<Page class="page">
33
<ActionBarSecond :title="'对话框'"></ActionBarSecond>
4-
4+
55
<StackLayout class="hello-world">
66
<Button class="btn btn-primary" @tap="dialog" text="对话框" />
77
</StackLayout>

app/components/example/dialog/dialog.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
export default {
2727
data() {
2828
return {
29-
msg: 'Hello World! ',
3029
listOfItems: [{ text: '111' }, { text: '2222' }, { text: '3333' }],
3130
drawerState: false
3231
};
@@ -38,7 +37,6 @@ export default {
3837
this.drawerState = false;
3938
} else {
4039
this.drawerState = 'bottom';
41-
console.log('xxxx', this.drawerState);
4240
}
4341
//this.$refs.drawer.open('bottom')
4442
}

app/components/example/display.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<Page class="page">
33
<ActionBarSecond :title="'显示隐藏'"></ActionBarSecond>
4-
4+
55
<StackLayout class="hello-world">
66
<Label class="body" textWrap="true" text="这是一个hello world组件,如果你挑战,请点击这个按钮" />
77
<Label

app/components/example/fancy-alert.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export default {
2323
mounted() {},
2424
methods: {
2525
btnfancyalert: function() {
26-
console.log('xxx');
2726
TNSFancyAlert.showSuccess('Success!', 'Fancy alerts are nice.', 'Yes they are!');
2827
}
2928
}

app/components/example/icon.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ export default {
4848
4949
// glyph.set("icon", String.fromCharCode(charCode));
5050
// glyph.set("code", charCode.toString(16));
51-
// console.log("666666666666",glyph);
51+
// console.log("666",glyph);
5252
// glyphs.push(glyph);
5353
// }
5454
// this.glyphs = glyphs;
5555
// viewModel.set("glyphs", glyphs);
56-
// console.log('xxxxxx',typeof(viewModel));
56+
// console.log('xxx',typeof(viewModel));
5757
5858
// page.bindingContext = viewModel;
59-
console.log('xxxxx', this.$icon);
59+
console.log('xxx', this.$icon);
6060
this.glyphs = this.$icon.glyphs;
6161
//page.bindingContext = this.$icon;
6262
},

app/components/example/multi-drawer/drawers.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ export default {
4646
},
4747
data() {
4848
return {
49-
msg: 'Hello World! ',
5049
listOfItems: [{ text: '111' }, { text: '2222' }, { text: '3333' }],
5150
drawerState: false
5251
};

0 commit comments

Comments
 (0)