12345678910111213141516171819202122232425262728293031323334 |
- var app = getApp();
- var that;
- Page({
- data: {
- knowFrom:'action',
- url:'',
- },
- onLoad(e) {
- that = this;
- if(e.index){
- let index=e.index;
- console.log(e)
- let url='https://www.yuque.com/docs/share/a5803b46-cffd-4ad3-aca8-f9908a743618?#'
- if(index=='1'){
- url='https://www.yuque.com/docs/share/a5803b46-cffd-4ad3-aca8-f9908a743618?#'
- }else if(index=='2'){
- url='https://www.yuque.com/docs/share/c64392c1-8c8d-40d4-9481-a5f1ad169c10?#'
- }else if(index=='3'){
- url='https://www.yuque.com/docs/share/282894d5-9309-432b-ab19-f05c06726c7e?#'
- }else if(index=='4'){
- url='https://www.yuque.com/docs/share/4ccb2328-08aa-4587-a6f5-5b5335692bd1?#'
- }else if(index=='5'){
- url='https://www.yuque.com/books/share/b0ae3780-67e7-420a-bc97-2353c6cf3f4f?#'
- }
-
- this.setData({
- url:url
- })
- }
- },
- test(){
-
- }
- });
|