[关闭]
@tianqing123 2017-08-01T18:32:04.000000Z 字数 1651 阅读 701

基本页面

  1. 查询 basic_search
    • 路由: basic_search
  1. // 查询数据
  2. ajax({
  3. apiName:'',
  4. data:{
  5. code:'唯一标识,如业务名称',
  6. type:'页面类型', // [search create update read]
  7. index:0, // 分页
  8. size:10
  9. },
  10. success:function(result){
  11. result = [
  12. {
  13. code:'', // 页面分类
  14. type:'', // 类型
  15. name:'', // 页面名称
  16. remark:''
  17. }
  18. ]
  19. }
  20. })
  1. 创建 basic_create
    • 路由: basic_create
  1. // 保存数据
  2. ajax({
  3. apiName:'',
  4. data:{
  5. name:'页面名称',
  6. code:'唯一标识,如业务名称',
  7. type:'页面类型', [search create update read]
  8. pageUI:{
  9. apiName:'',
  10. ui:[]
  11. },
  12. remark:'描述'
  13. },
  14. success:function(result){
  15. result = '创建成功'
  16. }
  17. })
  1. 更新 basic_update
    • 路由: basic_update/code
  1. // 查询数据
  2. ajax({
  3. apiName:'',
  4. data:{
  5. code:'唯一标识,如业务名称'
  6. },
  7. success:function(result){
  8. result = {
  9. name:'页面名称',
  10. code:'唯一标识,如业务名称',
  11. type:'页面类型', [search create update read]
  12. pageUI:{
  13. apiName:'',
  14. ui:[]
  15. },
  16. remark:'描述'
  17. };
  18. }
  19. })
  20. // 更新数据
  21. ajax({
  22. apiName:'',
  23. data:result,
  24. success:function(result){
  25. result = '更新成功'
  26. }
  27. })

业务页面

  1. 查询 search
    • 路由: search/code
  1. // 查询 ui
  2. ajax({
  3. apiName:'',
  4. data:{
  5. code:'唯一标识,如业务名称'
  6. },
  7. success:function(result){
  8. result = {
  9. form:{},
  10. toolbar:{},
  11. table:{},
  12. paging:{}
  13. }
  14. }
  15. })
  16. // 查询数据
  17. ajax({
  18. apiName:'',
  19. data:result.form,
  20. success:function(result){
  21. result = []
  22. }
  23. })
  1. 创建 create
    • 路由: create/code
  1. // 查询ui
  2. ajax({
  3. apiName:'',
  4. data:{
  5. code:'唯一标识,如业务名称'
  6. },
  7. success:function(result){
  8. result = {
  9. name:'页面名称',
  10. code:'唯一标识,如业务名称',
  11. type:'页面类型', [search create update read]
  12. pageUI:{
  13. apiName:'',
  14. ui:[]
  15. },
  16. remark:'描述'
  17. };
  18. }
  19. })
  20. // 创建数据
  21. ajax({
  22. apiName:'',
  23. data:result.pageUI.ui.value + result.code,
  24. success:function(result){
  25. result = '创建成功'
  26. }
  27. })
  1. 更新 update
    • 路由: update/code
  1. // 查询ui
  2. ajax({
  3. apiName:'',
  4. data:{
  5. code:'唯一标识,如业务名称'
  6. },
  7. success:function(result){
  8. result = {
  9. name:'页面名称',
  10. code:'唯一标识,如业务名称',
  11. type:'页面类型', [search create update read]
  12. pageUI:{
  13. apiName:'',
  14. ui:[]
  15. },
  16. remark:'描述'
  17. };
  18. }
  19. })
  20. // 查询数据
  21. ajax({
  22. apiName:result.pageUI.apiName,
  23. success:function(result_data){
  24. result_data = []
  25. }
  26. })
  27. // 更新数据
  28. ajax({
  29. apiName:'',
  30. data:result_data,
  31. success:function(result){
  32. result = '更新成功'
  33. }
  34. })
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注