public ActionResult MoveUpPriceApproveStep(string id) { //修改数据 string strErrText; FlowSystem flow = new FlowSystem(); if (flow.MoveUpApproveStep(long.Parse(id), LoginAccountId, LoginStaffName, out strErrText)) { return(Json(string.Empty)); } else { return(Json(strErrText)); } }