post请求


   /**
     * 生成 mapper bridge映射文件
     * @param {*} that 
     * @param {*} params 
     */
    doBuildLoadData(that, params) {
        //过滤条件
        let filterT = {

        };
        filterT = {
            ...filterT,
            ...that.filter
        };
        let metaT = that.rootMeta;


        let dataT = that.postData;

        let url='/bo/api/v3/bridge/devops/build';

        that.loading = true;
        that.$bsAjax.post(metaT.mkey, metaT.field, filterT, dataT).then((res) => {

            if (!res.data || !res.data.data || res.data.success !== true) {
                that.loading = false;
                return;
            }


            that.loading = false;
        });
    },
文档更新时间: 2022-09-04 18:42   作者:admin