If you're taking the sum of the absolute values, it's called the L1 norm (short for Lebesgue 1 norm).
If you're not taking absolute values, I'd suggest just calling it sum, or perhaps vector sum (as others have suggested).
EDIT:
After reading various comments, I'd suggest using the term "element sum". If your vector can contain negative values and you're not taking the absolute value of the elements before summing, it's wrong to use terms like "distance", "length", or "norm". All of those imply one is taking the absolute value of each element before summing.