change project name to identifier

This commit is contained in:
zhangxunhui 2023-02-02 20:45:01 +08:00
parent 19d025b602
commit 11d0ec97d9
1 changed files with 2 additions and 2 deletions

View File

@ -43,12 +43,12 @@ class order_form extends Component {
};
}
getTokenProject = (user_id, owner_login, project_name) => {
getTokenProject = (user_id, owner_login, project_identifier) => {
const url = `/users/blockchain/balance_project`;
axios.post(url,{
user_id: user_id,
owner_login: owner_login,
project_name: project_name
project_identifier: project_identifier
}).then(result=>{
if(result && result.data){
this.state.issue_token_num = result.data.balance;