|
determineUp(formName) {
this.$refs[formName].validate((valid) => {
if (valid) {
var fjString = [];
this.fundSuFileList.forEach(e => {
fjString.push(e.url);
});
this.INVOICEBATCH_RETUPLOADRESULT({
id: this.info.id,
cmd: 3,
ret_success_url: fjString.toString(),
ret_success_cause: this.ruleFormBh.desc
}).then(res => {
//console.log(res)
this.$message.success("更新返佣状态成功!");
this.$refs.popup.isShow = false;
this.$parent.getList();
}).catch(err => {});
}
});
},
|
|