1、在【连接器工厂】新建连接器
    2、使用连接器

    1. let text = this.$('textareaField_l3v8w71b').getValue();
    2. let params = {
    3. "Query": {
    4. "text": text
    5. }
    6. }
    7. this.dataSourceMap.getAddress.load({
    8. inputs: JSON.stringify(params)
    9. }).then(res=>{
    10. console.log(res)
    11. let data = res.showapi_res_body
    12. // 收货人
    13. this.$('textField_l3batgnz').setValue(data.person)
    14. // 收件电话
    15. this.$('textField_l3batgo1').setValue(data.phonenum)
    16. // 收件地址
    17. let detail = data.province + data.city + data.county + data.town + data.detail
    18. this.$('textField_l3batgo0').setValue(detail)
    19. })