This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #前端开发报价规范 | |
| ##总报价的计算 | |
| 项目报价按项目工期计算 | |
| ``` | |
| 总报价 = 单位报价(元/天) x 工期(天) | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 接口返回jsonp | |
| 格式: | |
| ``` | |
| callback({ | |
| status : true/false, | |
| msg : '', | |
| ... | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ##倩女接口文档 | |
| 所有接口返回jsonp,格式如下 | |
| ``` | |
| callback({ | |
| status : bool, // 这里指示调用是否成功 | |
| msg : string, // status为false时,返回错误信息 | |
| data : { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #接口文档 | |
| 所有接口都返回jsonp | |
| ``` | |
| 格式: | |
| callback({ | |
| status : true/false |