未验证 提交 a08f7f45 编写于 作者: O openharmony_ci 提交者: Gitee

!17976 整改废弃接口

Merge pull request !17976 from 田雨/master
...@@ -384,25 +384,25 @@ ...@@ -384,25 +384,25 @@
```js ```js
// xxx.js // xxx.js
import prompt from '@system.prompt'; import promptAction from '@ohos.promptAction';
export default { export default {
pinchstart(e){ pinchstart(e){
prompt.showToast({ promptAction.showToast({
message: 'pinchstart!!!' message: 'pinchstart!!!'
}) })
}, },
pinchupdate(e){ pinchupdate(e){
prompt.showToast({ promptAction.showToast({
message: 'Two-finger pinch update' message: 'Two-finger pinch update'
}) })
}, },
pinchend(e){ pinchend(e){
prompt.showToast({ promptAction.showToast({
message: 'Finished with two fingers pinching' message: 'Finished with two fingers pinching'
}) })
}, },
pinchcancel(e){ pinchcancel(e){
prompt.showToast({ promptAction.showToast({
message: 'Finger pinching is interrupted' message: 'Finger pinching is interrupted'
}) })
} }
......
...@@ -153,7 +153,7 @@ button{ ...@@ -153,7 +153,7 @@ button{
```js ```js
// xxx.js // xxx.js
import animator from '@ohos.animator'; import animator from '@ohos.animator';
import prompt from '@system.prompt'; import promptAction from '@ohos.promptAction';
export default { export default {
data: { data: {
scaleVal:1, scaleVal:1,
...@@ -175,7 +175,7 @@ export default { ...@@ -175,7 +175,7 @@ export default {
var _this= this; var _this= this;
//添加动画重放事件 //添加动画重放事件
this.animation.onrepeat = function() { this.animation.onrepeat = function() {
prompt.showToast({ promptAction.showToast({
message: 'repeat' message: 'repeat'
}); });
var repeatoptions = { var repeatoptions = {
...@@ -217,7 +217,7 @@ export default { ...@@ -217,7 +217,7 @@ export default {
var _this= this; var _this= this;
//添加动画完成事件 //添加动画完成事件
this.animation.onfinish = function() { this.animation.onfinish = function() {
prompt.showToast({ promptAction.showToast({
message: 'finish' message: 'finish'
}) })
}; };
......
...@@ -266,8 +266,7 @@ export default { ...@@ -266,8 +266,7 @@ export default {
```js ```js
// xxx.js // xxx.js
var info = null; var info = null;
import prompt from '@system.prompt'; import promptAction from '@ohos.promptAction';
import router from '@system.router';
export default { export default {
data: { data: {
curYear:'', curYear:'',
...@@ -290,7 +289,7 @@ export default { ...@@ -290,7 +289,7 @@ export default {
this.$element('datedialog').show() this.$element('datedialog').show()
}, },
canceldialog(e) { canceldialog(e) {
prompt.showToast({ promptAction.showToast({
message: 'Event setting canceled.' message: 'Event setting canceled.'
}) })
}, },
...@@ -299,7 +298,7 @@ export default { ...@@ -299,7 +298,7 @@ export default {
}, },
cancelschedule(e) { cancelschedule(e) {
this.$element('datedialog').close() this.$element('datedialog').close()
prompt.showToast({ promptAction.showToast({
message: 'Event setting canceled.' message: 'Event setting canceled.'
}) })
}, },
......
...@@ -215,7 +215,7 @@ text{ ...@@ -215,7 +215,7 @@ text{
```js ```js
// index.js // index.js
import prompt from '@system.prompt'; import promptAction from '@ohos.promptAction';
export default { export default {
data:{ data:{
list:[ list:[
...@@ -226,7 +226,7 @@ export default { ...@@ -226,7 +226,7 @@ export default {
fresh:false fresh:false
}, },
refresh(e) { refresh(e) {
prompt.showToast({ promptAction.showToast({
message: 'refreshing' message: 'refreshing'
}) })
var that = this; var that = this;
...@@ -234,7 +234,7 @@ export default { ...@@ -234,7 +234,7 @@ export default {
setTimeout(function () { setTimeout(function () {
that.fresh = false; that.fresh = false;
that.list.unshift({src: 'common/images/4.png',id:'4'}); that.list.unshift({src: 'common/images/4.png',id:'4'});
prompt.showToast({ promptAction.showToast({
message: 'succeed' message: 'succeed'
}) })
}, 2000) }, 2000)
......
...@@ -285,7 +285,7 @@ button{ ...@@ -285,7 +285,7 @@ button{
```js ```js
// index.js // index.js
import prompt from '@system.prompt'; import promptAction from '@ohos.promptAction';
export default { export default {
data: { data: {
rev:false, rev:false,
...@@ -317,7 +317,7 @@ export default { ...@@ -317,7 +317,7 @@ export default {
this.$element('img').resume() this.$element('img').resume()
}, },
getimgstate(e) { getimgstate(e) {
prompt.showToast({ promptAction.showToast({
message: '当前状态:' + this.$element('img').getState() message: '当前状态:' + this.$element('img').getState()
}) })
}, },
......
...@@ -154,10 +154,10 @@ rating { ...@@ -154,10 +154,10 @@ rating {
```js ```js
// xxx.js // xxx.js
import prompt from '@system.prompt'; import promptAction from '@ohos.promptAction';
export default { export default {
showrating(e) { showrating(e) {
prompt.showToast({ promptAction.showToast({
message: '当前评分' + e.rating message: '当前评分' + e.rating
}) })
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册